From 054a5ecc71376f13baaa47036d4248524cd6c605 Mon Sep 17 00:00:00 2001 From: resolritter Date: Thu, 7 Jan 2021 14:10:57 -0300 Subject: [PATCH 1/2] support decorators on abstract classes --- common/corpus/declarations.txt | 10 +++++++++- common/define-grammar.js | 1 + 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/common/corpus/declarations.txt b/common/corpus/declarations.txt index 6cec3b4f..8ca6b251 100644 --- a/common/corpus/declarations.txt +++ b/common/corpus/declarations.txt @@ -744,6 +744,10 @@ abstract class Animal { } } +@bar +abstract class Foo { +} + --- (program @@ -782,7 +786,11 @@ abstract class Animal { function: (member_expression object: (identifier) property: (property_identifier)) - arguments: (arguments (string))))))))) + arguments: (arguments (string)))))))) + (abstract_class_declaration + decorator: (decorator (identifier)) + name: (type_identifier) + body: (class_body))) ================================== Index type queries diff --git a/common/define-grammar.js b/common/define-grammar.js index 8a351ee4..5f53748b 100644 --- a/common/define-grammar.js +++ b/common/define-grammar.js @@ -354,6 +354,7 @@ module.exports = function defineGrammar(dialect) { ), abstract_class_declaration: $ => seq( + repeat(field('decorator', $.decorator)), 'abstract', 'class', field('name', $._type_identifier), From c35f90060c2dea32dd9002019b2430baaf7025a4 Mon Sep 17 00:00:00 2001 From: resolritter Date: Thu, 7 Jan 2021 14:11:10 -0300 Subject: [PATCH 2/2] regenerate parser for 'abstract_class_decorator' --- typescript/src/grammar.json | 11 + typescript/src/node-types.json | 10 + typescript/src/parser.c | 155918 +++++++++++++++--------------- 3 files changed, 78261 insertions(+), 77678 deletions(-) diff --git a/typescript/src/grammar.json b/typescript/src/grammar.json index 25f8e76a..58eb4ded 100644 --- a/typescript/src/grammar.json +++ b/typescript/src/grammar.json @@ -6985,6 +6985,17 @@ "abstract_class_declaration": { "type": "SEQ", "members": [ + { + "type": "REPEAT", + "content": { + "type": "FIELD", + "name": "decorator", + "content": { + "type": "SYMBOL", + "name": "decorator" + } + } + }, { "type": "STRING", "value": "abstract" diff --git a/typescript/src/node-types.json b/typescript/src/node-types.json index 97caf2d1..14d88d90 100644 --- a/typescript/src/node-types.json +++ b/typescript/src/node-types.json @@ -325,6 +325,16 @@ } ] }, + "decorator": { + "multiple": true, + "required": false, + "types": [ + { + "type": "decorator", + "named": true + } + ] + }, "name": { "multiple": false, "required": true, diff --git a/typescript/src/parser.c b/typescript/src/parser.c index fb778f4b..7b9c8c29 100644 --- a/typescript/src/parser.c +++ b/typescript/src/parser.c @@ -6,8 +6,8 @@ #endif #define LANGUAGE_VERSION 12 -#define STATE_COUNT 3215 -#define LARGE_STATE_COUNT 635 +#define STATE_COUNT 3235 +#define LARGE_STATE_COUNT 639 #define SYMBOL_COUNT 321 #define ALIAS_COUNT 7 #define TOKEN_COUNT 148 @@ -2403,7 +2403,7 @@ static const char *ts_field_names[] = { [field_value] = "value", }; -static const TSFieldMapSlice ts_field_map_slices[196] = { +static const TSFieldMapSlice ts_field_map_slices[200] = { [2] = {.index = 0, .length = 1}, [3] = {.index = 1, .length = 1}, [4] = {.index = 2, .length = 1}, @@ -2530,61 +2530,65 @@ static const TSFieldMapSlice ts_field_map_slices[196] = { [137] = {.index = 219, .length = 3}, [138] = {.index = 222, .length = 4}, [139] = {.index = 226, .length = 3}, - [140] = {.index = 229, .length = 2}, - [141] = {.index = 231, .length = 5}, - [142] = {.index = 236, .length = 3}, - [143] = {.index = 239, .length = 2}, - [144] = {.index = 239, .length = 2}, - [145] = {.index = 241, .length = 3}, - [146] = {.index = 239, .length = 2}, - [147] = {.index = 239, .length = 2}, - [148] = {.index = 244, .length = 2}, - [149] = {.index = 246, .length = 4}, - [150] = {.index = 250, .length = 2}, - [151] = {.index = 252, .length = 2}, - [152] = {.index = 254, .length = 1}, - [153] = {.index = 255, .length = 2}, - [154] = {.index = 257, .length = 2}, - [155] = {.index = 259, .length = 3}, + [140] = {.index = 229, .length = 3}, + [141] = {.index = 232, .length = 2}, + [142] = {.index = 234, .length = 5}, + [143] = {.index = 239, .length = 3}, + [144] = {.index = 242, .length = 2}, + [145] = {.index = 242, .length = 2}, + [146] = {.index = 244, .length = 3}, + [147] = {.index = 242, .length = 2}, + [148] = {.index = 242, .length = 2}, + [149] = {.index = 247, .length = 2}, + [150] = {.index = 249, .length = 4}, + [151] = {.index = 253, .length = 2}, + [152] = {.index = 255, .length = 2}, + [153] = {.index = 257, .length = 1}, + [154] = {.index = 258, .length = 2}, + [155] = {.index = 260, .length = 2}, [156] = {.index = 262, .length = 3}, - [157] = {.index = 265, .length = 5}, - [158] = {.index = 270, .length = 3}, - [160] = {.index = 273, .length = 4}, - [161] = {.index = 277, .length = 5}, - [162] = {.index = 282, .length = 2}, - [163] = {.index = 282, .length = 2}, - [164] = {.index = 282, .length = 2}, - [165] = {.index = 282, .length = 2}, - [166] = {.index = 284, .length = 4}, - [167] = {.index = 288, .length = 2}, - [168] = {.index = 288, .length = 2}, - [169] = {.index = 288, .length = 2}, - [170] = {.index = 290, .length = 4}, - [171] = {.index = 294, .length = 4}, + [157] = {.index = 265, .length = 3}, + [158] = {.index = 268, .length = 5}, + [159] = {.index = 273, .length = 3}, + [161] = {.index = 276, .length = 4}, + [162] = {.index = 280, .length = 3}, + [163] = {.index = 283, .length = 4}, + [164] = {.index = 287, .length = 5}, + [165] = {.index = 292, .length = 2}, + [166] = {.index = 292, .length = 2}, + [167] = {.index = 292, .length = 2}, + [168] = {.index = 292, .length = 2}, + [169] = {.index = 294, .length = 4}, + [170] = {.index = 298, .length = 2}, + [171] = {.index = 298, .length = 2}, [172] = {.index = 298, .length = 2}, - [173] = {.index = 300, .length = 2}, - [174] = {.index = 302, .length = 2}, - [175] = {.index = 304, .length = 3}, - [176] = {.index = 307, .length = 3}, - [177] = {.index = 310, .length = 2}, - [178] = {.index = 312, .length = 5}, - [179] = {.index = 317, .length = 5}, - [180] = {.index = 322, .length = 1}, - [181] = {.index = 323, .length = 4}, - [182] = {.index = 327, .length = 4}, - [183] = {.index = 331, .length = 2}, - [184] = {.index = 333, .length = 4}, - [185] = {.index = 337, .length = 3}, - [186] = {.index = 340, .length = 2}, - [187] = {.index = 342, .length = 3}, - [188] = {.index = 345, .length = 5}, - [189] = {.index = 350, .length = 5}, - [190] = {.index = 355, .length = 4}, - [191] = {.index = 359, .length = 4}, - [192] = {.index = 363, .length = 3}, - [193] = {.index = 366, .length = 5}, - [194] = {.index = 322, .length = 1}, - [195] = {.index = 371, .length = 4}, + [173] = {.index = 300, .length = 4}, + [174] = {.index = 304, .length = 4}, + [175] = {.index = 308, .length = 2}, + [176] = {.index = 310, .length = 2}, + [177] = {.index = 312, .length = 2}, + [178] = {.index = 314, .length = 3}, + [179] = {.index = 317, .length = 3}, + [180] = {.index = 320, .length = 2}, + [181] = {.index = 322, .length = 4}, + [182] = {.index = 326, .length = 5}, + [183] = {.index = 331, .length = 5}, + [184] = {.index = 336, .length = 1}, + [185] = {.index = 337, .length = 4}, + [186] = {.index = 341, .length = 4}, + [187] = {.index = 345, .length = 2}, + [188] = {.index = 347, .length = 4}, + [189] = {.index = 351, .length = 3}, + [190] = {.index = 354, .length = 2}, + [191] = {.index = 356, .length = 3}, + [192] = {.index = 359, .length = 5}, + [193] = {.index = 364, .length = 5}, + [194] = {.index = 369, .length = 4}, + [195] = {.index = 373, .length = 4}, + [196] = {.index = 377, .length = 3}, + [197] = {.index = 380, .length = 5}, + [198] = {.index = 336, .length = 1}, + [199] = {.index = 385, .length = 4}, }; static const TSFieldMapEntry ts_field_map_entries[] = { @@ -2918,200 +2922,218 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_decorator, 0, .inherited = true}, {field_type_parameters, 2}, [229] = + {field_body, 4}, + {field_decorator, 0, .inherited = true}, + {field_name, 3}, + [232] = {field_alias, 3}, {field_name, 1}, - [231] = + [234] = {field_body, 4}, {field_name, 1}, {field_parameters, 3, .inherited = true}, {field_return_type, 3, .inherited = true}, {field_type_parameters, 3, .inherited = true}, - [236] = + [239] = {field_name, 1}, {field_type_parameters, 2}, {field_value, 4}, - [239] = + [242] = {field_left, 1}, {field_right, 3}, - [241] = + [244] = {field_body, 5}, {field_condition, 3}, {field_initializer, 2}, - [244] = + [247] = {field_decorator, 1, .inherited = true}, {field_decorator, 3, .inherited = true}, - [246] = + [249] = {field_name, 1}, {field_parameters, 3, .inherited = true}, {field_return_type, 3, .inherited = true}, {field_type_parameters, 3, .inherited = true}, - [250] = + [253] = {field_name, 2}, {field_type, 3}, - [252] = + [255] = {field_name, 1}, {field_type, 3}, - [254] = + [257] = {field_name, 3}, - [255] = + [258] = {field_name, 2}, {field_value, 3, .inherited = true}, - [257] = + [260] = {field_name, 1}, {field_value, 3, .inherited = true}, - [259] = + [262] = {field_name, 1}, {field_type, 2}, {field_value, 3, .inherited = true}, - [262] = + [265] = {field_name, 0}, {field_type, 2}, {field_value, 3, .inherited = true}, - [265] = + [268] = {field_body, 5}, {field_name, 3}, {field_parameters, 4, .inherited = true}, {field_return_type, 4, .inherited = true}, {field_type_parameters, 4, .inherited = true}, - [270] = + [273] = {field_body, 5}, {field_name, 2}, {field_type_parameters, 3}, - [273] = + [276] = {field_body, 5}, {field_decorator, 0, .inherited = true}, {field_name, 2}, {field_type_parameters, 3}, - [277] = + [280] = + {field_body, 5}, + {field_decorator, 0, .inherited = true}, + {field_name, 3}, + [283] = + {field_body, 5}, + {field_decorator, 0, .inherited = true}, + {field_name, 3}, + {field_type_parameters, 4}, + [287] = {field_body, 5}, {field_name, 2}, {field_parameters, 4, .inherited = true}, {field_return_type, 4, .inherited = true}, {field_type_parameters, 4, .inherited = true}, - [282] = + [292] = {field_left, 2}, {field_right, 4}, - [284] = + [294] = {field_body, 6}, {field_condition, 3}, {field_increment, 4}, {field_initializer, 2}, - [288] = + [298] = {field_body, 4}, {field_parameter, 2}, - [290] = + [300] = {field_name, 2}, {field_parameters, 4, .inherited = true}, {field_return_type, 4, .inherited = true}, {field_type_parameters, 4, .inherited = true}, - [294] = + [304] = {field_name, 3}, {field_parameters, 4, .inherited = true}, {field_return_type, 4, .inherited = true}, {field_type_parameters, 4, .inherited = true}, - [298] = + [308] = {field_name, 2}, {field_type, 4}, - [300] = + [310] = {field_name, 3}, {field_type, 4}, - [302] = + [312] = {field_name, 2}, {field_value, 4, .inherited = true}, - [304] = + [314] = {field_name, 2}, {field_type, 3}, {field_value, 4, .inherited = true}, - [307] = + [317] = {field_name, 1}, {field_type, 3}, {field_value, 4, .inherited = true}, - [310] = + [320] = {field_name, 3}, {field_value, 4, .inherited = true}, - [312] = + [322] = + {field_body, 6}, + {field_decorator, 0, .inherited = true}, + {field_name, 3}, + {field_type_parameters, 4}, + [326] = {field_body, 6}, {field_name, 3}, {field_parameters, 5, .inherited = true}, {field_return_type, 5, .inherited = true}, {field_type_parameters, 5, .inherited = true}, - [317] = + [331] = {field_body, 6}, {field_name, 4}, {field_parameters, 5, .inherited = true}, {field_return_type, 5, .inherited = true}, {field_type_parameters, 5, .inherited = true}, - [322] = + [336] = {field_sign, 0}, - [323] = + [337] = {field_name, 3}, {field_parameters, 5, .inherited = true}, {field_return_type, 5, .inherited = true}, {field_type_parameters, 5, .inherited = true}, - [327] = + [341] = {field_name, 4}, {field_parameters, 5, .inherited = true}, {field_return_type, 5, .inherited = true}, {field_type_parameters, 5, .inherited = true}, - [331] = + [345] = {field_name, 3}, {field_type, 5}, - [333] = + [347] = {field_alternative, 6}, {field_consequence, 4}, {field_left, 0}, {field_right, 2}, - [337] = + [351] = {field_name, 2}, {field_type, 4}, {field_value, 5, .inherited = true}, - [340] = + [354] = {field_name, 3}, {field_value, 5, .inherited = true}, - [342] = + [356] = {field_name, 3}, {field_type, 4}, {field_value, 5, .inherited = true}, - [345] = + [359] = {field_body, 7}, {field_name, 4}, {field_parameters, 6, .inherited = true}, {field_return_type, 6, .inherited = true}, {field_type_parameters, 6, .inherited = true}, - [350] = + [364] = {field_body, 7}, {field_name, 5}, {field_parameters, 6, .inherited = true}, {field_return_type, 6, .inherited = true}, {field_type_parameters, 6, .inherited = true}, - [355] = + [369] = {field_name, 4}, {field_parameters, 6, .inherited = true}, {field_return_type, 6, .inherited = true}, {field_type_parameters, 6, .inherited = true}, - [359] = + [373] = {field_name, 5}, {field_parameters, 6, .inherited = true}, {field_return_type, 6, .inherited = true}, {field_type_parameters, 6, .inherited = true}, - [363] = + [377] = {field_name, 3}, {field_type, 5}, {field_value, 6, .inherited = true}, - [366] = + [380] = {field_body, 8}, {field_name, 5}, {field_parameters, 7, .inherited = true}, {field_return_type, 7, .inherited = true}, {field_type_parameters, 7, .inherited = true}, - [371] = + [385] = {field_name, 5}, {field_parameters, 7, .inherited = true}, {field_return_type, 7, .inherited = true}, {field_type_parameters, 7, .inherited = true}, }; -static TSSymbol ts_alias_sequences[196][MAX_ALIAS_SEQUENCE_LENGTH] = { +static TSSymbol ts_alias_sequences[200][MAX_ALIAS_SEQUENCE_LENGTH] = { [0] = {0}, [1] = { [0] = sym_identifier, @@ -3270,43 +3292,55 @@ static TSSymbol ts_alias_sequences[196][MAX_ALIAS_SEQUENCE_LENGTH] = { [138] = { [2] = alias_sym_type_identifier, }, - [142] = { - [1] = alias_sym_type_identifier, + [140] = { + [3] = alias_sym_type_identifier, }, [143] = { + [1] = alias_sym_type_identifier, + }, + [144] = { [1] = sym_identifier, }, - [146] = { + [147] = { [1] = alias_sym_object_pattern, }, - [147] = { + [148] = { [1] = alias_sym_array_pattern, }, - [158] = { + [159] = { [2] = alias_sym_type_identifier, }, - [159] = { + [160] = { [3] = alias_sym_property_identifier, }, - [160] = { + [161] = { [2] = alias_sym_type_identifier, }, [162] = { + [3] = alias_sym_type_identifier, + }, + [163] = { + [3] = alias_sym_type_identifier, + }, + [165] = { [2] = sym_identifier, }, - [164] = { + [167] = { [2] = alias_sym_object_pattern, }, - [165] = { + [168] = { [2] = alias_sym_array_pattern, }, - [168] = { + [171] = { [2] = alias_sym_object_pattern, }, - [169] = { + [172] = { [2] = alias_sym_array_pattern, }, - [194] = { + [181] = { + [3] = alias_sym_type_identifier, + }, + [198] = { [3] = sym_identifier, }, }; @@ -3390,9 +3424,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < 0 || 31 < lookahead)) ADVANCE(203); END_STATE(); case 1: - if (lookahead == '\n') SKIP(21) - if (lookahead == '\'') ADVANCE(171); - if (lookahead == '/') ADVANCE(173); + if (lookahead == '\n') SKIP(18) + if (lookahead == '"') ADVANCE(164); + if (lookahead == '/') ADVANCE(166); if (lookahead == '\\') ADVANCE(2); if (lookahead == '\t' || lookahead == '\r' || @@ -3400,11 +3434,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 160 || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) ADVANCE(176); - if (lookahead != 0) ADVANCE(177); + lookahead == 65279) ADVANCE(169); + if (lookahead != 0) ADVANCE(170); END_STATE(); case 2: - if (lookahead == '\n') ADVANCE(172); + if (lookahead == '\n') ADVANCE(165); if (lookahead == '\r') ADVANCE(179); if (lookahead == 'u') ADVANCE(39); if (lookahead == 'x') ADVANCE(59); @@ -3412,9 +3446,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead != 0) ADVANCE(178); END_STATE(); case 3: - if (lookahead == '\n') SKIP(18) - if (lookahead == '"') ADVANCE(164); - if (lookahead == '/') ADVANCE(166); + if (lookahead == '\n') SKIP(21) + if (lookahead == '\'') ADVANCE(171); + if (lookahead == '/') ADVANCE(173); if (lookahead == '\\') ADVANCE(4); if (lookahead == '\t' || lookahead == '\r' || @@ -3422,11 +3456,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 160 || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) ADVANCE(169); - if (lookahead != 0) ADVANCE(170); + lookahead == 65279) ADVANCE(176); + if (lookahead != 0) ADVANCE(177); END_STATE(); case 4: - if (lookahead == '\n') ADVANCE(165); + if (lookahead == '\n') ADVANCE(172); if (lookahead == '\r') ADVANCE(180); if (lookahead == 'u') ADVANCE(39); if (lookahead == 'x') ADVANCE(59); @@ -3597,7 +3631,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == ']') ADVANCE(88); if (lookahead == '^') ADVANCE(134); if (lookahead == '`') ADVANCE(186); - if (lookahead == '{') ADVANCE(78); + if (lookahead == '{') ADVANCE(77); if (lookahead == '|') ADVANCE(139); if (lookahead == '}') ADVANCE(80); if (lookahead == '\t' || @@ -3637,7 +3671,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == ']') ADVANCE(88); if (lookahead == '^') ADVANCE(134); if (lookahead == '`') ADVANCE(186); - if (lookahead == '{') ADVANCE(78); + if (lookahead == '{') ADVANCE(77); if (lookahead == '|') ADVANCE(139); if (lookahead == '}') ADVANCE(80); if (lookahead == '\t' || @@ -3672,7 +3706,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\\') ADVANCE(34); if (lookahead == '^') ADVANCE(134); if (lookahead == '`') ADVANCE(186); - if (lookahead == '{') ADVANCE(77); + if (lookahead == '{') ADVANCE(78); if (lookahead == '|') ADVANCE(139); if (lookahead == '\t' || lookahead == '\n' || @@ -3709,7 +3743,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\\') ADVANCE(34); if (lookahead == '^') ADVANCE(134); if (lookahead == '`') ADVANCE(186); - if (lookahead == '{') ADVANCE(77); + if (lookahead == '{') ADVANCE(78); if (lookahead == '|') ADVANCE(139); if (lookahead == '\t' || lookahead == '\n' || @@ -4744,11 +4778,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 179: ACCEPT_TOKEN(sym_escape_sequence); - if (lookahead == '\n') ADVANCE(172); + if (lookahead == '\n') ADVANCE(165); END_STATE(); case 180: ACCEPT_TOKEN(sym_escape_sequence); - if (lookahead == '\n') ADVANCE(165); + if (lookahead == '\n') ADVANCE(172); END_STATE(); case 181: ACCEPT_TOKEN(sym_escape_sequence); @@ -5989,8 +6023,8 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [60] = {.lex_state = 14}, [61] = {.lex_state = 6, .external_lex_state = 2}, [62] = {.lex_state = 67, .external_lex_state = 2}, - [63] = {.lex_state = 67, .external_lex_state = 3}, - [64] = {.lex_state = 8, .external_lex_state = 2}, + [63] = {.lex_state = 8, .external_lex_state = 2}, + [64] = {.lex_state = 67, .external_lex_state = 3}, [65] = {.lex_state = 67, .external_lex_state = 2}, [66] = {.lex_state = 67, .external_lex_state = 3}, [67] = {.lex_state = 67, .external_lex_state = 3}, @@ -6005,12 +6039,12 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [76] = {.lex_state = 67, .external_lex_state = 3}, [77] = {.lex_state = 67, .external_lex_state = 3}, [78] = {.lex_state = 67, .external_lex_state = 3}, - [79] = {.lex_state = 6, .external_lex_state = 3}, + [79] = {.lex_state = 67, .external_lex_state = 3}, [80] = {.lex_state = 67, .external_lex_state = 3}, [81] = {.lex_state = 67, .external_lex_state = 3}, [82] = {.lex_state = 67, .external_lex_state = 3}, [83] = {.lex_state = 67, .external_lex_state = 3}, - [84] = {.lex_state = 67, .external_lex_state = 3}, + [84] = {.lex_state = 6, .external_lex_state = 3}, [85] = {.lex_state = 67, .external_lex_state = 3}, [86] = {.lex_state = 67, .external_lex_state = 3}, [87] = {.lex_state = 67, .external_lex_state = 3}, @@ -6021,12 +6055,12 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [92] = {.lex_state = 67, .external_lex_state = 3}, [93] = {.lex_state = 67, .external_lex_state = 3}, [94] = {.lex_state = 67, .external_lex_state = 3}, - [95] = {.lex_state = 6, .external_lex_state = 3}, + [95] = {.lex_state = 6, .external_lex_state = 2}, [96] = {.lex_state = 6, .external_lex_state = 2}, [97] = {.lex_state = 6, .external_lex_state = 2}, - [98] = {.lex_state = 6, .external_lex_state = 2}, - [99] = {.lex_state = 6, .external_lex_state = 2}, - [100] = {.lex_state = 68}, + [98] = {.lex_state = 6, .external_lex_state = 3}, + [99] = {.lex_state = 68}, + [100] = {.lex_state = 6, .external_lex_state = 2}, [101] = {.lex_state = 68}, [102] = {.lex_state = 68}, [103] = {.lex_state = 68}, @@ -6053,41 +6087,41 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [124] = {.lex_state = 68}, [125] = {.lex_state = 68}, [126] = {.lex_state = 68}, - [127] = {.lex_state = 68}, - [128] = {.lex_state = 7, .external_lex_state = 3}, - [129] = {.lex_state = 7, .external_lex_state = 3}, + [127] = {.lex_state = 6, .external_lex_state = 3}, + [128] = {.lex_state = 68}, + [129] = {.lex_state = 68}, [130] = {.lex_state = 68}, [131] = {.lex_state = 68}, [132] = {.lex_state = 68}, [133] = {.lex_state = 68}, [134] = {.lex_state = 68}, [135] = {.lex_state = 68}, - [136] = {.lex_state = 68}, - [137] = {.lex_state = 68}, + [136] = {.lex_state = 7, .external_lex_state = 3}, + [137] = {.lex_state = 6, .external_lex_state = 3}, [138] = {.lex_state = 68}, [139] = {.lex_state = 68}, [140] = {.lex_state = 68}, [141] = {.lex_state = 68}, - [142] = {.lex_state = 68}, - [143] = {.lex_state = 6, .external_lex_state = 3}, + [142] = {.lex_state = 7, .external_lex_state = 3}, + [143] = {.lex_state = 68}, [144] = {.lex_state = 68}, - [145] = {.lex_state = 6, .external_lex_state = 3}, + [145] = {.lex_state = 68}, [146] = {.lex_state = 68}, - [147] = {.lex_state = 68}, - [148] = {.lex_state = 6, .external_lex_state = 3}, + [147] = {.lex_state = 6, .external_lex_state = 3}, + [148] = {.lex_state = 68}, [149] = {.lex_state = 68}, [150] = {.lex_state = 68}, [151] = {.lex_state = 68}, [152] = {.lex_state = 68}, [153] = {.lex_state = 68}, - [154] = {.lex_state = 68}, + [154] = {.lex_state = 68, .external_lex_state = 4}, [155] = {.lex_state = 68}, - [156] = {.lex_state = 68}, - [157] = {.lex_state = 6, .external_lex_state = 3}, + [156] = {.lex_state = 6, .external_lex_state = 3}, + [157] = {.lex_state = 68}, [158] = {.lex_state = 68}, [159] = {.lex_state = 68}, - [160] = {.lex_state = 6, .external_lex_state = 3}, - [161] = {.lex_state = 68, .external_lex_state = 4}, + [160] = {.lex_state = 68}, + [161] = {.lex_state = 6, .external_lex_state = 3}, [162] = {.lex_state = 68}, [163] = {.lex_state = 68}, [164] = {.lex_state = 68}, @@ -6103,7 +6137,7 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [174] = {.lex_state = 68}, [175] = {.lex_state = 68}, [176] = {.lex_state = 68}, - [177] = {.lex_state = 6, .external_lex_state = 3}, + [177] = {.lex_state = 68}, [178] = {.lex_state = 68}, [179] = {.lex_state = 68}, [180] = {.lex_state = 68}, @@ -6119,7 +6153,7 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [190] = {.lex_state = 68}, [191] = {.lex_state = 68}, [192] = {.lex_state = 68}, - [193] = {.lex_state = 68}, + [193] = {.lex_state = 6, .external_lex_state = 3}, [194] = {.lex_state = 68}, [195] = {.lex_state = 68}, [196] = {.lex_state = 68}, @@ -6141,7 +6175,7 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [212] = {.lex_state = 68}, [213] = {.lex_state = 68}, [214] = {.lex_state = 68}, - [215] = {.lex_state = 6, .external_lex_state = 3}, + [215] = {.lex_state = 68}, [216] = {.lex_state = 68}, [217] = {.lex_state = 68}, [218] = {.lex_state = 68}, @@ -6165,15 +6199,15 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [236] = {.lex_state = 68}, [237] = {.lex_state = 68}, [238] = {.lex_state = 68}, - [239] = {.lex_state = 68}, + [239] = {.lex_state = 6, .external_lex_state = 3}, [240] = {.lex_state = 68}, [241] = {.lex_state = 68}, [242] = {.lex_state = 68}, - [243] = {.lex_state = 68}, + [243] = {.lex_state = 6, .external_lex_state = 3}, [244] = {.lex_state = 68}, [245] = {.lex_state = 68}, [246] = {.lex_state = 68}, - [247] = {.lex_state = 6, .external_lex_state = 3}, + [247] = {.lex_state = 68}, [248] = {.lex_state = 68}, [249] = {.lex_state = 68}, [250] = {.lex_state = 68}, @@ -6389,81 +6423,81 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [460] = {.lex_state = 6, .external_lex_state = 3}, [461] = {.lex_state = 6, .external_lex_state = 2}, [462] = {.lex_state = 6, .external_lex_state = 3}, - [463] = {.lex_state = 7, .external_lex_state = 2}, + [463] = {.lex_state = 6, .external_lex_state = 3}, [464] = {.lex_state = 6, .external_lex_state = 3}, - [465] = {.lex_state = 6, .external_lex_state = 2}, - [466] = {.lex_state = 6, .external_lex_state = 3}, + [465] = {.lex_state = 7, .external_lex_state = 2}, + [466] = {.lex_state = 6, .external_lex_state = 2}, [467] = {.lex_state = 68}, [468] = {.lex_state = 6, .external_lex_state = 3}, - [469] = {.lex_state = 68}, - [470] = {.lex_state = 68}, + [469] = {.lex_state = 6, .external_lex_state = 3}, + [470] = {.lex_state = 15}, [471] = {.lex_state = 6, .external_lex_state = 3}, - [472] = {.lex_state = 6, .external_lex_state = 3}, + [472] = {.lex_state = 15}, [473] = {.lex_state = 15}, [474] = {.lex_state = 6, .external_lex_state = 3}, - [475] = {.lex_state = 15}, + [475] = {.lex_state = 68}, [476] = {.lex_state = 6, .external_lex_state = 3}, [477] = {.lex_state = 15}, - [478] = {.lex_state = 6, .external_lex_state = 2}, - [479] = {.lex_state = 15}, - [480] = {.lex_state = 15}, - [481] = {.lex_state = 68}, + [478] = {.lex_state = 15}, + [479] = {.lex_state = 6, .external_lex_state = 2}, + [480] = {.lex_state = 68}, + [481] = {.lex_state = 6, .external_lex_state = 2}, [482] = {.lex_state = 68}, - [483] = {.lex_state = 7, .external_lex_state = 2}, - [484] = {.lex_state = 68}, - [485] = {.lex_state = 6, .external_lex_state = 2}, + [483] = {.lex_state = 68}, + [484] = {.lex_state = 68, .external_lex_state = 4}, + [485] = {.lex_state = 68}, [486] = {.lex_state = 6, .external_lex_state = 2}, - [487] = {.lex_state = 7, .external_lex_state = 2}, - [488] = {.lex_state = 6, .external_lex_state = 2}, + [487] = {.lex_state = 6, .external_lex_state = 2}, + [488] = {.lex_state = 7, .external_lex_state = 2}, [489] = {.lex_state = 7, .external_lex_state = 2}, [490] = {.lex_state = 68, .external_lex_state = 4}, - [491] = {.lex_state = 6, .external_lex_state = 2}, - [492] = {.lex_state = 68, .external_lex_state = 4}, + [491] = {.lex_state = 68}, + [492] = {.lex_state = 6, .external_lex_state = 2}, [493] = {.lex_state = 68}, - [494] = {.lex_state = 68}, + [494] = {.lex_state = 7, .external_lex_state = 2}, [495] = {.lex_state = 6, .external_lex_state = 2}, - [496] = {.lex_state = 6, .external_lex_state = 2}, - [497] = {.lex_state = 68}, + [496] = {.lex_state = 68}, + [497] = {.lex_state = 68, .external_lex_state = 4}, [498] = {.lex_state = 6, .external_lex_state = 2}, - [499] = {.lex_state = 68, .external_lex_state = 4}, + [499] = {.lex_state = 68}, [500] = {.lex_state = 68, .external_lex_state = 4}, - [501] = {.lex_state = 6, .external_lex_state = 3}, - [502] = {.lex_state = 68}, - [503] = {.lex_state = 68}, + [501] = {.lex_state = 68, .external_lex_state = 4}, + [502] = {.lex_state = 68, .external_lex_state = 4}, + [503] = {.lex_state = 68, .external_lex_state = 4}, [504] = {.lex_state = 68}, - [505] = {.lex_state = 68, .external_lex_state = 4}, + [505] = {.lex_state = 68}, [506] = {.lex_state = 68, .external_lex_state = 4}, - [507] = {.lex_state = 68, .external_lex_state = 4}, + [507] = {.lex_state = 6, .external_lex_state = 2}, [508] = {.lex_state = 68}, [509] = {.lex_state = 68}, - [510] = {.lex_state = 68, .external_lex_state = 4}, - [511] = {.lex_state = 6, .external_lex_state = 2}, - [512] = {.lex_state = 6, .external_lex_state = 2}, - [513] = {.lex_state = 7, .external_lex_state = 2}, - [514] = {.lex_state = 68}, + [510] = {.lex_state = 6, .external_lex_state = 3}, + [511] = {.lex_state = 7, .external_lex_state = 2}, + [512] = {.lex_state = 68}, + [513] = {.lex_state = 68}, + [514] = {.lex_state = 6, .external_lex_state = 2}, [515] = {.lex_state = 7, .external_lex_state = 2}, - [516] = {.lex_state = 68}, + [516] = {.lex_state = 6, .external_lex_state = 2}, [517] = {.lex_state = 68, .external_lex_state = 4}, [518] = {.lex_state = 68, .external_lex_state = 4}, [519] = {.lex_state = 68, .external_lex_state = 4}, - [520] = {.lex_state = 68, .external_lex_state = 4}, - [521] = {.lex_state = 68}, + [520] = {.lex_state = 68}, + [521] = {.lex_state = 68, .external_lex_state = 4}, [522] = {.lex_state = 68}, [523] = {.lex_state = 68}, - [524] = {.lex_state = 68}, + [524] = {.lex_state = 68, .external_lex_state = 4}, [525] = {.lex_state = 68, .external_lex_state = 4}, [526] = {.lex_state = 68, .external_lex_state = 4}, [527] = {.lex_state = 68, .external_lex_state = 4}, [528] = {.lex_state = 68}, [529] = {.lex_state = 68, .external_lex_state = 4}, - [530] = {.lex_state = 68}, - [531] = {.lex_state = 68}, - [532] = {.lex_state = 68, .external_lex_state = 4}, - [533] = {.lex_state = 68}, - [534] = {.lex_state = 68, .external_lex_state = 4}, - [535] = {.lex_state = 68, .external_lex_state = 4}, + [530] = {.lex_state = 68, .external_lex_state = 4}, + [531] = {.lex_state = 68, .external_lex_state = 4}, + [532] = {.lex_state = 68}, + [533] = {.lex_state = 68, .external_lex_state = 4}, + [534] = {.lex_state = 68}, + [535] = {.lex_state = 68}, [536] = {.lex_state = 68}, - [537] = {.lex_state = 68, .external_lex_state = 4}, + [537] = {.lex_state = 68}, [538] = {.lex_state = 68}, [539] = {.lex_state = 68}, [540] = {.lex_state = 68}, @@ -6542,237 +6576,237 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [613] = {.lex_state = 68}, [614] = {.lex_state = 68}, [615] = {.lex_state = 68}, - [616] = {.lex_state = 15}, + [616] = {.lex_state = 68}, [617] = {.lex_state = 68}, [618] = {.lex_state = 68}, [619] = {.lex_state = 68}, - [620] = {.lex_state = 68}, + [620] = {.lex_state = 15}, [621] = {.lex_state = 68}, [622] = {.lex_state = 68}, [623] = {.lex_state = 68}, [624] = {.lex_state = 68}, [625] = {.lex_state = 68}, [626] = {.lex_state = 68}, - [627] = {.lex_state = 6, .external_lex_state = 2}, - [628] = {.lex_state = 6, .external_lex_state = 3}, - [629] = {.lex_state = 6, .external_lex_state = 3}, - [630] = {.lex_state = 6, .external_lex_state = 3}, - [631] = {.lex_state = 6, .external_lex_state = 3}, + [627] = {.lex_state = 68}, + [628] = {.lex_state = 68}, + [629] = {.lex_state = 68}, + [630] = {.lex_state = 68}, + [631] = {.lex_state = 6, .external_lex_state = 2}, [632] = {.lex_state = 6, .external_lex_state = 3}, [633] = {.lex_state = 6, .external_lex_state = 3}, [634] = {.lex_state = 6, .external_lex_state = 3}, - [635] = {.lex_state = 6, .external_lex_state = 2}, - [636] = {.lex_state = 6, .external_lex_state = 2}, - [637] = {.lex_state = 7, .external_lex_state = 2}, + [635] = {.lex_state = 6, .external_lex_state = 3}, + [636] = {.lex_state = 6, .external_lex_state = 3}, + [637] = {.lex_state = 6, .external_lex_state = 3}, [638] = {.lex_state = 6, .external_lex_state = 3}, - [639] = {.lex_state = 6, .external_lex_state = 3}, - [640] = {.lex_state = 6, .external_lex_state = 3}, + [639] = {.lex_state = 6, .external_lex_state = 2}, + [640] = {.lex_state = 7, .external_lex_state = 2}, [641] = {.lex_state = 6, .external_lex_state = 2}, [642] = {.lex_state = 6, .external_lex_state = 3}, [643] = {.lex_state = 6, .external_lex_state = 3}, [644] = {.lex_state = 6, .external_lex_state = 3}, [645] = {.lex_state = 6, .external_lex_state = 3}, - [646] = {.lex_state = 6, .external_lex_state = 2}, - [647] = {.lex_state = 7, .external_lex_state = 2}, - [648] = {.lex_state = 6, .external_lex_state = 2}, + [646] = {.lex_state = 6, .external_lex_state = 3}, + [647] = {.lex_state = 6, .external_lex_state = 3}, + [648] = {.lex_state = 6, .external_lex_state = 3}, [649] = {.lex_state = 6, .external_lex_state = 2}, [650] = {.lex_state = 6, .external_lex_state = 2}, - [651] = {.lex_state = 6, .external_lex_state = 2}, - [652] = {.lex_state = 6, .external_lex_state = 3}, + [651] = {.lex_state = 7, .external_lex_state = 2}, + [652] = {.lex_state = 6, .external_lex_state = 2}, [653] = {.lex_state = 6, .external_lex_state = 2}, - [654] = {.lex_state = 7, .external_lex_state = 2}, + [654] = {.lex_state = 6, .external_lex_state = 2}, [655] = {.lex_state = 6, .external_lex_state = 2}, - [656] = {.lex_state = 6, .external_lex_state = 2}, - [657] = {.lex_state = 7, .external_lex_state = 2}, - [658] = {.lex_state = 6, .external_lex_state = 3}, - [659] = {.lex_state = 6, .external_lex_state = 3}, + [656] = {.lex_state = 6, .external_lex_state = 3}, + [657] = {.lex_state = 6, .external_lex_state = 2}, + [658] = {.lex_state = 6, .external_lex_state = 2}, + [659] = {.lex_state = 7, .external_lex_state = 2}, [660] = {.lex_state = 6, .external_lex_state = 3}, [661] = {.lex_state = 6, .external_lex_state = 2}, - [662] = {.lex_state = 6, .external_lex_state = 2}, - [663] = {.lex_state = 6, .external_lex_state = 2}, - [664] = {.lex_state = 7, .external_lex_state = 2}, - [665] = {.lex_state = 7, .external_lex_state = 2}, + [662] = {.lex_state = 7, .external_lex_state = 2}, + [663] = {.lex_state = 7, .external_lex_state = 2}, + [664] = {.lex_state = 6, .external_lex_state = 3}, + [665] = {.lex_state = 6, .external_lex_state = 2}, [666] = {.lex_state = 6, .external_lex_state = 3}, [667] = {.lex_state = 6, .external_lex_state = 2}, [668] = {.lex_state = 7, .external_lex_state = 2}, - [669] = {.lex_state = 7, .external_lex_state = 2}, - [670] = {.lex_state = 6, .external_lex_state = 3}, + [669] = {.lex_state = 6, .external_lex_state = 3}, + [670] = {.lex_state = 7, .external_lex_state = 2}, [671] = {.lex_state = 6, .external_lex_state = 2}, - [672] = {.lex_state = 7, .external_lex_state = 2}, + [672] = {.lex_state = 6, .external_lex_state = 3}, [673] = {.lex_state = 7, .external_lex_state = 2}, - [674] = {.lex_state = 6, .external_lex_state = 3}, - [675] = {.lex_state = 7, .external_lex_state = 2}, - [676] = {.lex_state = 7, .external_lex_state = 2}, + [674] = {.lex_state = 7, .external_lex_state = 2}, + [675] = {.lex_state = 6, .external_lex_state = 2}, + [676] = {.lex_state = 6, .external_lex_state = 3}, [677] = {.lex_state = 7, .external_lex_state = 2}, [678] = {.lex_state = 7, .external_lex_state = 2}, - [679] = {.lex_state = 6, .external_lex_state = 3}, - [680] = {.lex_state = 6, .external_lex_state = 3}, - [681] = {.lex_state = 6, .external_lex_state = 3}, - [682] = {.lex_state = 6, .external_lex_state = 3}, - [683] = {.lex_state = 15}, + [679] = {.lex_state = 7, .external_lex_state = 2}, + [680] = {.lex_state = 7, .external_lex_state = 2}, + [681] = {.lex_state = 7, .external_lex_state = 2}, + [682] = {.lex_state = 6, .external_lex_state = 2}, + [683] = {.lex_state = 6, .external_lex_state = 3}, [684] = {.lex_state = 6, .external_lex_state = 3}, - [685] = {.lex_state = 6, .external_lex_state = 2}, + [685] = {.lex_state = 6, .external_lex_state = 3}, [686] = {.lex_state = 6, .external_lex_state = 3}, [687] = {.lex_state = 6, .external_lex_state = 3}, [688] = {.lex_state = 6, .external_lex_state = 3}, [689] = {.lex_state = 6, .external_lex_state = 3}, [690] = {.lex_state = 6, .external_lex_state = 3}, - [691] = {.lex_state = 6, .external_lex_state = 3}, - [692] = {.lex_state = 6, .external_lex_state = 2}, - [693] = {.lex_state = 17}, - [694] = {.lex_state = 17}, + [691] = {.lex_state = 6, .external_lex_state = 2}, + [692] = {.lex_state = 6, .external_lex_state = 3}, + [693] = {.lex_state = 6, .external_lex_state = 3}, + [694] = {.lex_state = 15}, [695] = {.lex_state = 6, .external_lex_state = 3}, - [696] = {.lex_state = 17}, - [697] = {.lex_state = 6, .external_lex_state = 2}, - [698] = {.lex_state = 6, .external_lex_state = 2}, - [699] = {.lex_state = 6, .external_lex_state = 2}, - [700] = {.lex_state = 6, .external_lex_state = 2}, + [696] = {.lex_state = 6, .external_lex_state = 2}, + [697] = {.lex_state = 6, .external_lex_state = 3}, + [698] = {.lex_state = 17}, + [699] = {.lex_state = 17}, + [700] = {.lex_state = 6, .external_lex_state = 3}, [701] = {.lex_state = 6, .external_lex_state = 3}, [702] = {.lex_state = 6, .external_lex_state = 2}, - [703] = {.lex_state = 17}, - [704] = {.lex_state = 6, .external_lex_state = 2}, - [705] = {.lex_state = 7, .external_lex_state = 2}, - [706] = {.lex_state = 6, .external_lex_state = 3}, + [703] = {.lex_state = 6, .external_lex_state = 2}, + [704] = {.lex_state = 6, .external_lex_state = 3}, + [705] = {.lex_state = 17}, + [706] = {.lex_state = 7, .external_lex_state = 2}, [707] = {.lex_state = 7, .external_lex_state = 2}, - [708] = {.lex_state = 6, .external_lex_state = 3}, - [709] = {.lex_state = 6, .external_lex_state = 3}, - [710] = {.lex_state = 6, .external_lex_state = 2}, + [708] = {.lex_state = 17}, + [709] = {.lex_state = 6, .external_lex_state = 2}, + [710] = {.lex_state = 6, .external_lex_state = 3}, [711] = {.lex_state = 6, .external_lex_state = 3}, - [712] = {.lex_state = 17}, - [713] = {.lex_state = 7, .external_lex_state = 2}, - [714] = {.lex_state = 6, .external_lex_state = 3}, - [715] = {.lex_state = 17}, - [716] = {.lex_state = 7, .external_lex_state = 2}, - [717] = {.lex_state = 6, .external_lex_state = 3}, - [718] = {.lex_state = 6, .external_lex_state = 2}, - [719] = {.lex_state = 17}, + [712] = {.lex_state = 6, .external_lex_state = 2}, + [713] = {.lex_state = 6, .external_lex_state = 3}, + [714] = {.lex_state = 7, .external_lex_state = 2}, + [715] = {.lex_state = 7, .external_lex_state = 2}, + [716] = {.lex_state = 6, .external_lex_state = 2}, + [717] = {.lex_state = 6, .external_lex_state = 2}, + [718] = {.lex_state = 6, .external_lex_state = 3}, + [719] = {.lex_state = 6, .external_lex_state = 2}, [720] = {.lex_state = 6, .external_lex_state = 2}, - [721] = {.lex_state = 7, .external_lex_state = 2}, - [722] = {.lex_state = 6, .external_lex_state = 2}, - [723] = {.lex_state = 15}, - [724] = {.lex_state = 6, .external_lex_state = 3}, - [725] = {.lex_state = 6, .external_lex_state = 3}, - [726] = {.lex_state = 6, .external_lex_state = 3}, - [727] = {.lex_state = 7, .external_lex_state = 2}, + [721] = {.lex_state = 6, .external_lex_state = 2}, + [722] = {.lex_state = 17}, + [723] = {.lex_state = 17}, + [724] = {.lex_state = 17}, + [725] = {.lex_state = 6, .external_lex_state = 2}, + [726] = {.lex_state = 7, .external_lex_state = 2}, + [727] = {.lex_state = 6, .external_lex_state = 3}, [728] = {.lex_state = 6, .external_lex_state = 3}, - [729] = {.lex_state = 6, .external_lex_state = 3}, - [730] = {.lex_state = 6, .external_lex_state = 2}, - [731] = {.lex_state = 6, .external_lex_state = 3}, - [732] = {.lex_state = 6, .external_lex_state = 2}, - [733] = {.lex_state = 6, .external_lex_state = 2}, - [734] = {.lex_state = 6, .external_lex_state = 2}, + [729] = {.lex_state = 6, .external_lex_state = 2}, + [730] = {.lex_state = 6, .external_lex_state = 3}, + [731] = {.lex_state = 6, .external_lex_state = 2}, + [732] = {.lex_state = 15}, + [733] = {.lex_state = 6, .external_lex_state = 3}, + [734] = {.lex_state = 6, .external_lex_state = 3}, [735] = {.lex_state = 6, .external_lex_state = 3}, [736] = {.lex_state = 6, .external_lex_state = 3}, - [737] = {.lex_state = 6, .external_lex_state = 3}, - [738] = {.lex_state = 6, .external_lex_state = 2}, - [739] = {.lex_state = 6, .external_lex_state = 2}, + [737] = {.lex_state = 15}, + [738] = {.lex_state = 7, .external_lex_state = 2}, + [739] = {.lex_state = 6, .external_lex_state = 3}, [740] = {.lex_state = 15}, [741] = {.lex_state = 6, .external_lex_state = 3}, [742] = {.lex_state = 6, .external_lex_state = 3}, - [743] = {.lex_state = 15}, + [743] = {.lex_state = 6, .external_lex_state = 2}, [744] = {.lex_state = 6, .external_lex_state = 3}, - [745] = {.lex_state = 6, .external_lex_state = 2}, - [746] = {.lex_state = 6, .external_lex_state = 3}, + [745] = {.lex_state = 6, .external_lex_state = 3}, + [746] = {.lex_state = 6, .external_lex_state = 2}, [747] = {.lex_state = 6, .external_lex_state = 3}, [748] = {.lex_state = 6, .external_lex_state = 3}, [749] = {.lex_state = 6, .external_lex_state = 3}, - [750] = {.lex_state = 15}, + [750] = {.lex_state = 6, .external_lex_state = 3}, [751] = {.lex_state = 6, .external_lex_state = 3}, - [752] = {.lex_state = 6, .external_lex_state = 3}, - [753] = {.lex_state = 6, .external_lex_state = 3}, - [754] = {.lex_state = 6, .external_lex_state = 3}, - [755] = {.lex_state = 6, .external_lex_state = 2}, - [756] = {.lex_state = 6, .external_lex_state = 3}, - [757] = {.lex_state = 6, .external_lex_state = 3}, - [758] = {.lex_state = 15}, - [759] = {.lex_state = 6, .external_lex_state = 3}, - [760] = {.lex_state = 6, .external_lex_state = 2}, - [761] = {.lex_state = 6, .external_lex_state = 2}, + [752] = {.lex_state = 15}, + [753] = {.lex_state = 6, .external_lex_state = 2}, + [754] = {.lex_state = 6, .external_lex_state = 2}, + [755] = {.lex_state = 6, .external_lex_state = 3}, + [756] = {.lex_state = 6, .external_lex_state = 2}, + [757] = {.lex_state = 15}, + [758] = {.lex_state = 6, .external_lex_state = 2}, + [759] = {.lex_state = 6, .external_lex_state = 2}, + [760] = {.lex_state = 6, .external_lex_state = 3}, + [761] = {.lex_state = 7, .external_lex_state = 2}, [762] = {.lex_state = 6, .external_lex_state = 3}, - [763] = {.lex_state = 7, .external_lex_state = 2}, - [764] = {.lex_state = 6, .external_lex_state = 3}, - [765] = {.lex_state = 6, .external_lex_state = 2}, - [766] = {.lex_state = 15}, - [767] = {.lex_state = 6, .external_lex_state = 2}, - [768] = {.lex_state = 6, .external_lex_state = 2}, - [769] = {.lex_state = 15}, + [763] = {.lex_state = 6, .external_lex_state = 3}, + [764] = {.lex_state = 6, .external_lex_state = 2}, + [765] = {.lex_state = 6, .external_lex_state = 3}, + [766] = {.lex_state = 6, .external_lex_state = 3}, + [767] = {.lex_state = 6, .external_lex_state = 3}, + [768] = {.lex_state = 6, .external_lex_state = 3}, + [769] = {.lex_state = 7, .external_lex_state = 2}, [770] = {.lex_state = 15}, [771] = {.lex_state = 15}, - [772] = {.lex_state = 6, .external_lex_state = 3}, + [772] = {.lex_state = 15}, [773] = {.lex_state = 15}, - [774] = {.lex_state = 15}, + [774] = {.lex_state = 6, .external_lex_state = 3}, [775] = {.lex_state = 6, .external_lex_state = 2}, - [776] = {.lex_state = 6, .external_lex_state = 3}, - [777] = {.lex_state = 15}, - [778] = {.lex_state = 15}, - [779] = {.lex_state = 6, .external_lex_state = 3}, - [780] = {.lex_state = 15}, - [781] = {.lex_state = 15}, - [782] = {.lex_state = 15}, - [783] = {.lex_state = 6, .external_lex_state = 2}, + [776] = {.lex_state = 6, .external_lex_state = 2}, + [777] = {.lex_state = 6, .external_lex_state = 2}, + [778] = {.lex_state = 6, .external_lex_state = 2}, + [779] = {.lex_state = 15}, + [780] = {.lex_state = 6, .external_lex_state = 3}, + [781] = {.lex_state = 6, .external_lex_state = 2}, + [782] = {.lex_state = 6, .external_lex_state = 2}, + [783] = {.lex_state = 15}, [784] = {.lex_state = 15}, - [785] = {.lex_state = 15}, - [786] = {.lex_state = 6, .external_lex_state = 2}, - [787] = {.lex_state = 15}, - [788] = {.lex_state = 15}, - [789] = {.lex_state = 6, .external_lex_state = 3}, - [790] = {.lex_state = 15}, - [791] = {.lex_state = 15}, + [785] = {.lex_state = 6, .external_lex_state = 2}, + [786] = {.lex_state = 15}, + [787] = {.lex_state = 6, .external_lex_state = 3}, + [788] = {.lex_state = 6, .external_lex_state = 3}, + [789] = {.lex_state = 15}, + [790] = {.lex_state = 6, .external_lex_state = 2}, + [791] = {.lex_state = 6, .external_lex_state = 2}, [792] = {.lex_state = 15}, [793] = {.lex_state = 6, .external_lex_state = 2}, - [794] = {.lex_state = 7, .external_lex_state = 2}, + [794] = {.lex_state = 6, .external_lex_state = 3}, [795] = {.lex_state = 6, .external_lex_state = 2}, - [796] = {.lex_state = 6, .external_lex_state = 2}, + [796] = {.lex_state = 15}, [797] = {.lex_state = 6, .external_lex_state = 2}, - [798] = {.lex_state = 6, .external_lex_state = 2}, - [799] = {.lex_state = 6, .external_lex_state = 3}, + [798] = {.lex_state = 15}, + [799] = {.lex_state = 15}, [800] = {.lex_state = 15}, [801] = {.lex_state = 15}, [802] = {.lex_state = 15}, [803] = {.lex_state = 15}, - [804] = {.lex_state = 7, .external_lex_state = 2}, - [805] = {.lex_state = 6, .external_lex_state = 2}, + [804] = {.lex_state = 6, .external_lex_state = 2}, + [805] = {.lex_state = 15}, [806] = {.lex_state = 15}, - [807] = {.lex_state = 6, .external_lex_state = 2}, + [807] = {.lex_state = 15}, [808] = {.lex_state = 6, .external_lex_state = 2}, - [809] = {.lex_state = 6, .external_lex_state = 2}, + [809] = {.lex_state = 7, .external_lex_state = 2}, [810] = {.lex_state = 6, .external_lex_state = 2}, [811] = {.lex_state = 15}, [812] = {.lex_state = 15}, [813] = {.lex_state = 15}, [814] = {.lex_state = 15}, - [815] = {.lex_state = 15}, + [815] = {.lex_state = 6, .external_lex_state = 2}, [816] = {.lex_state = 15}, [817] = {.lex_state = 15}, [818] = {.lex_state = 15}, - [819] = {.lex_state = 15}, - [820] = {.lex_state = 15}, - [821] = {.lex_state = 6, .external_lex_state = 3}, + [819] = {.lex_state = 6, .external_lex_state = 2}, + [820] = {.lex_state = 6, .external_lex_state = 2}, + [821] = {.lex_state = 15}, [822] = {.lex_state = 15}, [823] = {.lex_state = 15}, [824] = {.lex_state = 15}, [825] = {.lex_state = 15}, [826] = {.lex_state = 15}, - [827] = {.lex_state = 6, .external_lex_state = 2}, - [828] = {.lex_state = 6, .external_lex_state = 2}, + [827] = {.lex_state = 15}, + [828] = {.lex_state = 15}, [829] = {.lex_state = 15}, - [830] = {.lex_state = 15}, + [830] = {.lex_state = 6, .external_lex_state = 2}, [831] = {.lex_state = 15}, [832] = {.lex_state = 15}, [833] = {.lex_state = 15}, - [834] = {.lex_state = 15}, - [835] = {.lex_state = 15}, + [834] = {.lex_state = 6, .external_lex_state = 2}, + [835] = {.lex_state = 6, .external_lex_state = 2}, [836] = {.lex_state = 15}, - [837] = {.lex_state = 6, .external_lex_state = 2}, - [838] = {.lex_state = 15}, + [837] = {.lex_state = 7, .external_lex_state = 2}, + [838] = {.lex_state = 7, .external_lex_state = 2}, [839] = {.lex_state = 15}, [840] = {.lex_state = 15}, [841] = {.lex_state = 15}, [842] = {.lex_state = 15}, [843] = {.lex_state = 15}, [844] = {.lex_state = 15}, - [845] = {.lex_state = 15}, - [846] = {.lex_state = 15}, + [845] = {.lex_state = 7, .external_lex_state = 2}, + [846] = {.lex_state = 6, .external_lex_state = 2}, [847] = {.lex_state = 15}, [848] = {.lex_state = 15}, [849] = {.lex_state = 15}, @@ -6783,63 +6817,63 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [854] = {.lex_state = 15}, [855] = {.lex_state = 15}, [856] = {.lex_state = 15}, - [857] = {.lex_state = 17}, + [857] = {.lex_state = 15}, [858] = {.lex_state = 15}, [859] = {.lex_state = 15}, [860] = {.lex_state = 15}, - [861] = {.lex_state = 6, .external_lex_state = 2}, + [861] = {.lex_state = 15}, [862] = {.lex_state = 15}, [863] = {.lex_state = 15}, [864] = {.lex_state = 15}, [865] = {.lex_state = 15}, [866] = {.lex_state = 15}, - [867] = {.lex_state = 15}, + [867] = {.lex_state = 6, .external_lex_state = 2}, [868] = {.lex_state = 15}, [869] = {.lex_state = 15}, [870] = {.lex_state = 15}, [871] = {.lex_state = 15}, - [872] = {.lex_state = 15}, - [873] = {.lex_state = 7, .external_lex_state = 2}, + [872] = {.lex_state = 6, .external_lex_state = 2}, + [873] = {.lex_state = 15}, [874] = {.lex_state = 15}, [875] = {.lex_state = 15}, - [876] = {.lex_state = 6, .external_lex_state = 2}, + [876] = {.lex_state = 17}, [877] = {.lex_state = 15}, - [878] = {.lex_state = 6, .external_lex_state = 2}, + [878] = {.lex_state = 15}, [879] = {.lex_state = 15}, - [880] = {.lex_state = 15}, + [880] = {.lex_state = 6, .external_lex_state = 2}, [881] = {.lex_state = 15}, - [882] = {.lex_state = 7, .external_lex_state = 2}, + [882] = {.lex_state = 15}, [883] = {.lex_state = 15}, [884] = {.lex_state = 15}, - [885] = {.lex_state = 6, .external_lex_state = 2}, + [885] = {.lex_state = 15}, [886] = {.lex_state = 15}, - [887] = {.lex_state = 6, .external_lex_state = 2}, - [888] = {.lex_state = 17}, + [887] = {.lex_state = 17}, + [888] = {.lex_state = 15}, [889] = {.lex_state = 15}, - [890] = {.lex_state = 15}, - [891] = {.lex_state = 6, .external_lex_state = 2}, - [892] = {.lex_state = 15}, - [893] = {.lex_state = 6, .external_lex_state = 2}, + [890] = {.lex_state = 6, .external_lex_state = 2}, + [891] = {.lex_state = 15}, + [892] = {.lex_state = 6, .external_lex_state = 2}, + [893] = {.lex_state = 15}, [894] = {.lex_state = 15}, [895] = {.lex_state = 15}, [896] = {.lex_state = 15}, - [897] = {.lex_state = 15}, - [898] = {.lex_state = 15}, - [899] = {.lex_state = 15}, + [897] = {.lex_state = 6, .external_lex_state = 2}, + [898] = {.lex_state = 6, .external_lex_state = 2}, + [899] = {.lex_state = 6, .external_lex_state = 2}, [900] = {.lex_state = 15}, [901] = {.lex_state = 15}, [902] = {.lex_state = 15}, - [903] = {.lex_state = 6, .external_lex_state = 2}, + [903] = {.lex_state = 15}, [904] = {.lex_state = 15}, [905] = {.lex_state = 15}, - [906] = {.lex_state = 15}, + [906] = {.lex_state = 6, .external_lex_state = 3}, [907] = {.lex_state = 15}, [908] = {.lex_state = 15}, [909] = {.lex_state = 15}, [910] = {.lex_state = 6, .external_lex_state = 2}, [911] = {.lex_state = 15}, [912] = {.lex_state = 15}, - [913] = {.lex_state = 15}, + [913] = {.lex_state = 6, .external_lex_state = 2}, [914] = {.lex_state = 6, .external_lex_state = 2}, [915] = {.lex_state = 15}, [916] = {.lex_state = 15}, @@ -6847,58 +6881,58 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [918] = {.lex_state = 15}, [919] = {.lex_state = 15}, [920] = {.lex_state = 15}, - [921] = {.lex_state = 7, .external_lex_state = 2}, - [922] = {.lex_state = 15}, + [921] = {.lex_state = 15}, + [922] = {.lex_state = 6, .external_lex_state = 2}, [923] = {.lex_state = 15}, - [924] = {.lex_state = 6, .external_lex_state = 2}, + [924] = {.lex_state = 15}, [925] = {.lex_state = 15}, - [926] = {.lex_state = 6, .external_lex_state = 2}, + [926] = {.lex_state = 15}, [927] = {.lex_state = 15}, [928] = {.lex_state = 15}, [929] = {.lex_state = 15}, - [930] = {.lex_state = 6, .external_lex_state = 3}, + [930] = {.lex_state = 15}, [931] = {.lex_state = 15}, [932] = {.lex_state = 15}, - [933] = {.lex_state = 6, .external_lex_state = 2}, - [934] = {.lex_state = 15}, + [933] = {.lex_state = 15}, + [934] = {.lex_state = 6, .external_lex_state = 3}, [935] = {.lex_state = 15}, [936] = {.lex_state = 15}, [937] = {.lex_state = 15}, [938] = {.lex_state = 15}, - [939] = {.lex_state = 6, .external_lex_state = 2}, - [940] = {.lex_state = 6, .external_lex_state = 2}, + [939] = {.lex_state = 15}, + [940] = {.lex_state = 15}, [941] = {.lex_state = 15}, [942] = {.lex_state = 15}, - [943] = {.lex_state = 6, .external_lex_state = 3}, + [943] = {.lex_state = 15}, [944] = {.lex_state = 15}, - [945] = {.lex_state = 6, .external_lex_state = 2}, + [945] = {.lex_state = 15}, [946] = {.lex_state = 6, .external_lex_state = 3}, - [947] = {.lex_state = 6, .external_lex_state = 2}, - [948] = {.lex_state = 6, .external_lex_state = 2}, + [947] = {.lex_state = 15}, + [948] = {.lex_state = 15}, [949] = {.lex_state = 6, .external_lex_state = 2}, [950] = {.lex_state = 6, .external_lex_state = 2}, [951] = {.lex_state = 6, .external_lex_state = 2}, - [952] = {.lex_state = 6, .external_lex_state = 3}, - [953] = {.lex_state = 6, .external_lex_state = 2}, + [952] = {.lex_state = 6, .external_lex_state = 2}, + [953] = {.lex_state = 6, .external_lex_state = 3}, [954] = {.lex_state = 6, .external_lex_state = 2}, - [955] = {.lex_state = 6, .external_lex_state = 2}, + [955] = {.lex_state = 6, .external_lex_state = 3}, [956] = {.lex_state = 6, .external_lex_state = 2}, - [957] = {.lex_state = 67, .external_lex_state = 3}, - [958] = {.lex_state = 15}, - [959] = {.lex_state = 15}, - [960] = {.lex_state = 15}, - [961] = {.lex_state = 68, .external_lex_state = 4}, + [957] = {.lex_state = 6, .external_lex_state = 2}, + [958] = {.lex_state = 6, .external_lex_state = 2}, + [959] = {.lex_state = 6, .external_lex_state = 2}, + [960] = {.lex_state = 6, .external_lex_state = 2}, + [961] = {.lex_state = 67, .external_lex_state = 3}, [962] = {.lex_state = 68, .external_lex_state = 4}, [963] = {.lex_state = 68, .external_lex_state = 4}, - [964] = {.lex_state = 68, .external_lex_state = 4}, + [964] = {.lex_state = 15}, [965] = {.lex_state = 15}, - [966] = {.lex_state = 15}, - [967] = {.lex_state = 68, .external_lex_state = 4}, + [966] = {.lex_state = 68, .external_lex_state = 4}, + [967] = {.lex_state = 15}, [968] = {.lex_state = 68, .external_lex_state = 4}, [969] = {.lex_state = 15}, [970] = {.lex_state = 15}, - [971] = {.lex_state = 15}, - [972] = {.lex_state = 15}, + [971] = {.lex_state = 68, .external_lex_state = 4}, + [972] = {.lex_state = 68, .external_lex_state = 4}, [973] = {.lex_state = 15}, [974] = {.lex_state = 15}, [975] = {.lex_state = 15}, @@ -6910,36 +6944,36 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [981] = {.lex_state = 15}, [982] = {.lex_state = 15}, [983] = {.lex_state = 15}, - [984] = {.lex_state = 67, .external_lex_state = 3}, - [985] = {.lex_state = 67, .external_lex_state = 2}, - [986] = {.lex_state = 67, .external_lex_state = 2}, - [987] = {.lex_state = 67, .external_lex_state = 2}, - [988] = {.lex_state = 67, .external_lex_state = 3}, - [989] = {.lex_state = 67, .external_lex_state = 2}, + [984] = {.lex_state = 15}, + [985] = {.lex_state = 15}, + [986] = {.lex_state = 15}, + [987] = {.lex_state = 15}, + [988] = {.lex_state = 67, .external_lex_state = 2}, + [989] = {.lex_state = 67, .external_lex_state = 3}, [990] = {.lex_state = 67, .external_lex_state = 2}, [991] = {.lex_state = 67, .external_lex_state = 2}, - [992] = {.lex_state = 15}, + [992] = {.lex_state = 67, .external_lex_state = 3}, [993] = {.lex_state = 67, .external_lex_state = 2}, - [994] = {.lex_state = 15}, - [995] = {.lex_state = 67, .external_lex_state = 2}, + [994] = {.lex_state = 67, .external_lex_state = 2}, + [995] = {.lex_state = 67, .external_lex_state = 3}, [996] = {.lex_state = 67, .external_lex_state = 2}, [997] = {.lex_state = 15}, - [998] = {.lex_state = 15}, + [998] = {.lex_state = 67, .external_lex_state = 2}, [999] = {.lex_state = 67, .external_lex_state = 2}, - [1000] = {.lex_state = 67, .external_lex_state = 2}, + [1000] = {.lex_state = 15}, [1001] = {.lex_state = 15}, [1002] = {.lex_state = 67, .external_lex_state = 2}, [1003] = {.lex_state = 67, .external_lex_state = 2}, - [1004] = {.lex_state = 15}, - [1005] = {.lex_state = 67, .external_lex_state = 3}, + [1004] = {.lex_state = 67, .external_lex_state = 2}, + [1005] = {.lex_state = 67, .external_lex_state = 2}, [1006] = {.lex_state = 67, .external_lex_state = 2}, [1007] = {.lex_state = 67, .external_lex_state = 2}, - [1008] = {.lex_state = 67, .external_lex_state = 2}, - [1009] = {.lex_state = 67, .external_lex_state = 2}, + [1008] = {.lex_state = 15}, + [1009] = {.lex_state = 15}, [1010] = {.lex_state = 67, .external_lex_state = 2}, [1011] = {.lex_state = 67, .external_lex_state = 2}, [1012] = {.lex_state = 67, .external_lex_state = 2}, - [1013] = {.lex_state = 67, .external_lex_state = 2}, + [1013] = {.lex_state = 15}, [1014] = {.lex_state = 67, .external_lex_state = 2}, [1015] = {.lex_state = 67, .external_lex_state = 2}, [1016] = {.lex_state = 67, .external_lex_state = 2}, @@ -6948,12 +6982,12 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [1019] = {.lex_state = 67, .external_lex_state = 2}, [1020] = {.lex_state = 67, .external_lex_state = 2}, [1021] = {.lex_state = 67, .external_lex_state = 2}, - [1022] = {.lex_state = 67, .external_lex_state = 3}, - [1023] = {.lex_state = 67, .external_lex_state = 3}, + [1022] = {.lex_state = 67, .external_lex_state = 2}, + [1023] = {.lex_state = 67, .external_lex_state = 2}, [1024] = {.lex_state = 67, .external_lex_state = 2}, [1025] = {.lex_state = 67, .external_lex_state = 2}, [1026] = {.lex_state = 67, .external_lex_state = 3}, - [1027] = {.lex_state = 67, .external_lex_state = 3}, + [1027] = {.lex_state = 67, .external_lex_state = 2}, [1028] = {.lex_state = 67, .external_lex_state = 2}, [1029] = {.lex_state = 67, .external_lex_state = 2}, [1030] = {.lex_state = 67, .external_lex_state = 2}, @@ -6964,12 +6998,12 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [1035] = {.lex_state = 67, .external_lex_state = 2}, [1036] = {.lex_state = 67, .external_lex_state = 2}, [1037] = {.lex_state = 67, .external_lex_state = 2}, - [1038] = {.lex_state = 67, .external_lex_state = 3}, + [1038] = {.lex_state = 67, .external_lex_state = 2}, [1039] = {.lex_state = 67, .external_lex_state = 2}, [1040] = {.lex_state = 67, .external_lex_state = 2}, [1041] = {.lex_state = 67, .external_lex_state = 2}, [1042] = {.lex_state = 67, .external_lex_state = 2}, - [1043] = {.lex_state = 67, .external_lex_state = 2}, + [1043] = {.lex_state = 67, .external_lex_state = 3}, [1044] = {.lex_state = 67, .external_lex_state = 2}, [1045] = {.lex_state = 67, .external_lex_state = 2}, [1046] = {.lex_state = 67, .external_lex_state = 2}, @@ -6979,7 +7013,7 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [1050] = {.lex_state = 67, .external_lex_state = 2}, [1051] = {.lex_state = 67, .external_lex_state = 2}, [1052] = {.lex_state = 67, .external_lex_state = 2}, - [1053] = {.lex_state = 67, .external_lex_state = 2}, + [1053] = {.lex_state = 67, .external_lex_state = 3}, [1054] = {.lex_state = 67, .external_lex_state = 2}, [1055] = {.lex_state = 67, .external_lex_state = 2}, [1056] = {.lex_state = 67, .external_lex_state = 2}, @@ -6988,13 +7022,13 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [1059] = {.lex_state = 67, .external_lex_state = 2}, [1060] = {.lex_state = 67, .external_lex_state = 2}, [1061] = {.lex_state = 67, .external_lex_state = 2}, - [1062] = {.lex_state = 67, .external_lex_state = 2}, + [1062] = {.lex_state = 67, .external_lex_state = 3}, [1063] = {.lex_state = 67, .external_lex_state = 2}, [1064] = {.lex_state = 67, .external_lex_state = 2}, [1065] = {.lex_state = 67, .external_lex_state = 2}, [1066] = {.lex_state = 67, .external_lex_state = 2}, [1067] = {.lex_state = 67, .external_lex_state = 2}, - [1068] = {.lex_state = 67, .external_lex_state = 2}, + [1068] = {.lex_state = 67, .external_lex_state = 3}, [1069] = {.lex_state = 67, .external_lex_state = 2}, [1070] = {.lex_state = 67, .external_lex_state = 2}, [1071] = {.lex_state = 67, .external_lex_state = 2}, @@ -7010,8 +7044,8 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [1081] = {.lex_state = 67, .external_lex_state = 2}, [1082] = {.lex_state = 67, .external_lex_state = 2}, [1083] = {.lex_state = 67, .external_lex_state = 2}, - [1084] = {.lex_state = 67, .external_lex_state = 3}, - [1085] = {.lex_state = 67, .external_lex_state = 2}, + [1084] = {.lex_state = 67, .external_lex_state = 2}, + [1085] = {.lex_state = 67, .external_lex_state = 3}, [1086] = {.lex_state = 67, .external_lex_state = 2}, [1087] = {.lex_state = 67, .external_lex_state = 2}, [1088] = {.lex_state = 67, .external_lex_state = 2}, @@ -7022,80 +7056,80 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [1093] = {.lex_state = 67, .external_lex_state = 2}, [1094] = {.lex_state = 67, .external_lex_state = 2}, [1095] = {.lex_state = 67, .external_lex_state = 2}, - [1096] = {.lex_state = 67, .external_lex_state = 3}, - [1097] = {.lex_state = 67, .external_lex_state = 3}, + [1096] = {.lex_state = 67, .external_lex_state = 2}, + [1097] = {.lex_state = 67, .external_lex_state = 2}, [1098] = {.lex_state = 67, .external_lex_state = 2}, [1099] = {.lex_state = 67, .external_lex_state = 3}, - [1100] = {.lex_state = 67, .external_lex_state = 2}, + [1100] = {.lex_state = 67, .external_lex_state = 3}, [1101] = {.lex_state = 67, .external_lex_state = 2}, [1102] = {.lex_state = 67, .external_lex_state = 3}, - [1103] = {.lex_state = 67, .external_lex_state = 3}, - [1104] = {.lex_state = 67, .external_lex_state = 3}, - [1105] = {.lex_state = 67, .external_lex_state = 2}, + [1103] = {.lex_state = 67, .external_lex_state = 2}, + [1104] = {.lex_state = 67, .external_lex_state = 2}, + [1105] = {.lex_state = 67, .external_lex_state = 3}, [1106] = {.lex_state = 67, .external_lex_state = 3}, [1107] = {.lex_state = 67, .external_lex_state = 3}, [1108] = {.lex_state = 67, .external_lex_state = 3}, - [1109] = {.lex_state = 67, .external_lex_state = 2}, - [1110] = {.lex_state = 67, .external_lex_state = 3}, - [1111] = {.lex_state = 67, .external_lex_state = 3}, - [1112] = {.lex_state = 67, .external_lex_state = 3}, + [1109] = {.lex_state = 67, .external_lex_state = 3}, + [1110] = {.lex_state = 67, .external_lex_state = 2}, + [1111] = {.lex_state = 67, .external_lex_state = 2}, + [1112] = {.lex_state = 67, .external_lex_state = 2}, [1113] = {.lex_state = 67, .external_lex_state = 2}, - [1114] = {.lex_state = 67, .external_lex_state = 3}, + [1114] = {.lex_state = 67, .external_lex_state = 2}, [1115] = {.lex_state = 67, .external_lex_state = 3}, [1116] = {.lex_state = 67, .external_lex_state = 2}, - [1117] = {.lex_state = 67, .external_lex_state = 2}, + [1117] = {.lex_state = 67, .external_lex_state = 3}, [1118] = {.lex_state = 67, .external_lex_state = 3}, - [1119] = {.lex_state = 67, .external_lex_state = 3}, + [1119] = {.lex_state = 67, .external_lex_state = 2}, [1120] = {.lex_state = 67, .external_lex_state = 3}, [1121] = {.lex_state = 67, .external_lex_state = 3}, - [1122] = {.lex_state = 67, .external_lex_state = 3}, - [1123] = {.lex_state = 67, .external_lex_state = 3}, - [1124] = {.lex_state = 67, .external_lex_state = 3}, - [1125] = {.lex_state = 67, .external_lex_state = 3}, - [1126] = {.lex_state = 67, .external_lex_state = 3}, + [1122] = {.lex_state = 67, .external_lex_state = 2}, + [1123] = {.lex_state = 67, .external_lex_state = 2}, + [1124] = {.lex_state = 67, .external_lex_state = 2}, + [1125] = {.lex_state = 67, .external_lex_state = 2}, + [1126] = {.lex_state = 67, .external_lex_state = 2}, [1127] = {.lex_state = 67, .external_lex_state = 3}, - [1128] = {.lex_state = 67, .external_lex_state = 2}, - [1129] = {.lex_state = 67, .external_lex_state = 3}, + [1128] = {.lex_state = 67, .external_lex_state = 3}, + [1129] = {.lex_state = 67, .external_lex_state = 2}, [1130] = {.lex_state = 67, .external_lex_state = 3}, - [1131] = {.lex_state = 67, .external_lex_state = 2}, - [1132] = {.lex_state = 67, .external_lex_state = 2}, - [1133] = {.lex_state = 67, .external_lex_state = 2}, - [1134] = {.lex_state = 67, .external_lex_state = 2}, + [1131] = {.lex_state = 67, .external_lex_state = 3}, + [1132] = {.lex_state = 67, .external_lex_state = 3}, + [1133] = {.lex_state = 67, .external_lex_state = 3}, + [1134] = {.lex_state = 67, .external_lex_state = 3}, [1135] = {.lex_state = 67, .external_lex_state = 3}, - [1136] = {.lex_state = 67, .external_lex_state = 2}, - [1137] = {.lex_state = 8, .external_lex_state = 2}, - [1138] = {.lex_state = 67, .external_lex_state = 2}, + [1136] = {.lex_state = 67, .external_lex_state = 3}, + [1137] = {.lex_state = 67, .external_lex_state = 3}, + [1138] = {.lex_state = 67, .external_lex_state = 3}, [1139] = {.lex_state = 67, .external_lex_state = 2}, [1140] = {.lex_state = 67, .external_lex_state = 2}, - [1141] = {.lex_state = 67, .external_lex_state = 2}, - [1142] = {.lex_state = 67, .external_lex_state = 3}, - [1143] = {.lex_state = 67, .external_lex_state = 2}, - [1144] = {.lex_state = 67, .external_lex_state = 3}, + [1141] = {.lex_state = 67, .external_lex_state = 3}, + [1142] = {.lex_state = 67, .external_lex_state = 2}, + [1143] = {.lex_state = 67, .external_lex_state = 3}, + [1144] = {.lex_state = 67, .external_lex_state = 2}, [1145] = {.lex_state = 67, .external_lex_state = 3}, - [1146] = {.lex_state = 67, .external_lex_state = 3}, + [1146] = {.lex_state = 67, .external_lex_state = 2}, [1147] = {.lex_state = 67, .external_lex_state = 2}, [1148] = {.lex_state = 67, .external_lex_state = 2}, - [1149] = {.lex_state = 67, .external_lex_state = 3}, + [1149] = {.lex_state = 67, .external_lex_state = 2}, [1150] = {.lex_state = 67, .external_lex_state = 2}, [1151] = {.lex_state = 67, .external_lex_state = 2}, - [1152] = {.lex_state = 67, .external_lex_state = 3}, + [1152] = {.lex_state = 8, .external_lex_state = 2}, [1153] = {.lex_state = 67, .external_lex_state = 3}, [1154] = {.lex_state = 67, .external_lex_state = 2}, - [1155] = {.lex_state = 67, .external_lex_state = 3}, - [1156] = {.lex_state = 67, .external_lex_state = 2}, + [1155] = {.lex_state = 67, .external_lex_state = 2}, + [1156] = {.lex_state = 67, .external_lex_state = 3}, [1157] = {.lex_state = 67, .external_lex_state = 2}, [1158] = {.lex_state = 67, .external_lex_state = 2}, [1159] = {.lex_state = 67, .external_lex_state = 2}, [1160] = {.lex_state = 67, .external_lex_state = 2}, - [1161] = {.lex_state = 67, .external_lex_state = 2}, - [1162] = {.lex_state = 67, .external_lex_state = 2}, + [1161] = {.lex_state = 67, .external_lex_state = 3}, + [1162] = {.lex_state = 67, .external_lex_state = 3}, [1163] = {.lex_state = 67, .external_lex_state = 2}, [1164] = {.lex_state = 67, .external_lex_state = 3}, - [1165] = {.lex_state = 67, .external_lex_state = 3}, - [1166] = {.lex_state = 67, .external_lex_state = 3}, - [1167] = {.lex_state = 67, .external_lex_state = 3}, - [1168] = {.lex_state = 67, .external_lex_state = 3}, - [1169] = {.lex_state = 67, .external_lex_state = 2}, + [1165] = {.lex_state = 67, .external_lex_state = 2}, + [1166] = {.lex_state = 67, .external_lex_state = 2}, + [1167] = {.lex_state = 67, .external_lex_state = 2}, + [1168] = {.lex_state = 67, .external_lex_state = 2}, + [1169] = {.lex_state = 67, .external_lex_state = 3}, [1170] = {.lex_state = 67, .external_lex_state = 2}, [1171] = {.lex_state = 67, .external_lex_state = 2}, [1172] = {.lex_state = 67, .external_lex_state = 2}, @@ -7103,20 +7137,20 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [1174] = {.lex_state = 67, .external_lex_state = 2}, [1175] = {.lex_state = 67, .external_lex_state = 2}, [1176] = {.lex_state = 67, .external_lex_state = 2}, - [1177] = {.lex_state = 67, .external_lex_state = 3}, - [1178] = {.lex_state = 67, .external_lex_state = 2}, - [1179] = {.lex_state = 67, .external_lex_state = 2}, - [1180] = {.lex_state = 67, .external_lex_state = 2}, - [1181] = {.lex_state = 67, .external_lex_state = 2}, - [1182] = {.lex_state = 67, .external_lex_state = 2}, + [1177] = {.lex_state = 67, .external_lex_state = 2}, + [1178] = {.lex_state = 67, .external_lex_state = 3}, + [1179] = {.lex_state = 67, .external_lex_state = 3}, + [1180] = {.lex_state = 67, .external_lex_state = 3}, + [1181] = {.lex_state = 67, .external_lex_state = 3}, + [1182] = {.lex_state = 67, .external_lex_state = 3}, [1183] = {.lex_state = 67, .external_lex_state = 2}, - [1184] = {.lex_state = 67, .external_lex_state = 2}, + [1184] = {.lex_state = 67, .external_lex_state = 3}, [1185] = {.lex_state = 67, .external_lex_state = 2}, - [1186] = {.lex_state = 67, .external_lex_state = 3}, + [1186] = {.lex_state = 67, .external_lex_state = 2}, [1187] = {.lex_state = 67, .external_lex_state = 3}, [1188] = {.lex_state = 67, .external_lex_state = 2}, - [1189] = {.lex_state = 67, .external_lex_state = 2}, - [1190] = {.lex_state = 67, .external_lex_state = 2}, + [1189] = {.lex_state = 67, .external_lex_state = 3}, + [1190] = {.lex_state = 67, .external_lex_state = 3}, [1191] = {.lex_state = 67, .external_lex_state = 2}, [1192] = {.lex_state = 67, .external_lex_state = 2}, [1193] = {.lex_state = 67, .external_lex_state = 2}, @@ -7124,509 +7158,509 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [1195] = {.lex_state = 67, .external_lex_state = 2}, [1196] = {.lex_state = 67, .external_lex_state = 2}, [1197] = {.lex_state = 67, .external_lex_state = 2}, - [1198] = {.lex_state = 67, .external_lex_state = 2}, + [1198] = {.lex_state = 67, .external_lex_state = 3}, [1199] = {.lex_state = 67, .external_lex_state = 2}, [1200] = {.lex_state = 67, .external_lex_state = 2}, [1201] = {.lex_state = 67, .external_lex_state = 2}, [1202] = {.lex_state = 67, .external_lex_state = 2}, - [1203] = {.lex_state = 67, .external_lex_state = 3}, - [1204] = {.lex_state = 67, .external_lex_state = 2}, + [1203] = {.lex_state = 67, .external_lex_state = 2}, + [1204] = {.lex_state = 67, .external_lex_state = 3}, [1205] = {.lex_state = 67, .external_lex_state = 2}, [1206] = {.lex_state = 67, .external_lex_state = 2}, [1207] = {.lex_state = 67, .external_lex_state = 2}, - [1208] = {.lex_state = 67, .external_lex_state = 3}, - [1209] = {.lex_state = 8, .external_lex_state = 2}, + [1208] = {.lex_state = 67, .external_lex_state = 2}, + [1209] = {.lex_state = 67, .external_lex_state = 3}, [1210] = {.lex_state = 8, .external_lex_state = 2}, - [1211] = {.lex_state = 8, .external_lex_state = 2}, - [1212] = {.lex_state = 8, .external_lex_state = 2}, + [1211] = {.lex_state = 67, .external_lex_state = 3}, + [1212] = {.lex_state = 67, .external_lex_state = 3}, [1213] = {.lex_state = 67, .external_lex_state = 2}, - [1214] = {.lex_state = 8, .external_lex_state = 2}, - [1215] = {.lex_state = 8, .external_lex_state = 2}, + [1214] = {.lex_state = 67, .external_lex_state = 2}, + [1215] = {.lex_state = 67, .external_lex_state = 2}, [1216] = {.lex_state = 67, .external_lex_state = 2}, - [1217] = {.lex_state = 8, .external_lex_state = 2}, + [1217] = {.lex_state = 67, .external_lex_state = 3}, [1218] = {.lex_state = 8, .external_lex_state = 2}, - [1219] = {.lex_state = 8, .external_lex_state = 2}, - [1220] = {.lex_state = 8, .external_lex_state = 2}, - [1221] = {.lex_state = 8, .external_lex_state = 2}, - [1222] = {.lex_state = 8, .external_lex_state = 2}, - [1223] = {.lex_state = 67, .external_lex_state = 2}, + [1219] = {.lex_state = 67, .external_lex_state = 3}, + [1220] = {.lex_state = 67, .external_lex_state = 3}, + [1221] = {.lex_state = 67, .external_lex_state = 2}, + [1222] = {.lex_state = 67, .external_lex_state = 2}, + [1223] = {.lex_state = 67, .external_lex_state = 3}, [1224] = {.lex_state = 67, .external_lex_state = 3}, [1225] = {.lex_state = 67, .external_lex_state = 3}, - [1226] = {.lex_state = 8, .external_lex_state = 2}, - [1227] = {.lex_state = 8, .external_lex_state = 2}, + [1226] = {.lex_state = 67, .external_lex_state = 2}, + [1227] = {.lex_state = 67, .external_lex_state = 2}, [1228] = {.lex_state = 8, .external_lex_state = 2}, [1229] = {.lex_state = 8, .external_lex_state = 2}, - [1230] = {.lex_state = 8, .external_lex_state = 2}, - [1231] = {.lex_state = 8, .external_lex_state = 2}, - [1232] = {.lex_state = 8, .external_lex_state = 2}, - [1233] = {.lex_state = 8, .external_lex_state = 2}, - [1234] = {.lex_state = 8, .external_lex_state = 2}, + [1230] = {.lex_state = 67, .external_lex_state = 3}, + [1231] = {.lex_state = 67, .external_lex_state = 3}, + [1232] = {.lex_state = 67, .external_lex_state = 3}, + [1233] = {.lex_state = 67, .external_lex_state = 3}, + [1234] = {.lex_state = 67, .external_lex_state = 2}, [1235] = {.lex_state = 67, .external_lex_state = 2}, [1236] = {.lex_state = 67, .external_lex_state = 2}, - [1237] = {.lex_state = 8, .external_lex_state = 2}, - [1238] = {.lex_state = 8, .external_lex_state = 2}, + [1237] = {.lex_state = 67, .external_lex_state = 3}, + [1238] = {.lex_state = 67, .external_lex_state = 2}, [1239] = {.lex_state = 67, .external_lex_state = 2}, - [1240] = {.lex_state = 67, .external_lex_state = 3}, - [1241] = {.lex_state = 67, .external_lex_state = 3}, - [1242] = {.lex_state = 67, .external_lex_state = 3}, + [1240] = {.lex_state = 67, .external_lex_state = 2}, + [1241] = {.lex_state = 67, .external_lex_state = 2}, + [1242] = {.lex_state = 67, .external_lex_state = 2}, [1243] = {.lex_state = 67, .external_lex_state = 2}, [1244] = {.lex_state = 67, .external_lex_state = 2}, - [1245] = {.lex_state = 67, .external_lex_state = 3}, + [1245] = {.lex_state = 67, .external_lex_state = 2}, [1246] = {.lex_state = 67, .external_lex_state = 2}, - [1247] = {.lex_state = 8, .external_lex_state = 2}, - [1248] = {.lex_state = 8, .external_lex_state = 2}, + [1247] = {.lex_state = 67, .external_lex_state = 2}, + [1248] = {.lex_state = 67, .external_lex_state = 3}, [1249] = {.lex_state = 67, .external_lex_state = 2}, - [1250] = {.lex_state = 67, .external_lex_state = 2}, + [1250] = {.lex_state = 67, .external_lex_state = 3}, [1251] = {.lex_state = 8, .external_lex_state = 2}, - [1252] = {.lex_state = 67, .external_lex_state = 2}, - [1253] = {.lex_state = 67, .external_lex_state = 3}, - [1254] = {.lex_state = 67, .external_lex_state = 3}, - [1255] = {.lex_state = 8, .external_lex_state = 2}, + [1252] = {.lex_state = 67, .external_lex_state = 3}, + [1253] = {.lex_state = 67, .external_lex_state = 2}, + [1254] = {.lex_state = 67, .external_lex_state = 2}, + [1255] = {.lex_state = 67, .external_lex_state = 2}, [1256] = {.lex_state = 67, .external_lex_state = 2}, [1257] = {.lex_state = 67, .external_lex_state = 2}, - [1258] = {.lex_state = 67, .external_lex_state = 2}, - [1259] = {.lex_state = 8, .external_lex_state = 2}, + [1258] = {.lex_state = 67, .external_lex_state = 3}, + [1259] = {.lex_state = 67, .external_lex_state = 3}, [1260] = {.lex_state = 67, .external_lex_state = 3}, - [1261] = {.lex_state = 8, .external_lex_state = 2}, + [1261] = {.lex_state = 9, .external_lex_state = 2}, [1262] = {.lex_state = 8, .external_lex_state = 2}, - [1263] = {.lex_state = 67, .external_lex_state = 3}, - [1264] = {.lex_state = 67, .external_lex_state = 3}, + [1263] = {.lex_state = 8, .external_lex_state = 2}, + [1264] = {.lex_state = 8, .external_lex_state = 2}, [1265] = {.lex_state = 67, .external_lex_state = 3}, [1266] = {.lex_state = 67, .external_lex_state = 2}, - [1267] = {.lex_state = 67, .external_lex_state = 2}, + [1267] = {.lex_state = 67, .external_lex_state = 3}, [1268] = {.lex_state = 67, .external_lex_state = 2}, - [1269] = {.lex_state = 67, .external_lex_state = 2}, + [1269] = {.lex_state = 8, .external_lex_state = 2}, [1270] = {.lex_state = 67, .external_lex_state = 2}, - [1271] = {.lex_state = 9, .external_lex_state = 2}, - [1272] = {.lex_state = 67, .external_lex_state = 3}, - [1273] = {.lex_state = 67, .external_lex_state = 2}, - [1274] = {.lex_state = 67, .external_lex_state = 3}, - [1275] = {.lex_state = 67, .external_lex_state = 2}, - [1276] = {.lex_state = 67, .external_lex_state = 3}, + [1271] = {.lex_state = 67, .external_lex_state = 3}, + [1272] = {.lex_state = 67, .external_lex_state = 2}, + [1273] = {.lex_state = 8, .external_lex_state = 2}, + [1274] = {.lex_state = 8, .external_lex_state = 2}, + [1275] = {.lex_state = 8, .external_lex_state = 2}, + [1276] = {.lex_state = 67, .external_lex_state = 2}, [1277] = {.lex_state = 67, .external_lex_state = 2}, - [1278] = {.lex_state = 67, .external_lex_state = 3}, + [1278] = {.lex_state = 8, .external_lex_state = 2}, [1279] = {.lex_state = 67, .external_lex_state = 2}, - [1280] = {.lex_state = 67, .external_lex_state = 3}, - [1281] = {.lex_state = 67, .external_lex_state = 3}, - [1282] = {.lex_state = 67, .external_lex_state = 2}, + [1280] = {.lex_state = 67, .external_lex_state = 2}, + [1281] = {.lex_state = 67, .external_lex_state = 2}, + [1282] = {.lex_state = 8, .external_lex_state = 2}, [1283] = {.lex_state = 67, .external_lex_state = 2}, - [1284] = {.lex_state = 67, .external_lex_state = 2}, - [1285] = {.lex_state = 67, .external_lex_state = 2}, - [1286] = {.lex_state = 67, .external_lex_state = 2}, - [1287] = {.lex_state = 67, .external_lex_state = 3}, + [1284] = {.lex_state = 8, .external_lex_state = 2}, + [1285] = {.lex_state = 8, .external_lex_state = 2}, + [1286] = {.lex_state = 8, .external_lex_state = 2}, + [1287] = {.lex_state = 8, .external_lex_state = 2}, [1288] = {.lex_state = 67, .external_lex_state = 2}, - [1289] = {.lex_state = 67, .external_lex_state = 2}, - [1290] = {.lex_state = 67, .external_lex_state = 3}, + [1289] = {.lex_state = 8, .external_lex_state = 2}, + [1290] = {.lex_state = 8, .external_lex_state = 2}, [1291] = {.lex_state = 67, .external_lex_state = 3}, - [1292] = {.lex_state = 67, .external_lex_state = 2}, - [1293] = {.lex_state = 67, .external_lex_state = 3}, + [1292] = {.lex_state = 8, .external_lex_state = 2}, + [1293] = {.lex_state = 8, .external_lex_state = 2}, [1294] = {.lex_state = 67, .external_lex_state = 3}, - [1295] = {.lex_state = 67, .external_lex_state = 3}, - [1296] = {.lex_state = 67, .external_lex_state = 2}, + [1295] = {.lex_state = 67, .external_lex_state = 2}, + [1296] = {.lex_state = 67, .external_lex_state = 3}, [1297] = {.lex_state = 67, .external_lex_state = 2}, - [1298] = {.lex_state = 67, .external_lex_state = 2}, - [1299] = {.lex_state = 67, .external_lex_state = 2}, + [1298] = {.lex_state = 67, .external_lex_state = 3}, + [1299] = {.lex_state = 8, .external_lex_state = 2}, [1300] = {.lex_state = 67, .external_lex_state = 2}, - [1301] = {.lex_state = 67, .external_lex_state = 2}, + [1301] = {.lex_state = 67, .external_lex_state = 3}, [1302] = {.lex_state = 67, .external_lex_state = 2}, - [1303] = {.lex_state = 67, .external_lex_state = 2}, + [1303] = {.lex_state = 67, .external_lex_state = 3}, [1304] = {.lex_state = 67, .external_lex_state = 2}, - [1305] = {.lex_state = 67, .external_lex_state = 3}, - [1306] = {.lex_state = 67, .external_lex_state = 3}, - [1307] = {.lex_state = 67, .external_lex_state = 3}, - [1308] = {.lex_state = 67, .external_lex_state = 3}, - [1309] = {.lex_state = 67, .external_lex_state = 3}, - [1310] = {.lex_state = 67, .external_lex_state = 2}, + [1305] = {.lex_state = 8, .external_lex_state = 2}, + [1306] = {.lex_state = 8, .external_lex_state = 2}, + [1307] = {.lex_state = 8, .external_lex_state = 2}, + [1308] = {.lex_state = 8, .external_lex_state = 2}, + [1309] = {.lex_state = 8, .external_lex_state = 2}, + [1310] = {.lex_state = 8, .external_lex_state = 2}, [1311] = {.lex_state = 67, .external_lex_state = 2}, - [1312] = {.lex_state = 67, .external_lex_state = 3}, - [1313] = {.lex_state = 67, .external_lex_state = 3}, - [1314] = {.lex_state = 9, .external_lex_state = 3}, - [1315] = {.lex_state = 67, .external_lex_state = 3}, + [1312] = {.lex_state = 8, .external_lex_state = 2}, + [1313] = {.lex_state = 67, .external_lex_state = 2}, + [1314] = {.lex_state = 67, .external_lex_state = 3}, + [1315] = {.lex_state = 8, .external_lex_state = 2}, [1316] = {.lex_state = 67, .external_lex_state = 3}, - [1317] = {.lex_state = 67, .external_lex_state = 3}, + [1317] = {.lex_state = 67, .external_lex_state = 2}, [1318] = {.lex_state = 67, .external_lex_state = 3}, - [1319] = {.lex_state = 67, .external_lex_state = 2}, + [1319] = {.lex_state = 67, .external_lex_state = 3}, [1320] = {.lex_state = 67, .external_lex_state = 3}, - [1321] = {.lex_state = 67, .external_lex_state = 3}, - [1322] = {.lex_state = 67, .external_lex_state = 3}, - [1323] = {.lex_state = 67, .external_lex_state = 3}, - [1324] = {.lex_state = 8, .external_lex_state = 2}, - [1325] = {.lex_state = 8, .external_lex_state = 2}, + [1321] = {.lex_state = 67, .external_lex_state = 2}, + [1322] = {.lex_state = 8, .external_lex_state = 2}, + [1323] = {.lex_state = 67, .external_lex_state = 2}, + [1324] = {.lex_state = 67, .external_lex_state = 3}, + [1325] = {.lex_state = 67, .external_lex_state = 3}, [1326] = {.lex_state = 67, .external_lex_state = 2}, - [1327] = {.lex_state = 67, .external_lex_state = 2}, - [1328] = {.lex_state = 67, .external_lex_state = 2}, - [1329] = {.lex_state = 67, .external_lex_state = 3}, + [1327] = {.lex_state = 8, .external_lex_state = 2}, + [1328] = {.lex_state = 67, .external_lex_state = 3}, + [1329] = {.lex_state = 67, .external_lex_state = 2}, [1330] = {.lex_state = 67, .external_lex_state = 3}, [1331] = {.lex_state = 67, .external_lex_state = 3}, [1332] = {.lex_state = 67, .external_lex_state = 3}, [1333] = {.lex_state = 67, .external_lex_state = 3}, - [1334] = {.lex_state = 67, .external_lex_state = 2}, + [1334] = {.lex_state = 67, .external_lex_state = 3}, [1335] = {.lex_state = 67, .external_lex_state = 3}, [1336] = {.lex_state = 67, .external_lex_state = 3}, [1337] = {.lex_state = 67, .external_lex_state = 2}, - [1338] = {.lex_state = 67, .external_lex_state = 3}, + [1338] = {.lex_state = 67, .external_lex_state = 2}, [1339] = {.lex_state = 67, .external_lex_state = 3}, [1340] = {.lex_state = 67, .external_lex_state = 2}, [1341] = {.lex_state = 67, .external_lex_state = 2}, - [1342] = {.lex_state = 67, .external_lex_state = 2}, - [1343] = {.lex_state = 67, .external_lex_state = 3}, + [1342] = {.lex_state = 8, .external_lex_state = 2}, + [1343] = {.lex_state = 8, .external_lex_state = 2}, [1344] = {.lex_state = 67, .external_lex_state = 3}, - [1345] = {.lex_state = 67, .external_lex_state = 3}, + [1345] = {.lex_state = 9, .external_lex_state = 3}, [1346] = {.lex_state = 67, .external_lex_state = 3}, [1347] = {.lex_state = 67, .external_lex_state = 3}, - [1348] = {.lex_state = 67, .external_lex_state = 2}, - [1349] = {.lex_state = 67, .external_lex_state = 3}, - [1350] = {.lex_state = 67, .external_lex_state = 3}, - [1351] = {.lex_state = 67, .external_lex_state = 3}, - [1352] = {.lex_state = 67, .external_lex_state = 3}, - [1353] = {.lex_state = 67, .external_lex_state = 2}, + [1348] = {.lex_state = 67, .external_lex_state = 3}, + [1349] = {.lex_state = 67, .external_lex_state = 2}, + [1350] = {.lex_state = 67, .external_lex_state = 2}, + [1351] = {.lex_state = 67, .external_lex_state = 2}, + [1352] = {.lex_state = 67, .external_lex_state = 2}, + [1353] = {.lex_state = 67, .external_lex_state = 3}, [1354] = {.lex_state = 8, .external_lex_state = 2}, - [1355] = {.lex_state = 8, .external_lex_state = 2}, - [1356] = {.lex_state = 67, .external_lex_state = 3}, - [1357] = {.lex_state = 8, .external_lex_state = 2}, - [1358] = {.lex_state = 8, .external_lex_state = 2}, - [1359] = {.lex_state = 67, .external_lex_state = 3}, + [1355] = {.lex_state = 67, .external_lex_state = 2}, + [1356] = {.lex_state = 67, .external_lex_state = 2}, + [1357] = {.lex_state = 67, .external_lex_state = 3}, + [1358] = {.lex_state = 67, .external_lex_state = 3}, + [1359] = {.lex_state = 67, .external_lex_state = 2}, [1360] = {.lex_state = 67, .external_lex_state = 3}, - [1361] = {.lex_state = 8, .external_lex_state = 2}, + [1361] = {.lex_state = 67, .external_lex_state = 2}, [1362] = {.lex_state = 67, .external_lex_state = 3}, - [1363] = {.lex_state = 67, .external_lex_state = 3}, + [1363] = {.lex_state = 67, .external_lex_state = 2}, [1364] = {.lex_state = 67, .external_lex_state = 3}, - [1365] = {.lex_state = 67, .external_lex_state = 3}, + [1365] = {.lex_state = 67, .external_lex_state = 2}, [1366] = {.lex_state = 67, .external_lex_state = 3}, [1367] = {.lex_state = 67, .external_lex_state = 3}, - [1368] = {.lex_state = 67, .external_lex_state = 3}, + [1368] = {.lex_state = 67, .external_lex_state = 2}, [1369] = {.lex_state = 67, .external_lex_state = 3}, - [1370] = {.lex_state = 67, .external_lex_state = 2}, + [1370] = {.lex_state = 67, .external_lex_state = 3}, [1371] = {.lex_state = 67, .external_lex_state = 3}, [1372] = {.lex_state = 67, .external_lex_state = 3}, - [1373] = {.lex_state = 67, .external_lex_state = 2}, - [1374] = {.lex_state = 67, .external_lex_state = 2}, - [1375] = {.lex_state = 67, .external_lex_state = 2}, - [1376] = {.lex_state = 67, .external_lex_state = 2}, + [1373] = {.lex_state = 67, .external_lex_state = 3}, + [1374] = {.lex_state = 67, .external_lex_state = 3}, + [1375] = {.lex_state = 67, .external_lex_state = 3}, + [1376] = {.lex_state = 67, .external_lex_state = 3}, [1377] = {.lex_state = 67, .external_lex_state = 2}, [1378] = {.lex_state = 67, .external_lex_state = 2}, - [1379] = {.lex_state = 67, .external_lex_state = 2}, - [1380] = {.lex_state = 67, .external_lex_state = 2}, - [1381] = {.lex_state = 67, .external_lex_state = 2}, - [1382] = {.lex_state = 67, .external_lex_state = 2}, - [1383] = {.lex_state = 8, .external_lex_state = 2}, + [1379] = {.lex_state = 67, .external_lex_state = 3}, + [1380] = {.lex_state = 67, .external_lex_state = 3}, + [1381] = {.lex_state = 67, .external_lex_state = 3}, + [1382] = {.lex_state = 67, .external_lex_state = 3}, + [1383] = {.lex_state = 67, .external_lex_state = 3}, [1384] = {.lex_state = 67, .external_lex_state = 2}, - [1385] = {.lex_state = 67, .external_lex_state = 2}, + [1385] = {.lex_state = 67, .external_lex_state = 3}, [1386] = {.lex_state = 67, .external_lex_state = 2}, [1387] = {.lex_state = 67, .external_lex_state = 2}, [1388] = {.lex_state = 67, .external_lex_state = 2}, - [1389] = {.lex_state = 67, .external_lex_state = 2}, + [1389] = {.lex_state = 67, .external_lex_state = 3}, [1390] = {.lex_state = 67, .external_lex_state = 3}, - [1391] = {.lex_state = 67, .external_lex_state = 2}, - [1392] = {.lex_state = 67, .external_lex_state = 2}, + [1391] = {.lex_state = 67, .external_lex_state = 3}, + [1392] = {.lex_state = 67, .external_lex_state = 3}, [1393] = {.lex_state = 67, .external_lex_state = 2}, [1394] = {.lex_state = 67, .external_lex_state = 3}, - [1395] = {.lex_state = 67, .external_lex_state = 2}, - [1396] = {.lex_state = 67, .external_lex_state = 2}, + [1395] = {.lex_state = 67, .external_lex_state = 3}, + [1396] = {.lex_state = 67, .external_lex_state = 3}, [1397] = {.lex_state = 67, .external_lex_state = 2}, [1398] = {.lex_state = 67, .external_lex_state = 3}, [1399] = {.lex_state = 67, .external_lex_state = 3}, [1400] = {.lex_state = 67, .external_lex_state = 2}, - [1401] = {.lex_state = 67, .external_lex_state = 3}, - [1402] = {.lex_state = 67, .external_lex_state = 3}, - [1403] = {.lex_state = 67, .external_lex_state = 2}, - [1404] = {.lex_state = 67, .external_lex_state = 2}, - [1405] = {.lex_state = 67, .external_lex_state = 2}, + [1401] = {.lex_state = 67, .external_lex_state = 2}, + [1402] = {.lex_state = 67, .external_lex_state = 2}, + [1403] = {.lex_state = 67, .external_lex_state = 3}, + [1404] = {.lex_state = 67, .external_lex_state = 3}, + [1405] = {.lex_state = 67, .external_lex_state = 3}, [1406] = {.lex_state = 67, .external_lex_state = 2}, [1407] = {.lex_state = 67, .external_lex_state = 2}, [1408] = {.lex_state = 67, .external_lex_state = 3}, [1409] = {.lex_state = 67, .external_lex_state = 3}, [1410] = {.lex_state = 67, .external_lex_state = 3}, - [1411] = {.lex_state = 67, .external_lex_state = 2}, - [1412] = {.lex_state = 67, .external_lex_state = 2}, + [1411] = {.lex_state = 67, .external_lex_state = 3}, + [1412] = {.lex_state = 67, .external_lex_state = 3}, [1413] = {.lex_state = 67, .external_lex_state = 3}, - [1414] = {.lex_state = 67, .external_lex_state = 2}, + [1414] = {.lex_state = 67, .external_lex_state = 3}, [1415] = {.lex_state = 67, .external_lex_state = 2}, - [1416] = {.lex_state = 67, .external_lex_state = 3}, - [1417] = {.lex_state = 67, .external_lex_state = 3}, - [1418] = {.lex_state = 67, .external_lex_state = 3}, - [1419] = {.lex_state = 67, .external_lex_state = 3}, + [1416] = {.lex_state = 67, .external_lex_state = 2}, + [1417] = {.lex_state = 67, .external_lex_state = 2}, + [1418] = {.lex_state = 67, .external_lex_state = 2}, + [1419] = {.lex_state = 67, .external_lex_state = 2}, [1420] = {.lex_state = 67, .external_lex_state = 2}, [1421] = {.lex_state = 67, .external_lex_state = 2}, - [1422] = {.lex_state = 67, .external_lex_state = 3}, - [1423] = {.lex_state = 67, .external_lex_state = 3}, - [1424] = {.lex_state = 67, .external_lex_state = 3}, - [1425] = {.lex_state = 67, .external_lex_state = 3}, + [1422] = {.lex_state = 67, .external_lex_state = 2}, + [1423] = {.lex_state = 67, .external_lex_state = 2}, + [1424] = {.lex_state = 67, .external_lex_state = 2}, + [1425] = {.lex_state = 67, .external_lex_state = 2}, [1426] = {.lex_state = 67, .external_lex_state = 2}, - [1427] = {.lex_state = 67, .external_lex_state = 2}, - [1428] = {.lex_state = 67, .external_lex_state = 2}, + [1427] = {.lex_state = 67, .external_lex_state = 3}, + [1428] = {.lex_state = 67, .external_lex_state = 3}, [1429] = {.lex_state = 67, .external_lex_state = 3}, [1430] = {.lex_state = 67, .external_lex_state = 3}, [1431] = {.lex_state = 67, .external_lex_state = 2}, - [1432] = {.lex_state = 67, .external_lex_state = 3}, + [1432] = {.lex_state = 8, .external_lex_state = 3}, [1433] = {.lex_state = 67, .external_lex_state = 3}, - [1434] = {.lex_state = 67, .external_lex_state = 2}, + [1434] = {.lex_state = 67, .external_lex_state = 3}, [1435] = {.lex_state = 67, .external_lex_state = 3}, [1436] = {.lex_state = 67, .external_lex_state = 2}, - [1437] = {.lex_state = 67, .external_lex_state = 2}, + [1437] = {.lex_state = 67, .external_lex_state = 3}, [1438] = {.lex_state = 67, .external_lex_state = 3}, [1439] = {.lex_state = 67, .external_lex_state = 2}, [1440] = {.lex_state = 67, .external_lex_state = 2}, [1441] = {.lex_state = 67, .external_lex_state = 3}, - [1442] = {.lex_state = 67, .external_lex_state = 3}, + [1442] = {.lex_state = 67, .external_lex_state = 2}, [1443] = {.lex_state = 67, .external_lex_state = 3}, - [1444] = {.lex_state = 67, .external_lex_state = 3}, - [1445] = {.lex_state = 67, .external_lex_state = 3}, + [1444] = {.lex_state = 67, .external_lex_state = 2}, + [1445] = {.lex_state = 8, .external_lex_state = 2}, [1446] = {.lex_state = 8, .external_lex_state = 2}, - [1447] = {.lex_state = 67, .external_lex_state = 2}, + [1447] = {.lex_state = 67, .external_lex_state = 3}, [1448] = {.lex_state = 67, .external_lex_state = 3}, [1449] = {.lex_state = 67, .external_lex_state = 3}, [1450] = {.lex_state = 67, .external_lex_state = 3}, [1451] = {.lex_state = 67, .external_lex_state = 3}, - [1452] = {.lex_state = 67, .external_lex_state = 3}, - [1453] = {.lex_state = 67, .external_lex_state = 3}, - [1454] = {.lex_state = 67, .external_lex_state = 3}, - [1455] = {.lex_state = 67, .external_lex_state = 3}, + [1452] = {.lex_state = 67, .external_lex_state = 2}, + [1453] = {.lex_state = 67, .external_lex_state = 2}, + [1454] = {.lex_state = 67, .external_lex_state = 2}, + [1455] = {.lex_state = 67, .external_lex_state = 2}, [1456] = {.lex_state = 67, .external_lex_state = 3}, - [1457] = {.lex_state = 67, .external_lex_state = 3}, + [1457] = {.lex_state = 67, .external_lex_state = 2}, [1458] = {.lex_state = 67, .external_lex_state = 3}, [1459] = {.lex_state = 67, .external_lex_state = 3}, - [1460] = {.lex_state = 67, .external_lex_state = 3}, - [1461] = {.lex_state = 8, .external_lex_state = 3}, + [1460] = {.lex_state = 8, .external_lex_state = 2}, + [1461] = {.lex_state = 67, .external_lex_state = 3}, [1462] = {.lex_state = 67, .external_lex_state = 3}, [1463] = {.lex_state = 67, .external_lex_state = 3}, [1464] = {.lex_state = 67, .external_lex_state = 3}, [1465] = {.lex_state = 67, .external_lex_state = 3}, [1466] = {.lex_state = 67, .external_lex_state = 3}, [1467] = {.lex_state = 67, .external_lex_state = 3}, - [1468] = {.lex_state = 67, .external_lex_state = 2}, + [1468] = {.lex_state = 67, .external_lex_state = 3}, [1469] = {.lex_state = 67, .external_lex_state = 3}, [1470] = {.lex_state = 67, .external_lex_state = 3}, - [1471] = {.lex_state = 67, .external_lex_state = 3}, + [1471] = {.lex_state = 67, .external_lex_state = 2}, [1472] = {.lex_state = 67, .external_lex_state = 3}, [1473] = {.lex_state = 67, .external_lex_state = 3}, - [1474] = {.lex_state = 8, .external_lex_state = 2}, - [1475] = {.lex_state = 8, .external_lex_state = 2}, - [1476] = {.lex_state = 67, .external_lex_state = 3}, - [1477] = {.lex_state = 8, .external_lex_state = 2}, - [1478] = {.lex_state = 8, .external_lex_state = 3}, - [1479] = {.lex_state = 8, .external_lex_state = 2}, + [1474] = {.lex_state = 67, .external_lex_state = 3}, + [1475] = {.lex_state = 67, .external_lex_state = 3}, + [1476] = {.lex_state = 67, .external_lex_state = 2}, + [1477] = {.lex_state = 67, .external_lex_state = 3}, + [1478] = {.lex_state = 8, .external_lex_state = 2}, + [1479] = {.lex_state = 67, .external_lex_state = 2}, [1480] = {.lex_state = 8, .external_lex_state = 2}, - [1481] = {.lex_state = 8, .external_lex_state = 2}, - [1482] = {.lex_state = 8, .external_lex_state = 2}, - [1483] = {.lex_state = 8, .external_lex_state = 2}, - [1484] = {.lex_state = 8, .external_lex_state = 2}, + [1481] = {.lex_state = 15}, + [1482] = {.lex_state = 67, .external_lex_state = 3}, + [1483] = {.lex_state = 9, .external_lex_state = 2}, + [1484] = {.lex_state = 67, .external_lex_state = 3}, [1485] = {.lex_state = 67, .external_lex_state = 2}, [1486] = {.lex_state = 67, .external_lex_state = 2}, [1487] = {.lex_state = 8, .external_lex_state = 2}, - [1488] = {.lex_state = 8, .external_lex_state = 2}, - [1489] = {.lex_state = 67, .external_lex_state = 3}, - [1490] = {.lex_state = 15}, - [1491] = {.lex_state = 67, .external_lex_state = 2}, + [1488] = {.lex_state = 67, .external_lex_state = 2}, + [1489] = {.lex_state = 8, .external_lex_state = 2}, + [1490] = {.lex_state = 8, .external_lex_state = 2}, + [1491] = {.lex_state = 15}, [1492] = {.lex_state = 15}, - [1493] = {.lex_state = 67, .external_lex_state = 3}, - [1494] = {.lex_state = 67, .external_lex_state = 2}, - [1495] = {.lex_state = 67, .external_lex_state = 3}, + [1493] = {.lex_state = 67, .external_lex_state = 2}, + [1494] = {.lex_state = 68}, + [1495] = {.lex_state = 67, .external_lex_state = 2}, [1496] = {.lex_state = 67, .external_lex_state = 3}, - [1497] = {.lex_state = 67, .external_lex_state = 3}, - [1498] = {.lex_state = 67, .external_lex_state = 3}, - [1499] = {.lex_state = 67, .external_lex_state = 3}, + [1497] = {.lex_state = 67, .external_lex_state = 2}, + [1498] = {.lex_state = 8, .external_lex_state = 2}, + [1499] = {.lex_state = 8, .external_lex_state = 3}, [1500] = {.lex_state = 67, .external_lex_state = 3}, - [1501] = {.lex_state = 67, .external_lex_state = 2}, - [1502] = {.lex_state = 67, .external_lex_state = 2}, - [1503] = {.lex_state = 67, .external_lex_state = 3}, - [1504] = {.lex_state = 8, .external_lex_state = 2}, - [1505] = {.lex_state = 8, .external_lex_state = 2}, - [1506] = {.lex_state = 67, .external_lex_state = 2}, - [1507] = {.lex_state = 67, .external_lex_state = 3}, - [1508] = {.lex_state = 67, .external_lex_state = 3}, - [1509] = {.lex_state = 8, .external_lex_state = 2}, - [1510] = {.lex_state = 67, .external_lex_state = 3}, - [1511] = {.lex_state = 67, .external_lex_state = 3}, + [1501] = {.lex_state = 8, .external_lex_state = 2}, + [1502] = {.lex_state = 8, .external_lex_state = 2}, + [1503] = {.lex_state = 67, .external_lex_state = 2}, + [1504] = {.lex_state = 67, .external_lex_state = 2}, + [1505] = {.lex_state = 67, .external_lex_state = 2}, + [1506] = {.lex_state = 67, .external_lex_state = 3}, + [1507] = {.lex_state = 11, .external_lex_state = 2}, + [1508] = {.lex_state = 8, .external_lex_state = 2}, + [1509] = {.lex_state = 67, .external_lex_state = 3}, + [1510] = {.lex_state = 8, .external_lex_state = 2}, + [1511] = {.lex_state = 8, .external_lex_state = 2}, [1512] = {.lex_state = 67, .external_lex_state = 3}, - [1513] = {.lex_state = 15}, - [1514] = {.lex_state = 67, .external_lex_state = 2}, - [1515] = {.lex_state = 68}, - [1516] = {.lex_state = 67, .external_lex_state = 3}, + [1513] = {.lex_state = 68}, + [1514] = {.lex_state = 8, .external_lex_state = 2}, + [1515] = {.lex_state = 67, .external_lex_state = 3}, + [1516] = {.lex_state = 8, .external_lex_state = 2}, [1517] = {.lex_state = 67, .external_lex_state = 3}, - [1518] = {.lex_state = 67, .external_lex_state = 3}, + [1518] = {.lex_state = 8, .external_lex_state = 2}, [1519] = {.lex_state = 8, .external_lex_state = 2}, - [1520] = {.lex_state = 67, .external_lex_state = 3}, - [1521] = {.lex_state = 8, .external_lex_state = 2}, + [1520] = {.lex_state = 8, .external_lex_state = 2}, + [1521] = {.lex_state = 15}, [1522] = {.lex_state = 8, .external_lex_state = 2}, - [1523] = {.lex_state = 8, .external_lex_state = 2}, - [1524] = {.lex_state = 15}, - [1525] = {.lex_state = 8, .external_lex_state = 2}, - [1526] = {.lex_state = 67, .external_lex_state = 3}, + [1523] = {.lex_state = 67, .external_lex_state = 3}, + [1524] = {.lex_state = 67, .external_lex_state = 2}, + [1525] = {.lex_state = 67, .external_lex_state = 2}, + [1526] = {.lex_state = 67, .external_lex_state = 2}, [1527] = {.lex_state = 67, .external_lex_state = 3}, [1528] = {.lex_state = 8, .external_lex_state = 2}, [1529] = {.lex_state = 67, .external_lex_state = 3}, [1530] = {.lex_state = 67, .external_lex_state = 3}, [1531] = {.lex_state = 67, .external_lex_state = 2}, - [1532] = {.lex_state = 67, .external_lex_state = 2}, + [1532] = {.lex_state = 67, .external_lex_state = 3}, [1533] = {.lex_state = 67, .external_lex_state = 3}, [1534] = {.lex_state = 67, .external_lex_state = 3}, - [1535] = {.lex_state = 67, .external_lex_state = 3}, + [1535] = {.lex_state = 8, .external_lex_state = 2}, [1536] = {.lex_state = 67, .external_lex_state = 2}, [1537] = {.lex_state = 67, .external_lex_state = 3}, - [1538] = {.lex_state = 67, .external_lex_state = 3}, + [1538] = {.lex_state = 8, .external_lex_state = 2}, [1539] = {.lex_state = 67, .external_lex_state = 3}, [1540] = {.lex_state = 67, .external_lex_state = 3}, - [1541] = {.lex_state = 68}, - [1542] = {.lex_state = 67, .external_lex_state = 3}, - [1543] = {.lex_state = 67, .external_lex_state = 3}, - [1544] = {.lex_state = 67, .external_lex_state = 2}, - [1545] = {.lex_state = 67, .external_lex_state = 3}, - [1546] = {.lex_state = 67, .external_lex_state = 2}, + [1541] = {.lex_state = 8, .external_lex_state = 2}, + [1542] = {.lex_state = 68}, + [1543] = {.lex_state = 8, .external_lex_state = 2}, + [1544] = {.lex_state = 8, .external_lex_state = 2}, + [1545] = {.lex_state = 8, .external_lex_state = 2}, + [1546] = {.lex_state = 8, .external_lex_state = 2}, [1547] = {.lex_state = 8, .external_lex_state = 2}, - [1548] = {.lex_state = 8, .external_lex_state = 2}, + [1548] = {.lex_state = 67, .external_lex_state = 3}, [1549] = {.lex_state = 67, .external_lex_state = 3}, - [1550] = {.lex_state = 67, .external_lex_state = 3}, + [1550] = {.lex_state = 67, .external_lex_state = 2}, [1551] = {.lex_state = 67, .external_lex_state = 3}, [1552] = {.lex_state = 67, .external_lex_state = 3}, - [1553] = {.lex_state = 67, .external_lex_state = 3}, - [1554] = {.lex_state = 67, .external_lex_state = 3}, + [1553] = {.lex_state = 67, .external_lex_state = 2}, + [1554] = {.lex_state = 15}, [1555] = {.lex_state = 67, .external_lex_state = 3}, - [1556] = {.lex_state = 8, .external_lex_state = 2}, - [1557] = {.lex_state = 8, .external_lex_state = 2}, - [1558] = {.lex_state = 8, .external_lex_state = 2}, - [1559] = {.lex_state = 9, .external_lex_state = 2}, - [1560] = {.lex_state = 8, .external_lex_state = 2}, + [1556] = {.lex_state = 67, .external_lex_state = 3}, + [1557] = {.lex_state = 67, .external_lex_state = 3}, + [1558] = {.lex_state = 15}, + [1559] = {.lex_state = 8, .external_lex_state = 2}, + [1560] = {.lex_state = 15}, [1561] = {.lex_state = 8, .external_lex_state = 2}, - [1562] = {.lex_state = 11, .external_lex_state = 2}, + [1562] = {.lex_state = 15}, [1563] = {.lex_state = 8, .external_lex_state = 2}, - [1564] = {.lex_state = 8, .external_lex_state = 2}, - [1565] = {.lex_state = 67, .external_lex_state = 3}, - [1566] = {.lex_state = 15}, + [1564] = {.lex_state = 68}, + [1565] = {.lex_state = 8, .external_lex_state = 2}, + [1566] = {.lex_state = 8, .external_lex_state = 2}, [1567] = {.lex_state = 67, .external_lex_state = 3}, [1568] = {.lex_state = 67, .external_lex_state = 3}, - [1569] = {.lex_state = 67, .external_lex_state = 2}, - [1570] = {.lex_state = 15}, - [1571] = {.lex_state = 67, .external_lex_state = 2}, - [1572] = {.lex_state = 67, .external_lex_state = 3}, - [1573] = {.lex_state = 8, .external_lex_state = 2}, - [1574] = {.lex_state = 67, .external_lex_state = 2}, - [1575] = {.lex_state = 8, .external_lex_state = 2}, - [1576] = {.lex_state = 8, .external_lex_state = 2}, + [1569] = {.lex_state = 8, .external_lex_state = 2}, + [1570] = {.lex_state = 8, .external_lex_state = 2}, + [1571] = {.lex_state = 8, .external_lex_state = 2}, + [1572] = {.lex_state = 8, .external_lex_state = 2}, + [1573] = {.lex_state = 15}, + [1574] = {.lex_state = 67, .external_lex_state = 3}, + [1575] = {.lex_state = 67, .external_lex_state = 3}, + [1576] = {.lex_state = 15}, [1577] = {.lex_state = 67, .external_lex_state = 3}, - [1578] = {.lex_state = 15}, - [1579] = {.lex_state = 8, .external_lex_state = 2}, - [1580] = {.lex_state = 8, .external_lex_state = 2}, + [1578] = {.lex_state = 67, .external_lex_state = 3}, + [1579] = {.lex_state = 15}, + [1580] = {.lex_state = 67, .external_lex_state = 3}, [1581] = {.lex_state = 8, .external_lex_state = 2}, - [1582] = {.lex_state = 8, .external_lex_state = 2}, - [1583] = {.lex_state = 67, .external_lex_state = 3}, - [1584] = {.lex_state = 8, .external_lex_state = 2}, + [1582] = {.lex_state = 67, .external_lex_state = 3}, + [1583] = {.lex_state = 8, .external_lex_state = 2}, + [1584] = {.lex_state = 67, .external_lex_state = 3}, [1585] = {.lex_state = 8, .external_lex_state = 2}, - [1586] = {.lex_state = 8, .external_lex_state = 2}, - [1587] = {.lex_state = 8, .external_lex_state = 2}, - [1588] = {.lex_state = 8, .external_lex_state = 2}, - [1589] = {.lex_state = 15}, - [1590] = {.lex_state = 67, .external_lex_state = 3}, - [1591] = {.lex_state = 8, .external_lex_state = 2}, - [1592] = {.lex_state = 67, .external_lex_state = 3}, - [1593] = {.lex_state = 8, .external_lex_state = 2}, + [1586] = {.lex_state = 67, .external_lex_state = 3}, + [1587] = {.lex_state = 15}, + [1588] = {.lex_state = 15}, + [1589] = {.lex_state = 8, .external_lex_state = 2}, + [1590] = {.lex_state = 8, .external_lex_state = 2}, + [1591] = {.lex_state = 67, .external_lex_state = 2}, + [1592] = {.lex_state = 68}, + [1593] = {.lex_state = 67, .external_lex_state = 3}, [1594] = {.lex_state = 67, .external_lex_state = 3}, - [1595] = {.lex_state = 8, .external_lex_state = 2}, - [1596] = {.lex_state = 8, .external_lex_state = 2}, - [1597] = {.lex_state = 8, .external_lex_state = 2}, - [1598] = {.lex_state = 67, .external_lex_state = 2}, - [1599] = {.lex_state = 68}, + [1595] = {.lex_state = 67, .external_lex_state = 3}, + [1596] = {.lex_state = 67, .external_lex_state = 3}, + [1597] = {.lex_state = 67, .external_lex_state = 3}, + [1598] = {.lex_state = 67, .external_lex_state = 3}, + [1599] = {.lex_state = 67, .external_lex_state = 3}, [1600] = {.lex_state = 8, .external_lex_state = 2}, - [1601] = {.lex_state = 8, .external_lex_state = 2}, - [1602] = {.lex_state = 8, .external_lex_state = 2}, - [1603] = {.lex_state = 67, .external_lex_state = 2}, - [1604] = {.lex_state = 68}, + [1601] = {.lex_state = 67, .external_lex_state = 3}, + [1602] = {.lex_state = 67, .external_lex_state = 3}, + [1603] = {.lex_state = 67, .external_lex_state = 3}, + [1604] = {.lex_state = 67, .external_lex_state = 3}, [1605] = {.lex_state = 8, .external_lex_state = 2}, - [1606] = {.lex_state = 8, .external_lex_state = 2}, + [1606] = {.lex_state = 67, .external_lex_state = 3}, [1607] = {.lex_state = 67, .external_lex_state = 3}, - [1608] = {.lex_state = 67, .external_lex_state = 3}, + [1608] = {.lex_state = 8, .external_lex_state = 2}, [1609] = {.lex_state = 8, .external_lex_state = 2}, [1610] = {.lex_state = 8, .external_lex_state = 2}, [1611] = {.lex_state = 8, .external_lex_state = 2}, - [1612] = {.lex_state = 67, .external_lex_state = 3}, - [1613] = {.lex_state = 68}, - [1614] = {.lex_state = 67, .external_lex_state = 2}, + [1612] = {.lex_state = 8, .external_lex_state = 3}, + [1613] = {.lex_state = 8, .external_lex_state = 2}, + [1614] = {.lex_state = 8, .external_lex_state = 2}, [1615] = {.lex_state = 8, .external_lex_state = 2}, - [1616] = {.lex_state = 67, .external_lex_state = 3}, + [1616] = {.lex_state = 8, .external_lex_state = 2}, [1617] = {.lex_state = 67, .external_lex_state = 2}, - [1618] = {.lex_state = 15}, + [1618] = {.lex_state = 67, .external_lex_state = 3}, [1619] = {.lex_state = 8, .external_lex_state = 2}, - [1620] = {.lex_state = 15}, - [1621] = {.lex_state = 8, .external_lex_state = 3}, - [1622] = {.lex_state = 8, .external_lex_state = 2}, - [1623] = {.lex_state = 67, .external_lex_state = 3}, + [1620] = {.lex_state = 8, .external_lex_state = 2}, + [1621] = {.lex_state = 67, .external_lex_state = 3}, + [1622] = {.lex_state = 67, .external_lex_state = 3}, + [1623] = {.lex_state = 8, .external_lex_state = 2}, [1624] = {.lex_state = 8, .external_lex_state = 2}, [1625] = {.lex_state = 8, .external_lex_state = 2}, [1626] = {.lex_state = 67, .external_lex_state = 3}, - [1627] = {.lex_state = 15}, - [1628] = {.lex_state = 15}, - [1629] = {.lex_state = 15}, - [1630] = {.lex_state = 67, .external_lex_state = 2}, - [1631] = {.lex_state = 68, .external_lex_state = 4}, - [1632] = {.lex_state = 8, .external_lex_state = 2}, + [1627] = {.lex_state = 67, .external_lex_state = 2}, + [1628] = {.lex_state = 67, .external_lex_state = 3}, + [1629] = {.lex_state = 8, .external_lex_state = 2}, + [1630] = {.lex_state = 8, .external_lex_state = 2}, + [1631] = {.lex_state = 8, .external_lex_state = 2}, + [1632] = {.lex_state = 67, .external_lex_state = 3}, [1633] = {.lex_state = 8, .external_lex_state = 2}, [1634] = {.lex_state = 67, .external_lex_state = 2}, [1635] = {.lex_state = 8, .external_lex_state = 2}, - [1636] = {.lex_state = 8, .external_lex_state = 2}, - [1637] = {.lex_state = 8, .external_lex_state = 2}, + [1636] = {.lex_state = 67, .external_lex_state = 3}, + [1637] = {.lex_state = 68, .external_lex_state = 4}, [1638] = {.lex_state = 8, .external_lex_state = 2}, [1639] = {.lex_state = 68, .external_lex_state = 4}, - [1640] = {.lex_state = 67, .external_lex_state = 2}, + [1640] = {.lex_state = 8, .external_lex_state = 2}, [1641] = {.lex_state = 8, .external_lex_state = 2}, - [1642] = {.lex_state = 8, .external_lex_state = 2}, - [1643] = {.lex_state = 8, .external_lex_state = 2}, + [1642] = {.lex_state = 68, .external_lex_state = 4}, + [1643] = {.lex_state = 67, .external_lex_state = 3}, [1644] = {.lex_state = 8, .external_lex_state = 2}, [1645] = {.lex_state = 8, .external_lex_state = 2}, - [1646] = {.lex_state = 8, .external_lex_state = 2}, + [1646] = {.lex_state = 68, .external_lex_state = 4}, [1647] = {.lex_state = 8, .external_lex_state = 2}, [1648] = {.lex_state = 8, .external_lex_state = 2}, - [1649] = {.lex_state = 68, .external_lex_state = 4}, - [1650] = {.lex_state = 68, .external_lex_state = 4}, - [1651] = {.lex_state = 8, .external_lex_state = 2}, - [1652] = {.lex_state = 8, .external_lex_state = 2}, - [1653] = {.lex_state = 68, .external_lex_state = 4}, - [1654] = {.lex_state = 67, .external_lex_state = 2}, + [1649] = {.lex_state = 8, .external_lex_state = 2}, + [1650] = {.lex_state = 8, .external_lex_state = 2}, + [1651] = {.lex_state = 68, .external_lex_state = 4}, + [1652] = {.lex_state = 68}, + [1653] = {.lex_state = 67, .external_lex_state = 2}, + [1654] = {.lex_state = 8, .external_lex_state = 2}, [1655] = {.lex_state = 8, .external_lex_state = 2}, [1656] = {.lex_state = 8, .external_lex_state = 2}, - [1657] = {.lex_state = 68, .external_lex_state = 4}, + [1657] = {.lex_state = 8, .external_lex_state = 2}, [1658] = {.lex_state = 8, .external_lex_state = 2}, [1659] = {.lex_state = 8, .external_lex_state = 2}, - [1660] = {.lex_state = 8, .external_lex_state = 2}, - [1661] = {.lex_state = 8, .external_lex_state = 2}, - [1662] = {.lex_state = 68}, + [1660] = {.lex_state = 67, .external_lex_state = 2}, + [1661] = {.lex_state = 67, .external_lex_state = 2}, + [1662] = {.lex_state = 8, .external_lex_state = 2}, [1663] = {.lex_state = 8, .external_lex_state = 2}, - [1664] = {.lex_state = 68, .external_lex_state = 4}, + [1664] = {.lex_state = 8, .external_lex_state = 2}, [1665] = {.lex_state = 8, .external_lex_state = 2}, - [1666] = {.lex_state = 68, .external_lex_state = 4}, + [1666] = {.lex_state = 67, .external_lex_state = 2}, [1667] = {.lex_state = 8, .external_lex_state = 2}, [1668] = {.lex_state = 8, .external_lex_state = 2}, [1669] = {.lex_state = 8, .external_lex_state = 2}, [1670] = {.lex_state = 8, .external_lex_state = 2}, - [1671] = {.lex_state = 67, .external_lex_state = 3}, + [1671] = {.lex_state = 8, .external_lex_state = 2}, [1672] = {.lex_state = 8, .external_lex_state = 2}, - [1673] = {.lex_state = 68, .external_lex_state = 4}, + [1673] = {.lex_state = 8, .external_lex_state = 2}, [1674] = {.lex_state = 8, .external_lex_state = 2}, [1675] = {.lex_state = 8, .external_lex_state = 2}, - [1676] = {.lex_state = 68, .external_lex_state = 4}, - [1677] = {.lex_state = 67, .external_lex_state = 3}, + [1676] = {.lex_state = 8, .external_lex_state = 2}, + [1677] = {.lex_state = 8, .external_lex_state = 2}, [1678] = {.lex_state = 8, .external_lex_state = 2}, [1679] = {.lex_state = 8, .external_lex_state = 2}, [1680] = {.lex_state = 8, .external_lex_state = 2}, [1681] = {.lex_state = 8, .external_lex_state = 2}, [1682] = {.lex_state = 8, .external_lex_state = 2}, - [1683] = {.lex_state = 67, .external_lex_state = 2}, + [1683] = {.lex_state = 8, .external_lex_state = 2}, [1684] = {.lex_state = 8, .external_lex_state = 2}, [1685] = {.lex_state = 8, .external_lex_state = 2}, - [1686] = {.lex_state = 67, .external_lex_state = 2}, + [1686] = {.lex_state = 8, .external_lex_state = 2}, [1687] = {.lex_state = 8, .external_lex_state = 2}, - [1688] = {.lex_state = 8, .external_lex_state = 2}, - [1689] = {.lex_state = 68, .external_lex_state = 4}, + [1688] = {.lex_state = 68, .external_lex_state = 4}, + [1689] = {.lex_state = 8, .external_lex_state = 2}, [1690] = {.lex_state = 8, .external_lex_state = 2}, - [1691] = {.lex_state = 8, .external_lex_state = 2}, - [1692] = {.lex_state = 8, .external_lex_state = 2}, - [1693] = {.lex_state = 68, .external_lex_state = 4}, + [1691] = {.lex_state = 68, .external_lex_state = 4}, + [1692] = {.lex_state = 68, .external_lex_state = 4}, + [1693] = {.lex_state = 8, .external_lex_state = 2}, [1694] = {.lex_state = 8, .external_lex_state = 2}, [1695] = {.lex_state = 8, .external_lex_state = 2}, [1696] = {.lex_state = 8, .external_lex_state = 2}, - [1697] = {.lex_state = 8, .external_lex_state = 2}, + [1697] = {.lex_state = 68, .external_lex_state = 4}, [1698] = {.lex_state = 8, .external_lex_state = 2}, - [1699] = {.lex_state = 8, .external_lex_state = 2}, - [1700] = {.lex_state = 8, .external_lex_state = 2}, + [1699] = {.lex_state = 68, .external_lex_state = 4}, + [1700] = {.lex_state = 68, .external_lex_state = 4}, [1701] = {.lex_state = 8, .external_lex_state = 2}, [1702] = {.lex_state = 8, .external_lex_state = 2}, [1703] = {.lex_state = 8, .external_lex_state = 2}, @@ -7634,21 +7668,21 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [1705] = {.lex_state = 8, .external_lex_state = 2}, [1706] = {.lex_state = 8, .external_lex_state = 2}, [1707] = {.lex_state = 8, .external_lex_state = 2}, - [1708] = {.lex_state = 8, .external_lex_state = 2}, - [1709] = {.lex_state = 68, .external_lex_state = 4}, - [1710] = {.lex_state = 67, .external_lex_state = 2}, + [1708] = {.lex_state = 67, .external_lex_state = 2}, + [1709] = {.lex_state = 8, .external_lex_state = 2}, + [1710] = {.lex_state = 8, .external_lex_state = 2}, [1711] = {.lex_state = 68, .external_lex_state = 4}, - [1712] = {.lex_state = 68, .external_lex_state = 4}, + [1712] = {.lex_state = 8, .external_lex_state = 2}, [1713] = {.lex_state = 68, .external_lex_state = 4}, [1714] = {.lex_state = 68, .external_lex_state = 4}, - [1715] = {.lex_state = 67, .external_lex_state = 2}, - [1716] = {.lex_state = 68, .external_lex_state = 4}, + [1715] = {.lex_state = 68, .external_lex_state = 4}, + [1716] = {.lex_state = 67, .external_lex_state = 2}, [1717] = {.lex_state = 68, .external_lex_state = 4}, [1718] = {.lex_state = 67, .external_lex_state = 2}, [1719] = {.lex_state = 67, .external_lex_state = 2}, [1720] = {.lex_state = 68, .external_lex_state = 4}, [1721] = {.lex_state = 68, .external_lex_state = 4}, - [1722] = {.lex_state = 68, .external_lex_state = 4}, + [1722] = {.lex_state = 67, .external_lex_state = 2}, [1723] = {.lex_state = 68, .external_lex_state = 4}, [1724] = {.lex_state = 68, .external_lex_state = 4}, [1725] = {.lex_state = 68, .external_lex_state = 4}, @@ -7673,58 +7707,58 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [1744] = {.lex_state = 68, .external_lex_state = 4}, [1745] = {.lex_state = 68, .external_lex_state = 4}, [1746] = {.lex_state = 68, .external_lex_state = 4}, - [1747] = {.lex_state = 68}, - [1748] = {.lex_state = 68}, + [1747] = {.lex_state = 68, .external_lex_state = 4}, + [1748] = {.lex_state = 68, .external_lex_state = 4}, [1749] = {.lex_state = 68, .external_lex_state = 4}, - [1750] = {.lex_state = 68}, - [1751] = {.lex_state = 68, .external_lex_state = 4}, - [1752] = {.lex_state = 17}, + [1750] = {.lex_state = 68, .external_lex_state = 4}, + [1751] = {.lex_state = 68}, + [1752] = {.lex_state = 68}, [1753] = {.lex_state = 68}, [1754] = {.lex_state = 68, .external_lex_state = 4}, - [1755] = {.lex_state = 68, .external_lex_state = 4}, - [1756] = {.lex_state = 68, .external_lex_state = 4}, - [1757] = {.lex_state = 68, .external_lex_state = 4}, + [1755] = {.lex_state = 68}, + [1756] = {.lex_state = 68}, + [1757] = {.lex_state = 68}, [1758] = {.lex_state = 68, .external_lex_state = 4}, - [1759] = {.lex_state = 68}, - [1760] = {.lex_state = 68}, - [1761] = {.lex_state = 68}, - [1762] = {.lex_state = 68, .external_lex_state = 4}, - [1763] = {.lex_state = 68}, - [1764] = {.lex_state = 68}, + [1759] = {.lex_state = 68, .external_lex_state = 4}, + [1760] = {.lex_state = 68, .external_lex_state = 4}, + [1761] = {.lex_state = 68, .external_lex_state = 4}, + [1762] = {.lex_state = 68}, + [1763] = {.lex_state = 68, .external_lex_state = 4}, + [1764] = {.lex_state = 68, .external_lex_state = 4}, [1765] = {.lex_state = 68}, - [1766] = {.lex_state = 68, .external_lex_state = 4}, + [1766] = {.lex_state = 68}, [1767] = {.lex_state = 68}, [1768] = {.lex_state = 68}, [1769] = {.lex_state = 68}, [1770] = {.lex_state = 68, .external_lex_state = 4}, [1771] = {.lex_state = 68, .external_lex_state = 4}, [1772] = {.lex_state = 68}, - [1773] = {.lex_state = 68, .external_lex_state = 4}, + [1773] = {.lex_state = 68}, [1774] = {.lex_state = 68, .external_lex_state = 4}, [1775] = {.lex_state = 68}, - [1776] = {.lex_state = 68, .external_lex_state = 4}, - [1777] = {.lex_state = 68}, - [1778] = {.lex_state = 68, .external_lex_state = 4}, + [1776] = {.lex_state = 68}, + [1777] = {.lex_state = 68, .external_lex_state = 4}, + [1778] = {.lex_state = 17}, [1779] = {.lex_state = 68}, - [1780] = {.lex_state = 68, .external_lex_state = 4}, + [1780] = {.lex_state = 68}, [1781] = {.lex_state = 68}, [1782] = {.lex_state = 68}, - [1783] = {.lex_state = 68, .external_lex_state = 4}, - [1784] = {.lex_state = 68}, - [1785] = {.lex_state = 68}, + [1783] = {.lex_state = 68}, + [1784] = {.lex_state = 68, .external_lex_state = 4}, + [1785] = {.lex_state = 68, .external_lex_state = 4}, [1786] = {.lex_state = 68, .external_lex_state = 4}, [1787] = {.lex_state = 68, .external_lex_state = 4}, [1788] = {.lex_state = 68}, - [1789] = {.lex_state = 68}, + [1789] = {.lex_state = 68, .external_lex_state = 4}, [1790] = {.lex_state = 68}, - [1791] = {.lex_state = 68}, - [1792] = {.lex_state = 68}, + [1791] = {.lex_state = 68, .external_lex_state = 4}, + [1792] = {.lex_state = 68, .external_lex_state = 4}, [1793] = {.lex_state = 68}, - [1794] = {.lex_state = 68}, + [1794] = {.lex_state = 68, .external_lex_state = 4}, [1795] = {.lex_state = 68}, [1796] = {.lex_state = 68, .external_lex_state = 4}, - [1797] = {.lex_state = 17}, - [1798] = {.lex_state = 68}, + [1797] = {.lex_state = 68}, + [1798] = {.lex_state = 17}, [1799] = {.lex_state = 68}, [1800] = {.lex_state = 68}, [1801] = {.lex_state = 68}, @@ -7743,40 +7777,40 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [1814] = {.lex_state = 68}, [1815] = {.lex_state = 68}, [1816] = {.lex_state = 17}, - [1817] = {.lex_state = 17}, - [1818] = {.lex_state = 17}, + [1817] = {.lex_state = 68}, + [1818] = {.lex_state = 68}, [1819] = {.lex_state = 17}, - [1820] = {.lex_state = 17}, - [1821] = {.lex_state = 68}, + [1820] = {.lex_state = 68}, + [1821] = {.lex_state = 17}, [1822] = {.lex_state = 68}, - [1823] = {.lex_state = 15, .external_lex_state = 4}, - [1824] = {.lex_state = 15, .external_lex_state = 4}, + [1823] = {.lex_state = 17}, + [1824] = {.lex_state = 17}, [1825] = {.lex_state = 68}, [1826] = {.lex_state = 68}, - [1827] = {.lex_state = 15, .external_lex_state = 4}, + [1827] = {.lex_state = 68}, [1828] = {.lex_state = 15, .external_lex_state = 4}, - [1829] = {.lex_state = 15, .external_lex_state = 4}, + [1829] = {.lex_state = 68}, [1830] = {.lex_state = 68}, [1831] = {.lex_state = 68}, - [1832] = {.lex_state = 15, .external_lex_state = 4}, + [1832] = {.lex_state = 68}, [1833] = {.lex_state = 15, .external_lex_state = 4}, - [1834] = {.lex_state = 68}, + [1834] = {.lex_state = 15, .external_lex_state = 4}, [1835] = {.lex_state = 15, .external_lex_state = 4}, [1836] = {.lex_state = 15, .external_lex_state = 4}, [1837] = {.lex_state = 15, .external_lex_state = 4}, [1838] = {.lex_state = 15, .external_lex_state = 4}, [1839] = {.lex_state = 15, .external_lex_state = 4}, - [1840] = {.lex_state = 68}, + [1840] = {.lex_state = 15, .external_lex_state = 4}, [1841] = {.lex_state = 15, .external_lex_state = 4}, [1842] = {.lex_state = 15, .external_lex_state = 4}, [1843] = {.lex_state = 15, .external_lex_state = 4}, [1844] = {.lex_state = 15, .external_lex_state = 4}, - [1845] = {.lex_state = 68}, + [1845] = {.lex_state = 15, .external_lex_state = 4}, [1846] = {.lex_state = 15, .external_lex_state = 4}, - [1847] = {.lex_state = 68}, + [1847] = {.lex_state = 15, .external_lex_state = 4}, [1848] = {.lex_state = 68}, [1849] = {.lex_state = 68}, - [1850] = {.lex_state = 68}, + [1850] = {.lex_state = 15, .external_lex_state = 4}, [1851] = {.lex_state = 68}, [1852] = {.lex_state = 68}, [1853] = {.lex_state = 68}, @@ -7793,13 +7827,13 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [1864] = {.lex_state = 68}, [1865] = {.lex_state = 68}, [1866] = {.lex_state = 68}, - [1867] = {.lex_state = 15}, + [1867] = {.lex_state = 68}, [1868] = {.lex_state = 68}, [1869] = {.lex_state = 68}, [1870] = {.lex_state = 68}, [1871] = {.lex_state = 68}, [1872] = {.lex_state = 68}, - [1873] = {.lex_state = 68}, + [1873] = {.lex_state = 15}, [1874] = {.lex_state = 68}, [1875] = {.lex_state = 68}, [1876] = {.lex_state = 68}, @@ -7841,21 +7875,21 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [1912] = {.lex_state = 68}, [1913] = {.lex_state = 68}, [1914] = {.lex_state = 68}, - [1915] = {.lex_state = 68, .external_lex_state = 4}, - [1916] = {.lex_state = 68, .external_lex_state = 4}, - [1917] = {.lex_state = 6}, - [1918] = {.lex_state = 6}, - [1919] = {.lex_state = 6}, - [1920] = {.lex_state = 6}, + [1915] = {.lex_state = 68}, + [1916] = {.lex_state = 68}, + [1917] = {.lex_state = 68}, + [1918] = {.lex_state = 68, .external_lex_state = 4}, + [1919] = {.lex_state = 68}, + [1920] = {.lex_state = 68, .external_lex_state = 4}, [1921] = {.lex_state = 6}, [1922] = {.lex_state = 68}, [1923] = {.lex_state = 68}, - [1924] = {.lex_state = 68}, + [1924] = {.lex_state = 6}, [1925] = {.lex_state = 6}, - [1926] = {.lex_state = 68, .external_lex_state = 4}, - [1927] = {.lex_state = 68, .external_lex_state = 4}, - [1928] = {.lex_state = 68, .external_lex_state = 4}, - [1929] = {.lex_state = 68, .external_lex_state = 4}, + [1926] = {.lex_state = 68}, + [1927] = {.lex_state = 6}, + [1928] = {.lex_state = 6}, + [1929] = {.lex_state = 6}, [1930] = {.lex_state = 68, .external_lex_state = 4}, [1931] = {.lex_state = 68, .external_lex_state = 4}, [1932] = {.lex_state = 68, .external_lex_state = 4}, @@ -7878,7 +7912,7 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [1949] = {.lex_state = 68, .external_lex_state = 4}, [1950] = {.lex_state = 68, .external_lex_state = 4}, [1951] = {.lex_state = 68, .external_lex_state = 4}, - [1952] = {.lex_state = 68}, + [1952] = {.lex_state = 68, .external_lex_state = 4}, [1953] = {.lex_state = 68, .external_lex_state = 4}, [1954] = {.lex_state = 68, .external_lex_state = 4}, [1955] = {.lex_state = 68, .external_lex_state = 4}, @@ -7895,7 +7929,7 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [1966] = {.lex_state = 68, .external_lex_state = 4}, [1967] = {.lex_state = 68, .external_lex_state = 4}, [1968] = {.lex_state = 68, .external_lex_state = 4}, - [1969] = {.lex_state = 68, .external_lex_state = 4}, + [1969] = {.lex_state = 68}, [1970] = {.lex_state = 68, .external_lex_state = 4}, [1971] = {.lex_state = 68, .external_lex_state = 4}, [1972] = {.lex_state = 68, .external_lex_state = 4}, @@ -7936,17 +7970,17 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [2007] = {.lex_state = 68, .external_lex_state = 4}, [2008] = {.lex_state = 68, .external_lex_state = 4}, [2009] = {.lex_state = 68, .external_lex_state = 4}, - [2010] = {.lex_state = 68}, - [2011] = {.lex_state = 68}, - [2012] = {.lex_state = 68}, - [2013] = {.lex_state = 68, .external_lex_state = 4}, + [2010] = {.lex_state = 68, .external_lex_state = 4}, + [2011] = {.lex_state = 68, .external_lex_state = 4}, + [2012] = {.lex_state = 68, .external_lex_state = 4}, + [2013] = {.lex_state = 68}, [2014] = {.lex_state = 68}, [2015] = {.lex_state = 68, .external_lex_state = 4}, - [2016] = {.lex_state = 68, .external_lex_state = 4}, + [2016] = {.lex_state = 68}, [2017] = {.lex_state = 68}, - [2018] = {.lex_state = 68}, - [2019] = {.lex_state = 68}, - [2020] = {.lex_state = 68, .external_lex_state = 4}, + [2018] = {.lex_state = 68, .external_lex_state = 4}, + [2019] = {.lex_state = 68, .external_lex_state = 4}, + [2020] = {.lex_state = 68}, [2021] = {.lex_state = 68}, [2022] = {.lex_state = 68}, [2023] = {.lex_state = 68}, @@ -7954,32 +7988,32 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [2025] = {.lex_state = 68}, [2026] = {.lex_state = 68}, [2027] = {.lex_state = 68}, - [2028] = {.lex_state = 68}, - [2029] = {.lex_state = 68}, + [2028] = {.lex_state = 68, .external_lex_state = 4}, + [2029] = {.lex_state = 68, .external_lex_state = 4}, [2030] = {.lex_state = 68}, [2031] = {.lex_state = 68}, [2032] = {.lex_state = 68}, [2033] = {.lex_state = 68}, - [2034] = {.lex_state = 68, .external_lex_state = 4}, + [2034] = {.lex_state = 68}, [2035] = {.lex_state = 68}, [2036] = {.lex_state = 68}, [2037] = {.lex_state = 68}, [2038] = {.lex_state = 68}, [2039] = {.lex_state = 68}, [2040] = {.lex_state = 68}, - [2041] = {.lex_state = 68, .external_lex_state = 4}, + [2041] = {.lex_state = 68}, [2042] = {.lex_state = 68}, - [2043] = {.lex_state = 68, .external_lex_state = 4}, - [2044] = {.lex_state = 68}, + [2043] = {.lex_state = 68}, + [2044] = {.lex_state = 68, .external_lex_state = 4}, [2045] = {.lex_state = 68}, - [2046] = {.lex_state = 68}, + [2046] = {.lex_state = 68, .external_lex_state = 4}, [2047] = {.lex_state = 68}, [2048] = {.lex_state = 68}, [2049] = {.lex_state = 68}, [2050] = {.lex_state = 68}, [2051] = {.lex_state = 68}, [2052] = {.lex_state = 68}, - [2053] = {.lex_state = 68}, + [2053] = {.lex_state = 68, .external_lex_state = 4}, [2054] = {.lex_state = 68}, [2055] = {.lex_state = 68}, [2056] = {.lex_state = 68}, @@ -7987,773 +8021,773 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [2058] = {.lex_state = 68}, [2059] = {.lex_state = 68}, [2060] = {.lex_state = 68}, - [2061] = {.lex_state = 68, .external_lex_state = 4}, + [2061] = {.lex_state = 68}, [2062] = {.lex_state = 68}, [2063] = {.lex_state = 68}, [2064] = {.lex_state = 68, .external_lex_state = 4}, [2065] = {.lex_state = 68}, - [2066] = {.lex_state = 68, .external_lex_state = 4}, - [2067] = {.lex_state = 68, .external_lex_state = 4}, - [2068] = {.lex_state = 68, .external_lex_state = 4}, - [2069] = {.lex_state = 0, .external_lex_state = 4}, - [2070] = {.lex_state = 68, .external_lex_state = 4}, - [2071] = {.lex_state = 68}, - [2072] = {.lex_state = 68}, - [2073] = {.lex_state = 68}, + [2066] = {.lex_state = 68}, + [2067] = {.lex_state = 68}, + [2068] = {.lex_state = 68}, + [2069] = {.lex_state = 68, .external_lex_state = 4}, + [2070] = {.lex_state = 68}, + [2071] = {.lex_state = 68, .external_lex_state = 4}, + [2072] = {.lex_state = 68, .external_lex_state = 4}, + [2073] = {.lex_state = 68, .external_lex_state = 4}, [2074] = {.lex_state = 68}, [2075] = {.lex_state = 68}, - [2076] = {.lex_state = 68}, - [2077] = {.lex_state = 68}, + [2076] = {.lex_state = 68, .external_lex_state = 4}, + [2077] = {.lex_state = 68, .external_lex_state = 4}, [2078] = {.lex_state = 68, .external_lex_state = 4}, - [2079] = {.lex_state = 68}, - [2080] = {.lex_state = 68}, + [2079] = {.lex_state = 68, .external_lex_state = 4}, + [2080] = {.lex_state = 68, .external_lex_state = 4}, [2081] = {.lex_state = 68}, - [2082] = {.lex_state = 0, .external_lex_state = 4}, - [2083] = {.lex_state = 68, .external_lex_state = 4}, + [2082] = {.lex_state = 68}, + [2083] = {.lex_state = 68}, [2084] = {.lex_state = 68}, - [2085] = {.lex_state = 0, .external_lex_state = 4}, - [2086] = {.lex_state = 68, .external_lex_state = 4}, - [2087] = {.lex_state = 68}, - [2088] = {.lex_state = 68, .external_lex_state = 4}, + [2085] = {.lex_state = 68}, + [2086] = {.lex_state = 68}, + [2087] = {.lex_state = 0, .external_lex_state = 4}, + [2088] = {.lex_state = 68}, [2089] = {.lex_state = 68}, [2090] = {.lex_state = 68}, [2091] = {.lex_state = 68}, - [2092] = {.lex_state = 68}, + [2092] = {.lex_state = 68, .external_lex_state = 4}, [2093] = {.lex_state = 68}, [2094] = {.lex_state = 68}, [2095] = {.lex_state = 68}, [2096] = {.lex_state = 68}, - [2097] = {.lex_state = 14}, - [2098] = {.lex_state = 68}, - [2099] = {.lex_state = 0, .external_lex_state = 4}, - [2100] = {.lex_state = 68, .external_lex_state = 4}, + [2097] = {.lex_state = 68}, + [2098] = {.lex_state = 14}, + [2099] = {.lex_state = 68, .external_lex_state = 4}, + [2100] = {.lex_state = 68}, [2101] = {.lex_state = 68}, [2102] = {.lex_state = 68}, [2103] = {.lex_state = 68}, [2104] = {.lex_state = 68}, - [2105] = {.lex_state = 0, .external_lex_state = 4}, + [2105] = {.lex_state = 68}, [2106] = {.lex_state = 68, .external_lex_state = 4}, - [2107] = {.lex_state = 68}, - [2108] = {.lex_state = 0, .external_lex_state = 4}, - [2109] = {.lex_state = 68}, + [2107] = {.lex_state = 14}, + [2108] = {.lex_state = 68}, + [2109] = {.lex_state = 68, .external_lex_state = 4}, [2110] = {.lex_state = 68}, [2111] = {.lex_state = 68}, - [2112] = {.lex_state = 68, .external_lex_state = 4}, + [2112] = {.lex_state = 0, .external_lex_state = 4}, [2113] = {.lex_state = 68}, - [2114] = {.lex_state = 68}, - [2115] = {.lex_state = 68, .external_lex_state = 4}, - [2116] = {.lex_state = 68, .external_lex_state = 4}, - [2117] = {.lex_state = 68, .external_lex_state = 4}, + [2114] = {.lex_state = 0, .external_lex_state = 4}, + [2115] = {.lex_state = 0, .external_lex_state = 4}, + [2116] = {.lex_state = 0, .external_lex_state = 4}, + [2117] = {.lex_state = 68}, [2118] = {.lex_state = 68}, - [2119] = {.lex_state = 0, .external_lex_state = 4}, + [2119] = {.lex_state = 68}, [2120] = {.lex_state = 68}, - [2121] = {.lex_state = 68, .external_lex_state = 4}, - [2122] = {.lex_state = 68}, - [2123] = {.lex_state = 68}, + [2121] = {.lex_state = 68}, + [2122] = {.lex_state = 68, .external_lex_state = 4}, + [2123] = {.lex_state = 68, .external_lex_state = 4}, [2124] = {.lex_state = 68, .external_lex_state = 4}, - [2125] = {.lex_state = 68, .external_lex_state = 4}, - [2126] = {.lex_state = 68}, - [2127] = {.lex_state = 68}, - [2128] = {.lex_state = 68, .external_lex_state = 4}, - [2129] = {.lex_state = 68}, - [2130] = {.lex_state = 68}, - [2131] = {.lex_state = 68, .external_lex_state = 4}, + [2125] = {.lex_state = 0, .external_lex_state = 4}, + [2126] = {.lex_state = 68, .external_lex_state = 4}, + [2127] = {.lex_state = 0, .external_lex_state = 4}, + [2128] = {.lex_state = 68}, + [2129] = {.lex_state = 68, .external_lex_state = 4}, + [2130] = {.lex_state = 68, .external_lex_state = 4}, + [2131] = {.lex_state = 0, .external_lex_state = 4}, [2132] = {.lex_state = 68}, [2133] = {.lex_state = 68}, - [2134] = {.lex_state = 68, .external_lex_state = 4}, - [2135] = {.lex_state = 68, .external_lex_state = 4}, - [2136] = {.lex_state = 14}, + [2134] = {.lex_state = 68}, + [2135] = {.lex_state = 68}, + [2136] = {.lex_state = 68}, [2137] = {.lex_state = 68}, - [2138] = {.lex_state = 68, .external_lex_state = 4}, + [2138] = {.lex_state = 68}, [2139] = {.lex_state = 68, .external_lex_state = 4}, - [2140] = {.lex_state = 0, .external_lex_state = 4}, + [2140] = {.lex_state = 68, .external_lex_state = 4}, [2141] = {.lex_state = 68}, [2142] = {.lex_state = 68}, [2143] = {.lex_state = 68}, [2144] = {.lex_state = 68}, - [2145] = {.lex_state = 68}, + [2145] = {.lex_state = 68, .external_lex_state = 4}, [2146] = {.lex_state = 68}, - [2147] = {.lex_state = 68}, - [2148] = {.lex_state = 68}, - [2149] = {.lex_state = 68}, - [2150] = {.lex_state = 0, .external_lex_state = 4}, - [2151] = {.lex_state = 19, .external_lex_state = 5}, + [2147] = {.lex_state = 68, .external_lex_state = 4}, + [2148] = {.lex_state = 68, .external_lex_state = 4}, + [2149] = {.lex_state = 19, .external_lex_state = 5}, + [2150] = {.lex_state = 68}, + [2151] = {.lex_state = 0, .external_lex_state = 4}, [2152] = {.lex_state = 68}, - [2153] = {.lex_state = 19, .external_lex_state = 5}, - [2154] = {.lex_state = 0, .external_lex_state = 4}, - [2155] = {.lex_state = 68}, - [2156] = {.lex_state = 68}, - [2157] = {.lex_state = 68}, - [2158] = {.lex_state = 68}, - [2159] = {.lex_state = 68}, + [2153] = {.lex_state = 68}, + [2154] = {.lex_state = 68}, + [2155] = {.lex_state = 0, .external_lex_state = 4}, + [2156] = {.lex_state = 0, .external_lex_state = 4}, + [2157] = {.lex_state = 0, .external_lex_state = 4}, + [2158] = {.lex_state = 0, .external_lex_state = 4}, + [2159] = {.lex_state = 0, .external_lex_state = 4}, [2160] = {.lex_state = 68}, [2161] = {.lex_state = 68}, [2162] = {.lex_state = 68}, - [2163] = {.lex_state = 0, .external_lex_state = 4}, - [2164] = {.lex_state = 0, .external_lex_state = 4}, - [2165] = {.lex_state = 0, .external_lex_state = 4}, + [2163] = {.lex_state = 68}, + [2164] = {.lex_state = 68}, + [2165] = {.lex_state = 19}, [2166] = {.lex_state = 0, .external_lex_state = 4}, - [2167] = {.lex_state = 68}, + [2167] = {.lex_state = 0, .external_lex_state = 4}, [2168] = {.lex_state = 0, .external_lex_state = 4}, - [2169] = {.lex_state = 68, .external_lex_state = 4}, - [2170] = {.lex_state = 68, .external_lex_state = 4}, - [2171] = {.lex_state = 0, .external_lex_state = 4}, + [2169] = {.lex_state = 68}, + [2170] = {.lex_state = 0, .external_lex_state = 4}, + [2171] = {.lex_state = 68}, [2172] = {.lex_state = 68}, [2173] = {.lex_state = 68}, [2174] = {.lex_state = 68}, - [2175] = {.lex_state = 68}, + [2175] = {.lex_state = 0, .external_lex_state = 4}, [2176] = {.lex_state = 68}, [2177] = {.lex_state = 68}, - [2178] = {.lex_state = 0, .external_lex_state = 4}, - [2179] = {.lex_state = 68}, - [2180] = {.lex_state = 68}, - [2181] = {.lex_state = 68}, - [2182] = {.lex_state = 68}, - [2183] = {.lex_state = 19}, - [2184] = {.lex_state = 19}, + [2178] = {.lex_state = 19, .external_lex_state = 5}, + [2179] = {.lex_state = 0, .external_lex_state = 4}, + [2180] = {.lex_state = 0}, + [2181] = {.lex_state = 0, .external_lex_state = 4}, + [2182] = {.lex_state = 0, .external_lex_state = 4}, + [2183] = {.lex_state = 68}, + [2184] = {.lex_state = 68}, [2185] = {.lex_state = 0, .external_lex_state = 4}, - [2186] = {.lex_state = 19}, + [2186] = {.lex_state = 68}, [2187] = {.lex_state = 68}, [2188] = {.lex_state = 68}, - [2189] = {.lex_state = 68}, - [2190] = {.lex_state = 0, .external_lex_state = 4}, + [2189] = {.lex_state = 19, .external_lex_state = 5}, + [2190] = {.lex_state = 68}, [2191] = {.lex_state = 68}, [2192] = {.lex_state = 68}, - [2193] = {.lex_state = 19}, - [2194] = {.lex_state = 68}, + [2193] = {.lex_state = 68}, + [2194] = {.lex_state = 68, .external_lex_state = 4}, [2195] = {.lex_state = 68}, - [2196] = {.lex_state = 0, .external_lex_state = 4}, - [2197] = {.lex_state = 68}, - [2198] = {.lex_state = 19}, - [2199] = {.lex_state = 68}, - [2200] = {.lex_state = 0, .external_lex_state = 4}, + [2196] = {.lex_state = 68}, + [2197] = {.lex_state = 68, .external_lex_state = 4}, + [2198] = {.lex_state = 68}, + [2199] = {.lex_state = 14}, + [2200] = {.lex_state = 68}, [2201] = {.lex_state = 68}, - [2202] = {.lex_state = 68}, - [2203] = {.lex_state = 68}, - [2204] = {.lex_state = 0, .external_lex_state = 4}, + [2202] = {.lex_state = 68, .external_lex_state = 4}, + [2203] = {.lex_state = 19, .external_lex_state = 5}, + [2204] = {.lex_state = 68}, [2205] = {.lex_state = 68}, - [2206] = {.lex_state = 19, .external_lex_state = 5}, + [2206] = {.lex_state = 68}, [2207] = {.lex_state = 68}, [2208] = {.lex_state = 68}, [2209] = {.lex_state = 68}, - [2210] = {.lex_state = 19}, - [2211] = {.lex_state = 19}, - [2212] = {.lex_state = 19}, - [2213] = {.lex_state = 68}, - [2214] = {.lex_state = 68}, - [2215] = {.lex_state = 68}, + [2210] = {.lex_state = 68, .external_lex_state = 4}, + [2211] = {.lex_state = 68}, + [2212] = {.lex_state = 68}, + [2213] = {.lex_state = 19}, + [2214] = {.lex_state = 19}, + [2215] = {.lex_state = 0, .external_lex_state = 4}, [2216] = {.lex_state = 68}, - [2217] = {.lex_state = 0, .external_lex_state = 4}, - [2218] = {.lex_state = 0}, + [2217] = {.lex_state = 68}, + [2218] = {.lex_state = 68}, [2219] = {.lex_state = 68}, - [2220] = {.lex_state = 0, .external_lex_state = 4}, - [2221] = {.lex_state = 68}, + [2220] = {.lex_state = 19}, + [2221] = {.lex_state = 19}, [2222] = {.lex_state = 68}, - [2223] = {.lex_state = 68}, + [2223] = {.lex_state = 0, .external_lex_state = 4}, [2224] = {.lex_state = 68}, - [2225] = {.lex_state = 19, .external_lex_state = 5}, - [2226] = {.lex_state = 19}, - [2227] = {.lex_state = 14}, + [2225] = {.lex_state = 0, .external_lex_state = 4}, + [2226] = {.lex_state = 68}, + [2227] = {.lex_state = 0, .external_lex_state = 4}, [2228] = {.lex_state = 68}, [2229] = {.lex_state = 68}, - [2230] = {.lex_state = 19, .external_lex_state = 5}, - [2231] = {.lex_state = 19, .external_lex_state = 5}, + [2230] = {.lex_state = 68}, + [2231] = {.lex_state = 68}, [2232] = {.lex_state = 68}, [2233] = {.lex_state = 68}, - [2234] = {.lex_state = 68}, - [2235] = {.lex_state = 68, .external_lex_state = 4}, - [2236] = {.lex_state = 68}, - [2237] = {.lex_state = 0, .external_lex_state = 4}, - [2238] = {.lex_state = 19, .external_lex_state = 5}, - [2239] = {.lex_state = 68}, + [2234] = {.lex_state = 19}, + [2235] = {.lex_state = 68}, + [2236] = {.lex_state = 19}, + [2237] = {.lex_state = 68}, + [2238] = {.lex_state = 68}, + [2239] = {.lex_state = 19, .external_lex_state = 5}, [2240] = {.lex_state = 68}, - [2241] = {.lex_state = 68, .external_lex_state = 4}, + [2241] = {.lex_state = 68}, [2242] = {.lex_state = 68}, [2243] = {.lex_state = 68}, [2244] = {.lex_state = 68}, - [2245] = {.lex_state = 0, .external_lex_state = 4}, + [2245] = {.lex_state = 68}, [2246] = {.lex_state = 68}, [2247] = {.lex_state = 68}, [2248] = {.lex_state = 68}, [2249] = {.lex_state = 0, .external_lex_state = 4}, [2250] = {.lex_state = 0, .external_lex_state = 4}, [2251] = {.lex_state = 68}, - [2252] = {.lex_state = 0, .external_lex_state = 4}, + [2252] = {.lex_state = 68}, [2253] = {.lex_state = 68}, [2254] = {.lex_state = 68}, [2255] = {.lex_state = 68}, - [2256] = {.lex_state = 0, .external_lex_state = 4}, - [2257] = {.lex_state = 0, .external_lex_state = 4}, - [2258] = {.lex_state = 0, .external_lex_state = 4}, - [2259] = {.lex_state = 0, .external_lex_state = 4}, - [2260] = {.lex_state = 68, .external_lex_state = 4}, - [2261] = {.lex_state = 0}, + [2256] = {.lex_state = 68}, + [2257] = {.lex_state = 68}, + [2258] = {.lex_state = 19, .external_lex_state = 5}, + [2259] = {.lex_state = 19, .external_lex_state = 5}, + [2260] = {.lex_state = 68}, + [2261] = {.lex_state = 19}, [2262] = {.lex_state = 68}, - [2263] = {.lex_state = 0, .external_lex_state = 4}, - [2264] = {.lex_state = 0, .external_lex_state = 4}, - [2265] = {.lex_state = 0, .external_lex_state = 4}, - [2266] = {.lex_state = 0, .external_lex_state = 4}, - [2267] = {.lex_state = 0, .external_lex_state = 4}, + [2263] = {.lex_state = 68}, + [2264] = {.lex_state = 68}, + [2265] = {.lex_state = 19}, + [2266] = {.lex_state = 68, .external_lex_state = 4}, + [2267] = {.lex_state = 68}, [2268] = {.lex_state = 0, .external_lex_state = 4}, [2269] = {.lex_state = 0, .external_lex_state = 4}, [2270] = {.lex_state = 0, .external_lex_state = 4}, - [2271] = {.lex_state = 14}, + [2271] = {.lex_state = 0, .external_lex_state = 4}, [2272] = {.lex_state = 0, .external_lex_state = 4}, - [2273] = {.lex_state = 0}, - [2274] = {.lex_state = 68}, + [2273] = {.lex_state = 68}, + [2274] = {.lex_state = 0, .external_lex_state = 4}, [2275] = {.lex_state = 0, .external_lex_state = 4}, [2276] = {.lex_state = 68}, - [2277] = {.lex_state = 68, .external_lex_state = 4}, - [2278] = {.lex_state = 68}, - [2279] = {.lex_state = 0}, + [2277] = {.lex_state = 0, .external_lex_state = 4}, + [2278] = {.lex_state = 0, .external_lex_state = 4}, + [2279] = {.lex_state = 68}, [2280] = {.lex_state = 0, .external_lex_state = 4}, [2281] = {.lex_state = 68}, [2282] = {.lex_state = 0, .external_lex_state = 4}, - [2283] = {.lex_state = 0, .external_lex_state = 4}, - [2284] = {.lex_state = 0, .external_lex_state = 4}, + [2283] = {.lex_state = 68}, + [2284] = {.lex_state = 68, .external_lex_state = 4}, [2285] = {.lex_state = 0, .external_lex_state = 4}, - [2286] = {.lex_state = 68}, - [2287] = {.lex_state = 68, .external_lex_state = 4}, - [2288] = {.lex_state = 68}, - [2289] = {.lex_state = 0, .external_lex_state = 4}, - [2290] = {.lex_state = 0, .external_lex_state = 4}, - [2291] = {.lex_state = 0, .external_lex_state = 4}, + [2286] = {.lex_state = 0, .external_lex_state = 4}, + [2287] = {.lex_state = 68}, + [2288] = {.lex_state = 0, .external_lex_state = 4}, + [2289] = {.lex_state = 68, .external_lex_state = 4}, + [2290] = {.lex_state = 68}, + [2291] = {.lex_state = 68}, [2292] = {.lex_state = 0, .external_lex_state = 4}, - [2293] = {.lex_state = 68}, - [2294] = {.lex_state = 0, .external_lex_state = 4}, + [2293] = {.lex_state = 0}, + [2294] = {.lex_state = 68}, [2295] = {.lex_state = 68}, [2296] = {.lex_state = 0, .external_lex_state = 4}, [2297] = {.lex_state = 0, .external_lex_state = 4}, - [2298] = {.lex_state = 0, .external_lex_state = 4}, + [2298] = {.lex_state = 68}, [2299] = {.lex_state = 0, .external_lex_state = 4}, - [2300] = {.lex_state = 0, .external_lex_state = 4}, - [2301] = {.lex_state = 68}, + [2300] = {.lex_state = 68}, + [2301] = {.lex_state = 0, .external_lex_state = 4}, [2302] = {.lex_state = 0, .external_lex_state = 4}, - [2303] = {.lex_state = 0}, - [2304] = {.lex_state = 0, .external_lex_state = 4}, + [2303] = {.lex_state = 0, .external_lex_state = 4}, + [2304] = {.lex_state = 68, .external_lex_state = 4}, [2305] = {.lex_state = 0, .external_lex_state = 4}, - [2306] = {.lex_state = 68, .external_lex_state = 4}, + [2306] = {.lex_state = 0, .external_lex_state = 4}, [2307] = {.lex_state = 0, .external_lex_state = 4}, [2308] = {.lex_state = 68}, [2309] = {.lex_state = 0, .external_lex_state = 4}, - [2310] = {.lex_state = 68, .external_lex_state = 4}, + [2310] = {.lex_state = 68}, [2311] = {.lex_state = 0, .external_lex_state = 4}, [2312] = {.lex_state = 0, .external_lex_state = 4}, - [2313] = {.lex_state = 14}, - [2314] = {.lex_state = 68}, - [2315] = {.lex_state = 68}, + [2313] = {.lex_state = 0, .external_lex_state = 4}, + [2314] = {.lex_state = 0, .external_lex_state = 4}, + [2315] = {.lex_state = 0, .external_lex_state = 4}, [2316] = {.lex_state = 0, .external_lex_state = 4}, [2317] = {.lex_state = 0, .external_lex_state = 4}, [2318] = {.lex_state = 0, .external_lex_state = 4}, - [2319] = {.lex_state = 68}, - [2320] = {.lex_state = 68}, - [2321] = {.lex_state = 68}, - [2322] = {.lex_state = 68}, - [2323] = {.lex_state = 0, .external_lex_state = 4}, - [2324] = {.lex_state = 0, .external_lex_state = 4}, + [2319] = {.lex_state = 0, .external_lex_state = 4}, + [2320] = {.lex_state = 0, .external_lex_state = 4}, + [2321] = {.lex_state = 0, .external_lex_state = 4}, + [2322] = {.lex_state = 0, .external_lex_state = 4}, + [2323] = {.lex_state = 68}, + [2324] = {.lex_state = 14}, [2325] = {.lex_state = 68}, - [2326] = {.lex_state = 68}, - [2327] = {.lex_state = 0, .external_lex_state = 4}, - [2328] = {.lex_state = 0, .external_lex_state = 4}, + [2326] = {.lex_state = 0}, + [2327] = {.lex_state = 68}, + [2328] = {.lex_state = 68}, [2329] = {.lex_state = 0, .external_lex_state = 4}, - [2330] = {.lex_state = 68}, + [2330] = {.lex_state = 0, .external_lex_state = 4}, [2331] = {.lex_state = 0, .external_lex_state = 4}, [2332] = {.lex_state = 0, .external_lex_state = 4}, [2333] = {.lex_state = 0, .external_lex_state = 4}, [2334] = {.lex_state = 68}, - [2335] = {.lex_state = 0, .external_lex_state = 4}, - [2336] = {.lex_state = 68}, + [2335] = {.lex_state = 68}, + [2336] = {.lex_state = 0, .external_lex_state = 4}, [2337] = {.lex_state = 0, .external_lex_state = 4}, [2338] = {.lex_state = 0, .external_lex_state = 4}, - [2339] = {.lex_state = 0, .external_lex_state = 4}, + [2339] = {.lex_state = 0}, [2340] = {.lex_state = 68}, - [2341] = {.lex_state = 0, .external_lex_state = 4}, - [2342] = {.lex_state = 0, .external_lex_state = 4}, - [2343] = {.lex_state = 0}, - [2344] = {.lex_state = 0, .external_lex_state = 4}, - [2345] = {.lex_state = 0, .external_lex_state = 4}, - [2346] = {.lex_state = 0, .external_lex_state = 4}, - [2347] = {.lex_state = 68, .external_lex_state = 4}, + [2341] = {.lex_state = 68}, + [2342] = {.lex_state = 14}, + [2343] = {.lex_state = 68}, + [2344] = {.lex_state = 68}, + [2345] = {.lex_state = 68}, + [2346] = {.lex_state = 0}, + [2347] = {.lex_state = 0}, [2348] = {.lex_state = 0, .external_lex_state = 4}, [2349] = {.lex_state = 68}, - [2350] = {.lex_state = 68, .external_lex_state = 4}, - [2351] = {.lex_state = 68}, - [2352] = {.lex_state = 0, .external_lex_state = 4}, + [2350] = {.lex_state = 0, .external_lex_state = 4}, + [2351] = {.lex_state = 68, .external_lex_state = 4}, + [2352] = {.lex_state = 0}, [2353] = {.lex_state = 0, .external_lex_state = 4}, - [2354] = {.lex_state = 68}, - [2355] = {.lex_state = 68}, - [2356] = {.lex_state = 0, .external_lex_state = 4}, - [2357] = {.lex_state = 0, .external_lex_state = 4}, - [2358] = {.lex_state = 14}, - [2359] = {.lex_state = 0, .external_lex_state = 4}, - [2360] = {.lex_state = 68}, - [2361] = {.lex_state = 14}, + [2354] = {.lex_state = 0, .external_lex_state = 4}, + [2355] = {.lex_state = 0, .external_lex_state = 4}, + [2356] = {.lex_state = 68}, + [2357] = {.lex_state = 68}, + [2358] = {.lex_state = 68}, + [2359] = {.lex_state = 68}, + [2360] = {.lex_state = 0, .external_lex_state = 4}, + [2361] = {.lex_state = 0, .external_lex_state = 4}, [2362] = {.lex_state = 68}, - [2363] = {.lex_state = 0, .external_lex_state = 4}, + [2363] = {.lex_state = 68}, [2364] = {.lex_state = 68}, [2365] = {.lex_state = 68}, - [2366] = {.lex_state = 68}, + [2366] = {.lex_state = 0, .external_lex_state = 4}, [2367] = {.lex_state = 0, .external_lex_state = 4}, - [2368] = {.lex_state = 0, .external_lex_state = 4}, - [2369] = {.lex_state = 0, .external_lex_state = 4}, - [2370] = {.lex_state = 0, .external_lex_state = 4}, - [2371] = {.lex_state = 0}, + [2368] = {.lex_state = 68}, + [2369] = {.lex_state = 68}, + [2370] = {.lex_state = 68}, + [2371] = {.lex_state = 0, .external_lex_state = 4}, [2372] = {.lex_state = 68}, - [2373] = {.lex_state = 0, .external_lex_state = 4}, + [2373] = {.lex_state = 68}, [2374] = {.lex_state = 0, .external_lex_state = 4}, - [2375] = {.lex_state = 0, .external_lex_state = 4}, - [2376] = {.lex_state = 68}, - [2377] = {.lex_state = 0, .external_lex_state = 4}, + [2375] = {.lex_state = 14}, + [2376] = {.lex_state = 0, .external_lex_state = 4}, + [2377] = {.lex_state = 68}, [2378] = {.lex_state = 68}, [2379] = {.lex_state = 0, .external_lex_state = 4}, - [2380] = {.lex_state = 0, .external_lex_state = 4}, - [2381] = {.lex_state = 68, .external_lex_state = 4}, + [2380] = {.lex_state = 68}, + [2381] = {.lex_state = 0, .external_lex_state = 4}, [2382] = {.lex_state = 68}, - [2383] = {.lex_state = 68, .external_lex_state = 4}, - [2384] = {.lex_state = 0, .external_lex_state = 4}, - [2385] = {.lex_state = 0, .external_lex_state = 4}, - [2386] = {.lex_state = 68}, + [2383] = {.lex_state = 0}, + [2384] = {.lex_state = 68}, + [2385] = {.lex_state = 68}, + [2386] = {.lex_state = 0, .external_lex_state = 4}, [2387] = {.lex_state = 68}, [2388] = {.lex_state = 0, .external_lex_state = 4}, - [2389] = {.lex_state = 0, .external_lex_state = 4}, - [2390] = {.lex_state = 68}, - [2391] = {.lex_state = 68}, - [2392] = {.lex_state = 68, .external_lex_state = 4}, - [2393] = {.lex_state = 0, .external_lex_state = 4}, + [2389] = {.lex_state = 68}, + [2390] = {.lex_state = 0, .external_lex_state = 4}, + [2391] = {.lex_state = 0, .external_lex_state = 4}, + [2392] = {.lex_state = 0, .external_lex_state = 4}, + [2393] = {.lex_state = 68, .external_lex_state = 4}, [2394] = {.lex_state = 68}, - [2395] = {.lex_state = 0, .external_lex_state = 4}, + [2395] = {.lex_state = 68}, [2396] = {.lex_state = 68}, - [2397] = {.lex_state = 68}, - [2398] = {.lex_state = 68}, + [2397] = {.lex_state = 68, .external_lex_state = 4}, + [2398] = {.lex_state = 0, .external_lex_state = 4}, [2399] = {.lex_state = 68}, - [2400] = {.lex_state = 68, .external_lex_state = 4}, - [2401] = {.lex_state = 68}, - [2402] = {.lex_state = 68}, - [2403] = {.lex_state = 68}, + [2400] = {.lex_state = 68}, + [2401] = {.lex_state = 0, .external_lex_state = 4}, + [2402] = {.lex_state = 0, .external_lex_state = 4}, + [2403] = {.lex_state = 0, .external_lex_state = 4}, [2404] = {.lex_state = 68}, - [2405] = {.lex_state = 0}, - [2406] = {.lex_state = 0, .external_lex_state = 4}, - [2407] = {.lex_state = 68}, - [2408] = {.lex_state = 68}, - [2409] = {.lex_state = 68, .external_lex_state = 4}, + [2405] = {.lex_state = 0, .external_lex_state = 4}, + [2406] = {.lex_state = 68, .external_lex_state = 4}, + [2407] = {.lex_state = 0, .external_lex_state = 4}, + [2408] = {.lex_state = 0, .external_lex_state = 4}, + [2409] = {.lex_state = 0, .external_lex_state = 4}, [2410] = {.lex_state = 68}, [2411] = {.lex_state = 68}, [2412] = {.lex_state = 68}, - [2413] = {.lex_state = 0, .external_lex_state = 4}, - [2414] = {.lex_state = 68}, - [2415] = {.lex_state = 68}, + [2413] = {.lex_state = 68}, + [2414] = {.lex_state = 0, .external_lex_state = 4}, + [2415] = {.lex_state = 0, .external_lex_state = 4}, [2416] = {.lex_state = 68}, [2417] = {.lex_state = 68}, [2418] = {.lex_state = 0, .external_lex_state = 4}, - [2419] = {.lex_state = 68}, - [2420] = {.lex_state = 0, .external_lex_state = 4}, + [2419] = {.lex_state = 0, .external_lex_state = 4}, + [2420] = {.lex_state = 68}, [2421] = {.lex_state = 68}, [2422] = {.lex_state = 68, .external_lex_state = 4}, - [2423] = {.lex_state = 0, .external_lex_state = 4}, + [2423] = {.lex_state = 68}, [2424] = {.lex_state = 68}, - [2425] = {.lex_state = 68, .external_lex_state = 4}, - [2426] = {.lex_state = 0, .external_lex_state = 4}, - [2427] = {.lex_state = 68}, - [2428] = {.lex_state = 68}, - [2429] = {.lex_state = 0, .external_lex_state = 4}, - [2430] = {.lex_state = 68}, + [2425] = {.lex_state = 0}, + [2426] = {.lex_state = 68}, + [2427] = {.lex_state = 0, .external_lex_state = 4}, + [2428] = {.lex_state = 0, .external_lex_state = 4}, + [2429] = {.lex_state = 68, .external_lex_state = 4}, + [2430] = {.lex_state = 0}, [2431] = {.lex_state = 0, .external_lex_state = 4}, - [2432] = {.lex_state = 68}, - [2433] = {.lex_state = 0}, - [2434] = {.lex_state = 0, .external_lex_state = 4}, + [2432] = {.lex_state = 0, .external_lex_state = 4}, + [2433] = {.lex_state = 68}, + [2434] = {.lex_state = 68}, [2435] = {.lex_state = 0, .external_lex_state = 4}, - [2436] = {.lex_state = 68}, - [2437] = {.lex_state = 68}, - [2438] = {.lex_state = 68}, + [2436] = {.lex_state = 0, .external_lex_state = 4}, + [2437] = {.lex_state = 0, .external_lex_state = 4}, + [2438] = {.lex_state = 0, .external_lex_state = 4}, [2439] = {.lex_state = 68}, [2440] = {.lex_state = 0, .external_lex_state = 4}, [2441] = {.lex_state = 68}, [2442] = {.lex_state = 0, .external_lex_state = 4}, - [2443] = {.lex_state = 0, .external_lex_state = 4}, - [2444] = {.lex_state = 0, .external_lex_state = 4}, + [2443] = {.lex_state = 68}, + [2444] = {.lex_state = 68}, [2445] = {.lex_state = 68}, - [2446] = {.lex_state = 68}, - [2447] = {.lex_state = 68, .external_lex_state = 4}, + [2446] = {.lex_state = 0, .external_lex_state = 4}, + [2447] = {.lex_state = 0}, [2448] = {.lex_state = 68}, [2449] = {.lex_state = 68}, [2450] = {.lex_state = 68, .external_lex_state = 4}, - [2451] = {.lex_state = 68}, - [2452] = {.lex_state = 68}, + [2451] = {.lex_state = 0, .external_lex_state = 4}, + [2452] = {.lex_state = 14}, [2453] = {.lex_state = 68}, - [2454] = {.lex_state = 0, .external_lex_state = 4}, + [2454] = {.lex_state = 68}, [2455] = {.lex_state = 0, .external_lex_state = 4}, - [2456] = {.lex_state = 68}, + [2456] = {.lex_state = 68, .external_lex_state = 4}, [2457] = {.lex_state = 68}, - [2458] = {.lex_state = 68}, - [2459] = {.lex_state = 0}, - [2460] = {.lex_state = 68}, + [2458] = {.lex_state = 0, .external_lex_state = 4}, + [2459] = {.lex_state = 0, .external_lex_state = 4}, + [2460] = {.lex_state = 68, .external_lex_state = 4}, [2461] = {.lex_state = 0, .external_lex_state = 4}, - [2462] = {.lex_state = 0, .external_lex_state = 4}, - [2463] = {.lex_state = 0, .external_lex_state = 4}, + [2462] = {.lex_state = 68, .external_lex_state = 4}, + [2463] = {.lex_state = 68}, [2464] = {.lex_state = 0, .external_lex_state = 4}, [2465] = {.lex_state = 0, .external_lex_state = 4}, [2466] = {.lex_state = 0, .external_lex_state = 4}, - [2467] = {.lex_state = 0}, - [2468] = {.lex_state = 0, .external_lex_state = 4}, + [2467] = {.lex_state = 0, .external_lex_state = 4}, + [2468] = {.lex_state = 68, .external_lex_state = 4}, [2469] = {.lex_state = 0, .external_lex_state = 4}, - [2470] = {.lex_state = 68}, - [2471] = {.lex_state = 68}, + [2470] = {.lex_state = 0, .external_lex_state = 4}, + [2471] = {.lex_state = 0, .external_lex_state = 4}, [2472] = {.lex_state = 68}, - [2473] = {.lex_state = 68}, + [2473] = {.lex_state = 0, .external_lex_state = 4}, [2474] = {.lex_state = 0, .external_lex_state = 4}, [2475] = {.lex_state = 0, .external_lex_state = 4}, - [2476] = {.lex_state = 68}, - [2477] = {.lex_state = 68}, - [2478] = {.lex_state = 0, .external_lex_state = 4}, - [2479] = {.lex_state = 1}, - [2480] = {.lex_state = 3}, - [2481] = {.lex_state = 68}, - [2482] = {.lex_state = 68}, - [2483] = {.lex_state = 3}, - [2484] = {.lex_state = 68}, + [2476] = {.lex_state = 0, .external_lex_state = 4}, + [2477] = {.lex_state = 0, .external_lex_state = 4}, + [2478] = {.lex_state = 68}, + [2479] = {.lex_state = 0, .external_lex_state = 4}, + [2480] = {.lex_state = 68}, + [2481] = {.lex_state = 0, .external_lex_state = 4}, + [2482] = {.lex_state = 0, .external_lex_state = 4}, + [2483] = {.lex_state = 0, .external_lex_state = 4}, + [2484] = {.lex_state = 0, .external_lex_state = 4}, [2485] = {.lex_state = 68}, - [2486] = {.lex_state = 1}, - [2487] = {.lex_state = 0}, + [2486] = {.lex_state = 68, .external_lex_state = 4}, + [2487] = {.lex_state = 68}, [2488] = {.lex_state = 68}, [2489] = {.lex_state = 68}, [2490] = {.lex_state = 68}, - [2491] = {.lex_state = 0}, - [2492] = {.lex_state = 0}, - [2493] = {.lex_state = 68}, - [2494] = {.lex_state = 68}, + [2491] = {.lex_state = 0, .external_lex_state = 4}, + [2492] = {.lex_state = 0, .external_lex_state = 4}, + [2493] = {.lex_state = 68, .external_lex_state = 4}, + [2494] = {.lex_state = 0, .external_lex_state = 4}, [2495] = {.lex_state = 68, .external_lex_state = 4}, [2496] = {.lex_state = 68}, - [2497] = {.lex_state = 68}, - [2498] = {.lex_state = 1}, - [2499] = {.lex_state = 3}, - [2500] = {.lex_state = 68}, - [2501] = {.lex_state = 0}, - [2502] = {.lex_state = 68, .external_lex_state = 4}, - [2503] = {.lex_state = 68}, - [2504] = {.lex_state = 1}, - [2505] = {.lex_state = 3}, + [2497] = {.lex_state = 1}, + [2498] = {.lex_state = 3}, + [2499] = {.lex_state = 68}, + [2500] = {.lex_state = 1}, + [2501] = {.lex_state = 68}, + [2502] = {.lex_state = 3}, + [2503] = {.lex_state = 0}, + [2504] = {.lex_state = 68}, + [2505] = {.lex_state = 68}, [2506] = {.lex_state = 68}, - [2507] = {.lex_state = 0}, - [2508] = {.lex_state = 19, .external_lex_state = 5}, - [2509] = {.lex_state = 68, .external_lex_state = 4}, + [2507] = {.lex_state = 68}, + [2508] = {.lex_state = 68}, + [2509] = {.lex_state = 68}, [2510] = {.lex_state = 68}, [2511] = {.lex_state = 68}, [2512] = {.lex_state = 68}, [2513] = {.lex_state = 68}, - [2514] = {.lex_state = 68, .external_lex_state = 4}, - [2515] = {.lex_state = 1}, - [2516] = {.lex_state = 3}, - [2517] = {.lex_state = 68, .external_lex_state = 4}, + [2514] = {.lex_state = 68}, + [2515] = {.lex_state = 68}, + [2516] = {.lex_state = 0, .external_lex_state = 4}, + [2517] = {.lex_state = 68}, [2518] = {.lex_state = 3}, [2519] = {.lex_state = 1}, [2520] = {.lex_state = 68}, [2521] = {.lex_state = 68}, - [2522] = {.lex_state = 68, .external_lex_state = 4}, + [2522] = {.lex_state = 68}, [2523] = {.lex_state = 68}, [2524] = {.lex_state = 68}, - [2525] = {.lex_state = 68}, - [2526] = {.lex_state = 68}, - [2527] = {.lex_state = 68}, - [2528] = {.lex_state = 68}, - [2529] = {.lex_state = 68}, + [2525] = {.lex_state = 1}, + [2526] = {.lex_state = 3}, + [2527] = {.lex_state = 1}, + [2528] = {.lex_state = 3}, + [2529] = {.lex_state = 68, .external_lex_state = 4}, [2530] = {.lex_state = 68}, - [2531] = {.lex_state = 0}, - [2532] = {.lex_state = 68}, - [2533] = {.lex_state = 68}, - [2534] = {.lex_state = 0}, - [2535] = {.lex_state = 68, .external_lex_state = 4}, - [2536] = {.lex_state = 68}, - [2537] = {.lex_state = 68}, + [2531] = {.lex_state = 68, .external_lex_state = 4}, + [2532] = {.lex_state = 3}, + [2533] = {.lex_state = 1}, + [2534] = {.lex_state = 68}, + [2535] = {.lex_state = 68}, + [2536] = {.lex_state = 1}, + [2537] = {.lex_state = 3}, [2538] = {.lex_state = 68}, - [2539] = {.lex_state = 68}, + [2539] = {.lex_state = 19, .external_lex_state = 5}, [2540] = {.lex_state = 68}, [2541] = {.lex_state = 68}, [2542] = {.lex_state = 68}, - [2543] = {.lex_state = 0, .external_lex_state = 4}, - [2544] = {.lex_state = 68}, - [2545] = {.lex_state = 0, .external_lex_state = 4}, - [2546] = {.lex_state = 1}, - [2547] = {.lex_state = 68}, - [2548] = {.lex_state = 3}, + [2543] = {.lex_state = 68}, + [2544] = {.lex_state = 0, .external_lex_state = 4}, + [2545] = {.lex_state = 68}, + [2546] = {.lex_state = 0}, + [2547] = {.lex_state = 0}, + [2548] = {.lex_state = 68}, [2549] = {.lex_state = 68}, [2550] = {.lex_state = 68, .external_lex_state = 4}, [2551] = {.lex_state = 68}, - [2552] = {.lex_state = 0, .external_lex_state = 4}, - [2553] = {.lex_state = 0, .external_lex_state = 4}, - [2554] = {.lex_state = 68}, + [2552] = {.lex_state = 0}, + [2553] = {.lex_state = 0}, + [2554] = {.lex_state = 68, .external_lex_state = 4}, [2555] = {.lex_state = 68}, - [2556] = {.lex_state = 1}, - [2557] = {.lex_state = 0}, + [2556] = {.lex_state = 0}, + [2557] = {.lex_state = 68}, [2558] = {.lex_state = 3}, - [2559] = {.lex_state = 68}, - [2560] = {.lex_state = 3}, - [2561] = {.lex_state = 1}, + [2559] = {.lex_state = 1}, + [2560] = {.lex_state = 68}, + [2561] = {.lex_state = 68}, [2562] = {.lex_state = 68}, - [2563] = {.lex_state = 0}, - [2564] = {.lex_state = 0}, - [2565] = {.lex_state = 0}, - [2566] = {.lex_state = 3}, - [2567] = {.lex_state = 1}, - [2568] = {.lex_state = 68}, - [2569] = {.lex_state = 1}, - [2570] = {.lex_state = 68}, - [2571] = {.lex_state = 0}, - [2572] = {.lex_state = 68}, - [2573] = {.lex_state = 3}, - [2574] = {.lex_state = 0}, - [2575] = {.lex_state = 68, .external_lex_state = 4}, - [2576] = {.lex_state = 68}, - [2577] = {.lex_state = 0}, - [2578] = {.lex_state = 1}, + [2563] = {.lex_state = 68}, + [2564] = {.lex_state = 0, .external_lex_state = 4}, + [2565] = {.lex_state = 68}, + [2566] = {.lex_state = 68, .external_lex_state = 4}, + [2567] = {.lex_state = 68}, + [2568] = {.lex_state = 1}, + [2569] = {.lex_state = 3}, + [2570] = {.lex_state = 0}, + [2571] = {.lex_state = 68, .external_lex_state = 4}, + [2572] = {.lex_state = 0, .external_lex_state = 4}, + [2573] = {.lex_state = 68}, + [2574] = {.lex_state = 68}, + [2575] = {.lex_state = 68}, + [2576] = {.lex_state = 3}, + [2577] = {.lex_state = 1}, + [2578] = {.lex_state = 68}, [2579] = {.lex_state = 68}, - [2580] = {.lex_state = 3}, - [2581] = {.lex_state = 68, .external_lex_state = 4}, + [2580] = {.lex_state = 68}, + [2581] = {.lex_state = 68}, [2582] = {.lex_state = 68}, [2583] = {.lex_state = 68}, - [2584] = {.lex_state = 0}, - [2585] = {.lex_state = 68}, + [2584] = {.lex_state = 1}, + [2585] = {.lex_state = 3}, [2586] = {.lex_state = 68}, - [2587] = {.lex_state = 68}, + [2587] = {.lex_state = 0, .external_lex_state = 4}, [2588] = {.lex_state = 68}, - [2589] = {.lex_state = 1}, + [2589] = {.lex_state = 0}, [2590] = {.lex_state = 68}, [2591] = {.lex_state = 68}, - [2592] = {.lex_state = 0, .external_lex_state = 4}, - [2593] = {.lex_state = 3}, - [2594] = {.lex_state = 0, .external_lex_state = 4}, - [2595] = {.lex_state = 0, .external_lex_state = 4}, + [2592] = {.lex_state = 0}, + [2593] = {.lex_state = 68}, + [2594] = {.lex_state = 68}, + [2595] = {.lex_state = 0}, [2596] = {.lex_state = 68}, - [2597] = {.lex_state = 68}, + [2597] = {.lex_state = 0, .external_lex_state = 4}, [2598] = {.lex_state = 68}, [2599] = {.lex_state = 68}, - [2600] = {.lex_state = 0, .external_lex_state = 4}, + [2600] = {.lex_state = 0}, [2601] = {.lex_state = 68}, - [2602] = {.lex_state = 0}, - [2603] = {.lex_state = 0}, - [2604] = {.lex_state = 68}, + [2602] = {.lex_state = 68}, + [2603] = {.lex_state = 68, .external_lex_state = 4}, + [2604] = {.lex_state = 3}, [2605] = {.lex_state = 0}, [2606] = {.lex_state = 0}, - [2607] = {.lex_state = 68}, - [2608] = {.lex_state = 14}, - [2609] = {.lex_state = 0}, - [2610] = {.lex_state = 68}, - [2611] = {.lex_state = 68}, - [2612] = {.lex_state = 68}, - [2613] = {.lex_state = 68}, - [2614] = {.lex_state = 0, .external_lex_state = 4}, + [2607] = {.lex_state = 1}, + [2608] = {.lex_state = 0}, + [2609] = {.lex_state = 68}, + [2610] = {.lex_state = 1}, + [2611] = {.lex_state = 0}, + [2612] = {.lex_state = 68, .external_lex_state = 4}, + [2613] = {.lex_state = 3}, + [2614] = {.lex_state = 68}, [2615] = {.lex_state = 0, .external_lex_state = 4}, [2616] = {.lex_state = 68}, - [2617] = {.lex_state = 0}, - [2618] = {.lex_state = 0, .external_lex_state = 4}, - [2619] = {.lex_state = 68}, - [2620] = {.lex_state = 0}, - [2621] = {.lex_state = 0}, + [2617] = {.lex_state = 0, .external_lex_state = 4}, + [2618] = {.lex_state = 68}, + [2619] = {.lex_state = 0}, + [2620] = {.lex_state = 68}, + [2621] = {.lex_state = 68}, [2622] = {.lex_state = 0}, - [2623] = {.lex_state = 68, .external_lex_state = 4}, - [2624] = {.lex_state = 68, .external_lex_state = 4}, + [2623] = {.lex_state = 0}, + [2624] = {.lex_state = 68}, [2625] = {.lex_state = 0}, - [2626] = {.lex_state = 68}, - [2627] = {.lex_state = 0}, - [2628] = {.lex_state = 0}, - [2629] = {.lex_state = 0, .external_lex_state = 4}, - [2630] = {.lex_state = 0}, + [2626] = {.lex_state = 0}, + [2627] = {.lex_state = 14}, + [2628] = {.lex_state = 0, .external_lex_state = 4}, + [2629] = {.lex_state = 68}, + [2630] = {.lex_state = 0, .external_lex_state = 4}, [2631] = {.lex_state = 68}, - [2632] = {.lex_state = 68, .external_lex_state = 4}, - [2633] = {.lex_state = 68}, - [2634] = {.lex_state = 0}, + [2632] = {.lex_state = 0}, + [2633] = {.lex_state = 0}, + [2634] = {.lex_state = 68}, [2635] = {.lex_state = 0, .external_lex_state = 4}, - [2636] = {.lex_state = 68}, - [2637] = {.lex_state = 0}, - [2638] = {.lex_state = 68}, - [2639] = {.lex_state = 68}, - [2640] = {.lex_state = 0, .external_lex_state = 4}, - [2641] = {.lex_state = 0, .external_lex_state = 4}, + [2636] = {.lex_state = 0}, + [2637] = {.lex_state = 68}, + [2638] = {.lex_state = 0}, + [2639] = {.lex_state = 0}, + [2640] = {.lex_state = 0}, + [2641] = {.lex_state = 0}, [2642] = {.lex_state = 0}, [2643] = {.lex_state = 0}, [2644] = {.lex_state = 0}, [2645] = {.lex_state = 0}, - [2646] = {.lex_state = 0}, - [2647] = {.lex_state = 0, .external_lex_state = 4}, - [2648] = {.lex_state = 68}, + [2646] = {.lex_state = 68}, + [2647] = {.lex_state = 0}, + [2648] = {.lex_state = 0}, [2649] = {.lex_state = 0}, - [2650] = {.lex_state = 68}, - [2651] = {.lex_state = 0, .external_lex_state = 4}, - [2652] = {.lex_state = 0, .external_lex_state = 4}, - [2653] = {.lex_state = 0}, - [2654] = {.lex_state = 0, .external_lex_state = 4}, + [2650] = {.lex_state = 0}, + [2651] = {.lex_state = 0}, + [2652] = {.lex_state = 0}, + [2653] = {.lex_state = 0, .external_lex_state = 4}, + [2654] = {.lex_state = 0}, [2655] = {.lex_state = 0}, [2656] = {.lex_state = 68}, - [2657] = {.lex_state = 0, .external_lex_state = 4}, - [2658] = {.lex_state = 0, .external_lex_state = 4}, - [2659] = {.lex_state = 0}, - [2660] = {.lex_state = 0, .external_lex_state = 4}, + [2657] = {.lex_state = 68}, + [2658] = {.lex_state = 0}, + [2659] = {.lex_state = 68}, + [2660] = {.lex_state = 0}, [2661] = {.lex_state = 0}, [2662] = {.lex_state = 0}, [2663] = {.lex_state = 68}, - [2664] = {.lex_state = 0, .external_lex_state = 4}, - [2665] = {.lex_state = 14}, + [2664] = {.lex_state = 68}, + [2665] = {.lex_state = 0}, [2666] = {.lex_state = 0}, [2667] = {.lex_state = 0}, [2668] = {.lex_state = 0}, [2669] = {.lex_state = 0}, - [2670] = {.lex_state = 68}, - [2671] = {.lex_state = 68}, - [2672] = {.lex_state = 68}, + [2670] = {.lex_state = 68, .external_lex_state = 4}, + [2671] = {.lex_state = 0}, + [2672] = {.lex_state = 0}, [2673] = {.lex_state = 0}, - [2674] = {.lex_state = 0}, + [2674] = {.lex_state = 68}, [2675] = {.lex_state = 0}, - [2676] = {.lex_state = 0}, + [2676] = {.lex_state = 0, .external_lex_state = 4}, [2677] = {.lex_state = 0}, [2678] = {.lex_state = 0}, [2679] = {.lex_state = 0}, - [2680] = {.lex_state = 68}, - [2681] = {.lex_state = 0}, - [2682] = {.lex_state = 68}, - [2683] = {.lex_state = 68}, + [2680] = {.lex_state = 0}, + [2681] = {.lex_state = 0, .external_lex_state = 4}, + [2682] = {.lex_state = 68, .external_lex_state = 4}, + [2683] = {.lex_state = 0}, [2684] = {.lex_state = 68}, [2685] = {.lex_state = 0}, - [2686] = {.lex_state = 0}, + [2686] = {.lex_state = 68}, [2687] = {.lex_state = 0}, [2688] = {.lex_state = 0, .external_lex_state = 4}, - [2689] = {.lex_state = 0, .external_lex_state = 4}, + [2689] = {.lex_state = 0}, [2690] = {.lex_state = 0}, - [2691] = {.lex_state = 68}, - [2692] = {.lex_state = 0}, - [2693] = {.lex_state = 0, .external_lex_state = 4}, + [2691] = {.lex_state = 0}, + [2692] = {.lex_state = 0, .external_lex_state = 4}, + [2693] = {.lex_state = 68}, [2694] = {.lex_state = 0, .external_lex_state = 4}, [2695] = {.lex_state = 0, .external_lex_state = 4}, [2696] = {.lex_state = 0}, [2697] = {.lex_state = 0}, [2698] = {.lex_state = 0}, [2699] = {.lex_state = 0}, - [2700] = {.lex_state = 0}, - [2701] = {.lex_state = 0}, + [2700] = {.lex_state = 0, .external_lex_state = 4}, + [2701] = {.lex_state = 0, .external_lex_state = 4}, [2702] = {.lex_state = 0}, - [2703] = {.lex_state = 68}, - [2704] = {.lex_state = 0}, + [2703] = {.lex_state = 0}, + [2704] = {.lex_state = 0, .external_lex_state = 4}, [2705] = {.lex_state = 0}, - [2706] = {.lex_state = 0, .external_lex_state = 4}, - [2707] = {.lex_state = 0}, - [2708] = {.lex_state = 0}, + [2706] = {.lex_state = 0}, + [2707] = {.lex_state = 0, .external_lex_state = 4}, + [2708] = {.lex_state = 0, .external_lex_state = 4}, [2709] = {.lex_state = 68}, - [2710] = {.lex_state = 68}, + [2710] = {.lex_state = 0}, [2711] = {.lex_state = 0}, [2712] = {.lex_state = 0}, - [2713] = {.lex_state = 0}, + [2713] = {.lex_state = 0, .external_lex_state = 4}, [2714] = {.lex_state = 0}, [2715] = {.lex_state = 0}, - [2716] = {.lex_state = 0}, - [2717] = {.lex_state = 68}, - [2718] = {.lex_state = 0}, - [2719] = {.lex_state = 68}, - [2720] = {.lex_state = 0}, - [2721] = {.lex_state = 0}, + [2716] = {.lex_state = 0, .external_lex_state = 4}, + [2717] = {.lex_state = 0, .external_lex_state = 4}, + [2718] = {.lex_state = 68, .external_lex_state = 4}, + [2719] = {.lex_state = 0}, + [2720] = {.lex_state = 68}, + [2721] = {.lex_state = 68}, [2722] = {.lex_state = 68}, - [2723] = {.lex_state = 68, .external_lex_state = 4}, + [2723] = {.lex_state = 14}, [2724] = {.lex_state = 0}, [2725] = {.lex_state = 0}, - [2726] = {.lex_state = 68}, - [2727] = {.lex_state = 0}, - [2728] = {.lex_state = 0, .external_lex_state = 4}, + [2726] = {.lex_state = 0}, + [2727] = {.lex_state = 68, .external_lex_state = 4}, + [2728] = {.lex_state = 14}, [2729] = {.lex_state = 68}, - [2730] = {.lex_state = 0}, - [2731] = {.lex_state = 0, .external_lex_state = 4}, + [2730] = {.lex_state = 0, .external_lex_state = 4}, + [2731] = {.lex_state = 68}, [2732] = {.lex_state = 68}, - [2733] = {.lex_state = 0}, - [2734] = {.lex_state = 0, .external_lex_state = 4}, - [2735] = {.lex_state = 0, .external_lex_state = 4}, + [2733] = {.lex_state = 68}, + [2734] = {.lex_state = 0}, + [2735] = {.lex_state = 68, .external_lex_state = 4}, [2736] = {.lex_state = 0}, [2737] = {.lex_state = 0}, [2738] = {.lex_state = 0}, [2739] = {.lex_state = 0}, [2740] = {.lex_state = 0}, - [2741] = {.lex_state = 0, .external_lex_state = 4}, + [2741] = {.lex_state = 0}, [2742] = {.lex_state = 0}, - [2743] = {.lex_state = 68}, - [2744] = {.lex_state = 0, .external_lex_state = 4}, - [2745] = {.lex_state = 0}, - [2746] = {.lex_state = 0}, + [2743] = {.lex_state = 0}, + [2744] = {.lex_state = 68}, + [2745] = {.lex_state = 68}, + [2746] = {.lex_state = 68}, [2747] = {.lex_state = 0}, - [2748] = {.lex_state = 0}, - [2749] = {.lex_state = 68}, - [2750] = {.lex_state = 68}, + [2748] = {.lex_state = 68}, + [2749] = {.lex_state = 0}, + [2750] = {.lex_state = 0, .external_lex_state = 4}, [2751] = {.lex_state = 0}, [2752] = {.lex_state = 68}, [2753] = {.lex_state = 0}, - [2754] = {.lex_state = 0}, - [2755] = {.lex_state = 0}, - [2756] = {.lex_state = 0}, + [2754] = {.lex_state = 0, .external_lex_state = 4}, + [2755] = {.lex_state = 0, .external_lex_state = 4}, + [2756] = {.lex_state = 0, .external_lex_state = 4}, [2757] = {.lex_state = 0}, [2758] = {.lex_state = 0}, - [2759] = {.lex_state = 0}, + [2759] = {.lex_state = 0, .external_lex_state = 4}, [2760] = {.lex_state = 0}, - [2761] = {.lex_state = 14}, - [2762] = {.lex_state = 0}, + [2761] = {.lex_state = 0, .external_lex_state = 4}, + [2762] = {.lex_state = 68, .external_lex_state = 4}, [2763] = {.lex_state = 0}, - [2764] = {.lex_state = 68, .external_lex_state = 4}, + [2764] = {.lex_state = 0, .external_lex_state = 4}, [2765] = {.lex_state = 68}, [2766] = {.lex_state = 0}, - [2767] = {.lex_state = 68}, - [2768] = {.lex_state = 68}, + [2767] = {.lex_state = 0}, + [2768] = {.lex_state = 0}, [2769] = {.lex_state = 0}, - [2770] = {.lex_state = 0, .external_lex_state = 4}, - [2771] = {.lex_state = 0, .external_lex_state = 4}, - [2772] = {.lex_state = 0}, - [2773] = {.lex_state = 0, .external_lex_state = 4}, - [2774] = {.lex_state = 0}, - [2775] = {.lex_state = 68}, + [2770] = {.lex_state = 68}, + [2771] = {.lex_state = 68}, + [2772] = {.lex_state = 68}, + [2773] = {.lex_state = 0}, + [2774] = {.lex_state = 68}, + [2775] = {.lex_state = 0}, [2776] = {.lex_state = 0}, - [2777] = {.lex_state = 68, .external_lex_state = 4}, + [2777] = {.lex_state = 0}, [2778] = {.lex_state = 0, .external_lex_state = 4}, - [2779] = {.lex_state = 0, .external_lex_state = 4}, - [2780] = {.lex_state = 0, .external_lex_state = 4}, - [2781] = {.lex_state = 68}, - [2782] = {.lex_state = 68}, + [2779] = {.lex_state = 0}, + [2780] = {.lex_state = 68}, + [2781] = {.lex_state = 0}, + [2782] = {.lex_state = 0}, [2783] = {.lex_state = 68}, - [2784] = {.lex_state = 68}, + [2784] = {.lex_state = 0}, [2785] = {.lex_state = 0}, - [2786] = {.lex_state = 0}, - [2787] = {.lex_state = 0}, + [2786] = {.lex_state = 68}, + [2787] = {.lex_state = 68}, [2788] = {.lex_state = 68}, - [2789] = {.lex_state = 68}, + [2789] = {.lex_state = 0, .external_lex_state = 4}, [2790] = {.lex_state = 68}, - [2791] = {.lex_state = 68}, - [2792] = {.lex_state = 68}, - [2793] = {.lex_state = 68}, - [2794] = {.lex_state = 0}, + [2791] = {.lex_state = 0, .external_lex_state = 4}, + [2792] = {.lex_state = 0, .external_lex_state = 4}, + [2793] = {.lex_state = 0, .external_lex_state = 4}, + [2794] = {.lex_state = 68}, [2795] = {.lex_state = 0}, - [2796] = {.lex_state = 68}, + [2796] = {.lex_state = 0}, [2797] = {.lex_state = 0}, - [2798] = {.lex_state = 68}, + [2798] = {.lex_state = 0}, [2799] = {.lex_state = 68}, [2800] = {.lex_state = 0}, - [2801] = {.lex_state = 68}, - [2802] = {.lex_state = 0, .external_lex_state = 4}, - [2803] = {.lex_state = 68}, - [2804] = {.lex_state = 68}, + [2801] = {.lex_state = 0}, + [2802] = {.lex_state = 68}, + [2803] = {.lex_state = 0}, + [2804] = {.lex_state = 0}, [2805] = {.lex_state = 68}, [2806] = {.lex_state = 0}, [2807] = {.lex_state = 0}, [2808] = {.lex_state = 68}, [2809] = {.lex_state = 0}, - [2810] = {.lex_state = 68}, - [2811] = {.lex_state = 68}, + [2810] = {.lex_state = 0, .external_lex_state = 4}, + [2811] = {.lex_state = 0, .external_lex_state = 4}, [2812] = {.lex_state = 68}, [2813] = {.lex_state = 68}, [2814] = {.lex_state = 0}, [2815] = {.lex_state = 68}, [2816] = {.lex_state = 68}, [2817] = {.lex_state = 0}, - [2818] = {.lex_state = 0}, - [2819] = {.lex_state = 68}, + [2818] = {.lex_state = 68}, + [2819] = {.lex_state = 0}, [2820] = {.lex_state = 0, .external_lex_state = 4}, - [2821] = {.lex_state = 0}, - [2822] = {.lex_state = 0}, - [2823] = {.lex_state = 0}, + [2821] = {.lex_state = 68}, + [2822] = {.lex_state = 68}, + [2823] = {.lex_state = 68}, [2824] = {.lex_state = 68}, [2825] = {.lex_state = 68}, - [2826] = {.lex_state = 68}, - [2827] = {.lex_state = 68}, + [2826] = {.lex_state = 0, .external_lex_state = 4}, + [2827] = {.lex_state = 0}, [2828] = {.lex_state = 68}, [2829] = {.lex_state = 68}, [2830] = {.lex_state = 68}, @@ -8761,47 +8795,47 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [2832] = {.lex_state = 68}, [2833] = {.lex_state = 68}, [2834] = {.lex_state = 0}, - [2835] = {.lex_state = 68}, - [2836] = {.lex_state = 0, .external_lex_state = 4}, + [2835] = {.lex_state = 0}, + [2836] = {.lex_state = 0}, [2837] = {.lex_state = 68}, [2838] = {.lex_state = 68}, - [2839] = {.lex_state = 68}, - [2840] = {.lex_state = 68}, - [2841] = {.lex_state = 68}, + [2839] = {.lex_state = 0}, + [2840] = {.lex_state = 0}, + [2841] = {.lex_state = 0}, [2842] = {.lex_state = 68}, - [2843] = {.lex_state = 0}, - [2844] = {.lex_state = 0, .external_lex_state = 4}, + [2843] = {.lex_state = 68}, + [2844] = {.lex_state = 0}, [2845] = {.lex_state = 68}, [2846] = {.lex_state = 68}, [2847] = {.lex_state = 68}, - [2848] = {.lex_state = 0}, + [2848] = {.lex_state = 68}, [2849] = {.lex_state = 68}, - [2850] = {.lex_state = 0}, - [2851] = {.lex_state = 68}, - [2852] = {.lex_state = 0}, + [2850] = {.lex_state = 68}, + [2851] = {.lex_state = 0}, + [2852] = {.lex_state = 0, .external_lex_state = 4}, [2853] = {.lex_state = 68}, [2854] = {.lex_state = 68}, - [2855] = {.lex_state = 68}, + [2855] = {.lex_state = 0}, [2856] = {.lex_state = 0}, [2857] = {.lex_state = 68}, [2858] = {.lex_state = 68}, - [2859] = {.lex_state = 68}, + [2859] = {.lex_state = 0}, [2860] = {.lex_state = 0}, - [2861] = {.lex_state = 68}, - [2862] = {.lex_state = 0}, - [2863] = {.lex_state = 68}, - [2864] = {.lex_state = 68}, + [2861] = {.lex_state = 0, .external_lex_state = 4}, + [2862] = {.lex_state = 0, .external_lex_state = 4}, + [2863] = {.lex_state = 0, .external_lex_state = 4}, + [2864] = {.lex_state = 0}, [2865] = {.lex_state = 68}, - [2866] = {.lex_state = 68}, - [2867] = {.lex_state = 68}, - [2868] = {.lex_state = 68}, - [2869] = {.lex_state = 0, .external_lex_state = 4}, - [2870] = {.lex_state = 0}, + [2866] = {.lex_state = 0}, + [2867] = {.lex_state = 0, .external_lex_state = 4}, + [2868] = {.lex_state = 0}, + [2869] = {.lex_state = 68}, + [2870] = {.lex_state = 68}, [2871] = {.lex_state = 68}, [2872] = {.lex_state = 68}, [2873] = {.lex_state = 68}, - [2874] = {.lex_state = 68}, - [2875] = {.lex_state = 0}, + [2874] = {.lex_state = 0}, + [2875] = {.lex_state = 68}, [2876] = {.lex_state = 68}, [2877] = {.lex_state = 68}, [2878] = {.lex_state = 68}, @@ -8811,28 +8845,28 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [2882] = {.lex_state = 0}, [2883] = {.lex_state = 68}, [2884] = {.lex_state = 68}, - [2885] = {.lex_state = 0}, - [2886] = {.lex_state = 0, .external_lex_state = 4}, + [2885] = {.lex_state = 0, .external_lex_state = 4}, + [2886] = {.lex_state = 68}, [2887] = {.lex_state = 68}, - [2888] = {.lex_state = 68}, + [2888] = {.lex_state = 0}, [2889] = {.lex_state = 68}, [2890] = {.lex_state = 68}, [2891] = {.lex_state = 68}, - [2892] = {.lex_state = 0}, - [2893] = {.lex_state = 68}, - [2894] = {.lex_state = 0}, - [2895] = {.lex_state = 68}, - [2896] = {.lex_state = 0, .external_lex_state = 4}, + [2892] = {.lex_state = 68}, + [2893] = {.lex_state = 0}, + [2894] = {.lex_state = 68}, + [2895] = {.lex_state = 0}, + [2896] = {.lex_state = 68}, [2897] = {.lex_state = 68}, [2898] = {.lex_state = 68}, [2899] = {.lex_state = 68}, [2900] = {.lex_state = 0}, [2901] = {.lex_state = 68}, - [2902] = {.lex_state = 0}, - [2903] = {.lex_state = 0}, + [2902] = {.lex_state = 68}, + [2903] = {.lex_state = 68}, [2904] = {.lex_state = 0}, - [2905] = {.lex_state = 0}, - [2906] = {.lex_state = 0, .external_lex_state = 4}, + [2905] = {.lex_state = 68}, + [2906] = {.lex_state = 68}, [2907] = {.lex_state = 68}, [2908] = {.lex_state = 68}, [2909] = {.lex_state = 68}, @@ -8840,162 +8874,162 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [2911] = {.lex_state = 68}, [2912] = {.lex_state = 68}, [2913] = {.lex_state = 0}, - [2914] = {.lex_state = 68}, - [2915] = {.lex_state = 68}, - [2916] = {.lex_state = 68}, - [2917] = {.lex_state = 68}, - [2918] = {.lex_state = 68}, + [2914] = {.lex_state = 0}, + [2915] = {.lex_state = 0, .external_lex_state = 4}, + [2916] = {.lex_state = 0}, + [2917] = {.lex_state = 0, .external_lex_state = 4}, + [2918] = {.lex_state = 0}, [2919] = {.lex_state = 0}, [2920] = {.lex_state = 68}, [2921] = {.lex_state = 68}, - [2922] = {.lex_state = 68}, + [2922] = {.lex_state = 0, .external_lex_state = 4}, [2923] = {.lex_state = 68}, - [2924] = {.lex_state = 68}, - [2925] = {.lex_state = 0, .external_lex_state = 4}, + [2924] = {.lex_state = 0, .external_lex_state = 4}, + [2925] = {.lex_state = 68}, [2926] = {.lex_state = 68}, - [2927] = {.lex_state = 0}, - [2928] = {.lex_state = 0, .external_lex_state = 4}, + [2927] = {.lex_state = 68}, + [2928] = {.lex_state = 68}, [2929] = {.lex_state = 68}, [2930] = {.lex_state = 68}, [2931] = {.lex_state = 68}, [2932] = {.lex_state = 68}, [2933] = {.lex_state = 68}, - [2934] = {.lex_state = 0}, - [2935] = {.lex_state = 0}, + [2934] = {.lex_state = 68}, + [2935] = {.lex_state = 68}, [2936] = {.lex_state = 68}, [2937] = {.lex_state = 68}, - [2938] = {.lex_state = 0}, - [2939] = {.lex_state = 68}, + [2938] = {.lex_state = 68}, + [2939] = {.lex_state = 0}, [2940] = {.lex_state = 68}, [2941] = {.lex_state = 0}, - [2942] = {.lex_state = 0}, + [2942] = {.lex_state = 68}, [2943] = {.lex_state = 68}, - [2944] = {.lex_state = 0}, - [2945] = {.lex_state = 68}, - [2946] = {.lex_state = 0}, + [2944] = {.lex_state = 68}, + [2945] = {.lex_state = 0}, + [2946] = {.lex_state = 68}, [2947] = {.lex_state = 68}, [2948] = {.lex_state = 0}, [2949] = {.lex_state = 68}, - [2950] = {.lex_state = 0}, - [2951] = {.lex_state = 0}, + [2950] = {.lex_state = 0, .external_lex_state = 4}, + [2951] = {.lex_state = 68}, [2952] = {.lex_state = 68}, - [2953] = {.lex_state = 0}, - [2954] = {.lex_state = 0, .external_lex_state = 4}, - [2955] = {.lex_state = 68}, + [2953] = {.lex_state = 68}, + [2954] = {.lex_state = 0}, + [2955] = {.lex_state = 0}, [2956] = {.lex_state = 68}, - [2957] = {.lex_state = 68}, - [2958] = {.lex_state = 0}, + [2957] = {.lex_state = 0}, + [2958] = {.lex_state = 0, .external_lex_state = 4}, [2959] = {.lex_state = 0}, - [2960] = {.lex_state = 0, .external_lex_state = 4}, + [2960] = {.lex_state = 68}, [2961] = {.lex_state = 68}, [2962] = {.lex_state = 68}, - [2963] = {.lex_state = 68}, - [2964] = {.lex_state = 0, .external_lex_state = 4}, - [2965] = {.lex_state = 0, .external_lex_state = 4}, + [2963] = {.lex_state = 0}, + [2964] = {.lex_state = 68}, + [2965] = {.lex_state = 68}, [2966] = {.lex_state = 68}, [2967] = {.lex_state = 68}, [2968] = {.lex_state = 68}, [2969] = {.lex_state = 68}, [2970] = {.lex_state = 68}, - [2971] = {.lex_state = 0}, + [2971] = {.lex_state = 68}, [2972] = {.lex_state = 0}, - [2973] = {.lex_state = 0}, - [2974] = {.lex_state = 0, .external_lex_state = 4}, + [2973] = {.lex_state = 68}, + [2974] = {.lex_state = 68}, [2975] = {.lex_state = 68}, - [2976] = {.lex_state = 68}, - [2977] = {.lex_state = 0}, - [2978] = {.lex_state = 0, .external_lex_state = 4}, + [2976] = {.lex_state = 0}, + [2977] = {.lex_state = 68}, + [2978] = {.lex_state = 68}, [2979] = {.lex_state = 68}, - [2980] = {.lex_state = 0}, - [2981] = {.lex_state = 0, .external_lex_state = 4}, - [2982] = {.lex_state = 0}, - [2983] = {.lex_state = 0, .external_lex_state = 4}, - [2984] = {.lex_state = 0}, - [2985] = {.lex_state = 0}, - [2986] = {.lex_state = 0, .external_lex_state = 4}, - [2987] = {.lex_state = 0}, - [2988] = {.lex_state = 0}, - [2989] = {.lex_state = 68}, + [2980] = {.lex_state = 68}, + [2981] = {.lex_state = 68}, + [2982] = {.lex_state = 68}, + [2983] = {.lex_state = 68}, + [2984] = {.lex_state = 68}, + [2985] = {.lex_state = 68}, + [2986] = {.lex_state = 0}, + [2987] = {.lex_state = 68}, + [2988] = {.lex_state = 68}, + [2989] = {.lex_state = 0}, [2990] = {.lex_state = 0}, [2991] = {.lex_state = 68}, [2992] = {.lex_state = 68}, [2993] = {.lex_state = 68}, [2994] = {.lex_state = 68}, [2995] = {.lex_state = 0}, - [2996] = {.lex_state = 0}, + [2996] = {.lex_state = 0, .external_lex_state = 4}, [2997] = {.lex_state = 68}, [2998] = {.lex_state = 0}, [2999] = {.lex_state = 0}, [3000] = {.lex_state = 0}, [3001] = {.lex_state = 68}, - [3002] = {.lex_state = 0}, - [3003] = {.lex_state = 0}, + [3002] = {.lex_state = 68}, + [3003] = {.lex_state = 0, .external_lex_state = 4}, [3004] = {.lex_state = 68}, - [3005] = {.lex_state = 0}, - [3006] = {.lex_state = 0}, + [3005] = {.lex_state = 68}, + [3006] = {.lex_state = 68}, [3007] = {.lex_state = 0}, - [3008] = {.lex_state = 0}, - [3009] = {.lex_state = 68}, - [3010] = {.lex_state = 68}, - [3011] = {.lex_state = 15}, - [3012] = {.lex_state = 0}, + [3008] = {.lex_state = 0, .external_lex_state = 4}, + [3009] = {.lex_state = 0}, + [3010] = {.lex_state = 0}, + [3011] = {.lex_state = 5}, + [3012] = {.lex_state = 68}, [3013] = {.lex_state = 0}, [3014] = {.lex_state = 0}, - [3015] = {.lex_state = 0}, + [3015] = {.lex_state = 68}, [3016] = {.lex_state = 0}, - [3017] = {.lex_state = 68}, - [3018] = {.lex_state = 68}, + [3017] = {.lex_state = 0}, + [3018] = {.lex_state = 0}, [3019] = {.lex_state = 0}, [3020] = {.lex_state = 0}, - [3021] = {.lex_state = 5}, + [3021] = {.lex_state = 68}, [3022] = {.lex_state = 0}, [3023] = {.lex_state = 0}, - [3024] = {.lex_state = 5}, - [3025] = {.lex_state = 0}, + [3024] = {.lex_state = 0}, + [3025] = {.lex_state = 68}, [3026] = {.lex_state = 0}, [3027] = {.lex_state = 0}, - [3028] = {.lex_state = 0}, - [3029] = {.lex_state = 0}, + [3028] = {.lex_state = 68}, + [3029] = {.lex_state = 68}, [3030] = {.lex_state = 0}, [3031] = {.lex_state = 0}, - [3032] = {.lex_state = 68}, + [3032] = {.lex_state = 0}, [3033] = {.lex_state = 0}, - [3034] = {.lex_state = 0}, - [3035] = {.lex_state = 0}, - [3036] = {.lex_state = 0}, + [3034] = {.lex_state = 68}, + [3035] = {.lex_state = 68}, + [3036] = {.lex_state = 68}, [3037] = {.lex_state = 0}, - [3038] = {.lex_state = 68}, - [3039] = {.lex_state = 68}, - [3040] = {.lex_state = 15}, - [3041] = {.lex_state = 0}, + [3038] = {.lex_state = 0}, + [3039] = {.lex_state = 0}, + [3040] = {.lex_state = 0}, + [3041] = {.lex_state = 68}, [3042] = {.lex_state = 0}, - [3043] = {.lex_state = 0}, + [3043] = {.lex_state = 5}, [3044] = {.lex_state = 0}, [3045] = {.lex_state = 68}, - [3046] = {.lex_state = 68}, + [3046] = {.lex_state = 0}, [3047] = {.lex_state = 0}, - [3048] = {.lex_state = 68}, + [3048] = {.lex_state = 0}, [3049] = {.lex_state = 68}, - [3050] = {.lex_state = 0}, + [3050] = {.lex_state = 68}, [3051] = {.lex_state = 68}, - [3052] = {.lex_state = 0}, - [3053] = {.lex_state = 0}, + [3052] = {.lex_state = 68}, + [3053] = {.lex_state = 68}, [3054] = {.lex_state = 0}, - [3055] = {.lex_state = 68}, + [3055] = {.lex_state = 0}, [3056] = {.lex_state = 68}, [3057] = {.lex_state = 68}, - [3058] = {.lex_state = 68}, + [3058] = {.lex_state = 0}, [3059] = {.lex_state = 0}, - [3060] = {.lex_state = 0}, - [3061] = {.lex_state = 0}, - [3062] = {.lex_state = 68}, + [3060] = {.lex_state = 68}, + [3061] = {.lex_state = 68}, + [3062] = {.lex_state = 0}, [3063] = {.lex_state = 0}, - [3064] = {.lex_state = 68}, + [3064] = {.lex_state = 0}, [3065] = {.lex_state = 0}, - [3066] = {.lex_state = 0}, - [3067] = {.lex_state = 15}, - [3068] = {.lex_state = 0}, - [3069] = {.lex_state = 0}, + [3066] = {.lex_state = 68}, + [3067] = {.lex_state = 68}, + [3068] = {.lex_state = 68}, + [3069] = {.lex_state = 15}, [3070] = {.lex_state = 0}, [3071] = {.lex_state = 0}, [3072] = {.lex_state = 0}, @@ -9003,144 +9037,164 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [3074] = {.lex_state = 68}, [3075] = {.lex_state = 0}, [3076] = {.lex_state = 0}, - [3077] = {.lex_state = 0}, + [3077] = {.lex_state = 68}, [3078] = {.lex_state = 0}, - [3079] = {.lex_state = 68}, + [3079] = {.lex_state = 15}, [3080] = {.lex_state = 0}, - [3081] = {.lex_state = 68}, + [3081] = {.lex_state = 0}, [3082] = {.lex_state = 0}, - [3083] = {.lex_state = 0}, + [3083] = {.lex_state = 68}, [3084] = {.lex_state = 0}, - [3085] = {.lex_state = 68}, - [3086] = {.lex_state = 0}, - [3087] = {.lex_state = 0}, + [3085] = {.lex_state = 0}, + [3086] = {.lex_state = 68}, + [3087] = {.lex_state = 68}, [3088] = {.lex_state = 0}, - [3089] = {.lex_state = 68}, - [3090] = {.lex_state = 68}, - [3091] = {.lex_state = 68}, + [3089] = {.lex_state = 0}, + [3090] = {.lex_state = 0}, + [3091] = {.lex_state = 0}, [3092] = {.lex_state = 0}, - [3093] = {.lex_state = 0}, - [3094] = {.lex_state = 68}, + [3093] = {.lex_state = 68}, + [3094] = {.lex_state = 0}, [3095] = {.lex_state = 68}, [3096] = {.lex_state = 0}, [3097] = {.lex_state = 68}, [3098] = {.lex_state = 0}, - [3099] = {.lex_state = 0}, - [3100] = {.lex_state = 0}, - [3101] = {.lex_state = 68}, - [3102] = {.lex_state = 0}, - [3103] = {.lex_state = 0}, - [3104] = {.lex_state = 68}, - [3105] = {.lex_state = 0}, + [3099] = {.lex_state = 68}, + [3100] = {.lex_state = 68}, + [3101] = {.lex_state = 0}, + [3102] = {.lex_state = 68}, + [3103] = {.lex_state = 68}, + [3104] = {.lex_state = 15}, + [3105] = {.lex_state = 68}, [3106] = {.lex_state = 0}, [3107] = {.lex_state = 0}, [3108] = {.lex_state = 68}, [3109] = {.lex_state = 68}, [3110] = {.lex_state = 68}, - [3111] = {.lex_state = 68}, - [3112] = {.lex_state = 68}, - [3113] = {.lex_state = 0}, + [3111] = {.lex_state = 0}, + [3112] = {.lex_state = 0}, + [3113] = {.lex_state = 68}, [3114] = {.lex_state = 68}, [3115] = {.lex_state = 0}, - [3116] = {.lex_state = 0}, - [3117] = {.lex_state = 0}, - [3118] = {.lex_state = 68}, - [3119] = {.lex_state = 68}, - [3120] = {.lex_state = 68}, - [3121] = {.lex_state = 68}, + [3116] = {.lex_state = 68}, + [3117] = {.lex_state = 68}, + [3118] = {.lex_state = 0}, + [3119] = {.lex_state = 0}, + [3120] = {.lex_state = 0}, + [3121] = {.lex_state = 0}, [3122] = {.lex_state = 0}, - [3123] = {.lex_state = 68}, + [3123] = {.lex_state = 0}, [3124] = {.lex_state = 68}, - [3125] = {.lex_state = 68}, - [3126] = {.lex_state = 68}, - [3127] = {.lex_state = 68}, + [3125] = {.lex_state = 0}, + [3126] = {.lex_state = 0}, + [3127] = {.lex_state = 0}, [3128] = {.lex_state = 68}, - [3129] = {.lex_state = 68}, - [3130] = {.lex_state = 68}, - [3131] = {.lex_state = 0}, - [3132] = {.lex_state = 0}, - [3133] = {.lex_state = 68}, - [3134] = {.lex_state = 0}, + [3129] = {.lex_state = 0}, + [3130] = {.lex_state = 0}, + [3131] = {.lex_state = 68}, + [3132] = {.lex_state = 68}, + [3133] = {.lex_state = 0}, + [3134] = {.lex_state = 68}, [3135] = {.lex_state = 0}, [3136] = {.lex_state = 0}, [3137] = {.lex_state = 68}, [3138] = {.lex_state = 0}, - [3139] = {.lex_state = 68}, - [3140] = {.lex_state = 68}, - [3141] = {.lex_state = 68}, - [3142] = {.lex_state = 68}, - [3143] = {.lex_state = 68}, - [3144] = {.lex_state = 0}, + [3139] = {.lex_state = 0}, + [3140] = {.lex_state = 0}, + [3141] = {.lex_state = 0}, + [3142] = {.lex_state = 0}, + [3143] = {.lex_state = 0}, + [3144] = {.lex_state = 68}, [3145] = {.lex_state = 0}, [3146] = {.lex_state = 0}, [3147] = {.lex_state = 0}, - [3148] = {.lex_state = 0}, + [3148] = {.lex_state = 68}, [3149] = {.lex_state = 0}, - [3150] = {.lex_state = 0}, + [3150] = {.lex_state = 15}, [3151] = {.lex_state = 68}, - [3152] = {.lex_state = 68}, - [3153] = {.lex_state = 68}, - [3154] = {.lex_state = 68}, - [3155] = {.lex_state = 0}, - [3156] = {.lex_state = 15}, + [3152] = {.lex_state = 0}, + [3153] = {.lex_state = 0}, + [3154] = {.lex_state = 0}, + [3155] = {.lex_state = 68}, + [3156] = {.lex_state = 68}, [3157] = {.lex_state = 68}, - [3158] = {.lex_state = 5}, - [3159] = {.lex_state = 0}, + [3158] = {.lex_state = 68}, + [3159] = {.lex_state = 68}, [3160] = {.lex_state = 68}, [3161] = {.lex_state = 68}, [3162] = {.lex_state = 0}, [3163] = {.lex_state = 68}, [3164] = {.lex_state = 68}, [3165] = {.lex_state = 0}, - [3166] = {.lex_state = 68}, - [3167] = {.lex_state = 68}, + [3166] = {.lex_state = 5}, + [3167] = {.lex_state = 0}, [3168] = {.lex_state = 68}, - [3169] = {.lex_state = 68}, + [3169] = {.lex_state = 0}, [3170] = {.lex_state = 0}, [3171] = {.lex_state = 0}, [3172] = {.lex_state = 0}, - [3173] = {.lex_state = 0}, - [3174] = {.lex_state = 0}, - [3175] = {.lex_state = 0}, - [3176] = {.lex_state = 0}, - [3177] = {.lex_state = 0}, + [3173] = {.lex_state = 68}, + [3174] = {.lex_state = 68}, + [3175] = {.lex_state = 68}, + [3176] = {.lex_state = 68}, + [3177] = {.lex_state = 68}, [3178] = {.lex_state = 68}, [3179] = {.lex_state = 68}, [3180] = {.lex_state = 68}, - [3181] = {.lex_state = 5}, + [3181] = {.lex_state = 0}, [3182] = {.lex_state = 0}, [3183] = {.lex_state = 68}, [3184] = {.lex_state = 68}, [3185] = {.lex_state = 68}, [3186] = {.lex_state = 68}, - [3187] = {.lex_state = 68}, - [3188] = {.lex_state = 68}, + [3187] = {.lex_state = 0}, + [3188] = {.lex_state = 0}, [3189] = {.lex_state = 68}, [3190] = {.lex_state = 0}, [3191] = {.lex_state = 68}, - [3192] = {.lex_state = 68}, - [3193] = {.lex_state = 68}, - [3194] = {.lex_state = 68}, + [3192] = {.lex_state = 0}, + [3193] = {.lex_state = 0}, + [3194] = {.lex_state = 0}, [3195] = {.lex_state = 68}, - [3196] = {.lex_state = 68}, + [3196] = {.lex_state = 0}, [3197] = {.lex_state = 68}, - [3198] = {.lex_state = 68}, + [3198] = {.lex_state = 0}, [3199] = {.lex_state = 68}, [3200] = {.lex_state = 68}, - [3201] = {.lex_state = 0}, - [3202] = {.lex_state = 68}, + [3201] = {.lex_state = 68}, + [3202] = {.lex_state = 0}, [3203] = {.lex_state = 68}, [3204] = {.lex_state = 0}, - [3205] = {.lex_state = 0}, - [3206] = {.lex_state = 0}, + [3205] = {.lex_state = 68}, + [3206] = {.lex_state = 68}, [3207] = {.lex_state = 68}, - [3208] = {.lex_state = 0}, - [3209] = {.lex_state = 0}, + [3208] = {.lex_state = 68}, + [3209] = {.lex_state = 68}, [3210] = {.lex_state = 68}, [3211] = {.lex_state = 68}, - [3212] = {.lex_state = 0}, - [3213] = {.lex_state = 0}, - [3214] = {.lex_state = 0}, + [3212] = {.lex_state = 68}, + [3213] = {.lex_state = 68}, + [3214] = {.lex_state = 68}, + [3215] = {.lex_state = 68}, + [3216] = {.lex_state = 68}, + [3217] = {.lex_state = 0}, + [3218] = {.lex_state = 5}, + [3219] = {.lex_state = 0}, + [3220] = {.lex_state = 68}, + [3221] = {.lex_state = 0}, + [3222] = {.lex_state = 68}, + [3223] = {.lex_state = 0}, + [3224] = {.lex_state = 0}, + [3225] = {.lex_state = 0}, + [3226] = {.lex_state = 0}, + [3227] = {.lex_state = 68}, + [3228] = {.lex_state = 0}, + [3229] = {.lex_state = 68}, + [3230] = {.lex_state = 68}, + [3231] = {.lex_state = 68}, + [3232] = {.lex_state = 68}, + [3233] = {.lex_state = 0}, + [3234] = {.lex_state = 0}, }; enum { @@ -9322,78 +9376,78 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__template_chars] = ACTIONS(1), }, [1] = { - [sym_program] = STATE(3150), - [sym_export_statement] = STATE(15), - [sym__declaration] = STATE(15), - [sym_import] = STATE(1498), - [sym_import_statement] = STATE(15), - [sym_expression_statement] = STATE(15), - [sym_variable_declaration] = STATE(598), - [sym_lexical_declaration] = STATE(598), - [sym_statement_block] = STATE(15), - [sym_if_statement] = STATE(15), - [sym_switch_statement] = STATE(15), - [sym_for_statement] = STATE(15), - [sym_for_in_statement] = STATE(15), - [sym_while_statement] = STATE(15), - [sym_do_statement] = STATE(15), - [sym_try_statement] = STATE(15), - [sym_with_statement] = STATE(15), - [sym_break_statement] = STATE(15), - [sym_continue_statement] = STATE(15), - [sym_debugger_statement] = STATE(15), - [sym_return_statement] = STATE(15), - [sym_throw_statement] = STATE(15), - [sym_empty_statement] = STATE(15), - [sym_labeled_statement] = STATE(15), - [sym_parenthesized_expression] = STATE(764), - [sym__expression] = STATE(1265), - [sym_yield_expression] = STATE(1518), - [sym_object] = STATE(1435), - [sym_array] = STATE(1433), - [sym_class] = STATE(1498), - [sym_class_declaration] = STATE(598), - [sym_function] = STATE(1498), - [sym_function_declaration] = STATE(598), - [sym_generator_function] = STATE(1498), - [sym_generator_function_declaration] = STATE(598), - [sym_arrow_function] = STATE(1498), - [sym__call_signature] = STATE(3145), - [sym_call_expression] = STATE(1498), - [sym_new_expression] = STATE(1518), - [sym_await_expression] = STATE(1518), - [sym_member_expression] = STATE(764), - [sym_subscript_expression] = STATE(764), - [sym_assignment_expression] = STATE(1518), - [sym__augmented_assignment_lhs] = STATE(1925), - [sym_augmented_assignment_expression] = STATE(1518), - [sym_ternary_expression] = STATE(1518), - [sym_binary_expression] = STATE(1518), - [sym_unary_expression] = STATE(1518), - [sym_update_expression] = STATE(1518), - [sym_sequence_expression] = STATE(2844), - [sym_string] = STATE(1498), - [sym_template_string] = STATE(1498), - [sym_regex] = STATE(1498), - [sym_meta_property] = STATE(1498), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(772), - [sym_function_signature] = STATE(598), - [sym_type_assertion] = STATE(1518), - [sym_as_expression] = STATE(1518), - [sym_ambient_declaration] = STATE(598), - [sym_abstract_class_declaration] = STATE(598), - [sym_module] = STATE(598), - [sym_internal_module] = STATE(92), - [sym_import_alias] = STATE(598), - [sym_interface_declaration] = STATE(598), - [sym_enum_declaration] = STATE(598), - [sym_type_alias_declaration] = STATE(598), - [sym_type_arguments] = STATE(349), - [sym_type_parameters] = STATE(2850), - [aux_sym_program_repeat1] = STATE(15), - [aux_sym_export_statement_repeat1] = STATE(2286), + [sym_program] = STATE(3198), + [sym_export_statement] = STATE(13), + [sym__declaration] = STATE(13), + [sym_import] = STATE(1523), + [sym_import_statement] = STATE(13), + [sym_expression_statement] = STATE(13), + [sym_variable_declaration] = STATE(579), + [sym_lexical_declaration] = STATE(579), + [sym_statement_block] = STATE(13), + [sym_if_statement] = STATE(13), + [sym_switch_statement] = STATE(13), + [sym_for_statement] = STATE(13), + [sym_for_in_statement] = STATE(13), + [sym_while_statement] = STATE(13), + [sym_do_statement] = STATE(13), + [sym_try_statement] = STATE(13), + [sym_with_statement] = STATE(13), + [sym_break_statement] = STATE(13), + [sym_continue_statement] = STATE(13), + [sym_debugger_statement] = STATE(13), + [sym_return_statement] = STATE(13), + [sym_throw_statement] = STATE(13), + [sym_empty_statement] = STATE(13), + [sym_labeled_statement] = STATE(13), + [sym_parenthesized_expression] = STATE(768), + [sym__expression] = STATE(1211), + [sym_yield_expression] = STATE(1567), + [sym_object] = STATE(1357), + [sym_array] = STATE(1360), + [sym_class] = STATE(1523), + [sym_class_declaration] = STATE(579), + [sym_function] = STATE(1523), + [sym_function_declaration] = STATE(579), + [sym_generator_function] = STATE(1523), + [sym_generator_function_declaration] = STATE(579), + [sym_arrow_function] = STATE(1523), + [sym__call_signature] = STATE(3196), + [sym_call_expression] = STATE(1523), + [sym_new_expression] = STATE(1567), + [sym_await_expression] = STATE(1567), + [sym_member_expression] = STATE(768), + [sym_subscript_expression] = STATE(768), + [sym_assignment_expression] = STATE(1567), + [sym__augmented_assignment_lhs] = STATE(1928), + [sym_augmented_assignment_expression] = STATE(1567), + [sym_ternary_expression] = STATE(1567), + [sym_binary_expression] = STATE(1567), + [sym_unary_expression] = STATE(1567), + [sym_update_expression] = STATE(1567), + [sym_sequence_expression] = STATE(2826), + [sym_string] = STATE(1523), + [sym_template_string] = STATE(1523), + [sym_regex] = STATE(1523), + [sym_meta_property] = STATE(1523), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(774), + [sym_function_signature] = STATE(579), + [sym_type_assertion] = STATE(1567), + [sym_as_expression] = STATE(1567), + [sym_ambient_declaration] = STATE(579), + [sym_abstract_class_declaration] = STATE(579), + [sym_module] = STATE(579), + [sym_internal_module] = STATE(86), + [sym_import_alias] = STATE(579), + [sym_interface_declaration] = STATE(579), + [sym_enum_declaration] = STATE(579), + [sym_type_alias_declaration] = STATE(579), + [sym_type_arguments] = STATE(292), + [sym_type_parameters] = STATE(2827), + [aux_sym_program_repeat1] = STATE(13), + [aux_sym_export_statement_repeat1] = STATE(2247), [ts_builtin_sym_end] = ACTIONS(5), [sym_identifier] = ACTIONS(7), [sym_hash_bang_line] = ACTIONS(9), @@ -9468,85 +9522,85 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_readonly] = ACTIONS(93), }, [2] = { - [sym_export_statement] = STATE(21), - [sym__declaration] = STATE(21), - [sym_import] = STATE(1498), - [sym_import_statement] = STATE(21), - [sym_expression_statement] = STATE(21), - [sym_variable_declaration] = STATE(598), - [sym_lexical_declaration] = STATE(598), - [sym_statement_block] = STATE(21), - [sym_if_statement] = STATE(21), - [sym_switch_statement] = STATE(21), - [sym_for_statement] = STATE(21), - [sym_for_in_statement] = STATE(21), - [sym_while_statement] = STATE(21), - [sym_do_statement] = STATE(21), - [sym_try_statement] = STATE(21), - [sym_with_statement] = STATE(21), - [sym_break_statement] = STATE(21), - [sym_continue_statement] = STATE(21), - [sym_debugger_statement] = STATE(21), - [sym_return_statement] = STATE(21), - [sym_throw_statement] = STATE(21), - [sym_empty_statement] = STATE(21), - [sym_labeled_statement] = STATE(21), - [sym_parenthesized_expression] = STATE(764), - [sym__expression] = STATE(1265), - [sym_yield_expression] = STATE(1518), - [sym_object] = STATE(1550), - [sym_assignment_pattern] = STATE(2642), - [sym_array] = STATE(1565), - [sym_class] = STATE(1498), - [sym_class_declaration] = STATE(598), - [sym_function] = STATE(1498), - [sym_function_declaration] = STATE(598), - [sym_generator_function] = STATE(1498), - [sym_generator_function_declaration] = STATE(598), - [sym_arrow_function] = STATE(1498), - [sym__call_signature] = STATE(3145), - [sym_call_expression] = STATE(1498), - [sym_new_expression] = STATE(1518), - [sym_await_expression] = STATE(1518), - [sym_member_expression] = STATE(764), - [sym_subscript_expression] = STATE(764), - [sym_assignment_expression] = STATE(1518), - [sym__augmented_assignment_lhs] = STATE(1925), - [sym_augmented_assignment_expression] = STATE(1518), - [sym_spread_element] = STATE(2642), - [sym_ternary_expression] = STATE(1518), - [sym_binary_expression] = STATE(1518), - [sym_unary_expression] = STATE(1518), - [sym_update_expression] = STATE(1518), - [sym_sequence_expression] = STATE(2844), - [sym_string] = STATE(1549), - [sym_template_string] = STATE(1498), - [sym_regex] = STATE(1498), - [sym_meta_property] = STATE(1498), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_method_definition] = STATE(2642), - [sym_pair] = STATE(2642), - [sym__property_name] = STATE(2109), - [sym_computed_property_name] = STATE(2109), - [sym_non_null_expression] = STATE(772), - [sym_function_signature] = STATE(598), - [sym_type_assertion] = STATE(1518), - [sym_as_expression] = STATE(1518), - [sym_ambient_declaration] = STATE(598), - [sym_abstract_class_declaration] = STATE(598), - [sym_module] = STATE(598), - [sym_internal_module] = STATE(92), - [sym_import_alias] = STATE(598), - [sym_interface_declaration] = STATE(598), - [sym_enum_declaration] = STATE(598), - [sym_type_alias_declaration] = STATE(598), - [sym_accessibility_modifier] = STATE(1875), - [sym_type_arguments] = STATE(349), - [sym_type_parameters] = STATE(2850), - [aux_sym_program_repeat1] = STATE(21), - [aux_sym_export_statement_repeat1] = STATE(2286), - [aux_sym_object_repeat1] = STATE(2646), + [sym_export_statement] = STATE(25), + [sym__declaration] = STATE(25), + [sym_import] = STATE(1523), + [sym_import_statement] = STATE(25), + [sym_expression_statement] = STATE(25), + [sym_variable_declaration] = STATE(579), + [sym_lexical_declaration] = STATE(579), + [sym_statement_block] = STATE(25), + [sym_if_statement] = STATE(25), + [sym_switch_statement] = STATE(25), + [sym_for_statement] = STATE(25), + [sym_for_in_statement] = STATE(25), + [sym_while_statement] = STATE(25), + [sym_do_statement] = STATE(25), + [sym_try_statement] = STATE(25), + [sym_with_statement] = STATE(25), + [sym_break_statement] = STATE(25), + [sym_continue_statement] = STATE(25), + [sym_debugger_statement] = STATE(25), + [sym_return_statement] = STATE(25), + [sym_throw_statement] = STATE(25), + [sym_empty_statement] = STATE(25), + [sym_labeled_statement] = STATE(25), + [sym_parenthesized_expression] = STATE(768), + [sym__expression] = STATE(1211), + [sym_yield_expression] = STATE(1567), + [sym_object] = STATE(1557), + [sym_assignment_pattern] = STATE(2734), + [sym_array] = STATE(1539), + [sym_class] = STATE(1523), + [sym_class_declaration] = STATE(579), + [sym_function] = STATE(1523), + [sym_function_declaration] = STATE(579), + [sym_generator_function] = STATE(1523), + [sym_generator_function_declaration] = STATE(579), + [sym_arrow_function] = STATE(1523), + [sym__call_signature] = STATE(3196), + [sym_call_expression] = STATE(1523), + [sym_new_expression] = STATE(1567), + [sym_await_expression] = STATE(1567), + [sym_member_expression] = STATE(768), + [sym_subscript_expression] = STATE(768), + [sym_assignment_expression] = STATE(1567), + [sym__augmented_assignment_lhs] = STATE(1928), + [sym_augmented_assignment_expression] = STATE(1567), + [sym_spread_element] = STATE(2734), + [sym_ternary_expression] = STATE(1567), + [sym_binary_expression] = STATE(1567), + [sym_unary_expression] = STATE(1567), + [sym_update_expression] = STATE(1567), + [sym_sequence_expression] = STATE(2826), + [sym_string] = STATE(1586), + [sym_template_string] = STATE(1523), + [sym_regex] = STATE(1523), + [sym_meta_property] = STATE(1523), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_method_definition] = STATE(2734), + [sym_pair] = STATE(2734), + [sym__property_name] = STATE(2084), + [sym_computed_property_name] = STATE(2084), + [sym_non_null_expression] = STATE(774), + [sym_function_signature] = STATE(579), + [sym_type_assertion] = STATE(1567), + [sym_as_expression] = STATE(1567), + [sym_ambient_declaration] = STATE(579), + [sym_abstract_class_declaration] = STATE(579), + [sym_module] = STATE(579), + [sym_internal_module] = STATE(86), + [sym_import_alias] = STATE(579), + [sym_interface_declaration] = STATE(579), + [sym_enum_declaration] = STATE(579), + [sym_type_alias_declaration] = STATE(579), + [sym_accessibility_modifier] = STATE(1883), + [sym_type_arguments] = STATE(292), + [sym_type_parameters] = STATE(2827), + [aux_sym_program_repeat1] = STATE(25), + [aux_sym_export_statement_repeat1] = STATE(2247), + [aux_sym_object_repeat1] = STATE(2736), [sym_identifier] = ACTIONS(105), [anon_sym_export] = ACTIONS(107), [anon_sym_STAR] = ACTIONS(109), @@ -9623,85 +9677,85 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_readonly] = ACTIONS(139), }, [3] = { - [sym_export_statement] = STATE(20), - [sym__declaration] = STATE(20), - [sym_import] = STATE(1498), - [sym_import_statement] = STATE(20), - [sym_expression_statement] = STATE(20), - [sym_variable_declaration] = STATE(598), - [sym_lexical_declaration] = STATE(598), - [sym_statement_block] = STATE(20), - [sym_if_statement] = STATE(20), - [sym_switch_statement] = STATE(20), - [sym_for_statement] = STATE(20), - [sym_for_in_statement] = STATE(20), - [sym_while_statement] = STATE(20), - [sym_do_statement] = STATE(20), - [sym_try_statement] = STATE(20), - [sym_with_statement] = STATE(20), - [sym_break_statement] = STATE(20), - [sym_continue_statement] = STATE(20), - [sym_debugger_statement] = STATE(20), - [sym_return_statement] = STATE(20), - [sym_throw_statement] = STATE(20), - [sym_empty_statement] = STATE(20), - [sym_labeled_statement] = STATE(20), - [sym_parenthesized_expression] = STATE(764), - [sym__expression] = STATE(1265), - [sym_yield_expression] = STATE(1518), - [sym_object] = STATE(1550), - [sym_assignment_pattern] = STATE(2699), - [sym_array] = STATE(1565), - [sym_class] = STATE(1498), - [sym_class_declaration] = STATE(598), - [sym_function] = STATE(1498), - [sym_function_declaration] = STATE(598), - [sym_generator_function] = STATE(1498), - [sym_generator_function_declaration] = STATE(598), - [sym_arrow_function] = STATE(1498), - [sym__call_signature] = STATE(3145), - [sym_call_expression] = STATE(1498), - [sym_new_expression] = STATE(1518), - [sym_await_expression] = STATE(1518), - [sym_member_expression] = STATE(764), - [sym_subscript_expression] = STATE(764), - [sym_assignment_expression] = STATE(1518), - [sym__augmented_assignment_lhs] = STATE(1925), - [sym_augmented_assignment_expression] = STATE(1518), - [sym_spread_element] = STATE(2699), - [sym_ternary_expression] = STATE(1518), - [sym_binary_expression] = STATE(1518), - [sym_unary_expression] = STATE(1518), - [sym_update_expression] = STATE(1518), - [sym_sequence_expression] = STATE(2844), - [sym_string] = STATE(1549), - [sym_template_string] = STATE(1498), - [sym_regex] = STATE(1498), - [sym_meta_property] = STATE(1498), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_method_definition] = STATE(2699), - [sym_pair] = STATE(2699), - [sym__property_name] = STATE(2109), - [sym_computed_property_name] = STATE(2109), - [sym_non_null_expression] = STATE(772), - [sym_function_signature] = STATE(598), - [sym_type_assertion] = STATE(1518), - [sym_as_expression] = STATE(1518), - [sym_ambient_declaration] = STATE(598), - [sym_abstract_class_declaration] = STATE(598), - [sym_module] = STATE(598), - [sym_internal_module] = STATE(92), - [sym_import_alias] = STATE(598), - [sym_interface_declaration] = STATE(598), - [sym_enum_declaration] = STATE(598), - [sym_type_alias_declaration] = STATE(598), - [sym_accessibility_modifier] = STATE(1875), - [sym_type_arguments] = STATE(349), - [sym_type_parameters] = STATE(2850), - [aux_sym_program_repeat1] = STATE(20), - [aux_sym_export_statement_repeat1] = STATE(2286), - [aux_sym_object_repeat1] = STATE(2644), + [sym_export_statement] = STATE(22), + [sym__declaration] = STATE(22), + [sym_import] = STATE(1523), + [sym_import_statement] = STATE(22), + [sym_expression_statement] = STATE(22), + [sym_variable_declaration] = STATE(579), + [sym_lexical_declaration] = STATE(579), + [sym_statement_block] = STATE(22), + [sym_if_statement] = STATE(22), + [sym_switch_statement] = STATE(22), + [sym_for_statement] = STATE(22), + [sym_for_in_statement] = STATE(22), + [sym_while_statement] = STATE(22), + [sym_do_statement] = STATE(22), + [sym_try_statement] = STATE(22), + [sym_with_statement] = STATE(22), + [sym_break_statement] = STATE(22), + [sym_continue_statement] = STATE(22), + [sym_debugger_statement] = STATE(22), + [sym_return_statement] = STATE(22), + [sym_throw_statement] = STATE(22), + [sym_empty_statement] = STATE(22), + [sym_labeled_statement] = STATE(22), + [sym_parenthesized_expression] = STATE(768), + [sym__expression] = STATE(1211), + [sym_yield_expression] = STATE(1567), + [sym_object] = STATE(1557), + [sym_assignment_pattern] = STATE(2710), + [sym_array] = STATE(1539), + [sym_class] = STATE(1523), + [sym_class_declaration] = STATE(579), + [sym_function] = STATE(1523), + [sym_function_declaration] = STATE(579), + [sym_generator_function] = STATE(1523), + [sym_generator_function_declaration] = STATE(579), + [sym_arrow_function] = STATE(1523), + [sym__call_signature] = STATE(3196), + [sym_call_expression] = STATE(1523), + [sym_new_expression] = STATE(1567), + [sym_await_expression] = STATE(1567), + [sym_member_expression] = STATE(768), + [sym_subscript_expression] = STATE(768), + [sym_assignment_expression] = STATE(1567), + [sym__augmented_assignment_lhs] = STATE(1928), + [sym_augmented_assignment_expression] = STATE(1567), + [sym_spread_element] = STATE(2710), + [sym_ternary_expression] = STATE(1567), + [sym_binary_expression] = STATE(1567), + [sym_unary_expression] = STATE(1567), + [sym_update_expression] = STATE(1567), + [sym_sequence_expression] = STATE(2826), + [sym_string] = STATE(1586), + [sym_template_string] = STATE(1523), + [sym_regex] = STATE(1523), + [sym_meta_property] = STATE(1523), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_method_definition] = STATE(2710), + [sym_pair] = STATE(2710), + [sym__property_name] = STATE(2084), + [sym_computed_property_name] = STATE(2084), + [sym_non_null_expression] = STATE(774), + [sym_function_signature] = STATE(579), + [sym_type_assertion] = STATE(1567), + [sym_as_expression] = STATE(1567), + [sym_ambient_declaration] = STATE(579), + [sym_abstract_class_declaration] = STATE(579), + [sym_module] = STATE(579), + [sym_internal_module] = STATE(86), + [sym_import_alias] = STATE(579), + [sym_interface_declaration] = STATE(579), + [sym_enum_declaration] = STATE(579), + [sym_type_alias_declaration] = STATE(579), + [sym_accessibility_modifier] = STATE(1883), + [sym_type_arguments] = STATE(292), + [sym_type_parameters] = STATE(2827), + [aux_sym_program_repeat1] = STATE(22), + [aux_sym_export_statement_repeat1] = STATE(2247), + [aux_sym_object_repeat1] = STATE(2706), [sym_identifier] = ACTIONS(141), [anon_sym_export] = ACTIONS(143), [anon_sym_STAR] = ACTIONS(109), @@ -9778,93 +9832,93 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_readonly] = ACTIONS(165), }, [4] = { - [sym_export_statement] = STATE(24), - [sym__declaration] = STATE(24), - [sym_import] = STATE(1498), - [sym_import_statement] = STATE(24), - [sym_expression_statement] = STATE(24), - [sym_variable_declaration] = STATE(598), - [sym_lexical_declaration] = STATE(598), - [sym_statement_block] = STATE(24), - [sym_if_statement] = STATE(24), - [sym_switch_statement] = STATE(24), - [sym_for_statement] = STATE(24), - [sym_for_in_statement] = STATE(24), - [sym_while_statement] = STATE(24), - [sym_do_statement] = STATE(24), - [sym_try_statement] = STATE(24), - [sym_with_statement] = STATE(24), - [sym_break_statement] = STATE(24), - [sym_continue_statement] = STATE(24), - [sym_debugger_statement] = STATE(24), - [sym_return_statement] = STATE(24), - [sym_throw_statement] = STATE(24), - [sym_empty_statement] = STATE(24), - [sym_labeled_statement] = STATE(24), - [sym_parenthesized_expression] = STATE(764), - [sym__expression] = STATE(1265), - [sym_yield_expression] = STATE(1518), - [sym_object] = STATE(1550), - [sym_assignment_pattern] = STATE(2642), - [sym_array] = STATE(1565), - [sym_class] = STATE(1498), - [sym_class_declaration] = STATE(598), - [sym_function] = STATE(1498), - [sym_function_declaration] = STATE(598), - [sym_generator_function] = STATE(1498), - [sym_generator_function_declaration] = STATE(598), - [sym_arrow_function] = STATE(1498), - [sym__call_signature] = STATE(3145), - [sym_call_expression] = STATE(1498), - [sym_new_expression] = STATE(1518), - [sym_await_expression] = STATE(1518), - [sym_member_expression] = STATE(764), - [sym_subscript_expression] = STATE(764), - [sym_assignment_expression] = STATE(1518), - [sym__augmented_assignment_lhs] = STATE(1925), - [sym_augmented_assignment_expression] = STATE(1518), - [sym_spread_element] = STATE(2642), - [sym_ternary_expression] = STATE(1518), - [sym_binary_expression] = STATE(1518), - [sym_unary_expression] = STATE(1518), - [sym_update_expression] = STATE(1518), - [sym_sequence_expression] = STATE(2844), - [sym_string] = STATE(1549), - [sym_template_string] = STATE(1498), - [sym_regex] = STATE(1498), - [sym_meta_property] = STATE(1498), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_method_definition] = STATE(2642), - [sym_pair] = STATE(2642), - [sym__property_name] = STATE(2109), - [sym_computed_property_name] = STATE(2109), - [sym_non_null_expression] = STATE(772), - [sym_function_signature] = STATE(598), - [sym_type_assertion] = STATE(1518), - [sym_as_expression] = STATE(1518), - [sym_ambient_declaration] = STATE(598), - [sym_abstract_class_declaration] = STATE(598), - [sym_module] = STATE(598), - [sym_internal_module] = STATE(92), - [sym_import_alias] = STATE(598), - [sym_interface_declaration] = STATE(598), - [sym_enum_declaration] = STATE(598), - [sym_type_alias_declaration] = STATE(598), - [sym_accessibility_modifier] = STATE(1875), - [sym_type_arguments] = STATE(349), - [sym_type_parameters] = STATE(2850), - [aux_sym_program_repeat1] = STATE(24), - [aux_sym_export_statement_repeat1] = STATE(2286), - [aux_sym_object_repeat1] = STATE(2646), - [sym_identifier] = ACTIONS(105), - [anon_sym_export] = ACTIONS(107), + [sym_export_statement] = STATE(23), + [sym__declaration] = STATE(23), + [sym_import] = STATE(1523), + [sym_import_statement] = STATE(23), + [sym_expression_statement] = STATE(23), + [sym_variable_declaration] = STATE(579), + [sym_lexical_declaration] = STATE(579), + [sym_statement_block] = STATE(23), + [sym_if_statement] = STATE(23), + [sym_switch_statement] = STATE(23), + [sym_for_statement] = STATE(23), + [sym_for_in_statement] = STATE(23), + [sym_while_statement] = STATE(23), + [sym_do_statement] = STATE(23), + [sym_try_statement] = STATE(23), + [sym_with_statement] = STATE(23), + [sym_break_statement] = STATE(23), + [sym_continue_statement] = STATE(23), + [sym_debugger_statement] = STATE(23), + [sym_return_statement] = STATE(23), + [sym_throw_statement] = STATE(23), + [sym_empty_statement] = STATE(23), + [sym_labeled_statement] = STATE(23), + [sym_parenthesized_expression] = STATE(768), + [sym__expression] = STATE(1211), + [sym_yield_expression] = STATE(1567), + [sym_object] = STATE(1557), + [sym_assignment_pattern] = STATE(2785), + [sym_array] = STATE(1539), + [sym_class] = STATE(1523), + [sym_class_declaration] = STATE(579), + [sym_function] = STATE(1523), + [sym_function_declaration] = STATE(579), + [sym_generator_function] = STATE(1523), + [sym_generator_function_declaration] = STATE(579), + [sym_arrow_function] = STATE(1523), + [sym__call_signature] = STATE(3196), + [sym_call_expression] = STATE(1523), + [sym_new_expression] = STATE(1567), + [sym_await_expression] = STATE(1567), + [sym_member_expression] = STATE(768), + [sym_subscript_expression] = STATE(768), + [sym_assignment_expression] = STATE(1567), + [sym__augmented_assignment_lhs] = STATE(1928), + [sym_augmented_assignment_expression] = STATE(1567), + [sym_spread_element] = STATE(2785), + [sym_ternary_expression] = STATE(1567), + [sym_binary_expression] = STATE(1567), + [sym_unary_expression] = STATE(1567), + [sym_update_expression] = STATE(1567), + [sym_sequence_expression] = STATE(2826), + [sym_string] = STATE(1586), + [sym_template_string] = STATE(1523), + [sym_regex] = STATE(1523), + [sym_meta_property] = STATE(1523), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_method_definition] = STATE(2785), + [sym_pair] = STATE(2785), + [sym__property_name] = STATE(2084), + [sym_computed_property_name] = STATE(2084), + [sym_non_null_expression] = STATE(774), + [sym_function_signature] = STATE(579), + [sym_type_assertion] = STATE(1567), + [sym_as_expression] = STATE(1567), + [sym_ambient_declaration] = STATE(579), + [sym_abstract_class_declaration] = STATE(579), + [sym_module] = STATE(579), + [sym_internal_module] = STATE(86), + [sym_import_alias] = STATE(579), + [sym_interface_declaration] = STATE(579), + [sym_enum_declaration] = STATE(579), + [sym_type_alias_declaration] = STATE(579), + [sym_accessibility_modifier] = STATE(1883), + [sym_type_arguments] = STATE(292), + [sym_type_parameters] = STATE(2827), + [aux_sym_program_repeat1] = STATE(23), + [aux_sym_export_statement_repeat1] = STATE(2247), + [aux_sym_object_repeat1] = STATE(2753), + [sym_identifier] = ACTIONS(167), + [anon_sym_export] = ACTIONS(169), [anon_sym_STAR] = ACTIONS(109), - [anon_sym_namespace] = ACTIONS(111), + [anon_sym_namespace] = ACTIONS(171), [anon_sym_LBRACE] = ACTIONS(15), [anon_sym_COMMA] = ACTIONS(113), - [anon_sym_RBRACE] = ACTIONS(167), - [anon_sym_type] = ACTIONS(117), + [anon_sym_RBRACE] = ACTIONS(173), + [anon_sym_type] = ACTIONS(175), [anon_sym_typeof] = ACTIONS(19), [anon_sym_import] = ACTIONS(21), [anon_sym_var] = ACTIONS(23), @@ -9891,7 +9945,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(67), [anon_sym_class] = ACTIONS(69), - [anon_sym_async] = ACTIONS(121), + [anon_sym_async] = ACTIONS(177), [anon_sym_function] = ACTIONS(73), [anon_sym_new] = ACTIONS(75), [anon_sym_DOT_DOT_DOT] = ACTIONS(123), @@ -9914,112 +9968,112 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(127), + [anon_sym_static] = ACTIONS(179), [anon_sym_abstract] = ACTIONS(95), - [anon_sym_get] = ACTIONS(129), - [anon_sym_set] = ACTIONS(129), - [anon_sym_declare] = ACTIONS(131), - [anon_sym_public] = ACTIONS(133), - [anon_sym_private] = ACTIONS(133), - [anon_sym_protected] = ACTIONS(133), - [anon_sym_module] = ACTIONS(135), - [anon_sym_any] = ACTIONS(137), - [anon_sym_number] = ACTIONS(137), - [anon_sym_boolean] = ACTIONS(137), - [anon_sym_string] = ACTIONS(137), - [anon_sym_symbol] = ACTIONS(137), + [anon_sym_get] = ACTIONS(181), + [anon_sym_set] = ACTIONS(181), + [anon_sym_declare] = ACTIONS(183), + [anon_sym_public] = ACTIONS(185), + [anon_sym_private] = ACTIONS(185), + [anon_sym_protected] = ACTIONS(185), + [anon_sym_module] = ACTIONS(187), + [anon_sym_any] = ACTIONS(189), + [anon_sym_number] = ACTIONS(189), + [anon_sym_boolean] = ACTIONS(189), + [anon_sym_string] = ACTIONS(189), + [anon_sym_symbol] = ACTIONS(189), [anon_sym_interface] = ACTIONS(101), [anon_sym_enum] = ACTIONS(103), - [sym_readonly] = ACTIONS(139), + [sym_readonly] = ACTIONS(191), }, [5] = { - [sym_export_statement] = STATE(24), - [sym__declaration] = STATE(24), - [sym_import] = STATE(1498), - [sym_import_statement] = STATE(24), - [sym_expression_statement] = STATE(24), - [sym_variable_declaration] = STATE(598), - [sym_lexical_declaration] = STATE(598), - [sym_statement_block] = STATE(24), - [sym_if_statement] = STATE(24), - [sym_switch_statement] = STATE(24), - [sym_for_statement] = STATE(24), - [sym_for_in_statement] = STATE(24), - [sym_while_statement] = STATE(24), - [sym_do_statement] = STATE(24), - [sym_try_statement] = STATE(24), - [sym_with_statement] = STATE(24), - [sym_break_statement] = STATE(24), - [sym_continue_statement] = STATE(24), - [sym_debugger_statement] = STATE(24), - [sym_return_statement] = STATE(24), - [sym_throw_statement] = STATE(24), - [sym_empty_statement] = STATE(24), - [sym_labeled_statement] = STATE(24), - [sym_parenthesized_expression] = STATE(764), - [sym__expression] = STATE(1265), - [sym_yield_expression] = STATE(1518), - [sym_object] = STATE(1550), - [sym_assignment_pattern] = STATE(2642), - [sym_array] = STATE(1565), - [sym_class] = STATE(1498), - [sym_class_declaration] = STATE(598), - [sym_function] = STATE(1498), - [sym_function_declaration] = STATE(598), - [sym_generator_function] = STATE(1498), - [sym_generator_function_declaration] = STATE(598), - [sym_arrow_function] = STATE(1498), - [sym__call_signature] = STATE(3145), - [sym_call_expression] = STATE(1498), - [sym_new_expression] = STATE(1518), - [sym_await_expression] = STATE(1518), - [sym_member_expression] = STATE(764), - [sym_subscript_expression] = STATE(764), - [sym_assignment_expression] = STATE(1518), - [sym__augmented_assignment_lhs] = STATE(1925), - [sym_augmented_assignment_expression] = STATE(1518), - [sym_spread_element] = STATE(2642), - [sym_ternary_expression] = STATE(1518), - [sym_binary_expression] = STATE(1518), - [sym_unary_expression] = STATE(1518), - [sym_update_expression] = STATE(1518), - [sym_sequence_expression] = STATE(2844), - [sym_string] = STATE(1549), - [sym_template_string] = STATE(1498), - [sym_regex] = STATE(1498), - [sym_meta_property] = STATE(1498), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_method_definition] = STATE(2642), - [sym_pair] = STATE(2642), - [sym__property_name] = STATE(2109), - [sym_computed_property_name] = STATE(2109), - [sym_non_null_expression] = STATE(772), - [sym_function_signature] = STATE(598), - [sym_type_assertion] = STATE(1518), - [sym_as_expression] = STATE(1518), - [sym_ambient_declaration] = STATE(598), - [sym_abstract_class_declaration] = STATE(598), - [sym_module] = STATE(598), - [sym_internal_module] = STATE(92), - [sym_import_alias] = STATE(598), - [sym_interface_declaration] = STATE(598), - [sym_enum_declaration] = STATE(598), - [sym_type_alias_declaration] = STATE(598), - [sym_accessibility_modifier] = STATE(1875), - [sym_type_arguments] = STATE(349), - [sym_type_parameters] = STATE(2850), - [aux_sym_program_repeat1] = STATE(24), - [aux_sym_export_statement_repeat1] = STATE(2286), - [aux_sym_object_repeat1] = STATE(2646), - [sym_identifier] = ACTIONS(105), - [anon_sym_export] = ACTIONS(107), + [sym_export_statement] = STATE(23), + [sym__declaration] = STATE(23), + [sym_import] = STATE(1523), + [sym_import_statement] = STATE(23), + [sym_expression_statement] = STATE(23), + [sym_variable_declaration] = STATE(579), + [sym_lexical_declaration] = STATE(579), + [sym_statement_block] = STATE(23), + [sym_if_statement] = STATE(23), + [sym_switch_statement] = STATE(23), + [sym_for_statement] = STATE(23), + [sym_for_in_statement] = STATE(23), + [sym_while_statement] = STATE(23), + [sym_do_statement] = STATE(23), + [sym_try_statement] = STATE(23), + [sym_with_statement] = STATE(23), + [sym_break_statement] = STATE(23), + [sym_continue_statement] = STATE(23), + [sym_debugger_statement] = STATE(23), + [sym_return_statement] = STATE(23), + [sym_throw_statement] = STATE(23), + [sym_empty_statement] = STATE(23), + [sym_labeled_statement] = STATE(23), + [sym_parenthesized_expression] = STATE(768), + [sym__expression] = STATE(1211), + [sym_yield_expression] = STATE(1567), + [sym_object] = STATE(1557), + [sym_assignment_pattern] = STATE(2785), + [sym_array] = STATE(1539), + [sym_class] = STATE(1523), + [sym_class_declaration] = STATE(579), + [sym_function] = STATE(1523), + [sym_function_declaration] = STATE(579), + [sym_generator_function] = STATE(1523), + [sym_generator_function_declaration] = STATE(579), + [sym_arrow_function] = STATE(1523), + [sym__call_signature] = STATE(3196), + [sym_call_expression] = STATE(1523), + [sym_new_expression] = STATE(1567), + [sym_await_expression] = STATE(1567), + [sym_member_expression] = STATE(768), + [sym_subscript_expression] = STATE(768), + [sym_assignment_expression] = STATE(1567), + [sym__augmented_assignment_lhs] = STATE(1928), + [sym_augmented_assignment_expression] = STATE(1567), + [sym_spread_element] = STATE(2785), + [sym_ternary_expression] = STATE(1567), + [sym_binary_expression] = STATE(1567), + [sym_unary_expression] = STATE(1567), + [sym_update_expression] = STATE(1567), + [sym_sequence_expression] = STATE(2826), + [sym_string] = STATE(1586), + [sym_template_string] = STATE(1523), + [sym_regex] = STATE(1523), + [sym_meta_property] = STATE(1523), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_method_definition] = STATE(2785), + [sym_pair] = STATE(2785), + [sym__property_name] = STATE(2084), + [sym_computed_property_name] = STATE(2084), + [sym_non_null_expression] = STATE(774), + [sym_function_signature] = STATE(579), + [sym_type_assertion] = STATE(1567), + [sym_as_expression] = STATE(1567), + [sym_ambient_declaration] = STATE(579), + [sym_abstract_class_declaration] = STATE(579), + [sym_module] = STATE(579), + [sym_internal_module] = STATE(86), + [sym_import_alias] = STATE(579), + [sym_interface_declaration] = STATE(579), + [sym_enum_declaration] = STATE(579), + [sym_type_alias_declaration] = STATE(579), + [sym_accessibility_modifier] = STATE(1883), + [sym_type_arguments] = STATE(292), + [sym_type_parameters] = STATE(2827), + [aux_sym_program_repeat1] = STATE(23), + [aux_sym_export_statement_repeat1] = STATE(2247), + [aux_sym_object_repeat1] = STATE(2753), + [sym_identifier] = ACTIONS(167), + [anon_sym_export] = ACTIONS(169), [anon_sym_STAR] = ACTIONS(109), - [anon_sym_namespace] = ACTIONS(111), + [anon_sym_namespace] = ACTIONS(171), [anon_sym_LBRACE] = ACTIONS(15), [anon_sym_COMMA] = ACTIONS(113), - [anon_sym_RBRACE] = ACTIONS(169), - [anon_sym_type] = ACTIONS(117), + [anon_sym_RBRACE] = ACTIONS(193), + [anon_sym_type] = ACTIONS(175), [anon_sym_typeof] = ACTIONS(19), [anon_sym_import] = ACTIONS(21), [anon_sym_var] = ACTIONS(23), @@ -10046,7 +10100,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(67), [anon_sym_class] = ACTIONS(69), - [anon_sym_async] = ACTIONS(121), + [anon_sym_async] = ACTIONS(177), [anon_sym_function] = ACTIONS(73), [anon_sym_new] = ACTIONS(75), [anon_sym_DOT_DOT_DOT] = ACTIONS(123), @@ -10069,112 +10123,112 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(127), + [anon_sym_static] = ACTIONS(179), [anon_sym_abstract] = ACTIONS(95), - [anon_sym_get] = ACTIONS(129), - [anon_sym_set] = ACTIONS(129), - [anon_sym_declare] = ACTIONS(131), - [anon_sym_public] = ACTIONS(133), - [anon_sym_private] = ACTIONS(133), - [anon_sym_protected] = ACTIONS(133), - [anon_sym_module] = ACTIONS(135), - [anon_sym_any] = ACTIONS(137), - [anon_sym_number] = ACTIONS(137), - [anon_sym_boolean] = ACTIONS(137), - [anon_sym_string] = ACTIONS(137), - [anon_sym_symbol] = ACTIONS(137), + [anon_sym_get] = ACTIONS(181), + [anon_sym_set] = ACTIONS(181), + [anon_sym_declare] = ACTIONS(183), + [anon_sym_public] = ACTIONS(185), + [anon_sym_private] = ACTIONS(185), + [anon_sym_protected] = ACTIONS(185), + [anon_sym_module] = ACTIONS(187), + [anon_sym_any] = ACTIONS(189), + [anon_sym_number] = ACTIONS(189), + [anon_sym_boolean] = ACTIONS(189), + [anon_sym_string] = ACTIONS(189), + [anon_sym_symbol] = ACTIONS(189), [anon_sym_interface] = ACTIONS(101), [anon_sym_enum] = ACTIONS(103), - [sym_readonly] = ACTIONS(139), + [sym_readonly] = ACTIONS(191), }, [6] = { - [sym_export_statement] = STATE(27), - [sym__declaration] = STATE(27), - [sym_import] = STATE(1498), - [sym_import_statement] = STATE(27), - [sym_expression_statement] = STATE(27), - [sym_variable_declaration] = STATE(598), - [sym_lexical_declaration] = STATE(598), - [sym_statement_block] = STATE(27), - [sym_if_statement] = STATE(27), - [sym_switch_statement] = STATE(27), - [sym_for_statement] = STATE(27), - [sym_for_in_statement] = STATE(27), - [sym_while_statement] = STATE(27), - [sym_do_statement] = STATE(27), - [sym_try_statement] = STATE(27), - [sym_with_statement] = STATE(27), - [sym_break_statement] = STATE(27), - [sym_continue_statement] = STATE(27), - [sym_debugger_statement] = STATE(27), - [sym_return_statement] = STATE(27), - [sym_throw_statement] = STATE(27), - [sym_empty_statement] = STATE(27), - [sym_labeled_statement] = STATE(27), - [sym_parenthesized_expression] = STATE(764), - [sym__expression] = STATE(1265), - [sym_yield_expression] = STATE(1518), - [sym_object] = STATE(1550), - [sym_assignment_pattern] = STATE(2716), - [sym_array] = STATE(1565), - [sym_class] = STATE(1498), - [sym_class_declaration] = STATE(598), - [sym_function] = STATE(1498), - [sym_function_declaration] = STATE(598), - [sym_generator_function] = STATE(1498), - [sym_generator_function_declaration] = STATE(598), - [sym_arrow_function] = STATE(1498), - [sym__call_signature] = STATE(3145), - [sym_call_expression] = STATE(1498), - [sym_new_expression] = STATE(1518), - [sym_await_expression] = STATE(1518), - [sym_member_expression] = STATE(764), - [sym_subscript_expression] = STATE(764), - [sym_assignment_expression] = STATE(1518), - [sym__augmented_assignment_lhs] = STATE(1925), - [sym_augmented_assignment_expression] = STATE(1518), - [sym_spread_element] = STATE(2716), - [sym_ternary_expression] = STATE(1518), - [sym_binary_expression] = STATE(1518), - [sym_unary_expression] = STATE(1518), - [sym_update_expression] = STATE(1518), - [sym_sequence_expression] = STATE(2844), - [sym_string] = STATE(1549), - [sym_template_string] = STATE(1498), - [sym_regex] = STATE(1498), - [sym_meta_property] = STATE(1498), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_method_definition] = STATE(2716), - [sym_pair] = STATE(2716), - [sym__property_name] = STATE(2109), - [sym_computed_property_name] = STATE(2109), - [sym_non_null_expression] = STATE(772), - [sym_function_signature] = STATE(598), - [sym_type_assertion] = STATE(1518), - [sym_as_expression] = STATE(1518), - [sym_ambient_declaration] = STATE(598), - [sym_abstract_class_declaration] = STATE(598), - [sym_module] = STATE(598), - [sym_internal_module] = STATE(92), - [sym_import_alias] = STATE(598), - [sym_interface_declaration] = STATE(598), - [sym_enum_declaration] = STATE(598), - [sym_type_alias_declaration] = STATE(598), - [sym_accessibility_modifier] = STATE(1875), - [sym_type_arguments] = STATE(349), - [sym_type_parameters] = STATE(2850), - [aux_sym_program_repeat1] = STATE(27), - [aux_sym_export_statement_repeat1] = STATE(2286), - [aux_sym_object_repeat1] = STATE(2718), - [sym_identifier] = ACTIONS(171), - [anon_sym_export] = ACTIONS(173), + [sym_export_statement] = STATE(20), + [sym__declaration] = STATE(20), + [sym_import] = STATE(1523), + [sym_import_statement] = STATE(20), + [sym_expression_statement] = STATE(20), + [sym_variable_declaration] = STATE(579), + [sym_lexical_declaration] = STATE(579), + [sym_statement_block] = STATE(20), + [sym_if_statement] = STATE(20), + [sym_switch_statement] = STATE(20), + [sym_for_statement] = STATE(20), + [sym_for_in_statement] = STATE(20), + [sym_while_statement] = STATE(20), + [sym_do_statement] = STATE(20), + [sym_try_statement] = STATE(20), + [sym_with_statement] = STATE(20), + [sym_break_statement] = STATE(20), + [sym_continue_statement] = STATE(20), + [sym_debugger_statement] = STATE(20), + [sym_return_statement] = STATE(20), + [sym_throw_statement] = STATE(20), + [sym_empty_statement] = STATE(20), + [sym_labeled_statement] = STATE(20), + [sym_parenthesized_expression] = STATE(768), + [sym__expression] = STATE(1211), + [sym_yield_expression] = STATE(1567), + [sym_object] = STATE(1557), + [sym_assignment_pattern] = STATE(2785), + [sym_array] = STATE(1539), + [sym_class] = STATE(1523), + [sym_class_declaration] = STATE(579), + [sym_function] = STATE(1523), + [sym_function_declaration] = STATE(579), + [sym_generator_function] = STATE(1523), + [sym_generator_function_declaration] = STATE(579), + [sym_arrow_function] = STATE(1523), + [sym__call_signature] = STATE(3196), + [sym_call_expression] = STATE(1523), + [sym_new_expression] = STATE(1567), + [sym_await_expression] = STATE(1567), + [sym_member_expression] = STATE(768), + [sym_subscript_expression] = STATE(768), + [sym_assignment_expression] = STATE(1567), + [sym__augmented_assignment_lhs] = STATE(1928), + [sym_augmented_assignment_expression] = STATE(1567), + [sym_spread_element] = STATE(2785), + [sym_ternary_expression] = STATE(1567), + [sym_binary_expression] = STATE(1567), + [sym_unary_expression] = STATE(1567), + [sym_update_expression] = STATE(1567), + [sym_sequence_expression] = STATE(2826), + [sym_string] = STATE(1586), + [sym_template_string] = STATE(1523), + [sym_regex] = STATE(1523), + [sym_meta_property] = STATE(1523), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_method_definition] = STATE(2785), + [sym_pair] = STATE(2785), + [sym__property_name] = STATE(2084), + [sym_computed_property_name] = STATE(2084), + [sym_non_null_expression] = STATE(774), + [sym_function_signature] = STATE(579), + [sym_type_assertion] = STATE(1567), + [sym_as_expression] = STATE(1567), + [sym_ambient_declaration] = STATE(579), + [sym_abstract_class_declaration] = STATE(579), + [sym_module] = STATE(579), + [sym_internal_module] = STATE(86), + [sym_import_alias] = STATE(579), + [sym_interface_declaration] = STATE(579), + [sym_enum_declaration] = STATE(579), + [sym_type_alias_declaration] = STATE(579), + [sym_accessibility_modifier] = STATE(1883), + [sym_type_arguments] = STATE(292), + [sym_type_parameters] = STATE(2827), + [aux_sym_program_repeat1] = STATE(20), + [aux_sym_export_statement_repeat1] = STATE(2247), + [aux_sym_object_repeat1] = STATE(2753), + [sym_identifier] = ACTIONS(167), + [anon_sym_export] = ACTIONS(169), [anon_sym_STAR] = ACTIONS(109), - [anon_sym_namespace] = ACTIONS(175), + [anon_sym_namespace] = ACTIONS(171), [anon_sym_LBRACE] = ACTIONS(15), [anon_sym_COMMA] = ACTIONS(113), - [anon_sym_RBRACE] = ACTIONS(177), - [anon_sym_type] = ACTIONS(179), + [anon_sym_RBRACE] = ACTIONS(195), + [anon_sym_type] = ACTIONS(175), [anon_sym_typeof] = ACTIONS(19), [anon_sym_import] = ACTIONS(21), [anon_sym_var] = ACTIONS(23), @@ -10201,7 +10255,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(67), [anon_sym_class] = ACTIONS(69), - [anon_sym_async] = ACTIONS(181), + [anon_sym_async] = ACTIONS(177), [anon_sym_function] = ACTIONS(73), [anon_sym_new] = ACTIONS(75), [anon_sym_DOT_DOT_DOT] = ACTIONS(123), @@ -10224,32 +10278,32 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(183), + [anon_sym_static] = ACTIONS(179), [anon_sym_abstract] = ACTIONS(95), - [anon_sym_get] = ACTIONS(185), - [anon_sym_set] = ACTIONS(185), - [anon_sym_declare] = ACTIONS(187), - [anon_sym_public] = ACTIONS(189), - [anon_sym_private] = ACTIONS(189), - [anon_sym_protected] = ACTIONS(189), - [anon_sym_module] = ACTIONS(191), - [anon_sym_any] = ACTIONS(193), - [anon_sym_number] = ACTIONS(193), - [anon_sym_boolean] = ACTIONS(193), - [anon_sym_string] = ACTIONS(193), - [anon_sym_symbol] = ACTIONS(193), + [anon_sym_get] = ACTIONS(181), + [anon_sym_set] = ACTIONS(181), + [anon_sym_declare] = ACTIONS(183), + [anon_sym_public] = ACTIONS(185), + [anon_sym_private] = ACTIONS(185), + [anon_sym_protected] = ACTIONS(185), + [anon_sym_module] = ACTIONS(187), + [anon_sym_any] = ACTIONS(189), + [anon_sym_number] = ACTIONS(189), + [anon_sym_boolean] = ACTIONS(189), + [anon_sym_string] = ACTIONS(189), + [anon_sym_symbol] = ACTIONS(189), [anon_sym_interface] = ACTIONS(101), [anon_sym_enum] = ACTIONS(103), - [sym_readonly] = ACTIONS(195), + [sym_readonly] = ACTIONS(191), }, [7] = { [sym_export_statement] = STATE(7), [sym__declaration] = STATE(7), - [sym_import] = STATE(1498), + [sym_import] = STATE(1523), [sym_import_statement] = STATE(7), [sym_expression_statement] = STATE(7), - [sym_variable_declaration] = STATE(598), - [sym_lexical_declaration] = STATE(598), + [sym_variable_declaration] = STATE(579), + [sym_lexical_declaration] = STATE(579), [sym_statement_block] = STATE(7), [sym_if_statement] = STATE(7), [sym_switch_statement] = STATE(7), @@ -10266,54 +10320,54 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_throw_statement] = STATE(7), [sym_empty_statement] = STATE(7), [sym_labeled_statement] = STATE(7), - [sym_parenthesized_expression] = STATE(764), - [sym__expression] = STATE(1265), - [sym_yield_expression] = STATE(1518), - [sym_object] = STATE(1435), - [sym_array] = STATE(1433), - [sym_class] = STATE(1498), - [sym_class_declaration] = STATE(598), - [sym_function] = STATE(1498), - [sym_function_declaration] = STATE(598), - [sym_generator_function] = STATE(1498), - [sym_generator_function_declaration] = STATE(598), - [sym_arrow_function] = STATE(1498), - [sym__call_signature] = STATE(3145), - [sym_call_expression] = STATE(1498), - [sym_new_expression] = STATE(1518), - [sym_await_expression] = STATE(1518), - [sym_member_expression] = STATE(764), - [sym_subscript_expression] = STATE(764), - [sym_assignment_expression] = STATE(1518), - [sym__augmented_assignment_lhs] = STATE(1925), - [sym_augmented_assignment_expression] = STATE(1518), - [sym_ternary_expression] = STATE(1518), - [sym_binary_expression] = STATE(1518), - [sym_unary_expression] = STATE(1518), - [sym_update_expression] = STATE(1518), - [sym_sequence_expression] = STATE(2844), - [sym_string] = STATE(1498), - [sym_template_string] = STATE(1498), - [sym_regex] = STATE(1498), - [sym_meta_property] = STATE(1498), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(772), - [sym_function_signature] = STATE(598), - [sym_type_assertion] = STATE(1518), - [sym_as_expression] = STATE(1518), - [sym_ambient_declaration] = STATE(598), - [sym_abstract_class_declaration] = STATE(598), - [sym_module] = STATE(598), - [sym_internal_module] = STATE(92), - [sym_import_alias] = STATE(598), - [sym_interface_declaration] = STATE(598), - [sym_enum_declaration] = STATE(598), - [sym_type_alias_declaration] = STATE(598), - [sym_type_arguments] = STATE(349), - [sym_type_parameters] = STATE(2850), + [sym_parenthesized_expression] = STATE(768), + [sym__expression] = STATE(1211), + [sym_yield_expression] = STATE(1567), + [sym_object] = STATE(1357), + [sym_array] = STATE(1360), + [sym_class] = STATE(1523), + [sym_class_declaration] = STATE(579), + [sym_function] = STATE(1523), + [sym_function_declaration] = STATE(579), + [sym_generator_function] = STATE(1523), + [sym_generator_function_declaration] = STATE(579), + [sym_arrow_function] = STATE(1523), + [sym__call_signature] = STATE(3196), + [sym_call_expression] = STATE(1523), + [sym_new_expression] = STATE(1567), + [sym_await_expression] = STATE(1567), + [sym_member_expression] = STATE(768), + [sym_subscript_expression] = STATE(768), + [sym_assignment_expression] = STATE(1567), + [sym__augmented_assignment_lhs] = STATE(1928), + [sym_augmented_assignment_expression] = STATE(1567), + [sym_ternary_expression] = STATE(1567), + [sym_binary_expression] = STATE(1567), + [sym_unary_expression] = STATE(1567), + [sym_update_expression] = STATE(1567), + [sym_sequence_expression] = STATE(2826), + [sym_string] = STATE(1523), + [sym_template_string] = STATE(1523), + [sym_regex] = STATE(1523), + [sym_meta_property] = STATE(1523), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(774), + [sym_function_signature] = STATE(579), + [sym_type_assertion] = STATE(1567), + [sym_as_expression] = STATE(1567), + [sym_ambient_declaration] = STATE(579), + [sym_abstract_class_declaration] = STATE(579), + [sym_module] = STATE(579), + [sym_internal_module] = STATE(86), + [sym_import_alias] = STATE(579), + [sym_interface_declaration] = STATE(579), + [sym_enum_declaration] = STATE(579), + [sym_type_alias_declaration] = STATE(579), + [sym_type_arguments] = STATE(292), + [sym_type_parameters] = STATE(2827), [aux_sym_program_repeat1] = STATE(7), - [aux_sym_export_statement_repeat1] = STATE(2286), + [aux_sym_export_statement_repeat1] = STATE(2247), [ts_builtin_sym_end] = ACTIONS(197), [sym_identifier] = ACTIONS(199), [anon_sym_export] = ACTIONS(202), @@ -10392,11 +10446,11 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [8] = { [sym_export_statement] = STATE(7), [sym__declaration] = STATE(7), - [sym_import] = STATE(1498), + [sym_import] = STATE(1523), [sym_import_statement] = STATE(7), [sym_expression_statement] = STATE(7), - [sym_variable_declaration] = STATE(598), - [sym_lexical_declaration] = STATE(598), + [sym_variable_declaration] = STATE(579), + [sym_lexical_declaration] = STATE(579), [sym_statement_block] = STATE(7), [sym_if_statement] = STATE(7), [sym_switch_statement] = STATE(7), @@ -10413,54 +10467,54 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_throw_statement] = STATE(7), [sym_empty_statement] = STATE(7), [sym_labeled_statement] = STATE(7), - [sym_parenthesized_expression] = STATE(764), - [sym__expression] = STATE(1265), - [sym_yield_expression] = STATE(1518), - [sym_object] = STATE(1435), - [sym_array] = STATE(1433), - [sym_class] = STATE(1498), - [sym_class_declaration] = STATE(598), - [sym_function] = STATE(1498), - [sym_function_declaration] = STATE(598), - [sym_generator_function] = STATE(1498), - [sym_generator_function_declaration] = STATE(598), - [sym_arrow_function] = STATE(1498), - [sym__call_signature] = STATE(3145), - [sym_call_expression] = STATE(1498), - [sym_new_expression] = STATE(1518), - [sym_await_expression] = STATE(1518), - [sym_member_expression] = STATE(764), - [sym_subscript_expression] = STATE(764), - [sym_assignment_expression] = STATE(1518), - [sym__augmented_assignment_lhs] = STATE(1925), - [sym_augmented_assignment_expression] = STATE(1518), - [sym_ternary_expression] = STATE(1518), - [sym_binary_expression] = STATE(1518), - [sym_unary_expression] = STATE(1518), - [sym_update_expression] = STATE(1518), - [sym_sequence_expression] = STATE(2844), - [sym_string] = STATE(1498), - [sym_template_string] = STATE(1498), - [sym_regex] = STATE(1498), - [sym_meta_property] = STATE(1498), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(772), - [sym_function_signature] = STATE(598), - [sym_type_assertion] = STATE(1518), - [sym_as_expression] = STATE(1518), - [sym_ambient_declaration] = STATE(598), - [sym_abstract_class_declaration] = STATE(598), - [sym_module] = STATE(598), - [sym_internal_module] = STATE(92), - [sym_import_alias] = STATE(598), - [sym_interface_declaration] = STATE(598), - [sym_enum_declaration] = STATE(598), - [sym_type_alias_declaration] = STATE(598), - [sym_type_arguments] = STATE(349), - [sym_type_parameters] = STATE(2850), + [sym_parenthesized_expression] = STATE(768), + [sym__expression] = STATE(1211), + [sym_yield_expression] = STATE(1567), + [sym_object] = STATE(1357), + [sym_array] = STATE(1360), + [sym_class] = STATE(1523), + [sym_class_declaration] = STATE(579), + [sym_function] = STATE(1523), + [sym_function_declaration] = STATE(579), + [sym_generator_function] = STATE(1523), + [sym_generator_function_declaration] = STATE(579), + [sym_arrow_function] = STATE(1523), + [sym__call_signature] = STATE(3196), + [sym_call_expression] = STATE(1523), + [sym_new_expression] = STATE(1567), + [sym_await_expression] = STATE(1567), + [sym_member_expression] = STATE(768), + [sym_subscript_expression] = STATE(768), + [sym_assignment_expression] = STATE(1567), + [sym__augmented_assignment_lhs] = STATE(1928), + [sym_augmented_assignment_expression] = STATE(1567), + [sym_ternary_expression] = STATE(1567), + [sym_binary_expression] = STATE(1567), + [sym_unary_expression] = STATE(1567), + [sym_update_expression] = STATE(1567), + [sym_sequence_expression] = STATE(2826), + [sym_string] = STATE(1523), + [sym_template_string] = STATE(1523), + [sym_regex] = STATE(1523), + [sym_meta_property] = STATE(1523), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(774), + [sym_function_signature] = STATE(579), + [sym_type_assertion] = STATE(1567), + [sym_as_expression] = STATE(1567), + [sym_ambient_declaration] = STATE(579), + [sym_abstract_class_declaration] = STATE(579), + [sym_module] = STATE(579), + [sym_internal_module] = STATE(86), + [sym_import_alias] = STATE(579), + [sym_interface_declaration] = STATE(579), + [sym_enum_declaration] = STATE(579), + [sym_type_alias_declaration] = STATE(579), + [sym_type_arguments] = STATE(292), + [sym_type_parameters] = STATE(2827), [aux_sym_program_repeat1] = STATE(7), - [aux_sym_export_statement_repeat1] = STATE(2286), + [aux_sym_export_statement_repeat1] = STATE(2247), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_default] = ACTIONS(345), @@ -10536,77 +10590,77 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_readonly] = ACTIONS(93), }, [9] = { - [sym_export_statement] = STATE(10), - [sym__declaration] = STATE(10), - [sym_import] = STATE(1498), - [sym_import_statement] = STATE(10), - [sym_expression_statement] = STATE(10), - [sym_variable_declaration] = STATE(598), - [sym_lexical_declaration] = STATE(598), - [sym_statement_block] = STATE(10), - [sym_if_statement] = STATE(10), - [sym_switch_statement] = STATE(10), - [sym_for_statement] = STATE(10), - [sym_for_in_statement] = STATE(10), - [sym_while_statement] = STATE(10), - [sym_do_statement] = STATE(10), - [sym_try_statement] = STATE(10), - [sym_with_statement] = STATE(10), - [sym_break_statement] = STATE(10), - [sym_continue_statement] = STATE(10), - [sym_debugger_statement] = STATE(10), - [sym_return_statement] = STATE(10), - [sym_throw_statement] = STATE(10), - [sym_empty_statement] = STATE(10), - [sym_labeled_statement] = STATE(10), - [sym_parenthesized_expression] = STATE(764), - [sym__expression] = STATE(1265), - [sym_yield_expression] = STATE(1518), - [sym_object] = STATE(1435), - [sym_array] = STATE(1433), - [sym_class] = STATE(1498), - [sym_class_declaration] = STATE(598), - [sym_function] = STATE(1498), - [sym_function_declaration] = STATE(598), - [sym_generator_function] = STATE(1498), - [sym_generator_function_declaration] = STATE(598), - [sym_arrow_function] = STATE(1498), - [sym__call_signature] = STATE(3145), - [sym_call_expression] = STATE(1498), - [sym_new_expression] = STATE(1518), - [sym_await_expression] = STATE(1518), - [sym_member_expression] = STATE(764), - [sym_subscript_expression] = STATE(764), - [sym_assignment_expression] = STATE(1518), - [sym__augmented_assignment_lhs] = STATE(1925), - [sym_augmented_assignment_expression] = STATE(1518), - [sym_ternary_expression] = STATE(1518), - [sym_binary_expression] = STATE(1518), - [sym_unary_expression] = STATE(1518), - [sym_update_expression] = STATE(1518), - [sym_sequence_expression] = STATE(2844), - [sym_string] = STATE(1498), - [sym_template_string] = STATE(1498), - [sym_regex] = STATE(1498), - [sym_meta_property] = STATE(1498), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(772), - [sym_function_signature] = STATE(598), - [sym_type_assertion] = STATE(1518), - [sym_as_expression] = STATE(1518), - [sym_ambient_declaration] = STATE(598), - [sym_abstract_class_declaration] = STATE(598), - [sym_module] = STATE(598), - [sym_internal_module] = STATE(92), - [sym_import_alias] = STATE(598), - [sym_interface_declaration] = STATE(598), - [sym_enum_declaration] = STATE(598), - [sym_type_alias_declaration] = STATE(598), - [sym_type_arguments] = STATE(349), - [sym_type_parameters] = STATE(2850), - [aux_sym_program_repeat1] = STATE(10), - [aux_sym_export_statement_repeat1] = STATE(2286), + [sym_export_statement] = STATE(8), + [sym__declaration] = STATE(8), + [sym_import] = STATE(1523), + [sym_import_statement] = STATE(8), + [sym_expression_statement] = STATE(8), + [sym_variable_declaration] = STATE(579), + [sym_lexical_declaration] = STATE(579), + [sym_statement_block] = STATE(8), + [sym_if_statement] = STATE(8), + [sym_switch_statement] = STATE(8), + [sym_for_statement] = STATE(8), + [sym_for_in_statement] = STATE(8), + [sym_while_statement] = STATE(8), + [sym_do_statement] = STATE(8), + [sym_try_statement] = STATE(8), + [sym_with_statement] = STATE(8), + [sym_break_statement] = STATE(8), + [sym_continue_statement] = STATE(8), + [sym_debugger_statement] = STATE(8), + [sym_return_statement] = STATE(8), + [sym_throw_statement] = STATE(8), + [sym_empty_statement] = STATE(8), + [sym_labeled_statement] = STATE(8), + [sym_parenthesized_expression] = STATE(768), + [sym__expression] = STATE(1211), + [sym_yield_expression] = STATE(1567), + [sym_object] = STATE(1357), + [sym_array] = STATE(1360), + [sym_class] = STATE(1523), + [sym_class_declaration] = STATE(579), + [sym_function] = STATE(1523), + [sym_function_declaration] = STATE(579), + [sym_generator_function] = STATE(1523), + [sym_generator_function_declaration] = STATE(579), + [sym_arrow_function] = STATE(1523), + [sym__call_signature] = STATE(3196), + [sym_call_expression] = STATE(1523), + [sym_new_expression] = STATE(1567), + [sym_await_expression] = STATE(1567), + [sym_member_expression] = STATE(768), + [sym_subscript_expression] = STATE(768), + [sym_assignment_expression] = STATE(1567), + [sym__augmented_assignment_lhs] = STATE(1928), + [sym_augmented_assignment_expression] = STATE(1567), + [sym_ternary_expression] = STATE(1567), + [sym_binary_expression] = STATE(1567), + [sym_unary_expression] = STATE(1567), + [sym_update_expression] = STATE(1567), + [sym_sequence_expression] = STATE(2826), + [sym_string] = STATE(1523), + [sym_template_string] = STATE(1523), + [sym_regex] = STATE(1523), + [sym_meta_property] = STATE(1523), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(774), + [sym_function_signature] = STATE(579), + [sym_type_assertion] = STATE(1567), + [sym_as_expression] = STATE(1567), + [sym_ambient_declaration] = STATE(579), + [sym_abstract_class_declaration] = STATE(579), + [sym_module] = STATE(579), + [sym_internal_module] = STATE(86), + [sym_import_alias] = STATE(579), + [sym_interface_declaration] = STATE(579), + [sym_enum_declaration] = STATE(579), + [sym_type_alias_declaration] = STATE(579), + [sym_type_arguments] = STATE(292), + [sym_type_parameters] = STATE(2827), + [aux_sym_program_repeat1] = STATE(8), + [aux_sym_export_statement_repeat1] = STATE(2247), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_default] = ACTIONS(349), @@ -10684,11 +10738,11 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [10] = { [sym_export_statement] = STATE(7), [sym__declaration] = STATE(7), - [sym_import] = STATE(1498), + [sym_import] = STATE(1523), [sym_import_statement] = STATE(7), [sym_expression_statement] = STATE(7), - [sym_variable_declaration] = STATE(598), - [sym_lexical_declaration] = STATE(598), + [sym_variable_declaration] = STATE(579), + [sym_lexical_declaration] = STATE(579), [sym_statement_block] = STATE(7), [sym_if_statement] = STATE(7), [sym_switch_statement] = STATE(7), @@ -10705,54 +10759,54 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_throw_statement] = STATE(7), [sym_empty_statement] = STATE(7), [sym_labeled_statement] = STATE(7), - [sym_parenthesized_expression] = STATE(764), - [sym__expression] = STATE(1265), - [sym_yield_expression] = STATE(1518), - [sym_object] = STATE(1435), - [sym_array] = STATE(1433), - [sym_class] = STATE(1498), - [sym_class_declaration] = STATE(598), - [sym_function] = STATE(1498), - [sym_function_declaration] = STATE(598), - [sym_generator_function] = STATE(1498), - [sym_generator_function_declaration] = STATE(598), - [sym_arrow_function] = STATE(1498), - [sym__call_signature] = STATE(3145), - [sym_call_expression] = STATE(1498), - [sym_new_expression] = STATE(1518), - [sym_await_expression] = STATE(1518), - [sym_member_expression] = STATE(764), - [sym_subscript_expression] = STATE(764), - [sym_assignment_expression] = STATE(1518), - [sym__augmented_assignment_lhs] = STATE(1925), - [sym_augmented_assignment_expression] = STATE(1518), - [sym_ternary_expression] = STATE(1518), - [sym_binary_expression] = STATE(1518), - [sym_unary_expression] = STATE(1518), - [sym_update_expression] = STATE(1518), - [sym_sequence_expression] = STATE(2844), - [sym_string] = STATE(1498), - [sym_template_string] = STATE(1498), - [sym_regex] = STATE(1498), - [sym_meta_property] = STATE(1498), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(772), - [sym_function_signature] = STATE(598), - [sym_type_assertion] = STATE(1518), - [sym_as_expression] = STATE(1518), - [sym_ambient_declaration] = STATE(598), - [sym_abstract_class_declaration] = STATE(598), - [sym_module] = STATE(598), - [sym_internal_module] = STATE(92), - [sym_import_alias] = STATE(598), - [sym_interface_declaration] = STATE(598), - [sym_enum_declaration] = STATE(598), - [sym_type_alias_declaration] = STATE(598), - [sym_type_arguments] = STATE(349), - [sym_type_parameters] = STATE(2850), + [sym_parenthesized_expression] = STATE(768), + [sym__expression] = STATE(1211), + [sym_yield_expression] = STATE(1567), + [sym_object] = STATE(1357), + [sym_array] = STATE(1360), + [sym_class] = STATE(1523), + [sym_class_declaration] = STATE(579), + [sym_function] = STATE(1523), + [sym_function_declaration] = STATE(579), + [sym_generator_function] = STATE(1523), + [sym_generator_function_declaration] = STATE(579), + [sym_arrow_function] = STATE(1523), + [sym__call_signature] = STATE(3196), + [sym_call_expression] = STATE(1523), + [sym_new_expression] = STATE(1567), + [sym_await_expression] = STATE(1567), + [sym_member_expression] = STATE(768), + [sym_subscript_expression] = STATE(768), + [sym_assignment_expression] = STATE(1567), + [sym__augmented_assignment_lhs] = STATE(1928), + [sym_augmented_assignment_expression] = STATE(1567), + [sym_ternary_expression] = STATE(1567), + [sym_binary_expression] = STATE(1567), + [sym_unary_expression] = STATE(1567), + [sym_update_expression] = STATE(1567), + [sym_sequence_expression] = STATE(2826), + [sym_string] = STATE(1523), + [sym_template_string] = STATE(1523), + [sym_regex] = STATE(1523), + [sym_meta_property] = STATE(1523), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(774), + [sym_function_signature] = STATE(579), + [sym_type_assertion] = STATE(1567), + [sym_as_expression] = STATE(1567), + [sym_ambient_declaration] = STATE(579), + [sym_abstract_class_declaration] = STATE(579), + [sym_module] = STATE(579), + [sym_internal_module] = STATE(86), + [sym_import_alias] = STATE(579), + [sym_interface_declaration] = STATE(579), + [sym_enum_declaration] = STATE(579), + [sym_type_alias_declaration] = STATE(579), + [sym_type_arguments] = STATE(292), + [sym_type_parameters] = STATE(2827), [aux_sym_program_repeat1] = STATE(7), - [aux_sym_export_statement_repeat1] = STATE(2286), + [aux_sym_export_statement_repeat1] = STATE(2247), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_default] = ACTIONS(353), @@ -10828,77 +10882,77 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_readonly] = ACTIONS(93), }, [11] = { - [sym_export_statement] = STATE(8), - [sym__declaration] = STATE(8), - [sym_import] = STATE(1498), - [sym_import_statement] = STATE(8), - [sym_expression_statement] = STATE(8), - [sym_variable_declaration] = STATE(598), - [sym_lexical_declaration] = STATE(598), - [sym_statement_block] = STATE(8), - [sym_if_statement] = STATE(8), - [sym_switch_statement] = STATE(8), - [sym_for_statement] = STATE(8), - [sym_for_in_statement] = STATE(8), - [sym_while_statement] = STATE(8), - [sym_do_statement] = STATE(8), - [sym_try_statement] = STATE(8), - [sym_with_statement] = STATE(8), - [sym_break_statement] = STATE(8), - [sym_continue_statement] = STATE(8), - [sym_debugger_statement] = STATE(8), - [sym_return_statement] = STATE(8), - [sym_throw_statement] = STATE(8), - [sym_empty_statement] = STATE(8), - [sym_labeled_statement] = STATE(8), - [sym_parenthesized_expression] = STATE(764), - [sym__expression] = STATE(1265), - [sym_yield_expression] = STATE(1518), - [sym_object] = STATE(1435), - [sym_array] = STATE(1433), - [sym_class] = STATE(1498), - [sym_class_declaration] = STATE(598), - [sym_function] = STATE(1498), - [sym_function_declaration] = STATE(598), - [sym_generator_function] = STATE(1498), - [sym_generator_function_declaration] = STATE(598), - [sym_arrow_function] = STATE(1498), - [sym__call_signature] = STATE(3145), - [sym_call_expression] = STATE(1498), - [sym_new_expression] = STATE(1518), - [sym_await_expression] = STATE(1518), - [sym_member_expression] = STATE(764), - [sym_subscript_expression] = STATE(764), - [sym_assignment_expression] = STATE(1518), - [sym__augmented_assignment_lhs] = STATE(1925), - [sym_augmented_assignment_expression] = STATE(1518), - [sym_ternary_expression] = STATE(1518), - [sym_binary_expression] = STATE(1518), - [sym_unary_expression] = STATE(1518), - [sym_update_expression] = STATE(1518), - [sym_sequence_expression] = STATE(2844), - [sym_string] = STATE(1498), - [sym_template_string] = STATE(1498), - [sym_regex] = STATE(1498), - [sym_meta_property] = STATE(1498), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(772), - [sym_function_signature] = STATE(598), - [sym_type_assertion] = STATE(1518), - [sym_as_expression] = STATE(1518), - [sym_ambient_declaration] = STATE(598), - [sym_abstract_class_declaration] = STATE(598), - [sym_module] = STATE(598), - [sym_internal_module] = STATE(92), - [sym_import_alias] = STATE(598), - [sym_interface_declaration] = STATE(598), - [sym_enum_declaration] = STATE(598), - [sym_type_alias_declaration] = STATE(598), - [sym_type_arguments] = STATE(349), - [sym_type_parameters] = STATE(2850), - [aux_sym_program_repeat1] = STATE(8), - [aux_sym_export_statement_repeat1] = STATE(2286), + [sym_export_statement] = STATE(10), + [sym__declaration] = STATE(10), + [sym_import] = STATE(1523), + [sym_import_statement] = STATE(10), + [sym_expression_statement] = STATE(10), + [sym_variable_declaration] = STATE(579), + [sym_lexical_declaration] = STATE(579), + [sym_statement_block] = STATE(10), + [sym_if_statement] = STATE(10), + [sym_switch_statement] = STATE(10), + [sym_for_statement] = STATE(10), + [sym_for_in_statement] = STATE(10), + [sym_while_statement] = STATE(10), + [sym_do_statement] = STATE(10), + [sym_try_statement] = STATE(10), + [sym_with_statement] = STATE(10), + [sym_break_statement] = STATE(10), + [sym_continue_statement] = STATE(10), + [sym_debugger_statement] = STATE(10), + [sym_return_statement] = STATE(10), + [sym_throw_statement] = STATE(10), + [sym_empty_statement] = STATE(10), + [sym_labeled_statement] = STATE(10), + [sym_parenthesized_expression] = STATE(768), + [sym__expression] = STATE(1211), + [sym_yield_expression] = STATE(1567), + [sym_object] = STATE(1357), + [sym_array] = STATE(1360), + [sym_class] = STATE(1523), + [sym_class_declaration] = STATE(579), + [sym_function] = STATE(1523), + [sym_function_declaration] = STATE(579), + [sym_generator_function] = STATE(1523), + [sym_generator_function_declaration] = STATE(579), + [sym_arrow_function] = STATE(1523), + [sym__call_signature] = STATE(3196), + [sym_call_expression] = STATE(1523), + [sym_new_expression] = STATE(1567), + [sym_await_expression] = STATE(1567), + [sym_member_expression] = STATE(768), + [sym_subscript_expression] = STATE(768), + [sym_assignment_expression] = STATE(1567), + [sym__augmented_assignment_lhs] = STATE(1928), + [sym_augmented_assignment_expression] = STATE(1567), + [sym_ternary_expression] = STATE(1567), + [sym_binary_expression] = STATE(1567), + [sym_unary_expression] = STATE(1567), + [sym_update_expression] = STATE(1567), + [sym_sequence_expression] = STATE(2826), + [sym_string] = STATE(1523), + [sym_template_string] = STATE(1523), + [sym_regex] = STATE(1523), + [sym_meta_property] = STATE(1523), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(774), + [sym_function_signature] = STATE(579), + [sym_type_assertion] = STATE(1567), + [sym_as_expression] = STATE(1567), + [sym_ambient_declaration] = STATE(579), + [sym_abstract_class_declaration] = STATE(579), + [sym_module] = STATE(579), + [sym_internal_module] = STATE(86), + [sym_import_alias] = STATE(579), + [sym_interface_declaration] = STATE(579), + [sym_enum_declaration] = STATE(579), + [sym_type_alias_declaration] = STATE(579), + [sym_type_arguments] = STATE(292), + [sym_type_parameters] = STATE(2827), + [aux_sym_program_repeat1] = STATE(10), + [aux_sym_export_statement_repeat1] = STATE(2247), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_default] = ACTIONS(357), @@ -10974,77 +11028,77 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_readonly] = ACTIONS(93), }, [12] = { - [sym_export_statement] = STATE(28), - [sym__declaration] = STATE(28), - [sym_import] = STATE(1498), - [sym_import_statement] = STATE(28), - [sym_expression_statement] = STATE(28), - [sym_variable_declaration] = STATE(598), - [sym_lexical_declaration] = STATE(598), - [sym_statement_block] = STATE(28), - [sym_if_statement] = STATE(28), - [sym_switch_statement] = STATE(28), - [sym_for_statement] = STATE(28), - [sym_for_in_statement] = STATE(28), - [sym_while_statement] = STATE(28), - [sym_do_statement] = STATE(28), - [sym_try_statement] = STATE(28), - [sym_with_statement] = STATE(28), - [sym_break_statement] = STATE(28), - [sym_continue_statement] = STATE(28), - [sym_debugger_statement] = STATE(28), - [sym_return_statement] = STATE(28), - [sym_throw_statement] = STATE(28), - [sym_empty_statement] = STATE(28), - [sym_labeled_statement] = STATE(28), - [sym_parenthesized_expression] = STATE(764), - [sym__expression] = STATE(1265), - [sym_yield_expression] = STATE(1518), - [sym_object] = STATE(1435), - [sym_array] = STATE(1433), - [sym_class] = STATE(1498), - [sym_class_declaration] = STATE(598), - [sym_function] = STATE(1498), - [sym_function_declaration] = STATE(598), - [sym_generator_function] = STATE(1498), - [sym_generator_function_declaration] = STATE(598), - [sym_arrow_function] = STATE(1498), - [sym__call_signature] = STATE(3145), - [sym_call_expression] = STATE(1498), - [sym_new_expression] = STATE(1518), - [sym_await_expression] = STATE(1518), - [sym_member_expression] = STATE(764), - [sym_subscript_expression] = STATE(764), - [sym_assignment_expression] = STATE(1518), - [sym__augmented_assignment_lhs] = STATE(1925), - [sym_augmented_assignment_expression] = STATE(1518), - [sym_ternary_expression] = STATE(1518), - [sym_binary_expression] = STATE(1518), - [sym_unary_expression] = STATE(1518), - [sym_update_expression] = STATE(1518), - [sym_sequence_expression] = STATE(2844), - [sym_string] = STATE(1498), - [sym_template_string] = STATE(1498), - [sym_regex] = STATE(1498), - [sym_meta_property] = STATE(1498), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(772), - [sym_function_signature] = STATE(598), - [sym_type_assertion] = STATE(1518), - [sym_as_expression] = STATE(1518), - [sym_ambient_declaration] = STATE(598), - [sym_abstract_class_declaration] = STATE(598), - [sym_module] = STATE(598), - [sym_internal_module] = STATE(92), - [sym_import_alias] = STATE(598), - [sym_interface_declaration] = STATE(598), - [sym_enum_declaration] = STATE(598), - [sym_type_alias_declaration] = STATE(598), - [sym_type_arguments] = STATE(349), - [sym_type_parameters] = STATE(2850), - [aux_sym_program_repeat1] = STATE(28), - [aux_sym_export_statement_repeat1] = STATE(2286), + [sym_export_statement] = STATE(7), + [sym__declaration] = STATE(7), + [sym_import] = STATE(1523), + [sym_import_statement] = STATE(7), + [sym_expression_statement] = STATE(7), + [sym_variable_declaration] = STATE(579), + [sym_lexical_declaration] = STATE(579), + [sym_statement_block] = STATE(7), + [sym_if_statement] = STATE(7), + [sym_switch_statement] = STATE(7), + [sym_for_statement] = STATE(7), + [sym_for_in_statement] = STATE(7), + [sym_while_statement] = STATE(7), + [sym_do_statement] = STATE(7), + [sym_try_statement] = STATE(7), + [sym_with_statement] = STATE(7), + [sym_break_statement] = STATE(7), + [sym_continue_statement] = STATE(7), + [sym_debugger_statement] = STATE(7), + [sym_return_statement] = STATE(7), + [sym_throw_statement] = STATE(7), + [sym_empty_statement] = STATE(7), + [sym_labeled_statement] = STATE(7), + [sym_parenthesized_expression] = STATE(768), + [sym__expression] = STATE(1211), + [sym_yield_expression] = STATE(1567), + [sym_object] = STATE(1357), + [sym_array] = STATE(1360), + [sym_class] = STATE(1523), + [sym_class_declaration] = STATE(579), + [sym_function] = STATE(1523), + [sym_function_declaration] = STATE(579), + [sym_generator_function] = STATE(1523), + [sym_generator_function_declaration] = STATE(579), + [sym_arrow_function] = STATE(1523), + [sym__call_signature] = STATE(3196), + [sym_call_expression] = STATE(1523), + [sym_new_expression] = STATE(1567), + [sym_await_expression] = STATE(1567), + [sym_member_expression] = STATE(768), + [sym_subscript_expression] = STATE(768), + [sym_assignment_expression] = STATE(1567), + [sym__augmented_assignment_lhs] = STATE(1928), + [sym_augmented_assignment_expression] = STATE(1567), + [sym_ternary_expression] = STATE(1567), + [sym_binary_expression] = STATE(1567), + [sym_unary_expression] = STATE(1567), + [sym_update_expression] = STATE(1567), + [sym_sequence_expression] = STATE(2826), + [sym_string] = STATE(1523), + [sym_template_string] = STATE(1523), + [sym_regex] = STATE(1523), + [sym_meta_property] = STATE(1523), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(774), + [sym_function_signature] = STATE(579), + [sym_type_assertion] = STATE(1567), + [sym_as_expression] = STATE(1567), + [sym_ambient_declaration] = STATE(579), + [sym_abstract_class_declaration] = STATE(579), + [sym_module] = STATE(579), + [sym_internal_module] = STATE(86), + [sym_import_alias] = STATE(579), + [sym_interface_declaration] = STATE(579), + [sym_enum_declaration] = STATE(579), + [sym_type_alias_declaration] = STATE(579), + [sym_type_arguments] = STATE(292), + [sym_type_parameters] = STATE(2827), + [aux_sym_program_repeat1] = STATE(7), + [aux_sym_export_statement_repeat1] = STATE(2247), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_namespace] = ACTIONS(13), @@ -11118,77 +11172,77 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_readonly] = ACTIONS(93), }, [13] = { - [sym_export_statement] = STATE(17), - [sym__declaration] = STATE(17), - [sym_import] = STATE(1498), - [sym_import_statement] = STATE(17), - [sym_expression_statement] = STATE(17), - [sym_variable_declaration] = STATE(598), - [sym_lexical_declaration] = STATE(598), - [sym_statement_block] = STATE(17), - [sym_if_statement] = STATE(17), - [sym_switch_statement] = STATE(17), - [sym_for_statement] = STATE(17), - [sym_for_in_statement] = STATE(17), - [sym_while_statement] = STATE(17), - [sym_do_statement] = STATE(17), - [sym_try_statement] = STATE(17), - [sym_with_statement] = STATE(17), - [sym_break_statement] = STATE(17), - [sym_continue_statement] = STATE(17), - [sym_debugger_statement] = STATE(17), - [sym_return_statement] = STATE(17), - [sym_throw_statement] = STATE(17), - [sym_empty_statement] = STATE(17), - [sym_labeled_statement] = STATE(17), - [sym_parenthesized_expression] = STATE(764), - [sym__expression] = STATE(1265), - [sym_yield_expression] = STATE(1518), - [sym_object] = STATE(1435), - [sym_array] = STATE(1433), - [sym_class] = STATE(1498), - [sym_class_declaration] = STATE(598), - [sym_function] = STATE(1498), - [sym_function_declaration] = STATE(598), - [sym_generator_function] = STATE(1498), - [sym_generator_function_declaration] = STATE(598), - [sym_arrow_function] = STATE(1498), - [sym__call_signature] = STATE(3145), - [sym_call_expression] = STATE(1498), - [sym_new_expression] = STATE(1518), - [sym_await_expression] = STATE(1518), - [sym_member_expression] = STATE(764), - [sym_subscript_expression] = STATE(764), - [sym_assignment_expression] = STATE(1518), - [sym__augmented_assignment_lhs] = STATE(1925), - [sym_augmented_assignment_expression] = STATE(1518), - [sym_ternary_expression] = STATE(1518), - [sym_binary_expression] = STATE(1518), - [sym_unary_expression] = STATE(1518), - [sym_update_expression] = STATE(1518), - [sym_sequence_expression] = STATE(2844), - [sym_string] = STATE(1498), - [sym_template_string] = STATE(1498), - [sym_regex] = STATE(1498), - [sym_meta_property] = STATE(1498), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(772), - [sym_function_signature] = STATE(598), - [sym_type_assertion] = STATE(1518), - [sym_as_expression] = STATE(1518), - [sym_ambient_declaration] = STATE(598), - [sym_abstract_class_declaration] = STATE(598), - [sym_module] = STATE(598), - [sym_internal_module] = STATE(92), - [sym_import_alias] = STATE(598), - [sym_interface_declaration] = STATE(598), - [sym_enum_declaration] = STATE(598), - [sym_type_alias_declaration] = STATE(598), - [sym_type_arguments] = STATE(349), - [sym_type_parameters] = STATE(2850), - [aux_sym_program_repeat1] = STATE(17), - [aux_sym_export_statement_repeat1] = STATE(2286), + [sym_export_statement] = STATE(7), + [sym__declaration] = STATE(7), + [sym_import] = STATE(1523), + [sym_import_statement] = STATE(7), + [sym_expression_statement] = STATE(7), + [sym_variable_declaration] = STATE(579), + [sym_lexical_declaration] = STATE(579), + [sym_statement_block] = STATE(7), + [sym_if_statement] = STATE(7), + [sym_switch_statement] = STATE(7), + [sym_for_statement] = STATE(7), + [sym_for_in_statement] = STATE(7), + [sym_while_statement] = STATE(7), + [sym_do_statement] = STATE(7), + [sym_try_statement] = STATE(7), + [sym_with_statement] = STATE(7), + [sym_break_statement] = STATE(7), + [sym_continue_statement] = STATE(7), + [sym_debugger_statement] = STATE(7), + [sym_return_statement] = STATE(7), + [sym_throw_statement] = STATE(7), + [sym_empty_statement] = STATE(7), + [sym_labeled_statement] = STATE(7), + [sym_parenthesized_expression] = STATE(768), + [sym__expression] = STATE(1211), + [sym_yield_expression] = STATE(1567), + [sym_object] = STATE(1357), + [sym_array] = STATE(1360), + [sym_class] = STATE(1523), + [sym_class_declaration] = STATE(579), + [sym_function] = STATE(1523), + [sym_function_declaration] = STATE(579), + [sym_generator_function] = STATE(1523), + [sym_generator_function_declaration] = STATE(579), + [sym_arrow_function] = STATE(1523), + [sym__call_signature] = STATE(3196), + [sym_call_expression] = STATE(1523), + [sym_new_expression] = STATE(1567), + [sym_await_expression] = STATE(1567), + [sym_member_expression] = STATE(768), + [sym_subscript_expression] = STATE(768), + [sym_assignment_expression] = STATE(1567), + [sym__augmented_assignment_lhs] = STATE(1928), + [sym_augmented_assignment_expression] = STATE(1567), + [sym_ternary_expression] = STATE(1567), + [sym_binary_expression] = STATE(1567), + [sym_unary_expression] = STATE(1567), + [sym_update_expression] = STATE(1567), + [sym_sequence_expression] = STATE(2826), + [sym_string] = STATE(1523), + [sym_template_string] = STATE(1523), + [sym_regex] = STATE(1523), + [sym_meta_property] = STATE(1523), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(774), + [sym_function_signature] = STATE(579), + [sym_type_assertion] = STATE(1567), + [sym_as_expression] = STATE(1567), + [sym_ambient_declaration] = STATE(579), + [sym_abstract_class_declaration] = STATE(579), + [sym_module] = STATE(579), + [sym_internal_module] = STATE(86), + [sym_import_alias] = STATE(579), + [sym_interface_declaration] = STATE(579), + [sym_enum_declaration] = STATE(579), + [sym_type_alias_declaration] = STATE(579), + [sym_type_arguments] = STATE(292), + [sym_type_parameters] = STATE(2827), + [aux_sym_program_repeat1] = STATE(7), + [aux_sym_export_statement_repeat1] = STATE(2247), [ts_builtin_sym_end] = ACTIONS(363), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), @@ -11262,82 +11316,82 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_readonly] = ACTIONS(93), }, [14] = { - [sym_export_statement] = STATE(7), - [sym__declaration] = STATE(7), - [sym_import] = STATE(1498), - [sym_import_statement] = STATE(7), - [sym_expression_statement] = STATE(7), - [sym_variable_declaration] = STATE(598), - [sym_lexical_declaration] = STATE(598), - [sym_statement_block] = STATE(7), - [sym_if_statement] = STATE(7), - [sym_switch_statement] = STATE(7), - [sym_for_statement] = STATE(7), - [sym_for_in_statement] = STATE(7), - [sym_while_statement] = STATE(7), - [sym_do_statement] = STATE(7), - [sym_try_statement] = STATE(7), - [sym_with_statement] = STATE(7), - [sym_break_statement] = STATE(7), - [sym_continue_statement] = STATE(7), - [sym_debugger_statement] = STATE(7), - [sym_return_statement] = STATE(7), - [sym_throw_statement] = STATE(7), - [sym_empty_statement] = STATE(7), - [sym_labeled_statement] = STATE(7), - [sym_parenthesized_expression] = STATE(764), - [sym__expression] = STATE(1265), - [sym_yield_expression] = STATE(1518), - [sym_object] = STATE(1435), - [sym_array] = STATE(1433), - [sym_class] = STATE(1498), - [sym_class_declaration] = STATE(598), - [sym_function] = STATE(1498), - [sym_function_declaration] = STATE(598), - [sym_generator_function] = STATE(1498), - [sym_generator_function_declaration] = STATE(598), - [sym_arrow_function] = STATE(1498), - [sym__call_signature] = STATE(3145), - [sym_call_expression] = STATE(1498), - [sym_new_expression] = STATE(1518), - [sym_await_expression] = STATE(1518), - [sym_member_expression] = STATE(764), - [sym_subscript_expression] = STATE(764), - [sym_assignment_expression] = STATE(1518), - [sym__augmented_assignment_lhs] = STATE(1925), - [sym_augmented_assignment_expression] = STATE(1518), - [sym_ternary_expression] = STATE(1518), - [sym_binary_expression] = STATE(1518), - [sym_unary_expression] = STATE(1518), - [sym_update_expression] = STATE(1518), - [sym_sequence_expression] = STATE(2844), - [sym_string] = STATE(1498), - [sym_template_string] = STATE(1498), - [sym_regex] = STATE(1498), - [sym_meta_property] = STATE(1498), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(772), - [sym_function_signature] = STATE(598), - [sym_type_assertion] = STATE(1518), - [sym_as_expression] = STATE(1518), - [sym_ambient_declaration] = STATE(598), - [sym_abstract_class_declaration] = STATE(598), - [sym_module] = STATE(598), - [sym_internal_module] = STATE(92), - [sym_import_alias] = STATE(598), - [sym_interface_declaration] = STATE(598), - [sym_enum_declaration] = STATE(598), - [sym_type_alias_declaration] = STATE(598), - [sym_type_arguments] = STATE(349), - [sym_type_parameters] = STATE(2850), - [aux_sym_program_repeat1] = STATE(7), - [aux_sym_export_statement_repeat1] = STATE(2286), + [sym_export_statement] = STATE(15), + [sym__declaration] = STATE(15), + [sym_import] = STATE(1523), + [sym_import_statement] = STATE(15), + [sym_expression_statement] = STATE(15), + [sym_variable_declaration] = STATE(579), + [sym_lexical_declaration] = STATE(579), + [sym_statement_block] = STATE(15), + [sym_if_statement] = STATE(15), + [sym_switch_statement] = STATE(15), + [sym_for_statement] = STATE(15), + [sym_for_in_statement] = STATE(15), + [sym_while_statement] = STATE(15), + [sym_do_statement] = STATE(15), + [sym_try_statement] = STATE(15), + [sym_with_statement] = STATE(15), + [sym_break_statement] = STATE(15), + [sym_continue_statement] = STATE(15), + [sym_debugger_statement] = STATE(15), + [sym_return_statement] = STATE(15), + [sym_throw_statement] = STATE(15), + [sym_empty_statement] = STATE(15), + [sym_labeled_statement] = STATE(15), + [sym_parenthesized_expression] = STATE(768), + [sym__expression] = STATE(1211), + [sym_yield_expression] = STATE(1567), + [sym_object] = STATE(1357), + [sym_array] = STATE(1360), + [sym_class] = STATE(1523), + [sym_class_declaration] = STATE(579), + [sym_function] = STATE(1523), + [sym_function_declaration] = STATE(579), + [sym_generator_function] = STATE(1523), + [sym_generator_function_declaration] = STATE(579), + [sym_arrow_function] = STATE(1523), + [sym__call_signature] = STATE(3196), + [sym_call_expression] = STATE(1523), + [sym_new_expression] = STATE(1567), + [sym_await_expression] = STATE(1567), + [sym_member_expression] = STATE(768), + [sym_subscript_expression] = STATE(768), + [sym_assignment_expression] = STATE(1567), + [sym__augmented_assignment_lhs] = STATE(1928), + [sym_augmented_assignment_expression] = STATE(1567), + [sym_ternary_expression] = STATE(1567), + [sym_binary_expression] = STATE(1567), + [sym_unary_expression] = STATE(1567), + [sym_update_expression] = STATE(1567), + [sym_sequence_expression] = STATE(2826), + [sym_string] = STATE(1523), + [sym_template_string] = STATE(1523), + [sym_regex] = STATE(1523), + [sym_meta_property] = STATE(1523), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(774), + [sym_function_signature] = STATE(579), + [sym_type_assertion] = STATE(1567), + [sym_as_expression] = STATE(1567), + [sym_ambient_declaration] = STATE(579), + [sym_abstract_class_declaration] = STATE(579), + [sym_module] = STATE(579), + [sym_internal_module] = STATE(86), + [sym_import_alias] = STATE(579), + [sym_interface_declaration] = STATE(579), + [sym_enum_declaration] = STATE(579), + [sym_type_alias_declaration] = STATE(579), + [sym_type_arguments] = STATE(292), + [sym_type_parameters] = STATE(2827), + [aux_sym_program_repeat1] = STATE(15), + [aux_sym_export_statement_repeat1] = STATE(2247), + [ts_builtin_sym_end] = ACTIONS(363), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_namespace] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(365), [anon_sym_type] = ACTIONS(17), [anon_sym_typeof] = ACTIONS(19), [anon_sym_import] = ACTIONS(21), @@ -11408,11 +11462,11 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [15] = { [sym_export_statement] = STATE(7), [sym__declaration] = STATE(7), - [sym_import] = STATE(1498), + [sym_import] = STATE(1523), [sym_import_statement] = STATE(7), [sym_expression_statement] = STATE(7), - [sym_variable_declaration] = STATE(598), - [sym_lexical_declaration] = STATE(598), + [sym_variable_declaration] = STATE(579), + [sym_lexical_declaration] = STATE(579), [sym_statement_block] = STATE(7), [sym_if_statement] = STATE(7), [sym_switch_statement] = STATE(7), @@ -11429,55 +11483,55 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_throw_statement] = STATE(7), [sym_empty_statement] = STATE(7), [sym_labeled_statement] = STATE(7), - [sym_parenthesized_expression] = STATE(764), - [sym__expression] = STATE(1265), - [sym_yield_expression] = STATE(1518), - [sym_object] = STATE(1435), - [sym_array] = STATE(1433), - [sym_class] = STATE(1498), - [sym_class_declaration] = STATE(598), - [sym_function] = STATE(1498), - [sym_function_declaration] = STATE(598), - [sym_generator_function] = STATE(1498), - [sym_generator_function_declaration] = STATE(598), - [sym_arrow_function] = STATE(1498), - [sym__call_signature] = STATE(3145), - [sym_call_expression] = STATE(1498), - [sym_new_expression] = STATE(1518), - [sym_await_expression] = STATE(1518), - [sym_member_expression] = STATE(764), - [sym_subscript_expression] = STATE(764), - [sym_assignment_expression] = STATE(1518), - [sym__augmented_assignment_lhs] = STATE(1925), - [sym_augmented_assignment_expression] = STATE(1518), - [sym_ternary_expression] = STATE(1518), - [sym_binary_expression] = STATE(1518), - [sym_unary_expression] = STATE(1518), - [sym_update_expression] = STATE(1518), - [sym_sequence_expression] = STATE(2844), - [sym_string] = STATE(1498), - [sym_template_string] = STATE(1498), - [sym_regex] = STATE(1498), - [sym_meta_property] = STATE(1498), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(772), - [sym_function_signature] = STATE(598), - [sym_type_assertion] = STATE(1518), - [sym_as_expression] = STATE(1518), - [sym_ambient_declaration] = STATE(598), - [sym_abstract_class_declaration] = STATE(598), - [sym_module] = STATE(598), - [sym_internal_module] = STATE(92), - [sym_import_alias] = STATE(598), - [sym_interface_declaration] = STATE(598), - [sym_enum_declaration] = STATE(598), - [sym_type_alias_declaration] = STATE(598), - [sym_type_arguments] = STATE(349), - [sym_type_parameters] = STATE(2850), + [sym_parenthesized_expression] = STATE(768), + [sym__expression] = STATE(1211), + [sym_yield_expression] = STATE(1567), + [sym_object] = STATE(1357), + [sym_array] = STATE(1360), + [sym_class] = STATE(1523), + [sym_class_declaration] = STATE(579), + [sym_function] = STATE(1523), + [sym_function_declaration] = STATE(579), + [sym_generator_function] = STATE(1523), + [sym_generator_function_declaration] = STATE(579), + [sym_arrow_function] = STATE(1523), + [sym__call_signature] = STATE(3196), + [sym_call_expression] = STATE(1523), + [sym_new_expression] = STATE(1567), + [sym_await_expression] = STATE(1567), + [sym_member_expression] = STATE(768), + [sym_subscript_expression] = STATE(768), + [sym_assignment_expression] = STATE(1567), + [sym__augmented_assignment_lhs] = STATE(1928), + [sym_augmented_assignment_expression] = STATE(1567), + [sym_ternary_expression] = STATE(1567), + [sym_binary_expression] = STATE(1567), + [sym_unary_expression] = STATE(1567), + [sym_update_expression] = STATE(1567), + [sym_sequence_expression] = STATE(2826), + [sym_string] = STATE(1523), + [sym_template_string] = STATE(1523), + [sym_regex] = STATE(1523), + [sym_meta_property] = STATE(1523), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(774), + [sym_function_signature] = STATE(579), + [sym_type_assertion] = STATE(1567), + [sym_as_expression] = STATE(1567), + [sym_ambient_declaration] = STATE(579), + [sym_abstract_class_declaration] = STATE(579), + [sym_module] = STATE(579), + [sym_internal_module] = STATE(86), + [sym_import_alias] = STATE(579), + [sym_interface_declaration] = STATE(579), + [sym_enum_declaration] = STATE(579), + [sym_type_alias_declaration] = STATE(579), + [sym_type_arguments] = STATE(292), + [sym_type_parameters] = STATE(2827), [aux_sym_program_repeat1] = STATE(7), - [aux_sym_export_statement_repeat1] = STATE(2286), - [ts_builtin_sym_end] = ACTIONS(363), + [aux_sym_export_statement_repeat1] = STATE(2247), + [ts_builtin_sym_end] = ACTIONS(365), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_namespace] = ACTIONS(13), @@ -11550,77 +11604,77 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_readonly] = ACTIONS(93), }, [16] = { - [sym_export_statement] = STATE(20), - [sym__declaration] = STATE(20), - [sym_import] = STATE(1498), - [sym_import_statement] = STATE(20), - [sym_expression_statement] = STATE(20), - [sym_variable_declaration] = STATE(598), - [sym_lexical_declaration] = STATE(598), - [sym_statement_block] = STATE(20), - [sym_if_statement] = STATE(20), - [sym_switch_statement] = STATE(20), - [sym_for_statement] = STATE(20), - [sym_for_in_statement] = STATE(20), - [sym_while_statement] = STATE(20), - [sym_do_statement] = STATE(20), - [sym_try_statement] = STATE(20), - [sym_with_statement] = STATE(20), - [sym_break_statement] = STATE(20), - [sym_continue_statement] = STATE(20), - [sym_debugger_statement] = STATE(20), - [sym_return_statement] = STATE(20), - [sym_throw_statement] = STATE(20), - [sym_empty_statement] = STATE(20), - [sym_labeled_statement] = STATE(20), - [sym_parenthesized_expression] = STATE(764), - [sym__expression] = STATE(1265), - [sym_yield_expression] = STATE(1518), - [sym_object] = STATE(1435), - [sym_array] = STATE(1433), - [sym_class] = STATE(1498), - [sym_class_declaration] = STATE(598), - [sym_function] = STATE(1498), - [sym_function_declaration] = STATE(598), - [sym_generator_function] = STATE(1498), - [sym_generator_function_declaration] = STATE(598), - [sym_arrow_function] = STATE(1498), - [sym__call_signature] = STATE(3145), - [sym_call_expression] = STATE(1498), - [sym_new_expression] = STATE(1518), - [sym_await_expression] = STATE(1518), - [sym_member_expression] = STATE(764), - [sym_subscript_expression] = STATE(764), - [sym_assignment_expression] = STATE(1518), - [sym__augmented_assignment_lhs] = STATE(1925), - [sym_augmented_assignment_expression] = STATE(1518), - [sym_ternary_expression] = STATE(1518), - [sym_binary_expression] = STATE(1518), - [sym_unary_expression] = STATE(1518), - [sym_update_expression] = STATE(1518), - [sym_sequence_expression] = STATE(2844), - [sym_string] = STATE(1498), - [sym_template_string] = STATE(1498), - [sym_regex] = STATE(1498), - [sym_meta_property] = STATE(1498), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(772), - [sym_function_signature] = STATE(598), - [sym_type_assertion] = STATE(1518), - [sym_as_expression] = STATE(1518), - [sym_ambient_declaration] = STATE(598), - [sym_abstract_class_declaration] = STATE(598), - [sym_module] = STATE(598), - [sym_internal_module] = STATE(92), - [sym_import_alias] = STATE(598), - [sym_interface_declaration] = STATE(598), - [sym_enum_declaration] = STATE(598), - [sym_type_alias_declaration] = STATE(598), - [sym_type_arguments] = STATE(349), - [sym_type_parameters] = STATE(2850), - [aux_sym_program_repeat1] = STATE(20), - [aux_sym_export_statement_repeat1] = STATE(2286), + [sym_export_statement] = STATE(12), + [sym__declaration] = STATE(12), + [sym_import] = STATE(1523), + [sym_import_statement] = STATE(12), + [sym_expression_statement] = STATE(12), + [sym_variable_declaration] = STATE(579), + [sym_lexical_declaration] = STATE(579), + [sym_statement_block] = STATE(12), + [sym_if_statement] = STATE(12), + [sym_switch_statement] = STATE(12), + [sym_for_statement] = STATE(12), + [sym_for_in_statement] = STATE(12), + [sym_while_statement] = STATE(12), + [sym_do_statement] = STATE(12), + [sym_try_statement] = STATE(12), + [sym_with_statement] = STATE(12), + [sym_break_statement] = STATE(12), + [sym_continue_statement] = STATE(12), + [sym_debugger_statement] = STATE(12), + [sym_return_statement] = STATE(12), + [sym_throw_statement] = STATE(12), + [sym_empty_statement] = STATE(12), + [sym_labeled_statement] = STATE(12), + [sym_parenthesized_expression] = STATE(768), + [sym__expression] = STATE(1211), + [sym_yield_expression] = STATE(1567), + [sym_object] = STATE(1357), + [sym_array] = STATE(1360), + [sym_class] = STATE(1523), + [sym_class_declaration] = STATE(579), + [sym_function] = STATE(1523), + [sym_function_declaration] = STATE(579), + [sym_generator_function] = STATE(1523), + [sym_generator_function_declaration] = STATE(579), + [sym_arrow_function] = STATE(1523), + [sym__call_signature] = STATE(3196), + [sym_call_expression] = STATE(1523), + [sym_new_expression] = STATE(1567), + [sym_await_expression] = STATE(1567), + [sym_member_expression] = STATE(768), + [sym_subscript_expression] = STATE(768), + [sym_assignment_expression] = STATE(1567), + [sym__augmented_assignment_lhs] = STATE(1928), + [sym_augmented_assignment_expression] = STATE(1567), + [sym_ternary_expression] = STATE(1567), + [sym_binary_expression] = STATE(1567), + [sym_unary_expression] = STATE(1567), + [sym_update_expression] = STATE(1567), + [sym_sequence_expression] = STATE(2826), + [sym_string] = STATE(1523), + [sym_template_string] = STATE(1523), + [sym_regex] = STATE(1523), + [sym_meta_property] = STATE(1523), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(774), + [sym_function_signature] = STATE(579), + [sym_type_assertion] = STATE(1567), + [sym_as_expression] = STATE(1567), + [sym_ambient_declaration] = STATE(579), + [sym_abstract_class_declaration] = STATE(579), + [sym_module] = STATE(579), + [sym_internal_module] = STATE(86), + [sym_import_alias] = STATE(579), + [sym_interface_declaration] = STATE(579), + [sym_enum_declaration] = STATE(579), + [sym_type_alias_declaration] = STATE(579), + [sym_type_arguments] = STATE(292), + [sym_type_parameters] = STATE(2827), + [aux_sym_program_repeat1] = STATE(12), + [aux_sym_export_statement_repeat1] = STATE(2247), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_namespace] = ACTIONS(13), @@ -11696,11 +11750,11 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [17] = { [sym_export_statement] = STATE(7), [sym__declaration] = STATE(7), - [sym_import] = STATE(1498), + [sym_import] = STATE(1523), [sym_import_statement] = STATE(7), [sym_expression_statement] = STATE(7), - [sym_variable_declaration] = STATE(598), - [sym_lexical_declaration] = STATE(598), + [sym_variable_declaration] = STATE(579), + [sym_lexical_declaration] = STATE(579), [sym_statement_block] = STATE(7), [sym_if_statement] = STATE(7), [sym_switch_statement] = STATE(7), @@ -11717,59 +11771,59 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_throw_statement] = STATE(7), [sym_empty_statement] = STATE(7), [sym_labeled_statement] = STATE(7), - [sym_parenthesized_expression] = STATE(764), - [sym__expression] = STATE(1265), - [sym_yield_expression] = STATE(1518), - [sym_object] = STATE(1435), - [sym_array] = STATE(1433), - [sym_class] = STATE(1498), - [sym_class_declaration] = STATE(598), - [sym_function] = STATE(1498), - [sym_function_declaration] = STATE(598), - [sym_generator_function] = STATE(1498), - [sym_generator_function_declaration] = STATE(598), - [sym_arrow_function] = STATE(1498), - [sym__call_signature] = STATE(3145), - [sym_call_expression] = STATE(1498), - [sym_new_expression] = STATE(1518), - [sym_await_expression] = STATE(1518), - [sym_member_expression] = STATE(764), - [sym_subscript_expression] = STATE(764), - [sym_assignment_expression] = STATE(1518), - [sym__augmented_assignment_lhs] = STATE(1925), - [sym_augmented_assignment_expression] = STATE(1518), - [sym_ternary_expression] = STATE(1518), - [sym_binary_expression] = STATE(1518), - [sym_unary_expression] = STATE(1518), - [sym_update_expression] = STATE(1518), - [sym_sequence_expression] = STATE(2844), - [sym_string] = STATE(1498), - [sym_template_string] = STATE(1498), - [sym_regex] = STATE(1498), - [sym_meta_property] = STATE(1498), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(772), - [sym_function_signature] = STATE(598), - [sym_type_assertion] = STATE(1518), - [sym_as_expression] = STATE(1518), - [sym_ambient_declaration] = STATE(598), - [sym_abstract_class_declaration] = STATE(598), - [sym_module] = STATE(598), - [sym_internal_module] = STATE(92), - [sym_import_alias] = STATE(598), - [sym_interface_declaration] = STATE(598), - [sym_enum_declaration] = STATE(598), - [sym_type_alias_declaration] = STATE(598), - [sym_type_arguments] = STATE(349), - [sym_type_parameters] = STATE(2850), + [sym_parenthesized_expression] = STATE(768), + [sym__expression] = STATE(1211), + [sym_yield_expression] = STATE(1567), + [sym_object] = STATE(1357), + [sym_array] = STATE(1360), + [sym_class] = STATE(1523), + [sym_class_declaration] = STATE(579), + [sym_function] = STATE(1523), + [sym_function_declaration] = STATE(579), + [sym_generator_function] = STATE(1523), + [sym_generator_function_declaration] = STATE(579), + [sym_arrow_function] = STATE(1523), + [sym__call_signature] = STATE(3196), + [sym_call_expression] = STATE(1523), + [sym_new_expression] = STATE(1567), + [sym_await_expression] = STATE(1567), + [sym_member_expression] = STATE(768), + [sym_subscript_expression] = STATE(768), + [sym_assignment_expression] = STATE(1567), + [sym__augmented_assignment_lhs] = STATE(1928), + [sym_augmented_assignment_expression] = STATE(1567), + [sym_ternary_expression] = STATE(1567), + [sym_binary_expression] = STATE(1567), + [sym_unary_expression] = STATE(1567), + [sym_update_expression] = STATE(1567), + [sym_sequence_expression] = STATE(2826), + [sym_string] = STATE(1523), + [sym_template_string] = STATE(1523), + [sym_regex] = STATE(1523), + [sym_meta_property] = STATE(1523), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(774), + [sym_function_signature] = STATE(579), + [sym_type_assertion] = STATE(1567), + [sym_as_expression] = STATE(1567), + [sym_ambient_declaration] = STATE(579), + [sym_abstract_class_declaration] = STATE(579), + [sym_module] = STATE(579), + [sym_internal_module] = STATE(86), + [sym_import_alias] = STATE(579), + [sym_interface_declaration] = STATE(579), + [sym_enum_declaration] = STATE(579), + [sym_type_alias_declaration] = STATE(579), + [sym_type_arguments] = STATE(292), + [sym_type_parameters] = STATE(2827), [aux_sym_program_repeat1] = STATE(7), - [aux_sym_export_statement_repeat1] = STATE(2286), - [ts_builtin_sym_end] = ACTIONS(369), + [aux_sym_export_statement_repeat1] = STATE(2247), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_namespace] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_RBRACE] = ACTIONS(369), [anon_sym_type] = ACTIONS(17), [anon_sym_typeof] = ACTIONS(19), [anon_sym_import] = ACTIONS(21), @@ -11838,77 +11892,77 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_readonly] = ACTIONS(93), }, [18] = { - [sym_export_statement] = STATE(22), - [sym__declaration] = STATE(22), - [sym_import] = STATE(1498), - [sym_import_statement] = STATE(22), - [sym_expression_statement] = STATE(22), - [sym_variable_declaration] = STATE(598), - [sym_lexical_declaration] = STATE(598), - [sym_statement_block] = STATE(22), - [sym_if_statement] = STATE(22), - [sym_switch_statement] = STATE(22), - [sym_for_statement] = STATE(22), - [sym_for_in_statement] = STATE(22), - [sym_while_statement] = STATE(22), - [sym_do_statement] = STATE(22), - [sym_try_statement] = STATE(22), - [sym_with_statement] = STATE(22), - [sym_break_statement] = STATE(22), - [sym_continue_statement] = STATE(22), - [sym_debugger_statement] = STATE(22), - [sym_return_statement] = STATE(22), - [sym_throw_statement] = STATE(22), - [sym_empty_statement] = STATE(22), - [sym_labeled_statement] = STATE(22), - [sym_parenthesized_expression] = STATE(764), - [sym__expression] = STATE(1265), - [sym_yield_expression] = STATE(1518), - [sym_object] = STATE(1435), - [sym_array] = STATE(1433), - [sym_class] = STATE(1498), - [sym_class_declaration] = STATE(598), - [sym_function] = STATE(1498), - [sym_function_declaration] = STATE(598), - [sym_generator_function] = STATE(1498), - [sym_generator_function_declaration] = STATE(598), - [sym_arrow_function] = STATE(1498), - [sym__call_signature] = STATE(3145), - [sym_call_expression] = STATE(1498), - [sym_new_expression] = STATE(1518), - [sym_await_expression] = STATE(1518), - [sym_member_expression] = STATE(764), - [sym_subscript_expression] = STATE(764), - [sym_assignment_expression] = STATE(1518), - [sym__augmented_assignment_lhs] = STATE(1925), - [sym_augmented_assignment_expression] = STATE(1518), - [sym_ternary_expression] = STATE(1518), - [sym_binary_expression] = STATE(1518), - [sym_unary_expression] = STATE(1518), - [sym_update_expression] = STATE(1518), - [sym_sequence_expression] = STATE(2844), - [sym_string] = STATE(1498), - [sym_template_string] = STATE(1498), - [sym_regex] = STATE(1498), - [sym_meta_property] = STATE(1498), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(772), - [sym_function_signature] = STATE(598), - [sym_type_assertion] = STATE(1518), - [sym_as_expression] = STATE(1518), - [sym_ambient_declaration] = STATE(598), - [sym_abstract_class_declaration] = STATE(598), - [sym_module] = STATE(598), - [sym_internal_module] = STATE(92), - [sym_import_alias] = STATE(598), - [sym_interface_declaration] = STATE(598), - [sym_enum_declaration] = STATE(598), - [sym_type_alias_declaration] = STATE(598), - [sym_type_arguments] = STATE(349), - [sym_type_parameters] = STATE(2850), - [aux_sym_program_repeat1] = STATE(22), - [aux_sym_export_statement_repeat1] = STATE(2286), + [sym_export_statement] = STATE(25), + [sym__declaration] = STATE(25), + [sym_import] = STATE(1523), + [sym_import_statement] = STATE(25), + [sym_expression_statement] = STATE(25), + [sym_variable_declaration] = STATE(579), + [sym_lexical_declaration] = STATE(579), + [sym_statement_block] = STATE(25), + [sym_if_statement] = STATE(25), + [sym_switch_statement] = STATE(25), + [sym_for_statement] = STATE(25), + [sym_for_in_statement] = STATE(25), + [sym_while_statement] = STATE(25), + [sym_do_statement] = STATE(25), + [sym_try_statement] = STATE(25), + [sym_with_statement] = STATE(25), + [sym_break_statement] = STATE(25), + [sym_continue_statement] = STATE(25), + [sym_debugger_statement] = STATE(25), + [sym_return_statement] = STATE(25), + [sym_throw_statement] = STATE(25), + [sym_empty_statement] = STATE(25), + [sym_labeled_statement] = STATE(25), + [sym_parenthesized_expression] = STATE(768), + [sym__expression] = STATE(1211), + [sym_yield_expression] = STATE(1567), + [sym_object] = STATE(1357), + [sym_array] = STATE(1360), + [sym_class] = STATE(1523), + [sym_class_declaration] = STATE(579), + [sym_function] = STATE(1523), + [sym_function_declaration] = STATE(579), + [sym_generator_function] = STATE(1523), + [sym_generator_function_declaration] = STATE(579), + [sym_arrow_function] = STATE(1523), + [sym__call_signature] = STATE(3196), + [sym_call_expression] = STATE(1523), + [sym_new_expression] = STATE(1567), + [sym_await_expression] = STATE(1567), + [sym_member_expression] = STATE(768), + [sym_subscript_expression] = STATE(768), + [sym_assignment_expression] = STATE(1567), + [sym__augmented_assignment_lhs] = STATE(1928), + [sym_augmented_assignment_expression] = STATE(1567), + [sym_ternary_expression] = STATE(1567), + [sym_binary_expression] = STATE(1567), + [sym_unary_expression] = STATE(1567), + [sym_update_expression] = STATE(1567), + [sym_sequence_expression] = STATE(2826), + [sym_string] = STATE(1523), + [sym_template_string] = STATE(1523), + [sym_regex] = STATE(1523), + [sym_meta_property] = STATE(1523), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(774), + [sym_function_signature] = STATE(579), + [sym_type_assertion] = STATE(1567), + [sym_as_expression] = STATE(1567), + [sym_ambient_declaration] = STATE(579), + [sym_abstract_class_declaration] = STATE(579), + [sym_module] = STATE(579), + [sym_internal_module] = STATE(86), + [sym_import_alias] = STATE(579), + [sym_interface_declaration] = STATE(579), + [sym_enum_declaration] = STATE(579), + [sym_type_alias_declaration] = STATE(579), + [sym_type_arguments] = STATE(292), + [sym_type_parameters] = STATE(2827), + [aux_sym_program_repeat1] = STATE(25), + [aux_sym_export_statement_repeat1] = STATE(2247), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_namespace] = ACTIONS(13), @@ -11982,77 +12036,77 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_readonly] = ACTIONS(93), }, [19] = { - [sym_export_statement] = STATE(24), - [sym__declaration] = STATE(24), - [sym_import] = STATE(1498), - [sym_import_statement] = STATE(24), - [sym_expression_statement] = STATE(24), - [sym_variable_declaration] = STATE(598), - [sym_lexical_declaration] = STATE(598), - [sym_statement_block] = STATE(24), - [sym_if_statement] = STATE(24), - [sym_switch_statement] = STATE(24), - [sym_for_statement] = STATE(24), - [sym_for_in_statement] = STATE(24), - [sym_while_statement] = STATE(24), - [sym_do_statement] = STATE(24), - [sym_try_statement] = STATE(24), - [sym_with_statement] = STATE(24), - [sym_break_statement] = STATE(24), - [sym_continue_statement] = STATE(24), - [sym_debugger_statement] = STATE(24), - [sym_return_statement] = STATE(24), - [sym_throw_statement] = STATE(24), - [sym_empty_statement] = STATE(24), - [sym_labeled_statement] = STATE(24), - [sym_parenthesized_expression] = STATE(764), - [sym__expression] = STATE(1265), - [sym_yield_expression] = STATE(1518), - [sym_object] = STATE(1435), - [sym_array] = STATE(1433), - [sym_class] = STATE(1498), - [sym_class_declaration] = STATE(598), - [sym_function] = STATE(1498), - [sym_function_declaration] = STATE(598), - [sym_generator_function] = STATE(1498), - [sym_generator_function_declaration] = STATE(598), - [sym_arrow_function] = STATE(1498), - [sym__call_signature] = STATE(3145), - [sym_call_expression] = STATE(1498), - [sym_new_expression] = STATE(1518), - [sym_await_expression] = STATE(1518), - [sym_member_expression] = STATE(764), - [sym_subscript_expression] = STATE(764), - [sym_assignment_expression] = STATE(1518), - [sym__augmented_assignment_lhs] = STATE(1925), - [sym_augmented_assignment_expression] = STATE(1518), - [sym_ternary_expression] = STATE(1518), - [sym_binary_expression] = STATE(1518), - [sym_unary_expression] = STATE(1518), - [sym_update_expression] = STATE(1518), - [sym_sequence_expression] = STATE(2844), - [sym_string] = STATE(1498), - [sym_template_string] = STATE(1498), - [sym_regex] = STATE(1498), - [sym_meta_property] = STATE(1498), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(772), - [sym_function_signature] = STATE(598), - [sym_type_assertion] = STATE(1518), - [sym_as_expression] = STATE(1518), - [sym_ambient_declaration] = STATE(598), - [sym_abstract_class_declaration] = STATE(598), - [sym_module] = STATE(598), - [sym_internal_module] = STATE(92), - [sym_import_alias] = STATE(598), - [sym_interface_declaration] = STATE(598), - [sym_enum_declaration] = STATE(598), - [sym_type_alias_declaration] = STATE(598), - [sym_type_arguments] = STATE(349), - [sym_type_parameters] = STATE(2850), - [aux_sym_program_repeat1] = STATE(24), - [aux_sym_export_statement_repeat1] = STATE(2286), + [sym_export_statement] = STATE(20), + [sym__declaration] = STATE(20), + [sym_import] = STATE(1523), + [sym_import_statement] = STATE(20), + [sym_expression_statement] = STATE(20), + [sym_variable_declaration] = STATE(579), + [sym_lexical_declaration] = STATE(579), + [sym_statement_block] = STATE(20), + [sym_if_statement] = STATE(20), + [sym_switch_statement] = STATE(20), + [sym_for_statement] = STATE(20), + [sym_for_in_statement] = STATE(20), + [sym_while_statement] = STATE(20), + [sym_do_statement] = STATE(20), + [sym_try_statement] = STATE(20), + [sym_with_statement] = STATE(20), + [sym_break_statement] = STATE(20), + [sym_continue_statement] = STATE(20), + [sym_debugger_statement] = STATE(20), + [sym_return_statement] = STATE(20), + [sym_throw_statement] = STATE(20), + [sym_empty_statement] = STATE(20), + [sym_labeled_statement] = STATE(20), + [sym_parenthesized_expression] = STATE(768), + [sym__expression] = STATE(1211), + [sym_yield_expression] = STATE(1567), + [sym_object] = STATE(1357), + [sym_array] = STATE(1360), + [sym_class] = STATE(1523), + [sym_class_declaration] = STATE(579), + [sym_function] = STATE(1523), + [sym_function_declaration] = STATE(579), + [sym_generator_function] = STATE(1523), + [sym_generator_function_declaration] = STATE(579), + [sym_arrow_function] = STATE(1523), + [sym__call_signature] = STATE(3196), + [sym_call_expression] = STATE(1523), + [sym_new_expression] = STATE(1567), + [sym_await_expression] = STATE(1567), + [sym_member_expression] = STATE(768), + [sym_subscript_expression] = STATE(768), + [sym_assignment_expression] = STATE(1567), + [sym__augmented_assignment_lhs] = STATE(1928), + [sym_augmented_assignment_expression] = STATE(1567), + [sym_ternary_expression] = STATE(1567), + [sym_binary_expression] = STATE(1567), + [sym_unary_expression] = STATE(1567), + [sym_update_expression] = STATE(1567), + [sym_sequence_expression] = STATE(2826), + [sym_string] = STATE(1523), + [sym_template_string] = STATE(1523), + [sym_regex] = STATE(1523), + [sym_meta_property] = STATE(1523), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(774), + [sym_function_signature] = STATE(579), + [sym_type_assertion] = STATE(1567), + [sym_as_expression] = STATE(1567), + [sym_ambient_declaration] = STATE(579), + [sym_abstract_class_declaration] = STATE(579), + [sym_module] = STATE(579), + [sym_internal_module] = STATE(86), + [sym_import_alias] = STATE(579), + [sym_interface_declaration] = STATE(579), + [sym_enum_declaration] = STATE(579), + [sym_type_alias_declaration] = STATE(579), + [sym_type_arguments] = STATE(292), + [sym_type_parameters] = STATE(2827), + [aux_sym_program_repeat1] = STATE(20), + [aux_sym_export_statement_repeat1] = STATE(2247), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_namespace] = ACTIONS(13), @@ -12128,11 +12182,11 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [20] = { [sym_export_statement] = STATE(7), [sym__declaration] = STATE(7), - [sym_import] = STATE(1498), + [sym_import] = STATE(1523), [sym_import_statement] = STATE(7), [sym_expression_statement] = STATE(7), - [sym_variable_declaration] = STATE(598), - [sym_lexical_declaration] = STATE(598), + [sym_variable_declaration] = STATE(579), + [sym_lexical_declaration] = STATE(579), [sym_statement_block] = STATE(7), [sym_if_statement] = STATE(7), [sym_switch_statement] = STATE(7), @@ -12149,54 +12203,54 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_throw_statement] = STATE(7), [sym_empty_statement] = STATE(7), [sym_labeled_statement] = STATE(7), - [sym_parenthesized_expression] = STATE(764), - [sym__expression] = STATE(1265), - [sym_yield_expression] = STATE(1518), - [sym_object] = STATE(1435), - [sym_array] = STATE(1433), - [sym_class] = STATE(1498), - [sym_class_declaration] = STATE(598), - [sym_function] = STATE(1498), - [sym_function_declaration] = STATE(598), - [sym_generator_function] = STATE(1498), - [sym_generator_function_declaration] = STATE(598), - [sym_arrow_function] = STATE(1498), - [sym__call_signature] = STATE(3145), - [sym_call_expression] = STATE(1498), - [sym_new_expression] = STATE(1518), - [sym_await_expression] = STATE(1518), - [sym_member_expression] = STATE(764), - [sym_subscript_expression] = STATE(764), - [sym_assignment_expression] = STATE(1518), - [sym__augmented_assignment_lhs] = STATE(1925), - [sym_augmented_assignment_expression] = STATE(1518), - [sym_ternary_expression] = STATE(1518), - [sym_binary_expression] = STATE(1518), - [sym_unary_expression] = STATE(1518), - [sym_update_expression] = STATE(1518), - [sym_sequence_expression] = STATE(2844), - [sym_string] = STATE(1498), - [sym_template_string] = STATE(1498), - [sym_regex] = STATE(1498), - [sym_meta_property] = STATE(1498), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(772), - [sym_function_signature] = STATE(598), - [sym_type_assertion] = STATE(1518), - [sym_as_expression] = STATE(1518), - [sym_ambient_declaration] = STATE(598), - [sym_abstract_class_declaration] = STATE(598), - [sym_module] = STATE(598), - [sym_internal_module] = STATE(92), - [sym_import_alias] = STATE(598), - [sym_interface_declaration] = STATE(598), - [sym_enum_declaration] = STATE(598), - [sym_type_alias_declaration] = STATE(598), - [sym_type_arguments] = STATE(349), - [sym_type_parameters] = STATE(2850), + [sym_parenthesized_expression] = STATE(768), + [sym__expression] = STATE(1211), + [sym_yield_expression] = STATE(1567), + [sym_object] = STATE(1357), + [sym_array] = STATE(1360), + [sym_class] = STATE(1523), + [sym_class_declaration] = STATE(579), + [sym_function] = STATE(1523), + [sym_function_declaration] = STATE(579), + [sym_generator_function] = STATE(1523), + [sym_generator_function_declaration] = STATE(579), + [sym_arrow_function] = STATE(1523), + [sym__call_signature] = STATE(3196), + [sym_call_expression] = STATE(1523), + [sym_new_expression] = STATE(1567), + [sym_await_expression] = STATE(1567), + [sym_member_expression] = STATE(768), + [sym_subscript_expression] = STATE(768), + [sym_assignment_expression] = STATE(1567), + [sym__augmented_assignment_lhs] = STATE(1928), + [sym_augmented_assignment_expression] = STATE(1567), + [sym_ternary_expression] = STATE(1567), + [sym_binary_expression] = STATE(1567), + [sym_unary_expression] = STATE(1567), + [sym_update_expression] = STATE(1567), + [sym_sequence_expression] = STATE(2826), + [sym_string] = STATE(1523), + [sym_template_string] = STATE(1523), + [sym_regex] = STATE(1523), + [sym_meta_property] = STATE(1523), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(774), + [sym_function_signature] = STATE(579), + [sym_type_assertion] = STATE(1567), + [sym_as_expression] = STATE(1567), + [sym_ambient_declaration] = STATE(579), + [sym_abstract_class_declaration] = STATE(579), + [sym_module] = STATE(579), + [sym_internal_module] = STATE(86), + [sym_import_alias] = STATE(579), + [sym_interface_declaration] = STATE(579), + [sym_enum_declaration] = STATE(579), + [sym_type_alias_declaration] = STATE(579), + [sym_type_arguments] = STATE(292), + [sym_type_parameters] = STATE(2827), [aux_sym_program_repeat1] = STATE(7), - [aux_sym_export_statement_repeat1] = STATE(2286), + [aux_sym_export_statement_repeat1] = STATE(2247), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_namespace] = ACTIONS(13), @@ -12270,77 +12324,77 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_readonly] = ACTIONS(93), }, [21] = { - [sym_export_statement] = STATE(7), - [sym__declaration] = STATE(7), - [sym_import] = STATE(1498), - [sym_import_statement] = STATE(7), - [sym_expression_statement] = STATE(7), - [sym_variable_declaration] = STATE(598), - [sym_lexical_declaration] = STATE(598), - [sym_statement_block] = STATE(7), - [sym_if_statement] = STATE(7), - [sym_switch_statement] = STATE(7), - [sym_for_statement] = STATE(7), - [sym_for_in_statement] = STATE(7), - [sym_while_statement] = STATE(7), - [sym_do_statement] = STATE(7), - [sym_try_statement] = STATE(7), - [sym_with_statement] = STATE(7), - [sym_break_statement] = STATE(7), - [sym_continue_statement] = STATE(7), - [sym_debugger_statement] = STATE(7), - [sym_return_statement] = STATE(7), - [sym_throw_statement] = STATE(7), - [sym_empty_statement] = STATE(7), - [sym_labeled_statement] = STATE(7), - [sym_parenthesized_expression] = STATE(764), - [sym__expression] = STATE(1265), - [sym_yield_expression] = STATE(1518), - [sym_object] = STATE(1435), - [sym_array] = STATE(1433), - [sym_class] = STATE(1498), - [sym_class_declaration] = STATE(598), - [sym_function] = STATE(1498), - [sym_function_declaration] = STATE(598), - [sym_generator_function] = STATE(1498), - [sym_generator_function_declaration] = STATE(598), - [sym_arrow_function] = STATE(1498), - [sym__call_signature] = STATE(3145), - [sym_call_expression] = STATE(1498), - [sym_new_expression] = STATE(1518), - [sym_await_expression] = STATE(1518), - [sym_member_expression] = STATE(764), - [sym_subscript_expression] = STATE(764), - [sym_assignment_expression] = STATE(1518), - [sym__augmented_assignment_lhs] = STATE(1925), - [sym_augmented_assignment_expression] = STATE(1518), - [sym_ternary_expression] = STATE(1518), - [sym_binary_expression] = STATE(1518), - [sym_unary_expression] = STATE(1518), - [sym_update_expression] = STATE(1518), - [sym_sequence_expression] = STATE(2844), - [sym_string] = STATE(1498), - [sym_template_string] = STATE(1498), - [sym_regex] = STATE(1498), - [sym_meta_property] = STATE(1498), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(772), - [sym_function_signature] = STATE(598), - [sym_type_assertion] = STATE(1518), - [sym_as_expression] = STATE(1518), - [sym_ambient_declaration] = STATE(598), - [sym_abstract_class_declaration] = STATE(598), - [sym_module] = STATE(598), - [sym_internal_module] = STATE(92), - [sym_import_alias] = STATE(598), - [sym_interface_declaration] = STATE(598), - [sym_enum_declaration] = STATE(598), - [sym_type_alias_declaration] = STATE(598), - [sym_type_arguments] = STATE(349), - [sym_type_parameters] = STATE(2850), - [aux_sym_program_repeat1] = STATE(7), - [aux_sym_export_statement_repeat1] = STATE(2286), + [sym_export_statement] = STATE(22), + [sym__declaration] = STATE(22), + [sym_import] = STATE(1523), + [sym_import_statement] = STATE(22), + [sym_expression_statement] = STATE(22), + [sym_variable_declaration] = STATE(579), + [sym_lexical_declaration] = STATE(579), + [sym_statement_block] = STATE(22), + [sym_if_statement] = STATE(22), + [sym_switch_statement] = STATE(22), + [sym_for_statement] = STATE(22), + [sym_for_in_statement] = STATE(22), + [sym_while_statement] = STATE(22), + [sym_do_statement] = STATE(22), + [sym_try_statement] = STATE(22), + [sym_with_statement] = STATE(22), + [sym_break_statement] = STATE(22), + [sym_continue_statement] = STATE(22), + [sym_debugger_statement] = STATE(22), + [sym_return_statement] = STATE(22), + [sym_throw_statement] = STATE(22), + [sym_empty_statement] = STATE(22), + [sym_labeled_statement] = STATE(22), + [sym_parenthesized_expression] = STATE(768), + [sym__expression] = STATE(1211), + [sym_yield_expression] = STATE(1567), + [sym_object] = STATE(1357), + [sym_array] = STATE(1360), + [sym_class] = STATE(1523), + [sym_class_declaration] = STATE(579), + [sym_function] = STATE(1523), + [sym_function_declaration] = STATE(579), + [sym_generator_function] = STATE(1523), + [sym_generator_function_declaration] = STATE(579), + [sym_arrow_function] = STATE(1523), + [sym__call_signature] = STATE(3196), + [sym_call_expression] = STATE(1523), + [sym_new_expression] = STATE(1567), + [sym_await_expression] = STATE(1567), + [sym_member_expression] = STATE(768), + [sym_subscript_expression] = STATE(768), + [sym_assignment_expression] = STATE(1567), + [sym__augmented_assignment_lhs] = STATE(1928), + [sym_augmented_assignment_expression] = STATE(1567), + [sym_ternary_expression] = STATE(1567), + [sym_binary_expression] = STATE(1567), + [sym_unary_expression] = STATE(1567), + [sym_update_expression] = STATE(1567), + [sym_sequence_expression] = STATE(2826), + [sym_string] = STATE(1523), + [sym_template_string] = STATE(1523), + [sym_regex] = STATE(1523), + [sym_meta_property] = STATE(1523), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(774), + [sym_function_signature] = STATE(579), + [sym_type_assertion] = STATE(1567), + [sym_as_expression] = STATE(1567), + [sym_ambient_declaration] = STATE(579), + [sym_abstract_class_declaration] = STATE(579), + [sym_module] = STATE(579), + [sym_internal_module] = STATE(86), + [sym_import_alias] = STATE(579), + [sym_interface_declaration] = STATE(579), + [sym_enum_declaration] = STATE(579), + [sym_type_alias_declaration] = STATE(579), + [sym_type_arguments] = STATE(292), + [sym_type_parameters] = STATE(2827), + [aux_sym_program_repeat1] = STATE(22), + [aux_sym_export_statement_repeat1] = STATE(2247), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_namespace] = ACTIONS(13), @@ -12416,11 +12470,11 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [22] = { [sym_export_statement] = STATE(7), [sym__declaration] = STATE(7), - [sym_import] = STATE(1498), + [sym_import] = STATE(1523), [sym_import_statement] = STATE(7), [sym_expression_statement] = STATE(7), - [sym_variable_declaration] = STATE(598), - [sym_lexical_declaration] = STATE(598), + [sym_variable_declaration] = STATE(579), + [sym_lexical_declaration] = STATE(579), [sym_statement_block] = STATE(7), [sym_if_statement] = STATE(7), [sym_switch_statement] = STATE(7), @@ -12437,54 +12491,54 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_throw_statement] = STATE(7), [sym_empty_statement] = STATE(7), [sym_labeled_statement] = STATE(7), - [sym_parenthesized_expression] = STATE(764), - [sym__expression] = STATE(1265), - [sym_yield_expression] = STATE(1518), - [sym_object] = STATE(1435), - [sym_array] = STATE(1433), - [sym_class] = STATE(1498), - [sym_class_declaration] = STATE(598), - [sym_function] = STATE(1498), - [sym_function_declaration] = STATE(598), - [sym_generator_function] = STATE(1498), - [sym_generator_function_declaration] = STATE(598), - [sym_arrow_function] = STATE(1498), - [sym__call_signature] = STATE(3145), - [sym_call_expression] = STATE(1498), - [sym_new_expression] = STATE(1518), - [sym_await_expression] = STATE(1518), - [sym_member_expression] = STATE(764), - [sym_subscript_expression] = STATE(764), - [sym_assignment_expression] = STATE(1518), - [sym__augmented_assignment_lhs] = STATE(1925), - [sym_augmented_assignment_expression] = STATE(1518), - [sym_ternary_expression] = STATE(1518), - [sym_binary_expression] = STATE(1518), - [sym_unary_expression] = STATE(1518), - [sym_update_expression] = STATE(1518), - [sym_sequence_expression] = STATE(2844), - [sym_string] = STATE(1498), - [sym_template_string] = STATE(1498), - [sym_regex] = STATE(1498), - [sym_meta_property] = STATE(1498), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(772), - [sym_function_signature] = STATE(598), - [sym_type_assertion] = STATE(1518), - [sym_as_expression] = STATE(1518), - [sym_ambient_declaration] = STATE(598), - [sym_abstract_class_declaration] = STATE(598), - [sym_module] = STATE(598), - [sym_internal_module] = STATE(92), - [sym_import_alias] = STATE(598), - [sym_interface_declaration] = STATE(598), - [sym_enum_declaration] = STATE(598), - [sym_type_alias_declaration] = STATE(598), - [sym_type_arguments] = STATE(349), - [sym_type_parameters] = STATE(2850), + [sym_parenthesized_expression] = STATE(768), + [sym__expression] = STATE(1211), + [sym_yield_expression] = STATE(1567), + [sym_object] = STATE(1357), + [sym_array] = STATE(1360), + [sym_class] = STATE(1523), + [sym_class_declaration] = STATE(579), + [sym_function] = STATE(1523), + [sym_function_declaration] = STATE(579), + [sym_generator_function] = STATE(1523), + [sym_generator_function_declaration] = STATE(579), + [sym_arrow_function] = STATE(1523), + [sym__call_signature] = STATE(3196), + [sym_call_expression] = STATE(1523), + [sym_new_expression] = STATE(1567), + [sym_await_expression] = STATE(1567), + [sym_member_expression] = STATE(768), + [sym_subscript_expression] = STATE(768), + [sym_assignment_expression] = STATE(1567), + [sym__augmented_assignment_lhs] = STATE(1928), + [sym_augmented_assignment_expression] = STATE(1567), + [sym_ternary_expression] = STATE(1567), + [sym_binary_expression] = STATE(1567), + [sym_unary_expression] = STATE(1567), + [sym_update_expression] = STATE(1567), + [sym_sequence_expression] = STATE(2826), + [sym_string] = STATE(1523), + [sym_template_string] = STATE(1523), + [sym_regex] = STATE(1523), + [sym_meta_property] = STATE(1523), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(774), + [sym_function_signature] = STATE(579), + [sym_type_assertion] = STATE(1567), + [sym_as_expression] = STATE(1567), + [sym_ambient_declaration] = STATE(579), + [sym_abstract_class_declaration] = STATE(579), + [sym_module] = STATE(579), + [sym_internal_module] = STATE(86), + [sym_import_alias] = STATE(579), + [sym_interface_declaration] = STATE(579), + [sym_enum_declaration] = STATE(579), + [sym_type_alias_declaration] = STATE(579), + [sym_type_arguments] = STATE(292), + [sym_type_parameters] = STATE(2827), [aux_sym_program_repeat1] = STATE(7), - [aux_sym_export_statement_repeat1] = STATE(2286), + [aux_sym_export_statement_repeat1] = STATE(2247), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_namespace] = ACTIONS(13), @@ -12558,157 +12612,13 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_readonly] = ACTIONS(93), }, [23] = { - [sym_export_statement] = STATE(21), - [sym__declaration] = STATE(21), - [sym_import] = STATE(1498), - [sym_import_statement] = STATE(21), - [sym_expression_statement] = STATE(21), - [sym_variable_declaration] = STATE(598), - [sym_lexical_declaration] = STATE(598), - [sym_statement_block] = STATE(21), - [sym_if_statement] = STATE(21), - [sym_switch_statement] = STATE(21), - [sym_for_statement] = STATE(21), - [sym_for_in_statement] = STATE(21), - [sym_while_statement] = STATE(21), - [sym_do_statement] = STATE(21), - [sym_try_statement] = STATE(21), - [sym_with_statement] = STATE(21), - [sym_break_statement] = STATE(21), - [sym_continue_statement] = STATE(21), - [sym_debugger_statement] = STATE(21), - [sym_return_statement] = STATE(21), - [sym_throw_statement] = STATE(21), - [sym_empty_statement] = STATE(21), - [sym_labeled_statement] = STATE(21), - [sym_parenthesized_expression] = STATE(764), - [sym__expression] = STATE(1265), - [sym_yield_expression] = STATE(1518), - [sym_object] = STATE(1435), - [sym_array] = STATE(1433), - [sym_class] = STATE(1498), - [sym_class_declaration] = STATE(598), - [sym_function] = STATE(1498), - [sym_function_declaration] = STATE(598), - [sym_generator_function] = STATE(1498), - [sym_generator_function_declaration] = STATE(598), - [sym_arrow_function] = STATE(1498), - [sym__call_signature] = STATE(3145), - [sym_call_expression] = STATE(1498), - [sym_new_expression] = STATE(1518), - [sym_await_expression] = STATE(1518), - [sym_member_expression] = STATE(764), - [sym_subscript_expression] = STATE(764), - [sym_assignment_expression] = STATE(1518), - [sym__augmented_assignment_lhs] = STATE(1925), - [sym_augmented_assignment_expression] = STATE(1518), - [sym_ternary_expression] = STATE(1518), - [sym_binary_expression] = STATE(1518), - [sym_unary_expression] = STATE(1518), - [sym_update_expression] = STATE(1518), - [sym_sequence_expression] = STATE(2844), - [sym_string] = STATE(1498), - [sym_template_string] = STATE(1498), - [sym_regex] = STATE(1498), - [sym_meta_property] = STATE(1498), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(772), - [sym_function_signature] = STATE(598), - [sym_type_assertion] = STATE(1518), - [sym_as_expression] = STATE(1518), - [sym_ambient_declaration] = STATE(598), - [sym_abstract_class_declaration] = STATE(598), - [sym_module] = STATE(598), - [sym_internal_module] = STATE(92), - [sym_import_alias] = STATE(598), - [sym_interface_declaration] = STATE(598), - [sym_enum_declaration] = STATE(598), - [sym_type_alias_declaration] = STATE(598), - [sym_type_arguments] = STATE(349), - [sym_type_parameters] = STATE(2850), - [aux_sym_program_repeat1] = STATE(21), - [aux_sym_export_statement_repeat1] = STATE(2286), - [sym_identifier] = ACTIONS(7), - [anon_sym_export] = ACTIONS(11), - [anon_sym_namespace] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(381), - [anon_sym_type] = ACTIONS(17), - [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(21), - [anon_sym_var] = ACTIONS(23), - [anon_sym_let] = ACTIONS(25), - [anon_sym_const] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(29), - [anon_sym_if] = ACTIONS(31), - [anon_sym_switch] = ACTIONS(33), - [anon_sym_for] = ACTIONS(35), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(39), - [anon_sym_while] = ACTIONS(41), - [anon_sym_do] = ACTIONS(43), - [anon_sym_try] = ACTIONS(45), - [anon_sym_with] = ACTIONS(47), - [anon_sym_break] = ACTIONS(49), - [anon_sym_continue] = ACTIONS(51), - [anon_sym_debugger] = ACTIONS(53), - [anon_sym_return] = ACTIONS(55), - [anon_sym_throw] = ACTIONS(57), - [anon_sym_SEMI] = ACTIONS(59), - [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(69), - [anon_sym_async] = ACTIONS(71), - [anon_sym_function] = ACTIONS(73), - [anon_sym_new] = ACTIONS(75), - [anon_sym_PLUS] = ACTIONS(77), - [anon_sym_DASH] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(29), - [anon_sym_void] = ACTIONS(19), - [anon_sym_delete] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(85), - [sym_number] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(93), - [anon_sym_abstract] = ACTIONS(95), - [anon_sym_get] = ACTIONS(93), - [anon_sym_set] = ACTIONS(93), - [anon_sym_declare] = ACTIONS(97), - [anon_sym_public] = ACTIONS(93), - [anon_sym_private] = ACTIONS(93), - [anon_sym_protected] = ACTIONS(93), - [anon_sym_module] = ACTIONS(99), - [anon_sym_any] = ACTIONS(93), - [anon_sym_number] = ACTIONS(93), - [anon_sym_boolean] = ACTIONS(93), - [anon_sym_string] = ACTIONS(93), - [anon_sym_symbol] = ACTIONS(93), - [anon_sym_interface] = ACTIONS(101), - [anon_sym_enum] = ACTIONS(103), - [sym_readonly] = ACTIONS(93), - }, - [24] = { [sym_export_statement] = STATE(7), [sym__declaration] = STATE(7), - [sym_import] = STATE(1498), + [sym_import] = STATE(1523), [sym_import_statement] = STATE(7), [sym_expression_statement] = STATE(7), - [sym_variable_declaration] = STATE(598), - [sym_lexical_declaration] = STATE(598), + [sym_variable_declaration] = STATE(579), + [sym_lexical_declaration] = STATE(579), [sym_statement_block] = STATE(7), [sym_if_statement] = STATE(7), [sym_switch_statement] = STATE(7), @@ -12725,59 +12635,59 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_throw_statement] = STATE(7), [sym_empty_statement] = STATE(7), [sym_labeled_statement] = STATE(7), - [sym_parenthesized_expression] = STATE(764), - [sym__expression] = STATE(1265), - [sym_yield_expression] = STATE(1518), - [sym_object] = STATE(1435), - [sym_array] = STATE(1433), - [sym_class] = STATE(1498), - [sym_class_declaration] = STATE(598), - [sym_function] = STATE(1498), - [sym_function_declaration] = STATE(598), - [sym_generator_function] = STATE(1498), - [sym_generator_function_declaration] = STATE(598), - [sym_arrow_function] = STATE(1498), - [sym__call_signature] = STATE(3145), - [sym_call_expression] = STATE(1498), - [sym_new_expression] = STATE(1518), - [sym_await_expression] = STATE(1518), - [sym_member_expression] = STATE(764), - [sym_subscript_expression] = STATE(764), - [sym_assignment_expression] = STATE(1518), - [sym__augmented_assignment_lhs] = STATE(1925), - [sym_augmented_assignment_expression] = STATE(1518), - [sym_ternary_expression] = STATE(1518), - [sym_binary_expression] = STATE(1518), - [sym_unary_expression] = STATE(1518), - [sym_update_expression] = STATE(1518), - [sym_sequence_expression] = STATE(2844), - [sym_string] = STATE(1498), - [sym_template_string] = STATE(1498), - [sym_regex] = STATE(1498), - [sym_meta_property] = STATE(1498), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(772), - [sym_function_signature] = STATE(598), - [sym_type_assertion] = STATE(1518), - [sym_as_expression] = STATE(1518), - [sym_ambient_declaration] = STATE(598), - [sym_abstract_class_declaration] = STATE(598), - [sym_module] = STATE(598), - [sym_internal_module] = STATE(92), - [sym_import_alias] = STATE(598), - [sym_interface_declaration] = STATE(598), - [sym_enum_declaration] = STATE(598), - [sym_type_alias_declaration] = STATE(598), - [sym_type_arguments] = STATE(349), - [sym_type_parameters] = STATE(2850), + [sym_parenthesized_expression] = STATE(768), + [sym__expression] = STATE(1211), + [sym_yield_expression] = STATE(1567), + [sym_object] = STATE(1357), + [sym_array] = STATE(1360), + [sym_class] = STATE(1523), + [sym_class_declaration] = STATE(579), + [sym_function] = STATE(1523), + [sym_function_declaration] = STATE(579), + [sym_generator_function] = STATE(1523), + [sym_generator_function_declaration] = STATE(579), + [sym_arrow_function] = STATE(1523), + [sym__call_signature] = STATE(3196), + [sym_call_expression] = STATE(1523), + [sym_new_expression] = STATE(1567), + [sym_await_expression] = STATE(1567), + [sym_member_expression] = STATE(768), + [sym_subscript_expression] = STATE(768), + [sym_assignment_expression] = STATE(1567), + [sym__augmented_assignment_lhs] = STATE(1928), + [sym_augmented_assignment_expression] = STATE(1567), + [sym_ternary_expression] = STATE(1567), + [sym_binary_expression] = STATE(1567), + [sym_unary_expression] = STATE(1567), + [sym_update_expression] = STATE(1567), + [sym_sequence_expression] = STATE(2826), + [sym_string] = STATE(1523), + [sym_template_string] = STATE(1523), + [sym_regex] = STATE(1523), + [sym_meta_property] = STATE(1523), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(774), + [sym_function_signature] = STATE(579), + [sym_type_assertion] = STATE(1567), + [sym_as_expression] = STATE(1567), + [sym_ambient_declaration] = STATE(579), + [sym_abstract_class_declaration] = STATE(579), + [sym_module] = STATE(579), + [sym_internal_module] = STATE(86), + [sym_import_alias] = STATE(579), + [sym_interface_declaration] = STATE(579), + [sym_enum_declaration] = STATE(579), + [sym_type_alias_declaration] = STATE(579), + [sym_type_arguments] = STATE(292), + [sym_type_parameters] = STATE(2827), [aux_sym_program_repeat1] = STATE(7), - [aux_sym_export_statement_repeat1] = STATE(2286), + [aux_sym_export_statement_repeat1] = STATE(2247), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_namespace] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(383), + [anon_sym_RBRACE] = ACTIONS(381), [anon_sym_type] = ACTIONS(17), [anon_sym_typeof] = ACTIONS(19), [anon_sym_import] = ACTIONS(21), @@ -12845,14 +12755,14 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(103), [sym_readonly] = ACTIONS(93), }, - [25] = { + [24] = { [sym_export_statement] = STATE(27), [sym__declaration] = STATE(27), - [sym_import] = STATE(1498), + [sym_import] = STATE(1523), [sym_import_statement] = STATE(27), [sym_expression_statement] = STATE(27), - [sym_variable_declaration] = STATE(598), - [sym_lexical_declaration] = STATE(598), + [sym_variable_declaration] = STATE(579), + [sym_lexical_declaration] = STATE(579), [sym_statement_block] = STATE(27), [sym_if_statement] = STATE(27), [sym_switch_statement] = STATE(27), @@ -12869,59 +12779,59 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_throw_statement] = STATE(27), [sym_empty_statement] = STATE(27), [sym_labeled_statement] = STATE(27), - [sym_parenthesized_expression] = STATE(764), - [sym__expression] = STATE(1265), - [sym_yield_expression] = STATE(1518), - [sym_object] = STATE(1435), - [sym_array] = STATE(1433), - [sym_class] = STATE(1498), - [sym_class_declaration] = STATE(598), - [sym_function] = STATE(1498), - [sym_function_declaration] = STATE(598), - [sym_generator_function] = STATE(1498), - [sym_generator_function_declaration] = STATE(598), - [sym_arrow_function] = STATE(1498), - [sym__call_signature] = STATE(3145), - [sym_call_expression] = STATE(1498), - [sym_new_expression] = STATE(1518), - [sym_await_expression] = STATE(1518), - [sym_member_expression] = STATE(764), - [sym_subscript_expression] = STATE(764), - [sym_assignment_expression] = STATE(1518), - [sym__augmented_assignment_lhs] = STATE(1925), - [sym_augmented_assignment_expression] = STATE(1518), - [sym_ternary_expression] = STATE(1518), - [sym_binary_expression] = STATE(1518), - [sym_unary_expression] = STATE(1518), - [sym_update_expression] = STATE(1518), - [sym_sequence_expression] = STATE(2844), - [sym_string] = STATE(1498), - [sym_template_string] = STATE(1498), - [sym_regex] = STATE(1498), - [sym_meta_property] = STATE(1498), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(772), - [sym_function_signature] = STATE(598), - [sym_type_assertion] = STATE(1518), - [sym_as_expression] = STATE(1518), - [sym_ambient_declaration] = STATE(598), - [sym_abstract_class_declaration] = STATE(598), - [sym_module] = STATE(598), - [sym_internal_module] = STATE(92), - [sym_import_alias] = STATE(598), - [sym_interface_declaration] = STATE(598), - [sym_enum_declaration] = STATE(598), - [sym_type_alias_declaration] = STATE(598), - [sym_type_arguments] = STATE(349), - [sym_type_parameters] = STATE(2850), + [sym_parenthesized_expression] = STATE(768), + [sym__expression] = STATE(1211), + [sym_yield_expression] = STATE(1567), + [sym_object] = STATE(1357), + [sym_array] = STATE(1360), + [sym_class] = STATE(1523), + [sym_class_declaration] = STATE(579), + [sym_function] = STATE(1523), + [sym_function_declaration] = STATE(579), + [sym_generator_function] = STATE(1523), + [sym_generator_function_declaration] = STATE(579), + [sym_arrow_function] = STATE(1523), + [sym__call_signature] = STATE(3196), + [sym_call_expression] = STATE(1523), + [sym_new_expression] = STATE(1567), + [sym_await_expression] = STATE(1567), + [sym_member_expression] = STATE(768), + [sym_subscript_expression] = STATE(768), + [sym_assignment_expression] = STATE(1567), + [sym__augmented_assignment_lhs] = STATE(1928), + [sym_augmented_assignment_expression] = STATE(1567), + [sym_ternary_expression] = STATE(1567), + [sym_binary_expression] = STATE(1567), + [sym_unary_expression] = STATE(1567), + [sym_update_expression] = STATE(1567), + [sym_sequence_expression] = STATE(2826), + [sym_string] = STATE(1523), + [sym_template_string] = STATE(1523), + [sym_regex] = STATE(1523), + [sym_meta_property] = STATE(1523), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(774), + [sym_function_signature] = STATE(579), + [sym_type_assertion] = STATE(1567), + [sym_as_expression] = STATE(1567), + [sym_ambient_declaration] = STATE(579), + [sym_abstract_class_declaration] = STATE(579), + [sym_module] = STATE(579), + [sym_internal_module] = STATE(86), + [sym_import_alias] = STATE(579), + [sym_interface_declaration] = STATE(579), + [sym_enum_declaration] = STATE(579), + [sym_type_alias_declaration] = STATE(579), + [sym_type_arguments] = STATE(292), + [sym_type_parameters] = STATE(2827), [aux_sym_program_repeat1] = STATE(27), - [aux_sym_export_statement_repeat1] = STATE(2286), + [aux_sym_export_statement_repeat1] = STATE(2247), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_namespace] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(385), + [anon_sym_RBRACE] = ACTIONS(383), [anon_sym_type] = ACTIONS(17), [anon_sym_typeof] = ACTIONS(19), [anon_sym_import] = ACTIONS(21), @@ -12989,83 +12899,83 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(103), [sym_readonly] = ACTIONS(93), }, - [26] = { - [sym_export_statement] = STATE(14), - [sym__declaration] = STATE(14), - [sym_import] = STATE(1498), - [sym_import_statement] = STATE(14), - [sym_expression_statement] = STATE(14), - [sym_variable_declaration] = STATE(598), - [sym_lexical_declaration] = STATE(598), - [sym_statement_block] = STATE(14), - [sym_if_statement] = STATE(14), - [sym_switch_statement] = STATE(14), - [sym_for_statement] = STATE(14), - [sym_for_in_statement] = STATE(14), - [sym_while_statement] = STATE(14), - [sym_do_statement] = STATE(14), - [sym_try_statement] = STATE(14), - [sym_with_statement] = STATE(14), - [sym_break_statement] = STATE(14), - [sym_continue_statement] = STATE(14), - [sym_debugger_statement] = STATE(14), - [sym_return_statement] = STATE(14), - [sym_throw_statement] = STATE(14), - [sym_empty_statement] = STATE(14), - [sym_labeled_statement] = STATE(14), - [sym_parenthesized_expression] = STATE(764), - [sym__expression] = STATE(1265), - [sym_yield_expression] = STATE(1518), - [sym_object] = STATE(1435), - [sym_array] = STATE(1433), - [sym_class] = STATE(1498), - [sym_class_declaration] = STATE(598), - [sym_function] = STATE(1498), - [sym_function_declaration] = STATE(598), - [sym_generator_function] = STATE(1498), - [sym_generator_function_declaration] = STATE(598), - [sym_arrow_function] = STATE(1498), - [sym__call_signature] = STATE(3145), - [sym_call_expression] = STATE(1498), - [sym_new_expression] = STATE(1518), - [sym_await_expression] = STATE(1518), - [sym_member_expression] = STATE(764), - [sym_subscript_expression] = STATE(764), - [sym_assignment_expression] = STATE(1518), - [sym__augmented_assignment_lhs] = STATE(1925), - [sym_augmented_assignment_expression] = STATE(1518), - [sym_ternary_expression] = STATE(1518), - [sym_binary_expression] = STATE(1518), - [sym_unary_expression] = STATE(1518), - [sym_update_expression] = STATE(1518), - [sym_sequence_expression] = STATE(2844), - [sym_string] = STATE(1498), - [sym_template_string] = STATE(1498), - [sym_regex] = STATE(1498), - [sym_meta_property] = STATE(1498), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(772), - [sym_function_signature] = STATE(598), - [sym_type_assertion] = STATE(1518), - [sym_as_expression] = STATE(1518), - [sym_ambient_declaration] = STATE(598), - [sym_abstract_class_declaration] = STATE(598), - [sym_module] = STATE(598), - [sym_internal_module] = STATE(92), - [sym_import_alias] = STATE(598), - [sym_interface_declaration] = STATE(598), - [sym_enum_declaration] = STATE(598), - [sym_type_alias_declaration] = STATE(598), - [sym_type_arguments] = STATE(349), - [sym_type_parameters] = STATE(2850), - [aux_sym_program_repeat1] = STATE(14), - [aux_sym_export_statement_repeat1] = STATE(2286), + [25] = { + [sym_export_statement] = STATE(7), + [sym__declaration] = STATE(7), + [sym_import] = STATE(1523), + [sym_import_statement] = STATE(7), + [sym_expression_statement] = STATE(7), + [sym_variable_declaration] = STATE(579), + [sym_lexical_declaration] = STATE(579), + [sym_statement_block] = STATE(7), + [sym_if_statement] = STATE(7), + [sym_switch_statement] = STATE(7), + [sym_for_statement] = STATE(7), + [sym_for_in_statement] = STATE(7), + [sym_while_statement] = STATE(7), + [sym_do_statement] = STATE(7), + [sym_try_statement] = STATE(7), + [sym_with_statement] = STATE(7), + [sym_break_statement] = STATE(7), + [sym_continue_statement] = STATE(7), + [sym_debugger_statement] = STATE(7), + [sym_return_statement] = STATE(7), + [sym_throw_statement] = STATE(7), + [sym_empty_statement] = STATE(7), + [sym_labeled_statement] = STATE(7), + [sym_parenthesized_expression] = STATE(768), + [sym__expression] = STATE(1211), + [sym_yield_expression] = STATE(1567), + [sym_object] = STATE(1357), + [sym_array] = STATE(1360), + [sym_class] = STATE(1523), + [sym_class_declaration] = STATE(579), + [sym_function] = STATE(1523), + [sym_function_declaration] = STATE(579), + [sym_generator_function] = STATE(1523), + [sym_generator_function_declaration] = STATE(579), + [sym_arrow_function] = STATE(1523), + [sym__call_signature] = STATE(3196), + [sym_call_expression] = STATE(1523), + [sym_new_expression] = STATE(1567), + [sym_await_expression] = STATE(1567), + [sym_member_expression] = STATE(768), + [sym_subscript_expression] = STATE(768), + [sym_assignment_expression] = STATE(1567), + [sym__augmented_assignment_lhs] = STATE(1928), + [sym_augmented_assignment_expression] = STATE(1567), + [sym_ternary_expression] = STATE(1567), + [sym_binary_expression] = STATE(1567), + [sym_unary_expression] = STATE(1567), + [sym_update_expression] = STATE(1567), + [sym_sequence_expression] = STATE(2826), + [sym_string] = STATE(1523), + [sym_template_string] = STATE(1523), + [sym_regex] = STATE(1523), + [sym_meta_property] = STATE(1523), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(774), + [sym_function_signature] = STATE(579), + [sym_type_assertion] = STATE(1567), + [sym_as_expression] = STATE(1567), + [sym_ambient_declaration] = STATE(579), + [sym_abstract_class_declaration] = STATE(579), + [sym_module] = STATE(579), + [sym_internal_module] = STATE(86), + [sym_import_alias] = STATE(579), + [sym_interface_declaration] = STATE(579), + [sym_enum_declaration] = STATE(579), + [sym_type_alias_declaration] = STATE(579), + [sym_type_arguments] = STATE(292), + [sym_type_parameters] = STATE(2827), + [aux_sym_program_repeat1] = STATE(7), + [aux_sym_export_statement_repeat1] = STATE(2247), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_namespace] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(387), + [anon_sym_RBRACE] = ACTIONS(385), [anon_sym_type] = ACTIONS(17), [anon_sym_typeof] = ACTIONS(19), [anon_sym_import] = ACTIONS(21), @@ -13133,83 +13043,83 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(103), [sym_readonly] = ACTIONS(93), }, - [27] = { - [sym_export_statement] = STATE(7), - [sym__declaration] = STATE(7), - [sym_import] = STATE(1498), - [sym_import_statement] = STATE(7), - [sym_expression_statement] = STATE(7), - [sym_variable_declaration] = STATE(598), - [sym_lexical_declaration] = STATE(598), - [sym_statement_block] = STATE(7), - [sym_if_statement] = STATE(7), - [sym_switch_statement] = STATE(7), - [sym_for_statement] = STATE(7), - [sym_for_in_statement] = STATE(7), - [sym_while_statement] = STATE(7), - [sym_do_statement] = STATE(7), - [sym_try_statement] = STATE(7), - [sym_with_statement] = STATE(7), - [sym_break_statement] = STATE(7), - [sym_continue_statement] = STATE(7), - [sym_debugger_statement] = STATE(7), - [sym_return_statement] = STATE(7), - [sym_throw_statement] = STATE(7), - [sym_empty_statement] = STATE(7), - [sym_labeled_statement] = STATE(7), - [sym_parenthesized_expression] = STATE(764), - [sym__expression] = STATE(1265), - [sym_yield_expression] = STATE(1518), - [sym_object] = STATE(1435), - [sym_array] = STATE(1433), - [sym_class] = STATE(1498), - [sym_class_declaration] = STATE(598), - [sym_function] = STATE(1498), - [sym_function_declaration] = STATE(598), - [sym_generator_function] = STATE(1498), - [sym_generator_function_declaration] = STATE(598), - [sym_arrow_function] = STATE(1498), - [sym__call_signature] = STATE(3145), - [sym_call_expression] = STATE(1498), - [sym_new_expression] = STATE(1518), - [sym_await_expression] = STATE(1518), - [sym_member_expression] = STATE(764), - [sym_subscript_expression] = STATE(764), - [sym_assignment_expression] = STATE(1518), - [sym__augmented_assignment_lhs] = STATE(1925), - [sym_augmented_assignment_expression] = STATE(1518), - [sym_ternary_expression] = STATE(1518), - [sym_binary_expression] = STATE(1518), - [sym_unary_expression] = STATE(1518), - [sym_update_expression] = STATE(1518), - [sym_sequence_expression] = STATE(2844), - [sym_string] = STATE(1498), - [sym_template_string] = STATE(1498), - [sym_regex] = STATE(1498), - [sym_meta_property] = STATE(1498), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(772), - [sym_function_signature] = STATE(598), - [sym_type_assertion] = STATE(1518), - [sym_as_expression] = STATE(1518), - [sym_ambient_declaration] = STATE(598), - [sym_abstract_class_declaration] = STATE(598), - [sym_module] = STATE(598), - [sym_internal_module] = STATE(92), - [sym_import_alias] = STATE(598), - [sym_interface_declaration] = STATE(598), - [sym_enum_declaration] = STATE(598), - [sym_type_alias_declaration] = STATE(598), - [sym_type_arguments] = STATE(349), - [sym_type_parameters] = STATE(2850), - [aux_sym_program_repeat1] = STATE(7), - [aux_sym_export_statement_repeat1] = STATE(2286), + [26] = { + [sym_export_statement] = STATE(17), + [sym__declaration] = STATE(17), + [sym_import] = STATE(1523), + [sym_import_statement] = STATE(17), + [sym_expression_statement] = STATE(17), + [sym_variable_declaration] = STATE(579), + [sym_lexical_declaration] = STATE(579), + [sym_statement_block] = STATE(17), + [sym_if_statement] = STATE(17), + [sym_switch_statement] = STATE(17), + [sym_for_statement] = STATE(17), + [sym_for_in_statement] = STATE(17), + [sym_while_statement] = STATE(17), + [sym_do_statement] = STATE(17), + [sym_try_statement] = STATE(17), + [sym_with_statement] = STATE(17), + [sym_break_statement] = STATE(17), + [sym_continue_statement] = STATE(17), + [sym_debugger_statement] = STATE(17), + [sym_return_statement] = STATE(17), + [sym_throw_statement] = STATE(17), + [sym_empty_statement] = STATE(17), + [sym_labeled_statement] = STATE(17), + [sym_parenthesized_expression] = STATE(768), + [sym__expression] = STATE(1211), + [sym_yield_expression] = STATE(1567), + [sym_object] = STATE(1357), + [sym_array] = STATE(1360), + [sym_class] = STATE(1523), + [sym_class_declaration] = STATE(579), + [sym_function] = STATE(1523), + [sym_function_declaration] = STATE(579), + [sym_generator_function] = STATE(1523), + [sym_generator_function_declaration] = STATE(579), + [sym_arrow_function] = STATE(1523), + [sym__call_signature] = STATE(3196), + [sym_call_expression] = STATE(1523), + [sym_new_expression] = STATE(1567), + [sym_await_expression] = STATE(1567), + [sym_member_expression] = STATE(768), + [sym_subscript_expression] = STATE(768), + [sym_assignment_expression] = STATE(1567), + [sym__augmented_assignment_lhs] = STATE(1928), + [sym_augmented_assignment_expression] = STATE(1567), + [sym_ternary_expression] = STATE(1567), + [sym_binary_expression] = STATE(1567), + [sym_unary_expression] = STATE(1567), + [sym_update_expression] = STATE(1567), + [sym_sequence_expression] = STATE(2826), + [sym_string] = STATE(1523), + [sym_template_string] = STATE(1523), + [sym_regex] = STATE(1523), + [sym_meta_property] = STATE(1523), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(774), + [sym_function_signature] = STATE(579), + [sym_type_assertion] = STATE(1567), + [sym_as_expression] = STATE(1567), + [sym_ambient_declaration] = STATE(579), + [sym_abstract_class_declaration] = STATE(579), + [sym_module] = STATE(579), + [sym_internal_module] = STATE(86), + [sym_import_alias] = STATE(579), + [sym_interface_declaration] = STATE(579), + [sym_enum_declaration] = STATE(579), + [sym_type_alias_declaration] = STATE(579), + [sym_type_arguments] = STATE(292), + [sym_type_parameters] = STATE(2827), + [aux_sym_program_repeat1] = STATE(17), + [aux_sym_export_statement_repeat1] = STATE(2247), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_namespace] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(389), + [anon_sym_RBRACE] = ACTIONS(387), [anon_sym_type] = ACTIONS(17), [anon_sym_typeof] = ACTIONS(19), [anon_sym_import] = ACTIONS(21), @@ -13277,14 +13187,14 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(103), [sym_readonly] = ACTIONS(93), }, - [28] = { + [27] = { [sym_export_statement] = STATE(7), [sym__declaration] = STATE(7), - [sym_import] = STATE(1498), + [sym_import] = STATE(1523), [sym_import_statement] = STATE(7), [sym_expression_statement] = STATE(7), - [sym_variable_declaration] = STATE(598), - [sym_lexical_declaration] = STATE(598), + [sym_variable_declaration] = STATE(579), + [sym_lexical_declaration] = STATE(579), [sym_statement_block] = STATE(7), [sym_if_statement] = STATE(7), [sym_switch_statement] = STATE(7), @@ -13301,59 +13211,59 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_throw_statement] = STATE(7), [sym_empty_statement] = STATE(7), [sym_labeled_statement] = STATE(7), - [sym_parenthesized_expression] = STATE(764), - [sym__expression] = STATE(1265), - [sym_yield_expression] = STATE(1518), - [sym_object] = STATE(1435), - [sym_array] = STATE(1433), - [sym_class] = STATE(1498), - [sym_class_declaration] = STATE(598), - [sym_function] = STATE(1498), - [sym_function_declaration] = STATE(598), - [sym_generator_function] = STATE(1498), - [sym_generator_function_declaration] = STATE(598), - [sym_arrow_function] = STATE(1498), - [sym__call_signature] = STATE(3145), - [sym_call_expression] = STATE(1498), - [sym_new_expression] = STATE(1518), - [sym_await_expression] = STATE(1518), - [sym_member_expression] = STATE(764), - [sym_subscript_expression] = STATE(764), - [sym_assignment_expression] = STATE(1518), - [sym__augmented_assignment_lhs] = STATE(1925), - [sym_augmented_assignment_expression] = STATE(1518), - [sym_ternary_expression] = STATE(1518), - [sym_binary_expression] = STATE(1518), - [sym_unary_expression] = STATE(1518), - [sym_update_expression] = STATE(1518), - [sym_sequence_expression] = STATE(2844), - [sym_string] = STATE(1498), - [sym_template_string] = STATE(1498), - [sym_regex] = STATE(1498), - [sym_meta_property] = STATE(1498), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(772), - [sym_function_signature] = STATE(598), - [sym_type_assertion] = STATE(1518), - [sym_as_expression] = STATE(1518), - [sym_ambient_declaration] = STATE(598), - [sym_abstract_class_declaration] = STATE(598), - [sym_module] = STATE(598), - [sym_internal_module] = STATE(92), - [sym_import_alias] = STATE(598), - [sym_interface_declaration] = STATE(598), - [sym_enum_declaration] = STATE(598), - [sym_type_alias_declaration] = STATE(598), - [sym_type_arguments] = STATE(349), - [sym_type_parameters] = STATE(2850), + [sym_parenthesized_expression] = STATE(768), + [sym__expression] = STATE(1211), + [sym_yield_expression] = STATE(1567), + [sym_object] = STATE(1357), + [sym_array] = STATE(1360), + [sym_class] = STATE(1523), + [sym_class_declaration] = STATE(579), + [sym_function] = STATE(1523), + [sym_function_declaration] = STATE(579), + [sym_generator_function] = STATE(1523), + [sym_generator_function_declaration] = STATE(579), + [sym_arrow_function] = STATE(1523), + [sym__call_signature] = STATE(3196), + [sym_call_expression] = STATE(1523), + [sym_new_expression] = STATE(1567), + [sym_await_expression] = STATE(1567), + [sym_member_expression] = STATE(768), + [sym_subscript_expression] = STATE(768), + [sym_assignment_expression] = STATE(1567), + [sym__augmented_assignment_lhs] = STATE(1928), + [sym_augmented_assignment_expression] = STATE(1567), + [sym_ternary_expression] = STATE(1567), + [sym_binary_expression] = STATE(1567), + [sym_unary_expression] = STATE(1567), + [sym_update_expression] = STATE(1567), + [sym_sequence_expression] = STATE(2826), + [sym_string] = STATE(1523), + [sym_template_string] = STATE(1523), + [sym_regex] = STATE(1523), + [sym_meta_property] = STATE(1523), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(774), + [sym_function_signature] = STATE(579), + [sym_type_assertion] = STATE(1567), + [sym_as_expression] = STATE(1567), + [sym_ambient_declaration] = STATE(579), + [sym_abstract_class_declaration] = STATE(579), + [sym_module] = STATE(579), + [sym_internal_module] = STATE(86), + [sym_import_alias] = STATE(579), + [sym_interface_declaration] = STATE(579), + [sym_enum_declaration] = STATE(579), + [sym_type_alias_declaration] = STATE(579), + [sym_type_arguments] = STATE(292), + [sym_type_parameters] = STATE(2827), [aux_sym_program_repeat1] = STATE(7), - [aux_sym_export_statement_repeat1] = STATE(2286), + [aux_sym_export_statement_repeat1] = STATE(2247), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_namespace] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(391), + [anon_sym_RBRACE] = ACTIONS(389), [anon_sym_type] = ACTIONS(17), [anon_sym_typeof] = ACTIONS(19), [anon_sym_import] = ACTIONS(21), @@ -13421,97 +13331,99 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(103), [sym_readonly] = ACTIONS(93), }, - [29] = { - [sym_export_statement] = STATE(570), - [sym__declaration] = STATE(570), - [sym_import] = STATE(1498), - [sym_import_statement] = STATE(570), - [sym_expression_statement] = STATE(570), - [sym_variable_declaration] = STATE(598), - [sym_lexical_declaration] = STATE(598), - [sym_statement_block] = STATE(570), - [sym_if_statement] = STATE(570), - [sym_switch_statement] = STATE(570), - [sym_for_statement] = STATE(570), - [sym_for_in_statement] = STATE(570), - [sym_while_statement] = STATE(570), - [sym_do_statement] = STATE(570), - [sym_try_statement] = STATE(570), - [sym_with_statement] = STATE(570), - [sym_break_statement] = STATE(570), - [sym_continue_statement] = STATE(570), - [sym_debugger_statement] = STATE(570), - [sym_return_statement] = STATE(570), - [sym_throw_statement] = STATE(570), - [sym_empty_statement] = STATE(570), - [sym_labeled_statement] = STATE(570), - [sym_parenthesized_expression] = STATE(764), - [sym__expression] = STATE(1265), - [sym_yield_expression] = STATE(1518), - [sym_object] = STATE(1435), - [sym_array] = STATE(1433), - [sym_class] = STATE(1498), - [sym_class_declaration] = STATE(598), - [sym_function] = STATE(1498), - [sym_function_declaration] = STATE(598), - [sym_generator_function] = STATE(1498), - [sym_generator_function_declaration] = STATE(598), - [sym_arrow_function] = STATE(1498), - [sym__call_signature] = STATE(3145), - [sym_call_expression] = STATE(1498), - [sym_new_expression] = STATE(1518), - [sym_await_expression] = STATE(1518), - [sym_member_expression] = STATE(764), - [sym_subscript_expression] = STATE(764), - [sym_assignment_expression] = STATE(1518), - [sym__augmented_assignment_lhs] = STATE(1925), - [sym_augmented_assignment_expression] = STATE(1518), - [sym_ternary_expression] = STATE(1518), - [sym_binary_expression] = STATE(1518), - [sym_unary_expression] = STATE(1518), - [sym_update_expression] = STATE(1518), - [sym_sequence_expression] = STATE(2844), - [sym_string] = STATE(1498), - [sym_template_string] = STATE(1498), - [sym_regex] = STATE(1498), - [sym_meta_property] = STATE(1498), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(772), - [sym_function_signature] = STATE(598), - [sym_type_assertion] = STATE(1518), - [sym_as_expression] = STATE(1518), - [sym_ambient_declaration] = STATE(598), - [sym_abstract_class_declaration] = STATE(598), - [sym_module] = STATE(598), - [sym_internal_module] = STATE(1363), - [sym_import_alias] = STATE(598), - [sym_interface_declaration] = STATE(598), - [sym_enum_declaration] = STATE(598), - [sym_type_alias_declaration] = STATE(598), - [sym_type_arguments] = STATE(349), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2326), - [sym_identifier] = ACTIONS(393), - [anon_sym_export] = ACTIONS(395), - [anon_sym_namespace] = ACTIONS(397), - [anon_sym_LBRACE] = ACTIONS(399), - [anon_sym_type] = ACTIONS(401), + [28] = { + [sym_export_statement] = STATE(23), + [sym__declaration] = STATE(23), + [sym_import] = STATE(1523), + [sym_import_statement] = STATE(23), + [sym_expression_statement] = STATE(23), + [sym_variable_declaration] = STATE(579), + [sym_lexical_declaration] = STATE(579), + [sym_statement_block] = STATE(23), + [sym_if_statement] = STATE(23), + [sym_switch_statement] = STATE(23), + [sym_for_statement] = STATE(23), + [sym_for_in_statement] = STATE(23), + [sym_while_statement] = STATE(23), + [sym_do_statement] = STATE(23), + [sym_try_statement] = STATE(23), + [sym_with_statement] = STATE(23), + [sym_break_statement] = STATE(23), + [sym_continue_statement] = STATE(23), + [sym_debugger_statement] = STATE(23), + [sym_return_statement] = STATE(23), + [sym_throw_statement] = STATE(23), + [sym_empty_statement] = STATE(23), + [sym_labeled_statement] = STATE(23), + [sym_parenthesized_expression] = STATE(768), + [sym__expression] = STATE(1211), + [sym_yield_expression] = STATE(1567), + [sym_object] = STATE(1357), + [sym_array] = STATE(1360), + [sym_class] = STATE(1523), + [sym_class_declaration] = STATE(579), + [sym_function] = STATE(1523), + [sym_function_declaration] = STATE(579), + [sym_generator_function] = STATE(1523), + [sym_generator_function_declaration] = STATE(579), + [sym_arrow_function] = STATE(1523), + [sym__call_signature] = STATE(3196), + [sym_call_expression] = STATE(1523), + [sym_new_expression] = STATE(1567), + [sym_await_expression] = STATE(1567), + [sym_member_expression] = STATE(768), + [sym_subscript_expression] = STATE(768), + [sym_assignment_expression] = STATE(1567), + [sym__augmented_assignment_lhs] = STATE(1928), + [sym_augmented_assignment_expression] = STATE(1567), + [sym_ternary_expression] = STATE(1567), + [sym_binary_expression] = STATE(1567), + [sym_unary_expression] = STATE(1567), + [sym_update_expression] = STATE(1567), + [sym_sequence_expression] = STATE(2826), + [sym_string] = STATE(1523), + [sym_template_string] = STATE(1523), + [sym_regex] = STATE(1523), + [sym_meta_property] = STATE(1523), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(774), + [sym_function_signature] = STATE(579), + [sym_type_assertion] = STATE(1567), + [sym_as_expression] = STATE(1567), + [sym_ambient_declaration] = STATE(579), + [sym_abstract_class_declaration] = STATE(579), + [sym_module] = STATE(579), + [sym_internal_module] = STATE(86), + [sym_import_alias] = STATE(579), + [sym_interface_declaration] = STATE(579), + [sym_enum_declaration] = STATE(579), + [sym_type_alias_declaration] = STATE(579), + [sym_type_arguments] = STATE(292), + [sym_type_parameters] = STATE(2827), + [aux_sym_program_repeat1] = STATE(23), + [aux_sym_export_statement_repeat1] = STATE(2247), + [sym_identifier] = ACTIONS(7), + [anon_sym_export] = ACTIONS(11), + [anon_sym_namespace] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_RBRACE] = ACTIONS(391), + [anon_sym_type] = ACTIONS(17), [anon_sym_typeof] = ACTIONS(19), [anon_sym_import] = ACTIONS(21), [anon_sym_var] = ACTIONS(23), [anon_sym_let] = ACTIONS(25), [anon_sym_const] = ACTIONS(27), [anon_sym_BANG] = ACTIONS(29), - [anon_sym_if] = ACTIONS(403), + [anon_sym_if] = ACTIONS(31), [anon_sym_switch] = ACTIONS(33), - [anon_sym_for] = ACTIONS(405), + [anon_sym_for] = ACTIONS(35), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_await] = ACTIONS(39), - [anon_sym_while] = ACTIONS(407), + [anon_sym_while] = ACTIONS(41), [anon_sym_do] = ACTIONS(43), [anon_sym_try] = ACTIONS(45), - [anon_sym_with] = ACTIONS(409), + [anon_sym_with] = ACTIONS(47), [anon_sym_break] = ACTIONS(49), [anon_sym_continue] = ACTIONS(51), [anon_sym_debugger] = ACTIONS(53), @@ -13522,9 +13434,9 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(411), - [anon_sym_async] = ACTIONS(413), - [anon_sym_function] = ACTIONS(415), + [anon_sym_class] = ACTIONS(69), + [anon_sym_async] = ACTIONS(71), + [anon_sym_function] = ACTIONS(73), [anon_sym_new] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(77), [anon_sym_DASH] = ACTIONS(77), @@ -13545,115 +13457,115 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(417), + [anon_sym_static] = ACTIONS(93), [anon_sym_abstract] = ACTIONS(95), - [anon_sym_get] = ACTIONS(417), - [anon_sym_set] = ACTIONS(417), - [anon_sym_declare] = ACTIONS(419), - [anon_sym_public] = ACTIONS(417), - [anon_sym_private] = ACTIONS(417), - [anon_sym_protected] = ACTIONS(417), - [anon_sym_module] = ACTIONS(421), - [anon_sym_any] = ACTIONS(417), - [anon_sym_number] = ACTIONS(417), - [anon_sym_boolean] = ACTIONS(417), - [anon_sym_string] = ACTIONS(417), - [anon_sym_symbol] = ACTIONS(417), + [anon_sym_get] = ACTIONS(93), + [anon_sym_set] = ACTIONS(93), + [anon_sym_declare] = ACTIONS(97), + [anon_sym_public] = ACTIONS(93), + [anon_sym_private] = ACTIONS(93), + [anon_sym_protected] = ACTIONS(93), + [anon_sym_module] = ACTIONS(99), + [anon_sym_any] = ACTIONS(93), + [anon_sym_number] = ACTIONS(93), + [anon_sym_boolean] = ACTIONS(93), + [anon_sym_string] = ACTIONS(93), + [anon_sym_symbol] = ACTIONS(93), [anon_sym_interface] = ACTIONS(101), [anon_sym_enum] = ACTIONS(103), - [sym_readonly] = ACTIONS(417), + [sym_readonly] = ACTIONS(93), }, - [30] = { - [sym_export_statement] = STATE(570), - [sym__declaration] = STATE(570), - [sym_import] = STATE(1498), - [sym_import_statement] = STATE(570), - [sym_expression_statement] = STATE(570), - [sym_variable_declaration] = STATE(598), - [sym_lexical_declaration] = STATE(598), - [sym_statement_block] = STATE(570), - [sym_if_statement] = STATE(570), - [sym_switch_statement] = STATE(570), - [sym_for_statement] = STATE(570), - [sym_for_in_statement] = STATE(570), - [sym_while_statement] = STATE(570), - [sym_do_statement] = STATE(570), - [sym_try_statement] = STATE(570), - [sym_with_statement] = STATE(570), - [sym_break_statement] = STATE(570), - [sym_continue_statement] = STATE(570), - [sym_debugger_statement] = STATE(570), - [sym_return_statement] = STATE(570), - [sym_throw_statement] = STATE(570), - [sym_empty_statement] = STATE(570), - [sym_labeled_statement] = STATE(570), - [sym_parenthesized_expression] = STATE(764), - [sym__expression] = STATE(1265), - [sym_yield_expression] = STATE(1518), - [sym_object] = STATE(1435), - [sym_array] = STATE(1433), - [sym_class] = STATE(1498), - [sym_class_declaration] = STATE(598), - [sym_function] = STATE(1498), - [sym_function_declaration] = STATE(598), - [sym_generator_function] = STATE(1498), - [sym_generator_function_declaration] = STATE(598), - [sym_arrow_function] = STATE(1498), - [sym__call_signature] = STATE(3145), - [sym_call_expression] = STATE(1498), - [sym_new_expression] = STATE(1518), - [sym_await_expression] = STATE(1518), - [sym_member_expression] = STATE(764), - [sym_subscript_expression] = STATE(764), - [sym_assignment_expression] = STATE(1518), - [sym__augmented_assignment_lhs] = STATE(1925), - [sym_augmented_assignment_expression] = STATE(1518), - [sym_ternary_expression] = STATE(1518), - [sym_binary_expression] = STATE(1518), - [sym_unary_expression] = STATE(1518), - [sym_update_expression] = STATE(1518), - [sym_sequence_expression] = STATE(2844), - [sym_string] = STATE(1498), - [sym_template_string] = STATE(1498), - [sym_regex] = STATE(1498), - [sym_meta_property] = STATE(1498), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(772), - [sym_function_signature] = STATE(598), - [sym_type_assertion] = STATE(1518), - [sym_as_expression] = STATE(1518), - [sym_ambient_declaration] = STATE(598), - [sym_abstract_class_declaration] = STATE(598), - [sym_module] = STATE(598), - [sym_internal_module] = STATE(92), - [sym_import_alias] = STATE(598), - [sym_interface_declaration] = STATE(598), - [sym_enum_declaration] = STATE(598), - [sym_type_alias_declaration] = STATE(598), - [sym_type_arguments] = STATE(349), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2286), - [sym_identifier] = ACTIONS(7), - [anon_sym_export] = ACTIONS(11), - [anon_sym_namespace] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_type] = ACTIONS(17), + [29] = { + [sym_export_statement] = STATE(607), + [sym__declaration] = STATE(607), + [sym_import] = STATE(1523), + [sym_import_statement] = STATE(607), + [sym_expression_statement] = STATE(607), + [sym_variable_declaration] = STATE(579), + [sym_lexical_declaration] = STATE(579), + [sym_statement_block] = STATE(607), + [sym_if_statement] = STATE(607), + [sym_switch_statement] = STATE(607), + [sym_for_statement] = STATE(607), + [sym_for_in_statement] = STATE(607), + [sym_while_statement] = STATE(607), + [sym_do_statement] = STATE(607), + [sym_try_statement] = STATE(607), + [sym_with_statement] = STATE(607), + [sym_break_statement] = STATE(607), + [sym_continue_statement] = STATE(607), + [sym_debugger_statement] = STATE(607), + [sym_return_statement] = STATE(607), + [sym_throw_statement] = STATE(607), + [sym_empty_statement] = STATE(607), + [sym_labeled_statement] = STATE(607), + [sym_parenthesized_expression] = STATE(768), + [sym__expression] = STATE(1211), + [sym_yield_expression] = STATE(1567), + [sym_object] = STATE(1357), + [sym_array] = STATE(1360), + [sym_class] = STATE(1523), + [sym_class_declaration] = STATE(579), + [sym_function] = STATE(1523), + [sym_function_declaration] = STATE(579), + [sym_generator_function] = STATE(1523), + [sym_generator_function_declaration] = STATE(579), + [sym_arrow_function] = STATE(1523), + [sym__call_signature] = STATE(3196), + [sym_call_expression] = STATE(1523), + [sym_new_expression] = STATE(1567), + [sym_await_expression] = STATE(1567), + [sym_member_expression] = STATE(768), + [sym_subscript_expression] = STATE(768), + [sym_assignment_expression] = STATE(1567), + [sym__augmented_assignment_lhs] = STATE(1928), + [sym_augmented_assignment_expression] = STATE(1567), + [sym_ternary_expression] = STATE(1567), + [sym_binary_expression] = STATE(1567), + [sym_unary_expression] = STATE(1567), + [sym_update_expression] = STATE(1567), + [sym_sequence_expression] = STATE(2826), + [sym_string] = STATE(1523), + [sym_template_string] = STATE(1523), + [sym_regex] = STATE(1523), + [sym_meta_property] = STATE(1523), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(774), + [sym_function_signature] = STATE(579), + [sym_type_assertion] = STATE(1567), + [sym_as_expression] = STATE(1567), + [sym_ambient_declaration] = STATE(579), + [sym_abstract_class_declaration] = STATE(579), + [sym_module] = STATE(579), + [sym_internal_module] = STATE(1373), + [sym_import_alias] = STATE(579), + [sym_interface_declaration] = STATE(579), + [sym_enum_declaration] = STATE(579), + [sym_type_alias_declaration] = STATE(579), + [sym_type_arguments] = STATE(292), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2150), + [sym_identifier] = ACTIONS(393), + [anon_sym_export] = ACTIONS(395), + [anon_sym_namespace] = ACTIONS(397), + [anon_sym_LBRACE] = ACTIONS(399), + [anon_sym_type] = ACTIONS(401), [anon_sym_typeof] = ACTIONS(19), [anon_sym_import] = ACTIONS(21), [anon_sym_var] = ACTIONS(23), [anon_sym_let] = ACTIONS(25), [anon_sym_const] = ACTIONS(27), [anon_sym_BANG] = ACTIONS(29), - [anon_sym_if] = ACTIONS(31), + [anon_sym_if] = ACTIONS(403), [anon_sym_switch] = ACTIONS(33), - [anon_sym_for] = ACTIONS(35), + [anon_sym_for] = ACTIONS(405), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_await] = ACTIONS(39), - [anon_sym_while] = ACTIONS(41), + [anon_sym_while] = ACTIONS(407), [anon_sym_do] = ACTIONS(43), [anon_sym_try] = ACTIONS(45), - [anon_sym_with] = ACTIONS(47), + [anon_sym_with] = ACTIONS(409), [anon_sym_break] = ACTIONS(49), [anon_sym_continue] = ACTIONS(51), [anon_sym_debugger] = ACTIONS(53), @@ -13664,9 +13576,9 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(69), - [anon_sym_async] = ACTIONS(71), - [anon_sym_function] = ACTIONS(73), + [anon_sym_class] = ACTIONS(411), + [anon_sym_async] = ACTIONS(413), + [anon_sym_function] = ACTIONS(415), [anon_sym_new] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(77), [anon_sym_DASH] = ACTIONS(77), @@ -13687,95 +13599,95 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(93), + [anon_sym_static] = ACTIONS(417), [anon_sym_abstract] = ACTIONS(95), - [anon_sym_get] = ACTIONS(93), - [anon_sym_set] = ACTIONS(93), - [anon_sym_declare] = ACTIONS(97), - [anon_sym_public] = ACTIONS(93), - [anon_sym_private] = ACTIONS(93), - [anon_sym_protected] = ACTIONS(93), - [anon_sym_module] = ACTIONS(99), - [anon_sym_any] = ACTIONS(93), - [anon_sym_number] = ACTIONS(93), - [anon_sym_boolean] = ACTIONS(93), - [anon_sym_string] = ACTIONS(93), - [anon_sym_symbol] = ACTIONS(93), + [anon_sym_get] = ACTIONS(417), + [anon_sym_set] = ACTIONS(417), + [anon_sym_declare] = ACTIONS(419), + [anon_sym_public] = ACTIONS(417), + [anon_sym_private] = ACTIONS(417), + [anon_sym_protected] = ACTIONS(417), + [anon_sym_module] = ACTIONS(421), + [anon_sym_any] = ACTIONS(417), + [anon_sym_number] = ACTIONS(417), + [anon_sym_boolean] = ACTIONS(417), + [anon_sym_string] = ACTIONS(417), + [anon_sym_symbol] = ACTIONS(417), [anon_sym_interface] = ACTIONS(101), [anon_sym_enum] = ACTIONS(103), - [sym_readonly] = ACTIONS(93), + [sym_readonly] = ACTIONS(417), }, - [31] = { - [sym_export_statement] = STATE(556), - [sym__declaration] = STATE(556), - [sym_import] = STATE(1498), - [sym_import_statement] = STATE(556), - [sym_expression_statement] = STATE(556), - [sym_variable_declaration] = STATE(598), - [sym_lexical_declaration] = STATE(598), - [sym_statement_block] = STATE(556), - [sym_if_statement] = STATE(556), - [sym_switch_statement] = STATE(556), - [sym_for_statement] = STATE(556), - [sym_for_in_statement] = STATE(556), - [sym_while_statement] = STATE(556), - [sym_do_statement] = STATE(556), - [sym_try_statement] = STATE(556), - [sym_with_statement] = STATE(556), - [sym_break_statement] = STATE(556), - [sym_continue_statement] = STATE(556), - [sym_debugger_statement] = STATE(556), - [sym_return_statement] = STATE(556), - [sym_throw_statement] = STATE(556), - [sym_empty_statement] = STATE(556), - [sym_labeled_statement] = STATE(556), - [sym_parenthesized_expression] = STATE(764), - [sym__expression] = STATE(1265), - [sym_yield_expression] = STATE(1518), - [sym_object] = STATE(1435), - [sym_array] = STATE(1433), - [sym_class] = STATE(1498), - [sym_class_declaration] = STATE(598), - [sym_function] = STATE(1498), - [sym_function_declaration] = STATE(598), - [sym_generator_function] = STATE(1498), - [sym_generator_function_declaration] = STATE(598), - [sym_arrow_function] = STATE(1498), - [sym__call_signature] = STATE(3145), - [sym_call_expression] = STATE(1498), - [sym_new_expression] = STATE(1518), - [sym_await_expression] = STATE(1518), - [sym_member_expression] = STATE(764), - [sym_subscript_expression] = STATE(764), - [sym_assignment_expression] = STATE(1518), - [sym__augmented_assignment_lhs] = STATE(1925), - [sym_augmented_assignment_expression] = STATE(1518), - [sym_ternary_expression] = STATE(1518), - [sym_binary_expression] = STATE(1518), - [sym_unary_expression] = STATE(1518), - [sym_update_expression] = STATE(1518), - [sym_sequence_expression] = STATE(2844), - [sym_string] = STATE(1498), - [sym_template_string] = STATE(1498), - [sym_regex] = STATE(1498), - [sym_meta_property] = STATE(1498), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(772), - [sym_function_signature] = STATE(598), - [sym_type_assertion] = STATE(1518), - [sym_as_expression] = STATE(1518), - [sym_ambient_declaration] = STATE(598), - [sym_abstract_class_declaration] = STATE(598), - [sym_module] = STATE(598), - [sym_internal_module] = STATE(92), - [sym_import_alias] = STATE(598), - [sym_interface_declaration] = STATE(598), - [sym_enum_declaration] = STATE(598), - [sym_type_alias_declaration] = STATE(598), - [sym_type_arguments] = STATE(349), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2286), + [30] = { + [sym_export_statement] = STATE(610), + [sym__declaration] = STATE(610), + [sym_import] = STATE(1523), + [sym_import_statement] = STATE(610), + [sym_expression_statement] = STATE(610), + [sym_variable_declaration] = STATE(579), + [sym_lexical_declaration] = STATE(579), + [sym_statement_block] = STATE(610), + [sym_if_statement] = STATE(610), + [sym_switch_statement] = STATE(610), + [sym_for_statement] = STATE(610), + [sym_for_in_statement] = STATE(610), + [sym_while_statement] = STATE(610), + [sym_do_statement] = STATE(610), + [sym_try_statement] = STATE(610), + [sym_with_statement] = STATE(610), + [sym_break_statement] = STATE(610), + [sym_continue_statement] = STATE(610), + [sym_debugger_statement] = STATE(610), + [sym_return_statement] = STATE(610), + [sym_throw_statement] = STATE(610), + [sym_empty_statement] = STATE(610), + [sym_labeled_statement] = STATE(610), + [sym_parenthesized_expression] = STATE(768), + [sym__expression] = STATE(1211), + [sym_yield_expression] = STATE(1567), + [sym_object] = STATE(1357), + [sym_array] = STATE(1360), + [sym_class] = STATE(1523), + [sym_class_declaration] = STATE(579), + [sym_function] = STATE(1523), + [sym_function_declaration] = STATE(579), + [sym_generator_function] = STATE(1523), + [sym_generator_function_declaration] = STATE(579), + [sym_arrow_function] = STATE(1523), + [sym__call_signature] = STATE(3196), + [sym_call_expression] = STATE(1523), + [sym_new_expression] = STATE(1567), + [sym_await_expression] = STATE(1567), + [sym_member_expression] = STATE(768), + [sym_subscript_expression] = STATE(768), + [sym_assignment_expression] = STATE(1567), + [sym__augmented_assignment_lhs] = STATE(1928), + [sym_augmented_assignment_expression] = STATE(1567), + [sym_ternary_expression] = STATE(1567), + [sym_binary_expression] = STATE(1567), + [sym_unary_expression] = STATE(1567), + [sym_update_expression] = STATE(1567), + [sym_sequence_expression] = STATE(2826), + [sym_string] = STATE(1523), + [sym_template_string] = STATE(1523), + [sym_regex] = STATE(1523), + [sym_meta_property] = STATE(1523), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(774), + [sym_function_signature] = STATE(579), + [sym_type_assertion] = STATE(1567), + [sym_as_expression] = STATE(1567), + [sym_ambient_declaration] = STATE(579), + [sym_abstract_class_declaration] = STATE(579), + [sym_module] = STATE(579), + [sym_internal_module] = STATE(86), + [sym_import_alias] = STATE(579), + [sym_interface_declaration] = STATE(579), + [sym_enum_declaration] = STATE(579), + [sym_type_alias_declaration] = STATE(579), + [sym_type_arguments] = STATE(292), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2247), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_namespace] = ACTIONS(13), @@ -13847,77 +13759,77 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(103), [sym_readonly] = ACTIONS(93), }, - [32] = { - [sym_export_statement] = STATE(568), - [sym__declaration] = STATE(568), - [sym_import] = STATE(1498), - [sym_import_statement] = STATE(568), - [sym_expression_statement] = STATE(568), - [sym_variable_declaration] = STATE(598), - [sym_lexical_declaration] = STATE(598), - [sym_statement_block] = STATE(568), - [sym_if_statement] = STATE(568), - [sym_switch_statement] = STATE(568), - [sym_for_statement] = STATE(568), - [sym_for_in_statement] = STATE(568), - [sym_while_statement] = STATE(568), - [sym_do_statement] = STATE(568), - [sym_try_statement] = STATE(568), - [sym_with_statement] = STATE(568), - [sym_break_statement] = STATE(568), - [sym_continue_statement] = STATE(568), - [sym_debugger_statement] = STATE(568), - [sym_return_statement] = STATE(568), - [sym_throw_statement] = STATE(568), - [sym_empty_statement] = STATE(568), - [sym_labeled_statement] = STATE(568), - [sym_parenthesized_expression] = STATE(764), - [sym__expression] = STATE(1265), - [sym_yield_expression] = STATE(1518), - [sym_object] = STATE(1435), - [sym_array] = STATE(1433), - [sym_class] = STATE(1498), - [sym_class_declaration] = STATE(598), - [sym_function] = STATE(1498), - [sym_function_declaration] = STATE(598), - [sym_generator_function] = STATE(1498), - [sym_generator_function_declaration] = STATE(598), - [sym_arrow_function] = STATE(1498), - [sym__call_signature] = STATE(3145), - [sym_call_expression] = STATE(1498), - [sym_new_expression] = STATE(1518), - [sym_await_expression] = STATE(1518), - [sym_member_expression] = STATE(764), - [sym_subscript_expression] = STATE(764), - [sym_assignment_expression] = STATE(1518), - [sym__augmented_assignment_lhs] = STATE(1925), - [sym_augmented_assignment_expression] = STATE(1518), - [sym_ternary_expression] = STATE(1518), - [sym_binary_expression] = STATE(1518), - [sym_unary_expression] = STATE(1518), - [sym_update_expression] = STATE(1518), - [sym_sequence_expression] = STATE(2844), - [sym_string] = STATE(1498), - [sym_template_string] = STATE(1498), - [sym_regex] = STATE(1498), - [sym_meta_property] = STATE(1498), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(772), - [sym_function_signature] = STATE(598), - [sym_type_assertion] = STATE(1518), - [sym_as_expression] = STATE(1518), - [sym_ambient_declaration] = STATE(598), - [sym_abstract_class_declaration] = STATE(598), - [sym_module] = STATE(598), - [sym_internal_module] = STATE(1363), - [sym_import_alias] = STATE(598), - [sym_interface_declaration] = STATE(598), - [sym_enum_declaration] = STATE(598), - [sym_type_alias_declaration] = STATE(598), - [sym_type_arguments] = STATE(349), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2326), + [31] = { + [sym_export_statement] = STATE(549), + [sym__declaration] = STATE(549), + [sym_import] = STATE(1523), + [sym_import_statement] = STATE(549), + [sym_expression_statement] = STATE(549), + [sym_variable_declaration] = STATE(579), + [sym_lexical_declaration] = STATE(579), + [sym_statement_block] = STATE(549), + [sym_if_statement] = STATE(549), + [sym_switch_statement] = STATE(549), + [sym_for_statement] = STATE(549), + [sym_for_in_statement] = STATE(549), + [sym_while_statement] = STATE(549), + [sym_do_statement] = STATE(549), + [sym_try_statement] = STATE(549), + [sym_with_statement] = STATE(549), + [sym_break_statement] = STATE(549), + [sym_continue_statement] = STATE(549), + [sym_debugger_statement] = STATE(549), + [sym_return_statement] = STATE(549), + [sym_throw_statement] = STATE(549), + [sym_empty_statement] = STATE(549), + [sym_labeled_statement] = STATE(549), + [sym_parenthesized_expression] = STATE(768), + [sym__expression] = STATE(1211), + [sym_yield_expression] = STATE(1567), + [sym_object] = STATE(1357), + [sym_array] = STATE(1360), + [sym_class] = STATE(1523), + [sym_class_declaration] = STATE(579), + [sym_function] = STATE(1523), + [sym_function_declaration] = STATE(579), + [sym_generator_function] = STATE(1523), + [sym_generator_function_declaration] = STATE(579), + [sym_arrow_function] = STATE(1523), + [sym__call_signature] = STATE(3196), + [sym_call_expression] = STATE(1523), + [sym_new_expression] = STATE(1567), + [sym_await_expression] = STATE(1567), + [sym_member_expression] = STATE(768), + [sym_subscript_expression] = STATE(768), + [sym_assignment_expression] = STATE(1567), + [sym__augmented_assignment_lhs] = STATE(1928), + [sym_augmented_assignment_expression] = STATE(1567), + [sym_ternary_expression] = STATE(1567), + [sym_binary_expression] = STATE(1567), + [sym_unary_expression] = STATE(1567), + [sym_update_expression] = STATE(1567), + [sym_sequence_expression] = STATE(2826), + [sym_string] = STATE(1523), + [sym_template_string] = STATE(1523), + [sym_regex] = STATE(1523), + [sym_meta_property] = STATE(1523), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(774), + [sym_function_signature] = STATE(579), + [sym_type_assertion] = STATE(1567), + [sym_as_expression] = STATE(1567), + [sym_ambient_declaration] = STATE(579), + [sym_abstract_class_declaration] = STATE(579), + [sym_module] = STATE(579), + [sym_internal_module] = STATE(1373), + [sym_import_alias] = STATE(579), + [sym_interface_declaration] = STATE(579), + [sym_enum_declaration] = STATE(579), + [sym_type_alias_declaration] = STATE(579), + [sym_type_arguments] = STATE(292), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2150), [sym_identifier] = ACTIONS(393), [anon_sym_export] = ACTIONS(395), [anon_sym_namespace] = ACTIONS(397), @@ -13989,77 +13901,77 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(103), [sym_readonly] = ACTIONS(417), }, - [33] = { - [sym_export_statement] = STATE(2750), - [sym__declaration] = STATE(2750), - [sym_import] = STATE(1498), - [sym_import_statement] = STATE(2750), - [sym_expression_statement] = STATE(2750), - [sym_variable_declaration] = STATE(598), - [sym_lexical_declaration] = STATE(598), - [sym_statement_block] = STATE(2750), - [sym_if_statement] = STATE(2750), - [sym_switch_statement] = STATE(2750), - [sym_for_statement] = STATE(2750), - [sym_for_in_statement] = STATE(2750), - [sym_while_statement] = STATE(2750), - [sym_do_statement] = STATE(2750), - [sym_try_statement] = STATE(2750), - [sym_with_statement] = STATE(2750), - [sym_break_statement] = STATE(2750), - [sym_continue_statement] = STATE(2750), - [sym_debugger_statement] = STATE(2750), - [sym_return_statement] = STATE(2750), - [sym_throw_statement] = STATE(2750), - [sym_empty_statement] = STATE(2750), - [sym_labeled_statement] = STATE(2750), - [sym_parenthesized_expression] = STATE(764), - [sym__expression] = STATE(1265), - [sym_yield_expression] = STATE(1518), - [sym_object] = STATE(1435), - [sym_array] = STATE(1433), - [sym_class] = STATE(1498), - [sym_class_declaration] = STATE(598), - [sym_function] = STATE(1498), - [sym_function_declaration] = STATE(598), - [sym_generator_function] = STATE(1498), - [sym_generator_function_declaration] = STATE(598), - [sym_arrow_function] = STATE(1498), - [sym__call_signature] = STATE(3145), - [sym_call_expression] = STATE(1498), - [sym_new_expression] = STATE(1518), - [sym_await_expression] = STATE(1518), - [sym_member_expression] = STATE(764), - [sym_subscript_expression] = STATE(764), - [sym_assignment_expression] = STATE(1518), - [sym__augmented_assignment_lhs] = STATE(1925), - [sym_augmented_assignment_expression] = STATE(1518), - [sym_ternary_expression] = STATE(1518), - [sym_binary_expression] = STATE(1518), - [sym_unary_expression] = STATE(1518), - [sym_update_expression] = STATE(1518), - [sym_sequence_expression] = STATE(2844), - [sym_string] = STATE(1498), - [sym_template_string] = STATE(1498), - [sym_regex] = STATE(1498), - [sym_meta_property] = STATE(1498), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(772), - [sym_function_signature] = STATE(598), - [sym_type_assertion] = STATE(1518), - [sym_as_expression] = STATE(1518), - [sym_ambient_declaration] = STATE(598), - [sym_abstract_class_declaration] = STATE(598), - [sym_module] = STATE(598), - [sym_internal_module] = STATE(1363), - [sym_import_alias] = STATE(598), - [sym_interface_declaration] = STATE(598), - [sym_enum_declaration] = STATE(598), - [sym_type_alias_declaration] = STATE(598), - [sym_type_arguments] = STATE(349), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2326), + [32] = { + [sym_export_statement] = STATE(2621), + [sym__declaration] = STATE(2621), + [sym_import] = STATE(1523), + [sym_import_statement] = STATE(2621), + [sym_expression_statement] = STATE(2621), + [sym_variable_declaration] = STATE(579), + [sym_lexical_declaration] = STATE(579), + [sym_statement_block] = STATE(2621), + [sym_if_statement] = STATE(2621), + [sym_switch_statement] = STATE(2621), + [sym_for_statement] = STATE(2621), + [sym_for_in_statement] = STATE(2621), + [sym_while_statement] = STATE(2621), + [sym_do_statement] = STATE(2621), + [sym_try_statement] = STATE(2621), + [sym_with_statement] = STATE(2621), + [sym_break_statement] = STATE(2621), + [sym_continue_statement] = STATE(2621), + [sym_debugger_statement] = STATE(2621), + [sym_return_statement] = STATE(2621), + [sym_throw_statement] = STATE(2621), + [sym_empty_statement] = STATE(2621), + [sym_labeled_statement] = STATE(2621), + [sym_parenthesized_expression] = STATE(768), + [sym__expression] = STATE(1211), + [sym_yield_expression] = STATE(1567), + [sym_object] = STATE(1357), + [sym_array] = STATE(1360), + [sym_class] = STATE(1523), + [sym_class_declaration] = STATE(579), + [sym_function] = STATE(1523), + [sym_function_declaration] = STATE(579), + [sym_generator_function] = STATE(1523), + [sym_generator_function_declaration] = STATE(579), + [sym_arrow_function] = STATE(1523), + [sym__call_signature] = STATE(3196), + [sym_call_expression] = STATE(1523), + [sym_new_expression] = STATE(1567), + [sym_await_expression] = STATE(1567), + [sym_member_expression] = STATE(768), + [sym_subscript_expression] = STATE(768), + [sym_assignment_expression] = STATE(1567), + [sym__augmented_assignment_lhs] = STATE(1928), + [sym_augmented_assignment_expression] = STATE(1567), + [sym_ternary_expression] = STATE(1567), + [sym_binary_expression] = STATE(1567), + [sym_unary_expression] = STATE(1567), + [sym_update_expression] = STATE(1567), + [sym_sequence_expression] = STATE(2826), + [sym_string] = STATE(1523), + [sym_template_string] = STATE(1523), + [sym_regex] = STATE(1523), + [sym_meta_property] = STATE(1523), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(774), + [sym_function_signature] = STATE(579), + [sym_type_assertion] = STATE(1567), + [sym_as_expression] = STATE(1567), + [sym_ambient_declaration] = STATE(579), + [sym_abstract_class_declaration] = STATE(579), + [sym_module] = STATE(579), + [sym_internal_module] = STATE(1373), + [sym_import_alias] = STATE(579), + [sym_interface_declaration] = STATE(579), + [sym_enum_declaration] = STATE(579), + [sym_type_alias_declaration] = STATE(579), + [sym_type_arguments] = STATE(292), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2150), [sym_identifier] = ACTIONS(393), [anon_sym_export] = ACTIONS(395), [anon_sym_namespace] = ACTIONS(397), @@ -14131,97 +14043,97 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(103), [sym_readonly] = ACTIONS(417), }, - [34] = { - [sym_export_statement] = STATE(3001), - [sym__declaration] = STATE(3001), - [sym_import] = STATE(1498), - [sym_import_statement] = STATE(3001), - [sym_expression_statement] = STATE(3001), - [sym_variable_declaration] = STATE(598), - [sym_lexical_declaration] = STATE(598), - [sym_statement_block] = STATE(3001), - [sym_if_statement] = STATE(3001), - [sym_switch_statement] = STATE(3001), - [sym_for_statement] = STATE(3001), - [sym_for_in_statement] = STATE(3001), - [sym_while_statement] = STATE(3001), - [sym_do_statement] = STATE(3001), - [sym_try_statement] = STATE(3001), - [sym_with_statement] = STATE(3001), - [sym_break_statement] = STATE(3001), - [sym_continue_statement] = STATE(3001), - [sym_debugger_statement] = STATE(3001), - [sym_return_statement] = STATE(3001), - [sym_throw_statement] = STATE(3001), - [sym_empty_statement] = STATE(3001), - [sym_labeled_statement] = STATE(3001), - [sym_parenthesized_expression] = STATE(764), - [sym__expression] = STATE(1265), - [sym_yield_expression] = STATE(1518), - [sym_object] = STATE(1435), - [sym_array] = STATE(1433), - [sym_class] = STATE(1498), - [sym_class_declaration] = STATE(598), - [sym_function] = STATE(1498), - [sym_function_declaration] = STATE(598), - [sym_generator_function] = STATE(1498), - [sym_generator_function_declaration] = STATE(598), - [sym_arrow_function] = STATE(1498), - [sym__call_signature] = STATE(3145), - [sym_call_expression] = STATE(1498), - [sym_new_expression] = STATE(1518), - [sym_await_expression] = STATE(1518), - [sym_member_expression] = STATE(764), - [sym_subscript_expression] = STATE(764), - [sym_assignment_expression] = STATE(1518), - [sym__augmented_assignment_lhs] = STATE(1925), - [sym_augmented_assignment_expression] = STATE(1518), - [sym_ternary_expression] = STATE(1518), - [sym_binary_expression] = STATE(1518), - [sym_unary_expression] = STATE(1518), - [sym_update_expression] = STATE(1518), - [sym_sequence_expression] = STATE(2844), - [sym_string] = STATE(1498), - [sym_template_string] = STATE(1498), - [sym_regex] = STATE(1498), - [sym_meta_property] = STATE(1498), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(772), - [sym_function_signature] = STATE(598), - [sym_type_assertion] = STATE(1518), - [sym_as_expression] = STATE(1518), - [sym_ambient_declaration] = STATE(598), - [sym_abstract_class_declaration] = STATE(598), - [sym_module] = STATE(598), - [sym_internal_module] = STATE(1363), - [sym_import_alias] = STATE(598), - [sym_interface_declaration] = STATE(598), - [sym_enum_declaration] = STATE(598), - [sym_type_alias_declaration] = STATE(598), - [sym_type_arguments] = STATE(349), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2326), - [sym_identifier] = ACTIONS(393), - [anon_sym_export] = ACTIONS(395), - [anon_sym_namespace] = ACTIONS(397), - [anon_sym_LBRACE] = ACTIONS(399), - [anon_sym_type] = ACTIONS(401), + [33] = { + [sym_export_statement] = STATE(538), + [sym__declaration] = STATE(538), + [sym_import] = STATE(1523), + [sym_import_statement] = STATE(538), + [sym_expression_statement] = STATE(538), + [sym_variable_declaration] = STATE(579), + [sym_lexical_declaration] = STATE(579), + [sym_statement_block] = STATE(538), + [sym_if_statement] = STATE(538), + [sym_switch_statement] = STATE(538), + [sym_for_statement] = STATE(538), + [sym_for_in_statement] = STATE(538), + [sym_while_statement] = STATE(538), + [sym_do_statement] = STATE(538), + [sym_try_statement] = STATE(538), + [sym_with_statement] = STATE(538), + [sym_break_statement] = STATE(538), + [sym_continue_statement] = STATE(538), + [sym_debugger_statement] = STATE(538), + [sym_return_statement] = STATE(538), + [sym_throw_statement] = STATE(538), + [sym_empty_statement] = STATE(538), + [sym_labeled_statement] = STATE(538), + [sym_parenthesized_expression] = STATE(768), + [sym__expression] = STATE(1211), + [sym_yield_expression] = STATE(1567), + [sym_object] = STATE(1357), + [sym_array] = STATE(1360), + [sym_class] = STATE(1523), + [sym_class_declaration] = STATE(579), + [sym_function] = STATE(1523), + [sym_function_declaration] = STATE(579), + [sym_generator_function] = STATE(1523), + [sym_generator_function_declaration] = STATE(579), + [sym_arrow_function] = STATE(1523), + [sym__call_signature] = STATE(3196), + [sym_call_expression] = STATE(1523), + [sym_new_expression] = STATE(1567), + [sym_await_expression] = STATE(1567), + [sym_member_expression] = STATE(768), + [sym_subscript_expression] = STATE(768), + [sym_assignment_expression] = STATE(1567), + [sym__augmented_assignment_lhs] = STATE(1928), + [sym_augmented_assignment_expression] = STATE(1567), + [sym_ternary_expression] = STATE(1567), + [sym_binary_expression] = STATE(1567), + [sym_unary_expression] = STATE(1567), + [sym_update_expression] = STATE(1567), + [sym_sequence_expression] = STATE(2826), + [sym_string] = STATE(1523), + [sym_template_string] = STATE(1523), + [sym_regex] = STATE(1523), + [sym_meta_property] = STATE(1523), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(774), + [sym_function_signature] = STATE(579), + [sym_type_assertion] = STATE(1567), + [sym_as_expression] = STATE(1567), + [sym_ambient_declaration] = STATE(579), + [sym_abstract_class_declaration] = STATE(579), + [sym_module] = STATE(579), + [sym_internal_module] = STATE(86), + [sym_import_alias] = STATE(579), + [sym_interface_declaration] = STATE(579), + [sym_enum_declaration] = STATE(579), + [sym_type_alias_declaration] = STATE(579), + [sym_type_arguments] = STATE(292), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2247), + [sym_identifier] = ACTIONS(7), + [anon_sym_export] = ACTIONS(11), + [anon_sym_namespace] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_type] = ACTIONS(17), [anon_sym_typeof] = ACTIONS(19), [anon_sym_import] = ACTIONS(21), [anon_sym_var] = ACTIONS(23), [anon_sym_let] = ACTIONS(25), [anon_sym_const] = ACTIONS(27), [anon_sym_BANG] = ACTIONS(29), - [anon_sym_if] = ACTIONS(403), + [anon_sym_if] = ACTIONS(31), [anon_sym_switch] = ACTIONS(33), - [anon_sym_for] = ACTIONS(405), + [anon_sym_for] = ACTIONS(35), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_await] = ACTIONS(39), - [anon_sym_while] = ACTIONS(407), + [anon_sym_while] = ACTIONS(41), [anon_sym_do] = ACTIONS(43), [anon_sym_try] = ACTIONS(45), - [anon_sym_with] = ACTIONS(409), + [anon_sym_with] = ACTIONS(47), [anon_sym_break] = ACTIONS(49), [anon_sym_continue] = ACTIONS(51), [anon_sym_debugger] = ACTIONS(53), @@ -14232,9 +14144,9 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(411), - [anon_sym_async] = ACTIONS(413), - [anon_sym_function] = ACTIONS(415), + [anon_sym_class] = ACTIONS(69), + [anon_sym_async] = ACTIONS(71), + [anon_sym_function] = ACTIONS(73), [anon_sym_new] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(77), [anon_sym_DASH] = ACTIONS(77), @@ -14255,95 +14167,95 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(417), + [anon_sym_static] = ACTIONS(93), [anon_sym_abstract] = ACTIONS(95), - [anon_sym_get] = ACTIONS(417), - [anon_sym_set] = ACTIONS(417), - [anon_sym_declare] = ACTIONS(419), - [anon_sym_public] = ACTIONS(417), - [anon_sym_private] = ACTIONS(417), - [anon_sym_protected] = ACTIONS(417), - [anon_sym_module] = ACTIONS(421), - [anon_sym_any] = ACTIONS(417), - [anon_sym_number] = ACTIONS(417), - [anon_sym_boolean] = ACTIONS(417), - [anon_sym_string] = ACTIONS(417), - [anon_sym_symbol] = ACTIONS(417), + [anon_sym_get] = ACTIONS(93), + [anon_sym_set] = ACTIONS(93), + [anon_sym_declare] = ACTIONS(97), + [anon_sym_public] = ACTIONS(93), + [anon_sym_private] = ACTIONS(93), + [anon_sym_protected] = ACTIONS(93), + [anon_sym_module] = ACTIONS(99), + [anon_sym_any] = ACTIONS(93), + [anon_sym_number] = ACTIONS(93), + [anon_sym_boolean] = ACTIONS(93), + [anon_sym_string] = ACTIONS(93), + [anon_sym_symbol] = ACTIONS(93), [anon_sym_interface] = ACTIONS(101), [anon_sym_enum] = ACTIONS(103), - [sym_readonly] = ACTIONS(417), + [sym_readonly] = ACTIONS(93), }, - [35] = { - [sym_export_statement] = STATE(611), - [sym__declaration] = STATE(611), - [sym_import] = STATE(1498), - [sym_import_statement] = STATE(611), - [sym_expression_statement] = STATE(611), - [sym_variable_declaration] = STATE(598), - [sym_lexical_declaration] = STATE(598), - [sym_statement_block] = STATE(611), - [sym_if_statement] = STATE(611), - [sym_switch_statement] = STATE(611), - [sym_for_statement] = STATE(611), - [sym_for_in_statement] = STATE(611), - [sym_while_statement] = STATE(611), - [sym_do_statement] = STATE(611), - [sym_try_statement] = STATE(611), - [sym_with_statement] = STATE(611), - [sym_break_statement] = STATE(611), - [sym_continue_statement] = STATE(611), - [sym_debugger_statement] = STATE(611), - [sym_return_statement] = STATE(611), - [sym_throw_statement] = STATE(611), - [sym_empty_statement] = STATE(611), - [sym_labeled_statement] = STATE(611), - [sym_parenthesized_expression] = STATE(764), - [sym__expression] = STATE(1265), - [sym_yield_expression] = STATE(1518), - [sym_object] = STATE(1435), - [sym_array] = STATE(1433), - [sym_class] = STATE(1498), - [sym_class_declaration] = STATE(598), - [sym_function] = STATE(1498), - [sym_function_declaration] = STATE(598), - [sym_generator_function] = STATE(1498), - [sym_generator_function_declaration] = STATE(598), - [sym_arrow_function] = STATE(1498), - [sym__call_signature] = STATE(3145), - [sym_call_expression] = STATE(1498), - [sym_new_expression] = STATE(1518), - [sym_await_expression] = STATE(1518), - [sym_member_expression] = STATE(764), - [sym_subscript_expression] = STATE(764), - [sym_assignment_expression] = STATE(1518), - [sym__augmented_assignment_lhs] = STATE(1925), - [sym_augmented_assignment_expression] = STATE(1518), - [sym_ternary_expression] = STATE(1518), - [sym_binary_expression] = STATE(1518), - [sym_unary_expression] = STATE(1518), - [sym_update_expression] = STATE(1518), - [sym_sequence_expression] = STATE(2844), - [sym_string] = STATE(1498), - [sym_template_string] = STATE(1498), - [sym_regex] = STATE(1498), - [sym_meta_property] = STATE(1498), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(772), - [sym_function_signature] = STATE(598), - [sym_type_assertion] = STATE(1518), - [sym_as_expression] = STATE(1518), - [sym_ambient_declaration] = STATE(598), - [sym_abstract_class_declaration] = STATE(598), - [sym_module] = STATE(598), - [sym_internal_module] = STATE(1363), - [sym_import_alias] = STATE(598), - [sym_interface_declaration] = STATE(598), - [sym_enum_declaration] = STATE(598), - [sym_type_alias_declaration] = STATE(598), - [sym_type_arguments] = STATE(349), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2326), + [34] = { + [sym_export_statement] = STATE(538), + [sym__declaration] = STATE(538), + [sym_import] = STATE(1523), + [sym_import_statement] = STATE(538), + [sym_expression_statement] = STATE(538), + [sym_variable_declaration] = STATE(579), + [sym_lexical_declaration] = STATE(579), + [sym_statement_block] = STATE(538), + [sym_if_statement] = STATE(538), + [sym_switch_statement] = STATE(538), + [sym_for_statement] = STATE(538), + [sym_for_in_statement] = STATE(538), + [sym_while_statement] = STATE(538), + [sym_do_statement] = STATE(538), + [sym_try_statement] = STATE(538), + [sym_with_statement] = STATE(538), + [sym_break_statement] = STATE(538), + [sym_continue_statement] = STATE(538), + [sym_debugger_statement] = STATE(538), + [sym_return_statement] = STATE(538), + [sym_throw_statement] = STATE(538), + [sym_empty_statement] = STATE(538), + [sym_labeled_statement] = STATE(538), + [sym_parenthesized_expression] = STATE(768), + [sym__expression] = STATE(1211), + [sym_yield_expression] = STATE(1567), + [sym_object] = STATE(1357), + [sym_array] = STATE(1360), + [sym_class] = STATE(1523), + [sym_class_declaration] = STATE(579), + [sym_function] = STATE(1523), + [sym_function_declaration] = STATE(579), + [sym_generator_function] = STATE(1523), + [sym_generator_function_declaration] = STATE(579), + [sym_arrow_function] = STATE(1523), + [sym__call_signature] = STATE(3196), + [sym_call_expression] = STATE(1523), + [sym_new_expression] = STATE(1567), + [sym_await_expression] = STATE(1567), + [sym_member_expression] = STATE(768), + [sym_subscript_expression] = STATE(768), + [sym_assignment_expression] = STATE(1567), + [sym__augmented_assignment_lhs] = STATE(1928), + [sym_augmented_assignment_expression] = STATE(1567), + [sym_ternary_expression] = STATE(1567), + [sym_binary_expression] = STATE(1567), + [sym_unary_expression] = STATE(1567), + [sym_update_expression] = STATE(1567), + [sym_sequence_expression] = STATE(2826), + [sym_string] = STATE(1523), + [sym_template_string] = STATE(1523), + [sym_regex] = STATE(1523), + [sym_meta_property] = STATE(1523), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(774), + [sym_function_signature] = STATE(579), + [sym_type_assertion] = STATE(1567), + [sym_as_expression] = STATE(1567), + [sym_ambient_declaration] = STATE(579), + [sym_abstract_class_declaration] = STATE(579), + [sym_module] = STATE(579), + [sym_internal_module] = STATE(1373), + [sym_import_alias] = STATE(579), + [sym_interface_declaration] = STATE(579), + [sym_enum_declaration] = STATE(579), + [sym_type_alias_declaration] = STATE(579), + [sym_type_arguments] = STATE(292), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2150), [sym_identifier] = ACTIONS(393), [anon_sym_export] = ACTIONS(395), [anon_sym_namespace] = ACTIONS(397), @@ -14415,77 +14327,77 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(103), [sym_readonly] = ACTIONS(417), }, - [36] = { - [sym_export_statement] = STATE(568), - [sym__declaration] = STATE(568), - [sym_import] = STATE(1498), - [sym_import_statement] = STATE(568), - [sym_expression_statement] = STATE(568), - [sym_variable_declaration] = STATE(598), - [sym_lexical_declaration] = STATE(598), - [sym_statement_block] = STATE(568), - [sym_if_statement] = STATE(568), - [sym_switch_statement] = STATE(568), - [sym_for_statement] = STATE(568), - [sym_for_in_statement] = STATE(568), - [sym_while_statement] = STATE(568), - [sym_do_statement] = STATE(568), - [sym_try_statement] = STATE(568), - [sym_with_statement] = STATE(568), - [sym_break_statement] = STATE(568), - [sym_continue_statement] = STATE(568), - [sym_debugger_statement] = STATE(568), - [sym_return_statement] = STATE(568), - [sym_throw_statement] = STATE(568), - [sym_empty_statement] = STATE(568), - [sym_labeled_statement] = STATE(568), - [sym_parenthesized_expression] = STATE(764), - [sym__expression] = STATE(1265), - [sym_yield_expression] = STATE(1518), - [sym_object] = STATE(1435), - [sym_array] = STATE(1433), - [sym_class] = STATE(1498), - [sym_class_declaration] = STATE(598), - [sym_function] = STATE(1498), - [sym_function_declaration] = STATE(598), - [sym_generator_function] = STATE(1498), - [sym_generator_function_declaration] = STATE(598), - [sym_arrow_function] = STATE(1498), - [sym__call_signature] = STATE(3145), - [sym_call_expression] = STATE(1498), - [sym_new_expression] = STATE(1518), - [sym_await_expression] = STATE(1518), - [sym_member_expression] = STATE(764), - [sym_subscript_expression] = STATE(764), - [sym_assignment_expression] = STATE(1518), - [sym__augmented_assignment_lhs] = STATE(1925), - [sym_augmented_assignment_expression] = STATE(1518), - [sym_ternary_expression] = STATE(1518), - [sym_binary_expression] = STATE(1518), - [sym_unary_expression] = STATE(1518), - [sym_update_expression] = STATE(1518), - [sym_sequence_expression] = STATE(2844), - [sym_string] = STATE(1498), - [sym_template_string] = STATE(1498), - [sym_regex] = STATE(1498), - [sym_meta_property] = STATE(1498), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(772), - [sym_function_signature] = STATE(598), - [sym_type_assertion] = STATE(1518), - [sym_as_expression] = STATE(1518), - [sym_ambient_declaration] = STATE(598), - [sym_abstract_class_declaration] = STATE(598), - [sym_module] = STATE(598), - [sym_internal_module] = STATE(92), - [sym_import_alias] = STATE(598), - [sym_interface_declaration] = STATE(598), - [sym_enum_declaration] = STATE(598), - [sym_type_alias_declaration] = STATE(598), - [sym_type_arguments] = STATE(349), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2286), + [35] = { + [sym_export_statement] = STATE(613), + [sym__declaration] = STATE(613), + [sym_import] = STATE(1523), + [sym_import_statement] = STATE(613), + [sym_expression_statement] = STATE(613), + [sym_variable_declaration] = STATE(579), + [sym_lexical_declaration] = STATE(579), + [sym_statement_block] = STATE(613), + [sym_if_statement] = STATE(613), + [sym_switch_statement] = STATE(613), + [sym_for_statement] = STATE(613), + [sym_for_in_statement] = STATE(613), + [sym_while_statement] = STATE(613), + [sym_do_statement] = STATE(613), + [sym_try_statement] = STATE(613), + [sym_with_statement] = STATE(613), + [sym_break_statement] = STATE(613), + [sym_continue_statement] = STATE(613), + [sym_debugger_statement] = STATE(613), + [sym_return_statement] = STATE(613), + [sym_throw_statement] = STATE(613), + [sym_empty_statement] = STATE(613), + [sym_labeled_statement] = STATE(613), + [sym_parenthesized_expression] = STATE(768), + [sym__expression] = STATE(1211), + [sym_yield_expression] = STATE(1567), + [sym_object] = STATE(1357), + [sym_array] = STATE(1360), + [sym_class] = STATE(1523), + [sym_class_declaration] = STATE(579), + [sym_function] = STATE(1523), + [sym_function_declaration] = STATE(579), + [sym_generator_function] = STATE(1523), + [sym_generator_function_declaration] = STATE(579), + [sym_arrow_function] = STATE(1523), + [sym__call_signature] = STATE(3196), + [sym_call_expression] = STATE(1523), + [sym_new_expression] = STATE(1567), + [sym_await_expression] = STATE(1567), + [sym_member_expression] = STATE(768), + [sym_subscript_expression] = STATE(768), + [sym_assignment_expression] = STATE(1567), + [sym__augmented_assignment_lhs] = STATE(1928), + [sym_augmented_assignment_expression] = STATE(1567), + [sym_ternary_expression] = STATE(1567), + [sym_binary_expression] = STATE(1567), + [sym_unary_expression] = STATE(1567), + [sym_update_expression] = STATE(1567), + [sym_sequence_expression] = STATE(2826), + [sym_string] = STATE(1523), + [sym_template_string] = STATE(1523), + [sym_regex] = STATE(1523), + [sym_meta_property] = STATE(1523), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(774), + [sym_function_signature] = STATE(579), + [sym_type_assertion] = STATE(1567), + [sym_as_expression] = STATE(1567), + [sym_ambient_declaration] = STATE(579), + [sym_abstract_class_declaration] = STATE(579), + [sym_module] = STATE(579), + [sym_internal_module] = STATE(86), + [sym_import_alias] = STATE(579), + [sym_interface_declaration] = STATE(579), + [sym_enum_declaration] = STATE(579), + [sym_type_alias_declaration] = STATE(579), + [sym_type_arguments] = STATE(292), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2247), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_namespace] = ACTIONS(13), @@ -14557,97 +14469,97 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(103), [sym_readonly] = ACTIONS(93), }, - [37] = { - [sym_export_statement] = STATE(611), - [sym__declaration] = STATE(611), - [sym_import] = STATE(1498), - [sym_import_statement] = STATE(611), - [sym_expression_statement] = STATE(611), - [sym_variable_declaration] = STATE(598), - [sym_lexical_declaration] = STATE(598), - [sym_statement_block] = STATE(611), - [sym_if_statement] = STATE(611), - [sym_switch_statement] = STATE(611), - [sym_for_statement] = STATE(611), - [sym_for_in_statement] = STATE(611), - [sym_while_statement] = STATE(611), - [sym_do_statement] = STATE(611), - [sym_try_statement] = STATE(611), - [sym_with_statement] = STATE(611), - [sym_break_statement] = STATE(611), - [sym_continue_statement] = STATE(611), - [sym_debugger_statement] = STATE(611), - [sym_return_statement] = STATE(611), - [sym_throw_statement] = STATE(611), - [sym_empty_statement] = STATE(611), - [sym_labeled_statement] = STATE(611), - [sym_parenthesized_expression] = STATE(764), - [sym__expression] = STATE(1265), - [sym_yield_expression] = STATE(1518), - [sym_object] = STATE(1435), - [sym_array] = STATE(1433), - [sym_class] = STATE(1498), - [sym_class_declaration] = STATE(598), - [sym_function] = STATE(1498), - [sym_function_declaration] = STATE(598), - [sym_generator_function] = STATE(1498), - [sym_generator_function_declaration] = STATE(598), - [sym_arrow_function] = STATE(1498), - [sym__call_signature] = STATE(3145), - [sym_call_expression] = STATE(1498), - [sym_new_expression] = STATE(1518), - [sym_await_expression] = STATE(1518), - [sym_member_expression] = STATE(764), - [sym_subscript_expression] = STATE(764), - [sym_assignment_expression] = STATE(1518), - [sym__augmented_assignment_lhs] = STATE(1925), - [sym_augmented_assignment_expression] = STATE(1518), - [sym_ternary_expression] = STATE(1518), - [sym_binary_expression] = STATE(1518), - [sym_unary_expression] = STATE(1518), - [sym_update_expression] = STATE(1518), - [sym_sequence_expression] = STATE(2844), - [sym_string] = STATE(1498), - [sym_template_string] = STATE(1498), - [sym_regex] = STATE(1498), - [sym_meta_property] = STATE(1498), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(772), - [sym_function_signature] = STATE(598), - [sym_type_assertion] = STATE(1518), - [sym_as_expression] = STATE(1518), - [sym_ambient_declaration] = STATE(598), - [sym_abstract_class_declaration] = STATE(598), - [sym_module] = STATE(598), - [sym_internal_module] = STATE(92), - [sym_import_alias] = STATE(598), - [sym_interface_declaration] = STATE(598), - [sym_enum_declaration] = STATE(598), - [sym_type_alias_declaration] = STATE(598), - [sym_type_arguments] = STATE(349), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2286), - [sym_identifier] = ACTIONS(7), - [anon_sym_export] = ACTIONS(11), - [anon_sym_namespace] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_type] = ACTIONS(17), + [36] = { + [sym_export_statement] = STATE(542), + [sym__declaration] = STATE(542), + [sym_import] = STATE(1523), + [sym_import_statement] = STATE(542), + [sym_expression_statement] = STATE(542), + [sym_variable_declaration] = STATE(579), + [sym_lexical_declaration] = STATE(579), + [sym_statement_block] = STATE(542), + [sym_if_statement] = STATE(542), + [sym_switch_statement] = STATE(542), + [sym_for_statement] = STATE(542), + [sym_for_in_statement] = STATE(542), + [sym_while_statement] = STATE(542), + [sym_do_statement] = STATE(542), + [sym_try_statement] = STATE(542), + [sym_with_statement] = STATE(542), + [sym_break_statement] = STATE(542), + [sym_continue_statement] = STATE(542), + [sym_debugger_statement] = STATE(542), + [sym_return_statement] = STATE(542), + [sym_throw_statement] = STATE(542), + [sym_empty_statement] = STATE(542), + [sym_labeled_statement] = STATE(542), + [sym_parenthesized_expression] = STATE(768), + [sym__expression] = STATE(1211), + [sym_yield_expression] = STATE(1567), + [sym_object] = STATE(1357), + [sym_array] = STATE(1360), + [sym_class] = STATE(1523), + [sym_class_declaration] = STATE(579), + [sym_function] = STATE(1523), + [sym_function_declaration] = STATE(579), + [sym_generator_function] = STATE(1523), + [sym_generator_function_declaration] = STATE(579), + [sym_arrow_function] = STATE(1523), + [sym__call_signature] = STATE(3196), + [sym_call_expression] = STATE(1523), + [sym_new_expression] = STATE(1567), + [sym_await_expression] = STATE(1567), + [sym_member_expression] = STATE(768), + [sym_subscript_expression] = STATE(768), + [sym_assignment_expression] = STATE(1567), + [sym__augmented_assignment_lhs] = STATE(1928), + [sym_augmented_assignment_expression] = STATE(1567), + [sym_ternary_expression] = STATE(1567), + [sym_binary_expression] = STATE(1567), + [sym_unary_expression] = STATE(1567), + [sym_update_expression] = STATE(1567), + [sym_sequence_expression] = STATE(2826), + [sym_string] = STATE(1523), + [sym_template_string] = STATE(1523), + [sym_regex] = STATE(1523), + [sym_meta_property] = STATE(1523), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(774), + [sym_function_signature] = STATE(579), + [sym_type_assertion] = STATE(1567), + [sym_as_expression] = STATE(1567), + [sym_ambient_declaration] = STATE(579), + [sym_abstract_class_declaration] = STATE(579), + [sym_module] = STATE(579), + [sym_internal_module] = STATE(1373), + [sym_import_alias] = STATE(579), + [sym_interface_declaration] = STATE(579), + [sym_enum_declaration] = STATE(579), + [sym_type_alias_declaration] = STATE(579), + [sym_type_arguments] = STATE(292), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2150), + [sym_identifier] = ACTIONS(393), + [anon_sym_export] = ACTIONS(395), + [anon_sym_namespace] = ACTIONS(397), + [anon_sym_LBRACE] = ACTIONS(399), + [anon_sym_type] = ACTIONS(401), [anon_sym_typeof] = ACTIONS(19), [anon_sym_import] = ACTIONS(21), [anon_sym_var] = ACTIONS(23), [anon_sym_let] = ACTIONS(25), [anon_sym_const] = ACTIONS(27), [anon_sym_BANG] = ACTIONS(29), - [anon_sym_if] = ACTIONS(31), + [anon_sym_if] = ACTIONS(403), [anon_sym_switch] = ACTIONS(33), - [anon_sym_for] = ACTIONS(35), + [anon_sym_for] = ACTIONS(405), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_await] = ACTIONS(39), - [anon_sym_while] = ACTIONS(41), + [anon_sym_while] = ACTIONS(407), [anon_sym_do] = ACTIONS(43), [anon_sym_try] = ACTIONS(45), - [anon_sym_with] = ACTIONS(47), + [anon_sym_with] = ACTIONS(409), [anon_sym_break] = ACTIONS(49), [anon_sym_continue] = ACTIONS(51), [anon_sym_debugger] = ACTIONS(53), @@ -14658,9 +14570,9 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(69), - [anon_sym_async] = ACTIONS(71), - [anon_sym_function] = ACTIONS(73), + [anon_sym_class] = ACTIONS(411), + [anon_sym_async] = ACTIONS(413), + [anon_sym_function] = ACTIONS(415), [anon_sym_new] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(77), [anon_sym_DASH] = ACTIONS(77), @@ -14681,95 +14593,95 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(93), + [anon_sym_static] = ACTIONS(417), [anon_sym_abstract] = ACTIONS(95), - [anon_sym_get] = ACTIONS(93), - [anon_sym_set] = ACTIONS(93), - [anon_sym_declare] = ACTIONS(97), - [anon_sym_public] = ACTIONS(93), - [anon_sym_private] = ACTIONS(93), - [anon_sym_protected] = ACTIONS(93), - [anon_sym_module] = ACTIONS(99), - [anon_sym_any] = ACTIONS(93), - [anon_sym_number] = ACTIONS(93), - [anon_sym_boolean] = ACTIONS(93), - [anon_sym_string] = ACTIONS(93), - [anon_sym_symbol] = ACTIONS(93), + [anon_sym_get] = ACTIONS(417), + [anon_sym_set] = ACTIONS(417), + [anon_sym_declare] = ACTIONS(419), + [anon_sym_public] = ACTIONS(417), + [anon_sym_private] = ACTIONS(417), + [anon_sym_protected] = ACTIONS(417), + [anon_sym_module] = ACTIONS(421), + [anon_sym_any] = ACTIONS(417), + [anon_sym_number] = ACTIONS(417), + [anon_sym_boolean] = ACTIONS(417), + [anon_sym_string] = ACTIONS(417), + [anon_sym_symbol] = ACTIONS(417), [anon_sym_interface] = ACTIONS(101), [anon_sym_enum] = ACTIONS(103), - [sym_readonly] = ACTIONS(93), + [sym_readonly] = ACTIONS(417), }, - [38] = { - [sym_export_statement] = STATE(542), - [sym__declaration] = STATE(542), - [sym_import] = STATE(1498), - [sym_import_statement] = STATE(542), - [sym_expression_statement] = STATE(542), - [sym_variable_declaration] = STATE(598), - [sym_lexical_declaration] = STATE(598), - [sym_statement_block] = STATE(542), - [sym_if_statement] = STATE(542), - [sym_switch_statement] = STATE(542), - [sym_for_statement] = STATE(542), - [sym_for_in_statement] = STATE(542), - [sym_while_statement] = STATE(542), - [sym_do_statement] = STATE(542), - [sym_try_statement] = STATE(542), - [sym_with_statement] = STATE(542), - [sym_break_statement] = STATE(542), - [sym_continue_statement] = STATE(542), - [sym_debugger_statement] = STATE(542), - [sym_return_statement] = STATE(542), - [sym_throw_statement] = STATE(542), - [sym_empty_statement] = STATE(542), - [sym_labeled_statement] = STATE(542), - [sym_parenthesized_expression] = STATE(764), - [sym__expression] = STATE(1265), - [sym_yield_expression] = STATE(1518), - [sym_object] = STATE(1435), - [sym_array] = STATE(1433), - [sym_class] = STATE(1498), - [sym_class_declaration] = STATE(598), - [sym_function] = STATE(1498), - [sym_function_declaration] = STATE(598), - [sym_generator_function] = STATE(1498), - [sym_generator_function_declaration] = STATE(598), - [sym_arrow_function] = STATE(1498), - [sym__call_signature] = STATE(3145), - [sym_call_expression] = STATE(1498), - [sym_new_expression] = STATE(1518), - [sym_await_expression] = STATE(1518), - [sym_member_expression] = STATE(764), - [sym_subscript_expression] = STATE(764), - [sym_assignment_expression] = STATE(1518), - [sym__augmented_assignment_lhs] = STATE(1925), - [sym_augmented_assignment_expression] = STATE(1518), - [sym_ternary_expression] = STATE(1518), - [sym_binary_expression] = STATE(1518), - [sym_unary_expression] = STATE(1518), - [sym_update_expression] = STATE(1518), - [sym_sequence_expression] = STATE(2844), - [sym_string] = STATE(1498), - [sym_template_string] = STATE(1498), - [sym_regex] = STATE(1498), - [sym_meta_property] = STATE(1498), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(772), - [sym_function_signature] = STATE(598), - [sym_type_assertion] = STATE(1518), - [sym_as_expression] = STATE(1518), - [sym_ambient_declaration] = STATE(598), - [sym_abstract_class_declaration] = STATE(598), - [sym_module] = STATE(598), - [sym_internal_module] = STATE(92), - [sym_import_alias] = STATE(598), - [sym_interface_declaration] = STATE(598), - [sym_enum_declaration] = STATE(598), - [sym_type_alias_declaration] = STATE(598), - [sym_type_arguments] = STATE(349), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2286), + [37] = { + [sym_export_statement] = STATE(596), + [sym__declaration] = STATE(596), + [sym_import] = STATE(1523), + [sym_import_statement] = STATE(596), + [sym_expression_statement] = STATE(596), + [sym_variable_declaration] = STATE(579), + [sym_lexical_declaration] = STATE(579), + [sym_statement_block] = STATE(596), + [sym_if_statement] = STATE(596), + [sym_switch_statement] = STATE(596), + [sym_for_statement] = STATE(596), + [sym_for_in_statement] = STATE(596), + [sym_while_statement] = STATE(596), + [sym_do_statement] = STATE(596), + [sym_try_statement] = STATE(596), + [sym_with_statement] = STATE(596), + [sym_break_statement] = STATE(596), + [sym_continue_statement] = STATE(596), + [sym_debugger_statement] = STATE(596), + [sym_return_statement] = STATE(596), + [sym_throw_statement] = STATE(596), + [sym_empty_statement] = STATE(596), + [sym_labeled_statement] = STATE(596), + [sym_parenthesized_expression] = STATE(768), + [sym__expression] = STATE(1211), + [sym_yield_expression] = STATE(1567), + [sym_object] = STATE(1357), + [sym_array] = STATE(1360), + [sym_class] = STATE(1523), + [sym_class_declaration] = STATE(579), + [sym_function] = STATE(1523), + [sym_function_declaration] = STATE(579), + [sym_generator_function] = STATE(1523), + [sym_generator_function_declaration] = STATE(579), + [sym_arrow_function] = STATE(1523), + [sym__call_signature] = STATE(3196), + [sym_call_expression] = STATE(1523), + [sym_new_expression] = STATE(1567), + [sym_await_expression] = STATE(1567), + [sym_member_expression] = STATE(768), + [sym_subscript_expression] = STATE(768), + [sym_assignment_expression] = STATE(1567), + [sym__augmented_assignment_lhs] = STATE(1928), + [sym_augmented_assignment_expression] = STATE(1567), + [sym_ternary_expression] = STATE(1567), + [sym_binary_expression] = STATE(1567), + [sym_unary_expression] = STATE(1567), + [sym_update_expression] = STATE(1567), + [sym_sequence_expression] = STATE(2826), + [sym_string] = STATE(1523), + [sym_template_string] = STATE(1523), + [sym_regex] = STATE(1523), + [sym_meta_property] = STATE(1523), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(774), + [sym_function_signature] = STATE(579), + [sym_type_assertion] = STATE(1567), + [sym_as_expression] = STATE(1567), + [sym_ambient_declaration] = STATE(579), + [sym_abstract_class_declaration] = STATE(579), + [sym_module] = STATE(579), + [sym_internal_module] = STATE(86), + [sym_import_alias] = STATE(579), + [sym_interface_declaration] = STATE(579), + [sym_enum_declaration] = STATE(579), + [sym_type_alias_declaration] = STATE(579), + [sym_type_arguments] = STATE(292), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2247), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_namespace] = ACTIONS(13), @@ -14841,77 +14753,77 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(103), [sym_readonly] = ACTIONS(93), }, - [39] = { - [sym_export_statement] = STATE(556), - [sym__declaration] = STATE(556), - [sym_import] = STATE(1498), - [sym_import_statement] = STATE(556), - [sym_expression_statement] = STATE(556), - [sym_variable_declaration] = STATE(598), - [sym_lexical_declaration] = STATE(598), - [sym_statement_block] = STATE(556), - [sym_if_statement] = STATE(556), - [sym_switch_statement] = STATE(556), - [sym_for_statement] = STATE(556), - [sym_for_in_statement] = STATE(556), - [sym_while_statement] = STATE(556), - [sym_do_statement] = STATE(556), - [sym_try_statement] = STATE(556), - [sym_with_statement] = STATE(556), - [sym_break_statement] = STATE(556), - [sym_continue_statement] = STATE(556), - [sym_debugger_statement] = STATE(556), - [sym_return_statement] = STATE(556), - [sym_throw_statement] = STATE(556), - [sym_empty_statement] = STATE(556), - [sym_labeled_statement] = STATE(556), - [sym_parenthesized_expression] = STATE(764), - [sym__expression] = STATE(1265), - [sym_yield_expression] = STATE(1518), - [sym_object] = STATE(1435), - [sym_array] = STATE(1433), - [sym_class] = STATE(1498), - [sym_class_declaration] = STATE(598), - [sym_function] = STATE(1498), - [sym_function_declaration] = STATE(598), - [sym_generator_function] = STATE(1498), - [sym_generator_function_declaration] = STATE(598), - [sym_arrow_function] = STATE(1498), - [sym__call_signature] = STATE(3145), - [sym_call_expression] = STATE(1498), - [sym_new_expression] = STATE(1518), - [sym_await_expression] = STATE(1518), - [sym_member_expression] = STATE(764), - [sym_subscript_expression] = STATE(764), - [sym_assignment_expression] = STATE(1518), - [sym__augmented_assignment_lhs] = STATE(1925), - [sym_augmented_assignment_expression] = STATE(1518), - [sym_ternary_expression] = STATE(1518), - [sym_binary_expression] = STATE(1518), - [sym_unary_expression] = STATE(1518), - [sym_update_expression] = STATE(1518), - [sym_sequence_expression] = STATE(2844), - [sym_string] = STATE(1498), - [sym_template_string] = STATE(1498), - [sym_regex] = STATE(1498), - [sym_meta_property] = STATE(1498), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(772), - [sym_function_signature] = STATE(598), - [sym_type_assertion] = STATE(1518), - [sym_as_expression] = STATE(1518), - [sym_ambient_declaration] = STATE(598), - [sym_abstract_class_declaration] = STATE(598), - [sym_module] = STATE(598), - [sym_internal_module] = STATE(1363), - [sym_import_alias] = STATE(598), - [sym_interface_declaration] = STATE(598), - [sym_enum_declaration] = STATE(598), - [sym_type_alias_declaration] = STATE(598), - [sym_type_arguments] = STATE(349), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2326), + [38] = { + [sym_export_statement] = STATE(597), + [sym__declaration] = STATE(597), + [sym_import] = STATE(1523), + [sym_import_statement] = STATE(597), + [sym_expression_statement] = STATE(597), + [sym_variable_declaration] = STATE(579), + [sym_lexical_declaration] = STATE(579), + [sym_statement_block] = STATE(597), + [sym_if_statement] = STATE(597), + [sym_switch_statement] = STATE(597), + [sym_for_statement] = STATE(597), + [sym_for_in_statement] = STATE(597), + [sym_while_statement] = STATE(597), + [sym_do_statement] = STATE(597), + [sym_try_statement] = STATE(597), + [sym_with_statement] = STATE(597), + [sym_break_statement] = STATE(597), + [sym_continue_statement] = STATE(597), + [sym_debugger_statement] = STATE(597), + [sym_return_statement] = STATE(597), + [sym_throw_statement] = STATE(597), + [sym_empty_statement] = STATE(597), + [sym_labeled_statement] = STATE(597), + [sym_parenthesized_expression] = STATE(768), + [sym__expression] = STATE(1211), + [sym_yield_expression] = STATE(1567), + [sym_object] = STATE(1357), + [sym_array] = STATE(1360), + [sym_class] = STATE(1523), + [sym_class_declaration] = STATE(579), + [sym_function] = STATE(1523), + [sym_function_declaration] = STATE(579), + [sym_generator_function] = STATE(1523), + [sym_generator_function_declaration] = STATE(579), + [sym_arrow_function] = STATE(1523), + [sym__call_signature] = STATE(3196), + [sym_call_expression] = STATE(1523), + [sym_new_expression] = STATE(1567), + [sym_await_expression] = STATE(1567), + [sym_member_expression] = STATE(768), + [sym_subscript_expression] = STATE(768), + [sym_assignment_expression] = STATE(1567), + [sym__augmented_assignment_lhs] = STATE(1928), + [sym_augmented_assignment_expression] = STATE(1567), + [sym_ternary_expression] = STATE(1567), + [sym_binary_expression] = STATE(1567), + [sym_unary_expression] = STATE(1567), + [sym_update_expression] = STATE(1567), + [sym_sequence_expression] = STATE(2826), + [sym_string] = STATE(1523), + [sym_template_string] = STATE(1523), + [sym_regex] = STATE(1523), + [sym_meta_property] = STATE(1523), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(774), + [sym_function_signature] = STATE(579), + [sym_type_assertion] = STATE(1567), + [sym_as_expression] = STATE(1567), + [sym_ambient_declaration] = STATE(579), + [sym_abstract_class_declaration] = STATE(579), + [sym_module] = STATE(579), + [sym_internal_module] = STATE(1373), + [sym_import_alias] = STATE(579), + [sym_interface_declaration] = STATE(579), + [sym_enum_declaration] = STATE(579), + [sym_type_alias_declaration] = STATE(579), + [sym_type_arguments] = STATE(292), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2150), [sym_identifier] = ACTIONS(393), [anon_sym_export] = ACTIONS(395), [anon_sym_namespace] = ACTIONS(397), @@ -14983,77 +14895,77 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(103), [sym_readonly] = ACTIONS(417), }, - [40] = { - [sym_export_statement] = STATE(552), - [sym__declaration] = STATE(552), - [sym_import] = STATE(1498), - [sym_import_statement] = STATE(552), - [sym_expression_statement] = STATE(552), - [sym_variable_declaration] = STATE(598), - [sym_lexical_declaration] = STATE(598), - [sym_statement_block] = STATE(552), - [sym_if_statement] = STATE(552), - [sym_switch_statement] = STATE(552), - [sym_for_statement] = STATE(552), - [sym_for_in_statement] = STATE(552), - [sym_while_statement] = STATE(552), - [sym_do_statement] = STATE(552), - [sym_try_statement] = STATE(552), - [sym_with_statement] = STATE(552), - [sym_break_statement] = STATE(552), - [sym_continue_statement] = STATE(552), - [sym_debugger_statement] = STATE(552), - [sym_return_statement] = STATE(552), - [sym_throw_statement] = STATE(552), - [sym_empty_statement] = STATE(552), - [sym_labeled_statement] = STATE(552), - [sym_parenthesized_expression] = STATE(764), - [sym__expression] = STATE(1265), - [sym_yield_expression] = STATE(1518), - [sym_object] = STATE(1435), - [sym_array] = STATE(1433), - [sym_class] = STATE(1498), - [sym_class_declaration] = STATE(598), - [sym_function] = STATE(1498), - [sym_function_declaration] = STATE(598), - [sym_generator_function] = STATE(1498), - [sym_generator_function_declaration] = STATE(598), - [sym_arrow_function] = STATE(1498), - [sym__call_signature] = STATE(3145), - [sym_call_expression] = STATE(1498), - [sym_new_expression] = STATE(1518), - [sym_await_expression] = STATE(1518), - [sym_member_expression] = STATE(764), - [sym_subscript_expression] = STATE(764), - [sym_assignment_expression] = STATE(1518), - [sym__augmented_assignment_lhs] = STATE(1925), - [sym_augmented_assignment_expression] = STATE(1518), - [sym_ternary_expression] = STATE(1518), - [sym_binary_expression] = STATE(1518), - [sym_unary_expression] = STATE(1518), - [sym_update_expression] = STATE(1518), - [sym_sequence_expression] = STATE(2844), - [sym_string] = STATE(1498), - [sym_template_string] = STATE(1498), - [sym_regex] = STATE(1498), - [sym_meta_property] = STATE(1498), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(772), - [sym_function_signature] = STATE(598), - [sym_type_assertion] = STATE(1518), - [sym_as_expression] = STATE(1518), - [sym_ambient_declaration] = STATE(598), - [sym_abstract_class_declaration] = STATE(598), - [sym_module] = STATE(598), - [sym_internal_module] = STATE(1363), - [sym_import_alias] = STATE(598), - [sym_interface_declaration] = STATE(598), - [sym_enum_declaration] = STATE(598), - [sym_type_alias_declaration] = STATE(598), - [sym_type_arguments] = STATE(349), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2326), + [39] = { + [sym_export_statement] = STATE(3137), + [sym__declaration] = STATE(3137), + [sym_import] = STATE(1523), + [sym_import_statement] = STATE(3137), + [sym_expression_statement] = STATE(3137), + [sym_variable_declaration] = STATE(579), + [sym_lexical_declaration] = STATE(579), + [sym_statement_block] = STATE(3137), + [sym_if_statement] = STATE(3137), + [sym_switch_statement] = STATE(3137), + [sym_for_statement] = STATE(3137), + [sym_for_in_statement] = STATE(3137), + [sym_while_statement] = STATE(3137), + [sym_do_statement] = STATE(3137), + [sym_try_statement] = STATE(3137), + [sym_with_statement] = STATE(3137), + [sym_break_statement] = STATE(3137), + [sym_continue_statement] = STATE(3137), + [sym_debugger_statement] = STATE(3137), + [sym_return_statement] = STATE(3137), + [sym_throw_statement] = STATE(3137), + [sym_empty_statement] = STATE(3137), + [sym_labeled_statement] = STATE(3137), + [sym_parenthesized_expression] = STATE(768), + [sym__expression] = STATE(1211), + [sym_yield_expression] = STATE(1567), + [sym_object] = STATE(1357), + [sym_array] = STATE(1360), + [sym_class] = STATE(1523), + [sym_class_declaration] = STATE(579), + [sym_function] = STATE(1523), + [sym_function_declaration] = STATE(579), + [sym_generator_function] = STATE(1523), + [sym_generator_function_declaration] = STATE(579), + [sym_arrow_function] = STATE(1523), + [sym__call_signature] = STATE(3196), + [sym_call_expression] = STATE(1523), + [sym_new_expression] = STATE(1567), + [sym_await_expression] = STATE(1567), + [sym_member_expression] = STATE(768), + [sym_subscript_expression] = STATE(768), + [sym_assignment_expression] = STATE(1567), + [sym__augmented_assignment_lhs] = STATE(1928), + [sym_augmented_assignment_expression] = STATE(1567), + [sym_ternary_expression] = STATE(1567), + [sym_binary_expression] = STATE(1567), + [sym_unary_expression] = STATE(1567), + [sym_update_expression] = STATE(1567), + [sym_sequence_expression] = STATE(2826), + [sym_string] = STATE(1523), + [sym_template_string] = STATE(1523), + [sym_regex] = STATE(1523), + [sym_meta_property] = STATE(1523), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(774), + [sym_function_signature] = STATE(579), + [sym_type_assertion] = STATE(1567), + [sym_as_expression] = STATE(1567), + [sym_ambient_declaration] = STATE(579), + [sym_abstract_class_declaration] = STATE(579), + [sym_module] = STATE(579), + [sym_internal_module] = STATE(1373), + [sym_import_alias] = STATE(579), + [sym_interface_declaration] = STATE(579), + [sym_enum_declaration] = STATE(579), + [sym_type_alias_declaration] = STATE(579), + [sym_type_arguments] = STATE(292), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2150), [sym_identifier] = ACTIONS(393), [anon_sym_export] = ACTIONS(395), [anon_sym_namespace] = ACTIONS(397), @@ -15125,77 +15037,219 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(103), [sym_readonly] = ACTIONS(417), }, + [40] = { + [sym_export_statement] = STATE(549), + [sym__declaration] = STATE(549), + [sym_import] = STATE(1523), + [sym_import_statement] = STATE(549), + [sym_expression_statement] = STATE(549), + [sym_variable_declaration] = STATE(579), + [sym_lexical_declaration] = STATE(579), + [sym_statement_block] = STATE(549), + [sym_if_statement] = STATE(549), + [sym_switch_statement] = STATE(549), + [sym_for_statement] = STATE(549), + [sym_for_in_statement] = STATE(549), + [sym_while_statement] = STATE(549), + [sym_do_statement] = STATE(549), + [sym_try_statement] = STATE(549), + [sym_with_statement] = STATE(549), + [sym_break_statement] = STATE(549), + [sym_continue_statement] = STATE(549), + [sym_debugger_statement] = STATE(549), + [sym_return_statement] = STATE(549), + [sym_throw_statement] = STATE(549), + [sym_empty_statement] = STATE(549), + [sym_labeled_statement] = STATE(549), + [sym_parenthesized_expression] = STATE(768), + [sym__expression] = STATE(1211), + [sym_yield_expression] = STATE(1567), + [sym_object] = STATE(1357), + [sym_array] = STATE(1360), + [sym_class] = STATE(1523), + [sym_class_declaration] = STATE(579), + [sym_function] = STATE(1523), + [sym_function_declaration] = STATE(579), + [sym_generator_function] = STATE(1523), + [sym_generator_function_declaration] = STATE(579), + [sym_arrow_function] = STATE(1523), + [sym__call_signature] = STATE(3196), + [sym_call_expression] = STATE(1523), + [sym_new_expression] = STATE(1567), + [sym_await_expression] = STATE(1567), + [sym_member_expression] = STATE(768), + [sym_subscript_expression] = STATE(768), + [sym_assignment_expression] = STATE(1567), + [sym__augmented_assignment_lhs] = STATE(1928), + [sym_augmented_assignment_expression] = STATE(1567), + [sym_ternary_expression] = STATE(1567), + [sym_binary_expression] = STATE(1567), + [sym_unary_expression] = STATE(1567), + [sym_update_expression] = STATE(1567), + [sym_sequence_expression] = STATE(2826), + [sym_string] = STATE(1523), + [sym_template_string] = STATE(1523), + [sym_regex] = STATE(1523), + [sym_meta_property] = STATE(1523), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(774), + [sym_function_signature] = STATE(579), + [sym_type_assertion] = STATE(1567), + [sym_as_expression] = STATE(1567), + [sym_ambient_declaration] = STATE(579), + [sym_abstract_class_declaration] = STATE(579), + [sym_module] = STATE(579), + [sym_internal_module] = STATE(86), + [sym_import_alias] = STATE(579), + [sym_interface_declaration] = STATE(579), + [sym_enum_declaration] = STATE(579), + [sym_type_alias_declaration] = STATE(579), + [sym_type_arguments] = STATE(292), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2247), + [sym_identifier] = ACTIONS(7), + [anon_sym_export] = ACTIONS(11), + [anon_sym_namespace] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_type] = ACTIONS(17), + [anon_sym_typeof] = ACTIONS(19), + [anon_sym_import] = ACTIONS(21), + [anon_sym_var] = ACTIONS(23), + [anon_sym_let] = ACTIONS(25), + [anon_sym_const] = ACTIONS(27), + [anon_sym_BANG] = ACTIONS(29), + [anon_sym_if] = ACTIONS(31), + [anon_sym_switch] = ACTIONS(33), + [anon_sym_for] = ACTIONS(35), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(39), + [anon_sym_while] = ACTIONS(41), + [anon_sym_do] = ACTIONS(43), + [anon_sym_try] = ACTIONS(45), + [anon_sym_with] = ACTIONS(47), + [anon_sym_break] = ACTIONS(49), + [anon_sym_continue] = ACTIONS(51), + [anon_sym_debugger] = ACTIONS(53), + [anon_sym_return] = ACTIONS(55), + [anon_sym_throw] = ACTIONS(57), + [anon_sym_SEMI] = ACTIONS(59), + [anon_sym_yield] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(69), + [anon_sym_async] = ACTIONS(71), + [anon_sym_function] = ACTIONS(73), + [anon_sym_new] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(29), + [anon_sym_void] = ACTIONS(19), + [anon_sym_delete] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_DQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(85), + [sym_number] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(93), + [anon_sym_abstract] = ACTIONS(95), + [anon_sym_get] = ACTIONS(93), + [anon_sym_set] = ACTIONS(93), + [anon_sym_declare] = ACTIONS(97), + [anon_sym_public] = ACTIONS(93), + [anon_sym_private] = ACTIONS(93), + [anon_sym_protected] = ACTIONS(93), + [anon_sym_module] = ACTIONS(99), + [anon_sym_any] = ACTIONS(93), + [anon_sym_number] = ACTIONS(93), + [anon_sym_boolean] = ACTIONS(93), + [anon_sym_string] = ACTIONS(93), + [anon_sym_symbol] = ACTIONS(93), + [anon_sym_interface] = ACTIONS(101), + [anon_sym_enum] = ACTIONS(103), + [sym_readonly] = ACTIONS(93), + }, [41] = { - [sym_export_statement] = STATE(554), - [sym__declaration] = STATE(554), - [sym_import] = STATE(1498), - [sym_import_statement] = STATE(554), - [sym_expression_statement] = STATE(554), - [sym_variable_declaration] = STATE(598), - [sym_lexical_declaration] = STATE(598), - [sym_statement_block] = STATE(554), - [sym_if_statement] = STATE(554), - [sym_switch_statement] = STATE(554), - [sym_for_statement] = STATE(554), - [sym_for_in_statement] = STATE(554), - [sym_while_statement] = STATE(554), - [sym_do_statement] = STATE(554), - [sym_try_statement] = STATE(554), - [sym_with_statement] = STATE(554), - [sym_break_statement] = STATE(554), - [sym_continue_statement] = STATE(554), - [sym_debugger_statement] = STATE(554), - [sym_return_statement] = STATE(554), - [sym_throw_statement] = STATE(554), - [sym_empty_statement] = STATE(554), - [sym_labeled_statement] = STATE(554), - [sym_parenthesized_expression] = STATE(764), - [sym__expression] = STATE(1265), - [sym_yield_expression] = STATE(1518), - [sym_object] = STATE(1435), - [sym_array] = STATE(1433), - [sym_class] = STATE(1498), - [sym_class_declaration] = STATE(598), - [sym_function] = STATE(1498), - [sym_function_declaration] = STATE(598), - [sym_generator_function] = STATE(1498), - [sym_generator_function_declaration] = STATE(598), - [sym_arrow_function] = STATE(1498), - [sym__call_signature] = STATE(3145), - [sym_call_expression] = STATE(1498), - [sym_new_expression] = STATE(1518), - [sym_await_expression] = STATE(1518), - [sym_member_expression] = STATE(764), - [sym_subscript_expression] = STATE(764), - [sym_assignment_expression] = STATE(1518), - [sym__augmented_assignment_lhs] = STATE(1925), - [sym_augmented_assignment_expression] = STATE(1518), - [sym_ternary_expression] = STATE(1518), - [sym_binary_expression] = STATE(1518), - [sym_unary_expression] = STATE(1518), - [sym_update_expression] = STATE(1518), - [sym_sequence_expression] = STATE(2844), - [sym_string] = STATE(1498), - [sym_template_string] = STATE(1498), - [sym_regex] = STATE(1498), - [sym_meta_property] = STATE(1498), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(772), - [sym_function_signature] = STATE(598), - [sym_type_assertion] = STATE(1518), - [sym_as_expression] = STATE(1518), - [sym_ambient_declaration] = STATE(598), - [sym_abstract_class_declaration] = STATE(598), - [sym_module] = STATE(598), - [sym_internal_module] = STATE(1363), - [sym_import_alias] = STATE(598), - [sym_interface_declaration] = STATE(598), - [sym_enum_declaration] = STATE(598), - [sym_type_alias_declaration] = STATE(598), - [sym_type_arguments] = STATE(349), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2326), + [sym_export_statement] = STATE(610), + [sym__declaration] = STATE(610), + [sym_import] = STATE(1523), + [sym_import_statement] = STATE(610), + [sym_expression_statement] = STATE(610), + [sym_variable_declaration] = STATE(579), + [sym_lexical_declaration] = STATE(579), + [sym_statement_block] = STATE(610), + [sym_if_statement] = STATE(610), + [sym_switch_statement] = STATE(610), + [sym_for_statement] = STATE(610), + [sym_for_in_statement] = STATE(610), + [sym_while_statement] = STATE(610), + [sym_do_statement] = STATE(610), + [sym_try_statement] = STATE(610), + [sym_with_statement] = STATE(610), + [sym_break_statement] = STATE(610), + [sym_continue_statement] = STATE(610), + [sym_debugger_statement] = STATE(610), + [sym_return_statement] = STATE(610), + [sym_throw_statement] = STATE(610), + [sym_empty_statement] = STATE(610), + [sym_labeled_statement] = STATE(610), + [sym_parenthesized_expression] = STATE(768), + [sym__expression] = STATE(1211), + [sym_yield_expression] = STATE(1567), + [sym_object] = STATE(1357), + [sym_array] = STATE(1360), + [sym_class] = STATE(1523), + [sym_class_declaration] = STATE(579), + [sym_function] = STATE(1523), + [sym_function_declaration] = STATE(579), + [sym_generator_function] = STATE(1523), + [sym_generator_function_declaration] = STATE(579), + [sym_arrow_function] = STATE(1523), + [sym__call_signature] = STATE(3196), + [sym_call_expression] = STATE(1523), + [sym_new_expression] = STATE(1567), + [sym_await_expression] = STATE(1567), + [sym_member_expression] = STATE(768), + [sym_subscript_expression] = STATE(768), + [sym_assignment_expression] = STATE(1567), + [sym__augmented_assignment_lhs] = STATE(1928), + [sym_augmented_assignment_expression] = STATE(1567), + [sym_ternary_expression] = STATE(1567), + [sym_binary_expression] = STATE(1567), + [sym_unary_expression] = STATE(1567), + [sym_update_expression] = STATE(1567), + [sym_sequence_expression] = STATE(2826), + [sym_string] = STATE(1523), + [sym_template_string] = STATE(1523), + [sym_regex] = STATE(1523), + [sym_meta_property] = STATE(1523), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(774), + [sym_function_signature] = STATE(579), + [sym_type_assertion] = STATE(1567), + [sym_as_expression] = STATE(1567), + [sym_ambient_declaration] = STATE(579), + [sym_abstract_class_declaration] = STATE(579), + [sym_module] = STATE(579), + [sym_internal_module] = STATE(1373), + [sym_import_alias] = STATE(579), + [sym_interface_declaration] = STATE(579), + [sym_enum_declaration] = STATE(579), + [sym_type_alias_declaration] = STATE(579), + [sym_type_arguments] = STATE(292), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2150), [sym_identifier] = ACTIONS(393), [anon_sym_export] = ACTIONS(395), [anon_sym_namespace] = ACTIONS(397), @@ -15268,76 +15322,76 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_readonly] = ACTIONS(417), }, [42] = { - [sym_export_statement] = STATE(554), - [sym__declaration] = STATE(554), - [sym_import] = STATE(1498), - [sym_import_statement] = STATE(554), - [sym_expression_statement] = STATE(554), - [sym_variable_declaration] = STATE(598), - [sym_lexical_declaration] = STATE(598), - [sym_statement_block] = STATE(554), - [sym_if_statement] = STATE(554), - [sym_switch_statement] = STATE(554), - [sym_for_statement] = STATE(554), - [sym_for_in_statement] = STATE(554), - [sym_while_statement] = STATE(554), - [sym_do_statement] = STATE(554), - [sym_try_statement] = STATE(554), - [sym_with_statement] = STATE(554), - [sym_break_statement] = STATE(554), - [sym_continue_statement] = STATE(554), - [sym_debugger_statement] = STATE(554), - [sym_return_statement] = STATE(554), - [sym_throw_statement] = STATE(554), - [sym_empty_statement] = STATE(554), - [sym_labeled_statement] = STATE(554), - [sym_parenthesized_expression] = STATE(764), - [sym__expression] = STATE(1265), - [sym_yield_expression] = STATE(1518), - [sym_object] = STATE(1435), - [sym_array] = STATE(1433), - [sym_class] = STATE(1498), - [sym_class_declaration] = STATE(598), - [sym_function] = STATE(1498), - [sym_function_declaration] = STATE(598), - [sym_generator_function] = STATE(1498), - [sym_generator_function_declaration] = STATE(598), - [sym_arrow_function] = STATE(1498), - [sym__call_signature] = STATE(3145), - [sym_call_expression] = STATE(1498), - [sym_new_expression] = STATE(1518), - [sym_await_expression] = STATE(1518), - [sym_member_expression] = STATE(764), - [sym_subscript_expression] = STATE(764), - [sym_assignment_expression] = STATE(1518), - [sym__augmented_assignment_lhs] = STATE(1925), - [sym_augmented_assignment_expression] = STATE(1518), - [sym_ternary_expression] = STATE(1518), - [sym_binary_expression] = STATE(1518), - [sym_unary_expression] = STATE(1518), - [sym_update_expression] = STATE(1518), - [sym_sequence_expression] = STATE(2844), - [sym_string] = STATE(1498), - [sym_template_string] = STATE(1498), - [sym_regex] = STATE(1498), - [sym_meta_property] = STATE(1498), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(772), - [sym_function_signature] = STATE(598), - [sym_type_assertion] = STATE(1518), - [sym_as_expression] = STATE(1518), - [sym_ambient_declaration] = STATE(598), - [sym_abstract_class_declaration] = STATE(598), - [sym_module] = STATE(598), - [sym_internal_module] = STATE(92), - [sym_import_alias] = STATE(598), - [sym_interface_declaration] = STATE(598), - [sym_enum_declaration] = STATE(598), - [sym_type_alias_declaration] = STATE(598), - [sym_type_arguments] = STATE(349), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2286), + [sym_export_statement] = STATE(607), + [sym__declaration] = STATE(607), + [sym_import] = STATE(1523), + [sym_import_statement] = STATE(607), + [sym_expression_statement] = STATE(607), + [sym_variable_declaration] = STATE(579), + [sym_lexical_declaration] = STATE(579), + [sym_statement_block] = STATE(607), + [sym_if_statement] = STATE(607), + [sym_switch_statement] = STATE(607), + [sym_for_statement] = STATE(607), + [sym_for_in_statement] = STATE(607), + [sym_while_statement] = STATE(607), + [sym_do_statement] = STATE(607), + [sym_try_statement] = STATE(607), + [sym_with_statement] = STATE(607), + [sym_break_statement] = STATE(607), + [sym_continue_statement] = STATE(607), + [sym_debugger_statement] = STATE(607), + [sym_return_statement] = STATE(607), + [sym_throw_statement] = STATE(607), + [sym_empty_statement] = STATE(607), + [sym_labeled_statement] = STATE(607), + [sym_parenthesized_expression] = STATE(768), + [sym__expression] = STATE(1211), + [sym_yield_expression] = STATE(1567), + [sym_object] = STATE(1357), + [sym_array] = STATE(1360), + [sym_class] = STATE(1523), + [sym_class_declaration] = STATE(579), + [sym_function] = STATE(1523), + [sym_function_declaration] = STATE(579), + [sym_generator_function] = STATE(1523), + [sym_generator_function_declaration] = STATE(579), + [sym_arrow_function] = STATE(1523), + [sym__call_signature] = STATE(3196), + [sym_call_expression] = STATE(1523), + [sym_new_expression] = STATE(1567), + [sym_await_expression] = STATE(1567), + [sym_member_expression] = STATE(768), + [sym_subscript_expression] = STATE(768), + [sym_assignment_expression] = STATE(1567), + [sym__augmented_assignment_lhs] = STATE(1928), + [sym_augmented_assignment_expression] = STATE(1567), + [sym_ternary_expression] = STATE(1567), + [sym_binary_expression] = STATE(1567), + [sym_unary_expression] = STATE(1567), + [sym_update_expression] = STATE(1567), + [sym_sequence_expression] = STATE(2826), + [sym_string] = STATE(1523), + [sym_template_string] = STATE(1523), + [sym_regex] = STATE(1523), + [sym_meta_property] = STATE(1523), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(774), + [sym_function_signature] = STATE(579), + [sym_type_assertion] = STATE(1567), + [sym_as_expression] = STATE(1567), + [sym_ambient_declaration] = STATE(579), + [sym_abstract_class_declaration] = STATE(579), + [sym_module] = STATE(579), + [sym_internal_module] = STATE(86), + [sym_import_alias] = STATE(579), + [sym_interface_declaration] = STATE(579), + [sym_enum_declaration] = STATE(579), + [sym_type_alias_declaration] = STATE(579), + [sym_type_arguments] = STATE(292), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2247), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_namespace] = ACTIONS(13), @@ -15410,96 +15464,96 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_readonly] = ACTIONS(93), }, [43] = { - [sym_export_statement] = STATE(522), - [sym__declaration] = STATE(522), - [sym_import] = STATE(1498), - [sym_import_statement] = STATE(522), - [sym_expression_statement] = STATE(522), - [sym_variable_declaration] = STATE(598), - [sym_lexical_declaration] = STATE(598), - [sym_statement_block] = STATE(522), - [sym_if_statement] = STATE(522), - [sym_switch_statement] = STATE(522), - [sym_for_statement] = STATE(522), - [sym_for_in_statement] = STATE(522), - [sym_while_statement] = STATE(522), - [sym_do_statement] = STATE(522), - [sym_try_statement] = STATE(522), - [sym_with_statement] = STATE(522), - [sym_break_statement] = STATE(522), - [sym_continue_statement] = STATE(522), - [sym_debugger_statement] = STATE(522), - [sym_return_statement] = STATE(522), - [sym_throw_statement] = STATE(522), - [sym_empty_statement] = STATE(522), - [sym_labeled_statement] = STATE(522), - [sym_parenthesized_expression] = STATE(764), - [sym__expression] = STATE(1265), - [sym_yield_expression] = STATE(1518), - [sym_object] = STATE(1435), - [sym_array] = STATE(1433), - [sym_class] = STATE(1498), - [sym_class_declaration] = STATE(598), - [sym_function] = STATE(1498), - [sym_function_declaration] = STATE(598), - [sym_generator_function] = STATE(1498), - [sym_generator_function_declaration] = STATE(598), - [sym_arrow_function] = STATE(1498), - [sym__call_signature] = STATE(3145), - [sym_call_expression] = STATE(1498), - [sym_new_expression] = STATE(1518), - [sym_await_expression] = STATE(1518), - [sym_member_expression] = STATE(764), - [sym_subscript_expression] = STATE(764), - [sym_assignment_expression] = STATE(1518), - [sym__augmented_assignment_lhs] = STATE(1925), - [sym_augmented_assignment_expression] = STATE(1518), - [sym_ternary_expression] = STATE(1518), - [sym_binary_expression] = STATE(1518), - [sym_unary_expression] = STATE(1518), - [sym_update_expression] = STATE(1518), - [sym_sequence_expression] = STATE(2844), - [sym_string] = STATE(1498), - [sym_template_string] = STATE(1498), - [sym_regex] = STATE(1498), - [sym_meta_property] = STATE(1498), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(772), - [sym_function_signature] = STATE(598), - [sym_type_assertion] = STATE(1518), - [sym_as_expression] = STATE(1518), - [sym_ambient_declaration] = STATE(598), - [sym_abstract_class_declaration] = STATE(598), - [sym_module] = STATE(598), - [sym_internal_module] = STATE(92), - [sym_import_alias] = STATE(598), - [sym_interface_declaration] = STATE(598), - [sym_enum_declaration] = STATE(598), - [sym_type_alias_declaration] = STATE(598), - [sym_type_arguments] = STATE(349), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2286), - [sym_identifier] = ACTIONS(7), - [anon_sym_export] = ACTIONS(11), - [anon_sym_namespace] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_type] = ACTIONS(17), + [sym_export_statement] = STATE(613), + [sym__declaration] = STATE(613), + [sym_import] = STATE(1523), + [sym_import_statement] = STATE(613), + [sym_expression_statement] = STATE(613), + [sym_variable_declaration] = STATE(579), + [sym_lexical_declaration] = STATE(579), + [sym_statement_block] = STATE(613), + [sym_if_statement] = STATE(613), + [sym_switch_statement] = STATE(613), + [sym_for_statement] = STATE(613), + [sym_for_in_statement] = STATE(613), + [sym_while_statement] = STATE(613), + [sym_do_statement] = STATE(613), + [sym_try_statement] = STATE(613), + [sym_with_statement] = STATE(613), + [sym_break_statement] = STATE(613), + [sym_continue_statement] = STATE(613), + [sym_debugger_statement] = STATE(613), + [sym_return_statement] = STATE(613), + [sym_throw_statement] = STATE(613), + [sym_empty_statement] = STATE(613), + [sym_labeled_statement] = STATE(613), + [sym_parenthesized_expression] = STATE(768), + [sym__expression] = STATE(1211), + [sym_yield_expression] = STATE(1567), + [sym_object] = STATE(1357), + [sym_array] = STATE(1360), + [sym_class] = STATE(1523), + [sym_class_declaration] = STATE(579), + [sym_function] = STATE(1523), + [sym_function_declaration] = STATE(579), + [sym_generator_function] = STATE(1523), + [sym_generator_function_declaration] = STATE(579), + [sym_arrow_function] = STATE(1523), + [sym__call_signature] = STATE(3196), + [sym_call_expression] = STATE(1523), + [sym_new_expression] = STATE(1567), + [sym_await_expression] = STATE(1567), + [sym_member_expression] = STATE(768), + [sym_subscript_expression] = STATE(768), + [sym_assignment_expression] = STATE(1567), + [sym__augmented_assignment_lhs] = STATE(1928), + [sym_augmented_assignment_expression] = STATE(1567), + [sym_ternary_expression] = STATE(1567), + [sym_binary_expression] = STATE(1567), + [sym_unary_expression] = STATE(1567), + [sym_update_expression] = STATE(1567), + [sym_sequence_expression] = STATE(2826), + [sym_string] = STATE(1523), + [sym_template_string] = STATE(1523), + [sym_regex] = STATE(1523), + [sym_meta_property] = STATE(1523), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(774), + [sym_function_signature] = STATE(579), + [sym_type_assertion] = STATE(1567), + [sym_as_expression] = STATE(1567), + [sym_ambient_declaration] = STATE(579), + [sym_abstract_class_declaration] = STATE(579), + [sym_module] = STATE(579), + [sym_internal_module] = STATE(1373), + [sym_import_alias] = STATE(579), + [sym_interface_declaration] = STATE(579), + [sym_enum_declaration] = STATE(579), + [sym_type_alias_declaration] = STATE(579), + [sym_type_arguments] = STATE(292), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2150), + [sym_identifier] = ACTIONS(393), + [anon_sym_export] = ACTIONS(395), + [anon_sym_namespace] = ACTIONS(397), + [anon_sym_LBRACE] = ACTIONS(399), + [anon_sym_type] = ACTIONS(401), [anon_sym_typeof] = ACTIONS(19), [anon_sym_import] = ACTIONS(21), [anon_sym_var] = ACTIONS(23), [anon_sym_let] = ACTIONS(25), [anon_sym_const] = ACTIONS(27), [anon_sym_BANG] = ACTIONS(29), - [anon_sym_if] = ACTIONS(31), + [anon_sym_if] = ACTIONS(403), [anon_sym_switch] = ACTIONS(33), - [anon_sym_for] = ACTIONS(35), + [anon_sym_for] = ACTIONS(405), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_await] = ACTIONS(39), - [anon_sym_while] = ACTIONS(41), + [anon_sym_while] = ACTIONS(407), [anon_sym_do] = ACTIONS(43), [anon_sym_try] = ACTIONS(45), - [anon_sym_with] = ACTIONS(47), + [anon_sym_with] = ACTIONS(409), [anon_sym_break] = ACTIONS(49), [anon_sym_continue] = ACTIONS(51), [anon_sym_debugger] = ACTIONS(53), @@ -15510,9 +15564,9 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(69), - [anon_sym_async] = ACTIONS(71), - [anon_sym_function] = ACTIONS(73), + [anon_sym_class] = ACTIONS(411), + [anon_sym_async] = ACTIONS(413), + [anon_sym_function] = ACTIONS(415), [anon_sym_new] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(77), [anon_sym_DASH] = ACTIONS(77), @@ -15533,115 +15587,115 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(93), + [anon_sym_static] = ACTIONS(417), [anon_sym_abstract] = ACTIONS(95), - [anon_sym_get] = ACTIONS(93), - [anon_sym_set] = ACTIONS(93), - [anon_sym_declare] = ACTIONS(97), - [anon_sym_public] = ACTIONS(93), - [anon_sym_private] = ACTIONS(93), - [anon_sym_protected] = ACTIONS(93), - [anon_sym_module] = ACTIONS(99), - [anon_sym_any] = ACTIONS(93), - [anon_sym_number] = ACTIONS(93), - [anon_sym_boolean] = ACTIONS(93), - [anon_sym_string] = ACTIONS(93), - [anon_sym_symbol] = ACTIONS(93), + [anon_sym_get] = ACTIONS(417), + [anon_sym_set] = ACTIONS(417), + [anon_sym_declare] = ACTIONS(419), + [anon_sym_public] = ACTIONS(417), + [anon_sym_private] = ACTIONS(417), + [anon_sym_protected] = ACTIONS(417), + [anon_sym_module] = ACTIONS(421), + [anon_sym_any] = ACTIONS(417), + [anon_sym_number] = ACTIONS(417), + [anon_sym_boolean] = ACTIONS(417), + [anon_sym_string] = ACTIONS(417), + [anon_sym_symbol] = ACTIONS(417), [anon_sym_interface] = ACTIONS(101), [anon_sym_enum] = ACTIONS(103), - [sym_readonly] = ACTIONS(93), + [sym_readonly] = ACTIONS(417), }, [44] = { - [sym_export_statement] = STATE(560), - [sym__declaration] = STATE(560), - [sym_import] = STATE(1498), - [sym_import_statement] = STATE(560), - [sym_expression_statement] = STATE(560), - [sym_variable_declaration] = STATE(598), - [sym_lexical_declaration] = STATE(598), - [sym_statement_block] = STATE(560), - [sym_if_statement] = STATE(560), - [sym_switch_statement] = STATE(560), - [sym_for_statement] = STATE(560), - [sym_for_in_statement] = STATE(560), - [sym_while_statement] = STATE(560), - [sym_do_statement] = STATE(560), - [sym_try_statement] = STATE(560), - [sym_with_statement] = STATE(560), - [sym_break_statement] = STATE(560), - [sym_continue_statement] = STATE(560), - [sym_debugger_statement] = STATE(560), - [sym_return_statement] = STATE(560), - [sym_throw_statement] = STATE(560), - [sym_empty_statement] = STATE(560), - [sym_labeled_statement] = STATE(560), - [sym_parenthesized_expression] = STATE(764), - [sym__expression] = STATE(1265), - [sym_yield_expression] = STATE(1518), - [sym_object] = STATE(1435), - [sym_array] = STATE(1433), - [sym_class] = STATE(1498), - [sym_class_declaration] = STATE(598), - [sym_function] = STATE(1498), - [sym_function_declaration] = STATE(598), - [sym_generator_function] = STATE(1498), - [sym_generator_function_declaration] = STATE(598), - [sym_arrow_function] = STATE(1498), - [sym__call_signature] = STATE(3145), - [sym_call_expression] = STATE(1498), - [sym_new_expression] = STATE(1518), - [sym_await_expression] = STATE(1518), - [sym_member_expression] = STATE(764), - [sym_subscript_expression] = STATE(764), - [sym_assignment_expression] = STATE(1518), - [sym__augmented_assignment_lhs] = STATE(1925), - [sym_augmented_assignment_expression] = STATE(1518), - [sym_ternary_expression] = STATE(1518), - [sym_binary_expression] = STATE(1518), - [sym_unary_expression] = STATE(1518), - [sym_update_expression] = STATE(1518), - [sym_sequence_expression] = STATE(2844), - [sym_string] = STATE(1498), - [sym_template_string] = STATE(1498), - [sym_regex] = STATE(1498), - [sym_meta_property] = STATE(1498), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(772), - [sym_function_signature] = STATE(598), - [sym_type_assertion] = STATE(1518), - [sym_as_expression] = STATE(1518), - [sym_ambient_declaration] = STATE(598), - [sym_abstract_class_declaration] = STATE(598), - [sym_module] = STATE(598), - [sym_internal_module] = STATE(92), - [sym_import_alias] = STATE(598), - [sym_interface_declaration] = STATE(598), - [sym_enum_declaration] = STATE(598), - [sym_type_alias_declaration] = STATE(598), - [sym_type_arguments] = STATE(349), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2286), - [sym_identifier] = ACTIONS(7), - [anon_sym_export] = ACTIONS(11), - [anon_sym_namespace] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_type] = ACTIONS(17), + [sym_export_statement] = STATE(596), + [sym__declaration] = STATE(596), + [sym_import] = STATE(1523), + [sym_import_statement] = STATE(596), + [sym_expression_statement] = STATE(596), + [sym_variable_declaration] = STATE(579), + [sym_lexical_declaration] = STATE(579), + [sym_statement_block] = STATE(596), + [sym_if_statement] = STATE(596), + [sym_switch_statement] = STATE(596), + [sym_for_statement] = STATE(596), + [sym_for_in_statement] = STATE(596), + [sym_while_statement] = STATE(596), + [sym_do_statement] = STATE(596), + [sym_try_statement] = STATE(596), + [sym_with_statement] = STATE(596), + [sym_break_statement] = STATE(596), + [sym_continue_statement] = STATE(596), + [sym_debugger_statement] = STATE(596), + [sym_return_statement] = STATE(596), + [sym_throw_statement] = STATE(596), + [sym_empty_statement] = STATE(596), + [sym_labeled_statement] = STATE(596), + [sym_parenthesized_expression] = STATE(768), + [sym__expression] = STATE(1211), + [sym_yield_expression] = STATE(1567), + [sym_object] = STATE(1357), + [sym_array] = STATE(1360), + [sym_class] = STATE(1523), + [sym_class_declaration] = STATE(579), + [sym_function] = STATE(1523), + [sym_function_declaration] = STATE(579), + [sym_generator_function] = STATE(1523), + [sym_generator_function_declaration] = STATE(579), + [sym_arrow_function] = STATE(1523), + [sym__call_signature] = STATE(3196), + [sym_call_expression] = STATE(1523), + [sym_new_expression] = STATE(1567), + [sym_await_expression] = STATE(1567), + [sym_member_expression] = STATE(768), + [sym_subscript_expression] = STATE(768), + [sym_assignment_expression] = STATE(1567), + [sym__augmented_assignment_lhs] = STATE(1928), + [sym_augmented_assignment_expression] = STATE(1567), + [sym_ternary_expression] = STATE(1567), + [sym_binary_expression] = STATE(1567), + [sym_unary_expression] = STATE(1567), + [sym_update_expression] = STATE(1567), + [sym_sequence_expression] = STATE(2826), + [sym_string] = STATE(1523), + [sym_template_string] = STATE(1523), + [sym_regex] = STATE(1523), + [sym_meta_property] = STATE(1523), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(774), + [sym_function_signature] = STATE(579), + [sym_type_assertion] = STATE(1567), + [sym_as_expression] = STATE(1567), + [sym_ambient_declaration] = STATE(579), + [sym_abstract_class_declaration] = STATE(579), + [sym_module] = STATE(579), + [sym_internal_module] = STATE(1373), + [sym_import_alias] = STATE(579), + [sym_interface_declaration] = STATE(579), + [sym_enum_declaration] = STATE(579), + [sym_type_alias_declaration] = STATE(579), + [sym_type_arguments] = STATE(292), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2150), + [sym_identifier] = ACTIONS(393), + [anon_sym_export] = ACTIONS(395), + [anon_sym_namespace] = ACTIONS(397), + [anon_sym_LBRACE] = ACTIONS(399), + [anon_sym_type] = ACTIONS(401), [anon_sym_typeof] = ACTIONS(19), [anon_sym_import] = ACTIONS(21), [anon_sym_var] = ACTIONS(23), [anon_sym_let] = ACTIONS(25), [anon_sym_const] = ACTIONS(27), [anon_sym_BANG] = ACTIONS(29), - [anon_sym_if] = ACTIONS(31), + [anon_sym_if] = ACTIONS(403), [anon_sym_switch] = ACTIONS(33), - [anon_sym_for] = ACTIONS(35), + [anon_sym_for] = ACTIONS(405), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_await] = ACTIONS(39), - [anon_sym_while] = ACTIONS(41), + [anon_sym_while] = ACTIONS(407), [anon_sym_do] = ACTIONS(43), [anon_sym_try] = ACTIONS(45), - [anon_sym_with] = ACTIONS(47), + [anon_sym_with] = ACTIONS(409), [anon_sym_break] = ACTIONS(49), [anon_sym_continue] = ACTIONS(51), [anon_sym_debugger] = ACTIONS(53), @@ -15652,9 +15706,9 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(69), - [anon_sym_async] = ACTIONS(71), - [anon_sym_function] = ACTIONS(73), + [anon_sym_class] = ACTIONS(411), + [anon_sym_async] = ACTIONS(413), + [anon_sym_function] = ACTIONS(415), [anon_sym_new] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(77), [anon_sym_DASH] = ACTIONS(77), @@ -15675,32 +15729,32 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(93), + [anon_sym_static] = ACTIONS(417), [anon_sym_abstract] = ACTIONS(95), - [anon_sym_get] = ACTIONS(93), - [anon_sym_set] = ACTIONS(93), - [anon_sym_declare] = ACTIONS(97), - [anon_sym_public] = ACTIONS(93), - [anon_sym_private] = ACTIONS(93), - [anon_sym_protected] = ACTIONS(93), - [anon_sym_module] = ACTIONS(99), - [anon_sym_any] = ACTIONS(93), - [anon_sym_number] = ACTIONS(93), - [anon_sym_boolean] = ACTIONS(93), - [anon_sym_string] = ACTIONS(93), - [anon_sym_symbol] = ACTIONS(93), + [anon_sym_get] = ACTIONS(417), + [anon_sym_set] = ACTIONS(417), + [anon_sym_declare] = ACTIONS(419), + [anon_sym_public] = ACTIONS(417), + [anon_sym_private] = ACTIONS(417), + [anon_sym_protected] = ACTIONS(417), + [anon_sym_module] = ACTIONS(421), + [anon_sym_any] = ACTIONS(417), + [anon_sym_number] = ACTIONS(417), + [anon_sym_boolean] = ACTIONS(417), + [anon_sym_string] = ACTIONS(417), + [anon_sym_symbol] = ACTIONS(417), [anon_sym_interface] = ACTIONS(101), [anon_sym_enum] = ACTIONS(103), - [sym_readonly] = ACTIONS(93), + [sym_readonly] = ACTIONS(417), }, [45] = { [sym_export_statement] = STATE(542), [sym__declaration] = STATE(542), - [sym_import] = STATE(1498), + [sym_import] = STATE(1523), [sym_import_statement] = STATE(542), [sym_expression_statement] = STATE(542), - [sym_variable_declaration] = STATE(598), - [sym_lexical_declaration] = STATE(598), + [sym_variable_declaration] = STATE(579), + [sym_lexical_declaration] = STATE(579), [sym_statement_block] = STATE(542), [sym_if_statement] = STATE(542), [sym_switch_statement] = STATE(542), @@ -15717,73 +15771,73 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_throw_statement] = STATE(542), [sym_empty_statement] = STATE(542), [sym_labeled_statement] = STATE(542), - [sym_parenthesized_expression] = STATE(764), - [sym__expression] = STATE(1265), - [sym_yield_expression] = STATE(1518), - [sym_object] = STATE(1435), - [sym_array] = STATE(1433), - [sym_class] = STATE(1498), - [sym_class_declaration] = STATE(598), - [sym_function] = STATE(1498), - [sym_function_declaration] = STATE(598), - [sym_generator_function] = STATE(1498), - [sym_generator_function_declaration] = STATE(598), - [sym_arrow_function] = STATE(1498), - [sym__call_signature] = STATE(3145), - [sym_call_expression] = STATE(1498), - [sym_new_expression] = STATE(1518), - [sym_await_expression] = STATE(1518), - [sym_member_expression] = STATE(764), - [sym_subscript_expression] = STATE(764), - [sym_assignment_expression] = STATE(1518), - [sym__augmented_assignment_lhs] = STATE(1925), - [sym_augmented_assignment_expression] = STATE(1518), - [sym_ternary_expression] = STATE(1518), - [sym_binary_expression] = STATE(1518), - [sym_unary_expression] = STATE(1518), - [sym_update_expression] = STATE(1518), - [sym_sequence_expression] = STATE(2844), - [sym_string] = STATE(1498), - [sym_template_string] = STATE(1498), - [sym_regex] = STATE(1498), - [sym_meta_property] = STATE(1498), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(772), - [sym_function_signature] = STATE(598), - [sym_type_assertion] = STATE(1518), - [sym_as_expression] = STATE(1518), - [sym_ambient_declaration] = STATE(598), - [sym_abstract_class_declaration] = STATE(598), - [sym_module] = STATE(598), - [sym_internal_module] = STATE(1363), - [sym_import_alias] = STATE(598), - [sym_interface_declaration] = STATE(598), - [sym_enum_declaration] = STATE(598), - [sym_type_alias_declaration] = STATE(598), - [sym_type_arguments] = STATE(349), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2326), - [sym_identifier] = ACTIONS(393), - [anon_sym_export] = ACTIONS(395), - [anon_sym_namespace] = ACTIONS(397), - [anon_sym_LBRACE] = ACTIONS(399), - [anon_sym_type] = ACTIONS(401), + [sym_parenthesized_expression] = STATE(768), + [sym__expression] = STATE(1211), + [sym_yield_expression] = STATE(1567), + [sym_object] = STATE(1357), + [sym_array] = STATE(1360), + [sym_class] = STATE(1523), + [sym_class_declaration] = STATE(579), + [sym_function] = STATE(1523), + [sym_function_declaration] = STATE(579), + [sym_generator_function] = STATE(1523), + [sym_generator_function_declaration] = STATE(579), + [sym_arrow_function] = STATE(1523), + [sym__call_signature] = STATE(3196), + [sym_call_expression] = STATE(1523), + [sym_new_expression] = STATE(1567), + [sym_await_expression] = STATE(1567), + [sym_member_expression] = STATE(768), + [sym_subscript_expression] = STATE(768), + [sym_assignment_expression] = STATE(1567), + [sym__augmented_assignment_lhs] = STATE(1928), + [sym_augmented_assignment_expression] = STATE(1567), + [sym_ternary_expression] = STATE(1567), + [sym_binary_expression] = STATE(1567), + [sym_unary_expression] = STATE(1567), + [sym_update_expression] = STATE(1567), + [sym_sequence_expression] = STATE(2826), + [sym_string] = STATE(1523), + [sym_template_string] = STATE(1523), + [sym_regex] = STATE(1523), + [sym_meta_property] = STATE(1523), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(774), + [sym_function_signature] = STATE(579), + [sym_type_assertion] = STATE(1567), + [sym_as_expression] = STATE(1567), + [sym_ambient_declaration] = STATE(579), + [sym_abstract_class_declaration] = STATE(579), + [sym_module] = STATE(579), + [sym_internal_module] = STATE(86), + [sym_import_alias] = STATE(579), + [sym_interface_declaration] = STATE(579), + [sym_enum_declaration] = STATE(579), + [sym_type_alias_declaration] = STATE(579), + [sym_type_arguments] = STATE(292), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2247), + [sym_identifier] = ACTIONS(7), + [anon_sym_export] = ACTIONS(11), + [anon_sym_namespace] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_type] = ACTIONS(17), [anon_sym_typeof] = ACTIONS(19), [anon_sym_import] = ACTIONS(21), [anon_sym_var] = ACTIONS(23), [anon_sym_let] = ACTIONS(25), [anon_sym_const] = ACTIONS(27), [anon_sym_BANG] = ACTIONS(29), - [anon_sym_if] = ACTIONS(403), + [anon_sym_if] = ACTIONS(31), [anon_sym_switch] = ACTIONS(33), - [anon_sym_for] = ACTIONS(405), + [anon_sym_for] = ACTIONS(35), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_await] = ACTIONS(39), - [anon_sym_while] = ACTIONS(407), + [anon_sym_while] = ACTIONS(41), [anon_sym_do] = ACTIONS(43), [anon_sym_try] = ACTIONS(45), - [anon_sym_with] = ACTIONS(409), + [anon_sym_with] = ACTIONS(47), [anon_sym_break] = ACTIONS(49), [anon_sym_continue] = ACTIONS(51), [anon_sym_debugger] = ACTIONS(53), @@ -15794,9 +15848,9 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(411), - [anon_sym_async] = ACTIONS(413), - [anon_sym_function] = ACTIONS(415), + [anon_sym_class] = ACTIONS(69), + [anon_sym_async] = ACTIONS(71), + [anon_sym_function] = ACTIONS(73), [anon_sym_new] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(77), [anon_sym_DASH] = ACTIONS(77), @@ -15817,95 +15871,95 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(417), + [anon_sym_static] = ACTIONS(93), [anon_sym_abstract] = ACTIONS(95), - [anon_sym_get] = ACTIONS(417), - [anon_sym_set] = ACTIONS(417), - [anon_sym_declare] = ACTIONS(419), - [anon_sym_public] = ACTIONS(417), - [anon_sym_private] = ACTIONS(417), - [anon_sym_protected] = ACTIONS(417), - [anon_sym_module] = ACTIONS(421), - [anon_sym_any] = ACTIONS(417), - [anon_sym_number] = ACTIONS(417), - [anon_sym_boolean] = ACTIONS(417), - [anon_sym_string] = ACTIONS(417), - [anon_sym_symbol] = ACTIONS(417), + [anon_sym_get] = ACTIONS(93), + [anon_sym_set] = ACTIONS(93), + [anon_sym_declare] = ACTIONS(97), + [anon_sym_public] = ACTIONS(93), + [anon_sym_private] = ACTIONS(93), + [anon_sym_protected] = ACTIONS(93), + [anon_sym_module] = ACTIONS(99), + [anon_sym_any] = ACTIONS(93), + [anon_sym_number] = ACTIONS(93), + [anon_sym_boolean] = ACTIONS(93), + [anon_sym_string] = ACTIONS(93), + [anon_sym_symbol] = ACTIONS(93), [anon_sym_interface] = ACTIONS(101), [anon_sym_enum] = ACTIONS(103), - [sym_readonly] = ACTIONS(417), + [sym_readonly] = ACTIONS(93), }, [46] = { - [sym_export_statement] = STATE(552), - [sym__declaration] = STATE(552), - [sym_import] = STATE(1498), - [sym_import_statement] = STATE(552), - [sym_expression_statement] = STATE(552), - [sym_variable_declaration] = STATE(598), - [sym_lexical_declaration] = STATE(598), - [sym_statement_block] = STATE(552), - [sym_if_statement] = STATE(552), - [sym_switch_statement] = STATE(552), - [sym_for_statement] = STATE(552), - [sym_for_in_statement] = STATE(552), - [sym_while_statement] = STATE(552), - [sym_do_statement] = STATE(552), - [sym_try_statement] = STATE(552), - [sym_with_statement] = STATE(552), - [sym_break_statement] = STATE(552), - [sym_continue_statement] = STATE(552), - [sym_debugger_statement] = STATE(552), - [sym_return_statement] = STATE(552), - [sym_throw_statement] = STATE(552), - [sym_empty_statement] = STATE(552), - [sym_labeled_statement] = STATE(552), - [sym_parenthesized_expression] = STATE(764), - [sym__expression] = STATE(1265), - [sym_yield_expression] = STATE(1518), - [sym_object] = STATE(1435), - [sym_array] = STATE(1433), - [sym_class] = STATE(1498), - [sym_class_declaration] = STATE(598), - [sym_function] = STATE(1498), - [sym_function_declaration] = STATE(598), - [sym_generator_function] = STATE(1498), - [sym_generator_function_declaration] = STATE(598), - [sym_arrow_function] = STATE(1498), - [sym__call_signature] = STATE(3145), - [sym_call_expression] = STATE(1498), - [sym_new_expression] = STATE(1518), - [sym_await_expression] = STATE(1518), - [sym_member_expression] = STATE(764), - [sym_subscript_expression] = STATE(764), - [sym_assignment_expression] = STATE(1518), - [sym__augmented_assignment_lhs] = STATE(1925), - [sym_augmented_assignment_expression] = STATE(1518), - [sym_ternary_expression] = STATE(1518), - [sym_binary_expression] = STATE(1518), - [sym_unary_expression] = STATE(1518), - [sym_update_expression] = STATE(1518), - [sym_sequence_expression] = STATE(2844), - [sym_string] = STATE(1498), - [sym_template_string] = STATE(1498), - [sym_regex] = STATE(1498), - [sym_meta_property] = STATE(1498), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(772), - [sym_function_signature] = STATE(598), - [sym_type_assertion] = STATE(1518), - [sym_as_expression] = STATE(1518), - [sym_ambient_declaration] = STATE(598), - [sym_abstract_class_declaration] = STATE(598), - [sym_module] = STATE(598), - [sym_internal_module] = STATE(92), - [sym_import_alias] = STATE(598), - [sym_interface_declaration] = STATE(598), - [sym_enum_declaration] = STATE(598), - [sym_type_alias_declaration] = STATE(598), - [sym_type_arguments] = STATE(349), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2286), + [sym_export_statement] = STATE(523), + [sym__declaration] = STATE(523), + [sym_import] = STATE(1523), + [sym_import_statement] = STATE(523), + [sym_expression_statement] = STATE(523), + [sym_variable_declaration] = STATE(579), + [sym_lexical_declaration] = STATE(579), + [sym_statement_block] = STATE(523), + [sym_if_statement] = STATE(523), + [sym_switch_statement] = STATE(523), + [sym_for_statement] = STATE(523), + [sym_for_in_statement] = STATE(523), + [sym_while_statement] = STATE(523), + [sym_do_statement] = STATE(523), + [sym_try_statement] = STATE(523), + [sym_with_statement] = STATE(523), + [sym_break_statement] = STATE(523), + [sym_continue_statement] = STATE(523), + [sym_debugger_statement] = STATE(523), + [sym_return_statement] = STATE(523), + [sym_throw_statement] = STATE(523), + [sym_empty_statement] = STATE(523), + [sym_labeled_statement] = STATE(523), + [sym_parenthesized_expression] = STATE(768), + [sym__expression] = STATE(1211), + [sym_yield_expression] = STATE(1567), + [sym_object] = STATE(1357), + [sym_array] = STATE(1360), + [sym_class] = STATE(1523), + [sym_class_declaration] = STATE(579), + [sym_function] = STATE(1523), + [sym_function_declaration] = STATE(579), + [sym_generator_function] = STATE(1523), + [sym_generator_function_declaration] = STATE(579), + [sym_arrow_function] = STATE(1523), + [sym__call_signature] = STATE(3196), + [sym_call_expression] = STATE(1523), + [sym_new_expression] = STATE(1567), + [sym_await_expression] = STATE(1567), + [sym_member_expression] = STATE(768), + [sym_subscript_expression] = STATE(768), + [sym_assignment_expression] = STATE(1567), + [sym__augmented_assignment_lhs] = STATE(1928), + [sym_augmented_assignment_expression] = STATE(1567), + [sym_ternary_expression] = STATE(1567), + [sym_binary_expression] = STATE(1567), + [sym_unary_expression] = STATE(1567), + [sym_update_expression] = STATE(1567), + [sym_sequence_expression] = STATE(2826), + [sym_string] = STATE(1523), + [sym_template_string] = STATE(1523), + [sym_regex] = STATE(1523), + [sym_meta_property] = STATE(1523), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(774), + [sym_function_signature] = STATE(579), + [sym_type_assertion] = STATE(1567), + [sym_as_expression] = STATE(1567), + [sym_ambient_declaration] = STATE(579), + [sym_abstract_class_declaration] = STATE(579), + [sym_module] = STATE(579), + [sym_internal_module] = STATE(86), + [sym_import_alias] = STATE(579), + [sym_interface_declaration] = STATE(579), + [sym_enum_declaration] = STATE(579), + [sym_type_alias_declaration] = STATE(579), + [sym_type_arguments] = STATE(292), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2247), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_namespace] = ACTIONS(13), @@ -15978,96 +16032,96 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_readonly] = ACTIONS(93), }, [47] = { - [sym_export_statement] = STATE(560), - [sym__declaration] = STATE(560), - [sym_import] = STATE(1498), - [sym_import_statement] = STATE(560), - [sym_expression_statement] = STATE(560), - [sym_variable_declaration] = STATE(598), - [sym_lexical_declaration] = STATE(598), - [sym_statement_block] = STATE(560), - [sym_if_statement] = STATE(560), - [sym_switch_statement] = STATE(560), - [sym_for_statement] = STATE(560), - [sym_for_in_statement] = STATE(560), - [sym_while_statement] = STATE(560), - [sym_do_statement] = STATE(560), - [sym_try_statement] = STATE(560), - [sym_with_statement] = STATE(560), - [sym_break_statement] = STATE(560), - [sym_continue_statement] = STATE(560), - [sym_debugger_statement] = STATE(560), - [sym_return_statement] = STATE(560), - [sym_throw_statement] = STATE(560), - [sym_empty_statement] = STATE(560), - [sym_labeled_statement] = STATE(560), - [sym_parenthesized_expression] = STATE(764), - [sym__expression] = STATE(1265), - [sym_yield_expression] = STATE(1518), - [sym_object] = STATE(1435), - [sym_array] = STATE(1433), - [sym_class] = STATE(1498), - [sym_class_declaration] = STATE(598), - [sym_function] = STATE(1498), - [sym_function_declaration] = STATE(598), - [sym_generator_function] = STATE(1498), - [sym_generator_function_declaration] = STATE(598), - [sym_arrow_function] = STATE(1498), - [sym__call_signature] = STATE(3145), - [sym_call_expression] = STATE(1498), - [sym_new_expression] = STATE(1518), - [sym_await_expression] = STATE(1518), - [sym_member_expression] = STATE(764), - [sym_subscript_expression] = STATE(764), - [sym_assignment_expression] = STATE(1518), - [sym__augmented_assignment_lhs] = STATE(1925), - [sym_augmented_assignment_expression] = STATE(1518), - [sym_ternary_expression] = STATE(1518), - [sym_binary_expression] = STATE(1518), - [sym_unary_expression] = STATE(1518), - [sym_update_expression] = STATE(1518), - [sym_sequence_expression] = STATE(2844), - [sym_string] = STATE(1498), - [sym_template_string] = STATE(1498), - [sym_regex] = STATE(1498), - [sym_meta_property] = STATE(1498), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(772), - [sym_function_signature] = STATE(598), - [sym_type_assertion] = STATE(1518), - [sym_as_expression] = STATE(1518), - [sym_ambient_declaration] = STATE(598), - [sym_abstract_class_declaration] = STATE(598), - [sym_module] = STATE(598), - [sym_internal_module] = STATE(1363), - [sym_import_alias] = STATE(598), - [sym_interface_declaration] = STATE(598), - [sym_enum_declaration] = STATE(598), - [sym_type_alias_declaration] = STATE(598), - [sym_type_arguments] = STATE(349), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2326), - [sym_identifier] = ACTIONS(393), - [anon_sym_export] = ACTIONS(395), - [anon_sym_namespace] = ACTIONS(397), - [anon_sym_LBRACE] = ACTIONS(399), - [anon_sym_type] = ACTIONS(401), + [sym_export_statement] = STATE(597), + [sym__declaration] = STATE(597), + [sym_import] = STATE(1523), + [sym_import_statement] = STATE(597), + [sym_expression_statement] = STATE(597), + [sym_variable_declaration] = STATE(579), + [sym_lexical_declaration] = STATE(579), + [sym_statement_block] = STATE(597), + [sym_if_statement] = STATE(597), + [sym_switch_statement] = STATE(597), + [sym_for_statement] = STATE(597), + [sym_for_in_statement] = STATE(597), + [sym_while_statement] = STATE(597), + [sym_do_statement] = STATE(597), + [sym_try_statement] = STATE(597), + [sym_with_statement] = STATE(597), + [sym_break_statement] = STATE(597), + [sym_continue_statement] = STATE(597), + [sym_debugger_statement] = STATE(597), + [sym_return_statement] = STATE(597), + [sym_throw_statement] = STATE(597), + [sym_empty_statement] = STATE(597), + [sym_labeled_statement] = STATE(597), + [sym_parenthesized_expression] = STATE(768), + [sym__expression] = STATE(1211), + [sym_yield_expression] = STATE(1567), + [sym_object] = STATE(1357), + [sym_array] = STATE(1360), + [sym_class] = STATE(1523), + [sym_class_declaration] = STATE(579), + [sym_function] = STATE(1523), + [sym_function_declaration] = STATE(579), + [sym_generator_function] = STATE(1523), + [sym_generator_function_declaration] = STATE(579), + [sym_arrow_function] = STATE(1523), + [sym__call_signature] = STATE(3196), + [sym_call_expression] = STATE(1523), + [sym_new_expression] = STATE(1567), + [sym_await_expression] = STATE(1567), + [sym_member_expression] = STATE(768), + [sym_subscript_expression] = STATE(768), + [sym_assignment_expression] = STATE(1567), + [sym__augmented_assignment_lhs] = STATE(1928), + [sym_augmented_assignment_expression] = STATE(1567), + [sym_ternary_expression] = STATE(1567), + [sym_binary_expression] = STATE(1567), + [sym_unary_expression] = STATE(1567), + [sym_update_expression] = STATE(1567), + [sym_sequence_expression] = STATE(2826), + [sym_string] = STATE(1523), + [sym_template_string] = STATE(1523), + [sym_regex] = STATE(1523), + [sym_meta_property] = STATE(1523), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(774), + [sym_function_signature] = STATE(579), + [sym_type_assertion] = STATE(1567), + [sym_as_expression] = STATE(1567), + [sym_ambient_declaration] = STATE(579), + [sym_abstract_class_declaration] = STATE(579), + [sym_module] = STATE(579), + [sym_internal_module] = STATE(86), + [sym_import_alias] = STATE(579), + [sym_interface_declaration] = STATE(579), + [sym_enum_declaration] = STATE(579), + [sym_type_alias_declaration] = STATE(579), + [sym_type_arguments] = STATE(292), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2247), + [sym_identifier] = ACTIONS(7), + [anon_sym_export] = ACTIONS(11), + [anon_sym_namespace] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_type] = ACTIONS(17), [anon_sym_typeof] = ACTIONS(19), [anon_sym_import] = ACTIONS(21), [anon_sym_var] = ACTIONS(23), [anon_sym_let] = ACTIONS(25), [anon_sym_const] = ACTIONS(27), [anon_sym_BANG] = ACTIONS(29), - [anon_sym_if] = ACTIONS(403), + [anon_sym_if] = ACTIONS(31), [anon_sym_switch] = ACTIONS(33), - [anon_sym_for] = ACTIONS(405), + [anon_sym_for] = ACTIONS(35), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_await] = ACTIONS(39), - [anon_sym_while] = ACTIONS(407), + [anon_sym_while] = ACTIONS(41), [anon_sym_do] = ACTIONS(43), [anon_sym_try] = ACTIONS(45), - [anon_sym_with] = ACTIONS(409), + [anon_sym_with] = ACTIONS(47), [anon_sym_break] = ACTIONS(49), [anon_sym_continue] = ACTIONS(51), [anon_sym_debugger] = ACTIONS(53), @@ -16078,9 +16132,9 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(411), - [anon_sym_async] = ACTIONS(413), - [anon_sym_function] = ACTIONS(415), + [anon_sym_class] = ACTIONS(69), + [anon_sym_async] = ACTIONS(71), + [anon_sym_function] = ACTIONS(73), [anon_sym_new] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(77), [anon_sym_DASH] = ACTIONS(77), @@ -16101,91 +16155,91 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(417), + [anon_sym_static] = ACTIONS(93), [anon_sym_abstract] = ACTIONS(95), - [anon_sym_get] = ACTIONS(417), - [anon_sym_set] = ACTIONS(417), - [anon_sym_declare] = ACTIONS(419), - [anon_sym_public] = ACTIONS(417), - [anon_sym_private] = ACTIONS(417), - [anon_sym_protected] = ACTIONS(417), - [anon_sym_module] = ACTIONS(421), - [anon_sym_any] = ACTIONS(417), - [anon_sym_number] = ACTIONS(417), - [anon_sym_boolean] = ACTIONS(417), - [anon_sym_string] = ACTIONS(417), - [anon_sym_symbol] = ACTIONS(417), + [anon_sym_get] = ACTIONS(93), + [anon_sym_set] = ACTIONS(93), + [anon_sym_declare] = ACTIONS(97), + [anon_sym_public] = ACTIONS(93), + [anon_sym_private] = ACTIONS(93), + [anon_sym_protected] = ACTIONS(93), + [anon_sym_module] = ACTIONS(99), + [anon_sym_any] = ACTIONS(93), + [anon_sym_number] = ACTIONS(93), + [anon_sym_boolean] = ACTIONS(93), + [anon_sym_string] = ACTIONS(93), + [anon_sym_symbol] = ACTIONS(93), [anon_sym_interface] = ACTIONS(101), [anon_sym_enum] = ACTIONS(103), - [sym_readonly] = ACTIONS(417), + [sym_readonly] = ACTIONS(93), }, [48] = { - [sym_import] = STATE(1101), - [sym_parenthesized_expression] = STATE(739), - [sym__expression] = STATE(1163), - [sym_yield_expression] = STATE(1105), - [sym_object] = STATE(1598), - [sym_array] = STATE(1491), - [sym_nested_identifier] = STATE(2999), - [sym_class] = STATE(1101), - [sym_function] = STATE(1101), - [sym_generator_function] = STATE(1101), - [sym_arrow_function] = STATE(1101), - [sym__call_signature] = STATE(3116), - [sym_call_expression] = STATE(1101), - [sym_new_expression] = STATE(1105), - [sym_await_expression] = STATE(1105), - [sym_member_expression] = STATE(739), - [sym_subscript_expression] = STATE(739), - [sym_assignment_expression] = STATE(1105), - [sym__augmented_assignment_lhs] = STATE(1920), - [sym_augmented_assignment_expression] = STATE(1105), - [sym_ternary_expression] = STATE(1105), - [sym_binary_expression] = STATE(1105), - [sym_unary_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_sequence_expression] = STATE(3000), - [sym_string] = STATE(1506), - [sym_template_string] = STATE(1101), - [sym_regex] = STATE(1101), - [sym_meta_property] = STATE(1101), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2371), - [sym_rest_parameter] = STATE(2686), - [sym_non_null_expression] = STATE(755), - [sym_type_assertion] = STATE(1105), - [sym_as_expression] = STATE(1105), - [sym_internal_module] = STATE(1105), - [sym_nested_type_identifier] = STATE(1913), - [sym_accessibility_modifier] = STATE(1906), - [sym_required_parameter] = STATE(2686), - [sym_optional_parameter] = STATE(2686), - [sym__parameter_name] = STATE(2094), - [sym__rest_identifier] = STATE(2534), - [sym__type] = STATE(2588), - [sym_constructor_type] = STATE(2588), - [sym__primary_type] = STATE(448), - [sym_conditional_type] = STATE(448), - [sym_generic_type] = STATE(448), - [sym_type_query] = STATE(448), - [sym_index_type_query] = STATE(448), - [sym_lookup_type] = STATE(448), - [sym_literal_type] = STATE(448), - [sym__number] = STATE(446), - [sym_existential_type] = STATE(448), - [sym_flow_maybe_type] = STATE(448), - [sym_parenthesized_type] = STATE(448), - [sym_predefined_type] = STATE(448), - [sym_type_arguments] = STATE(361), - [sym_object_type] = STATE(448), - [sym_type_parameters] = STATE(2971), - [sym_array_type] = STATE(448), - [sym__tuple_type_body] = STATE(444), - [sym_tuple_type] = STATE(448), - [sym_union_type] = STATE(2588), - [sym_intersection_type] = STATE(2588), - [sym_function_type] = STATE(2588), - [aux_sym_export_statement_repeat1] = STATE(1764), + [sym_import] = STATE(1151), + [sym_parenthesized_expression] = STATE(759), + [sym__expression] = STATE(1125), + [sym_yield_expression] = STATE(1144), + [sym_object] = STATE(1485), + [sym_array] = STATE(1486), + [sym_nested_identifier] = STATE(3123), + [sym_class] = STATE(1151), + [sym_function] = STATE(1151), + [sym_generator_function] = STATE(1151), + [sym_arrow_function] = STATE(1151), + [sym__call_signature] = STATE(3082), + [sym_call_expression] = STATE(1151), + [sym_new_expression] = STATE(1144), + [sym_await_expression] = STATE(1144), + [sym_member_expression] = STATE(759), + [sym_subscript_expression] = STATE(759), + [sym_assignment_expression] = STATE(1144), + [sym__augmented_assignment_lhs] = STATE(1924), + [sym_augmented_assignment_expression] = STATE(1144), + [sym_ternary_expression] = STATE(1144), + [sym_binary_expression] = STATE(1144), + [sym_unary_expression] = STATE(1144), + [sym_update_expression] = STATE(1144), + [sym_sequence_expression] = STATE(3063), + [sym_string] = STATE(1634), + [sym_template_string] = STATE(1151), + [sym_regex] = STATE(1151), + [sym_meta_property] = STATE(1151), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2352), + [sym_rest_parameter] = STATE(2622), + [sym_non_null_expression] = STATE(754), + [sym_type_assertion] = STATE(1144), + [sym_as_expression] = STATE(1144), + [sym_internal_module] = STATE(1144), + [sym_nested_type_identifier] = STATE(1917), + [sym_accessibility_modifier] = STATE(1910), + [sym_required_parameter] = STATE(2622), + [sym_optional_parameter] = STATE(2622), + [sym__parameter_name] = STATE(2103), + [sym__rest_identifier] = STATE(2595), + [sym__type] = STATE(2510), + [sym_constructor_type] = STATE(2510), + [sym__primary_type] = STATE(432), + [sym_conditional_type] = STATE(432), + [sym_generic_type] = STATE(432), + [sym_type_query] = STATE(432), + [sym_index_type_query] = STATE(432), + [sym_lookup_type] = STATE(432), + [sym_literal_type] = STATE(432), + [sym__number] = STATE(433), + [sym_existential_type] = STATE(432), + [sym_flow_maybe_type] = STATE(432), + [sym_parenthesized_type] = STATE(432), + [sym_predefined_type] = STATE(432), + [sym_type_arguments] = STATE(326), + [sym_object_type] = STATE(432), + [sym_type_parameters] = STATE(2893), + [sym_array_type] = STATE(432), + [sym__tuple_type_body] = STATE(434), + [sym_tuple_type] = STATE(432), + [sym_union_type] = STATE(2510), + [sym_intersection_type] = STATE(2510), + [sym_function_type] = STATE(2510), + [aux_sym_export_statement_repeat1] = STATE(1765), [sym_identifier] = ACTIONS(423), [anon_sym_export] = ACTIONS(425), [anon_sym_STAR] = ACTIONS(427), @@ -16247,72 +16301,72 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(497), }, [49] = { - [sym_import] = STATE(1101), - [sym_parenthesized_expression] = STATE(739), - [sym__expression] = STATE(1202), - [sym_yield_expression] = STATE(1105), - [sym_object] = STATE(1598), - [sym_array] = STATE(1491), - [sym_nested_identifier] = STATE(2999), - [sym_class] = STATE(1101), - [sym_function] = STATE(1101), - [sym_generator_function] = STATE(1101), - [sym_arrow_function] = STATE(1101), - [sym__call_signature] = STATE(3116), - [sym_call_expression] = STATE(1101), - [sym_new_expression] = STATE(1105), - [sym_await_expression] = STATE(1105), - [sym_member_expression] = STATE(739), - [sym_subscript_expression] = STATE(739), - [sym_assignment_expression] = STATE(1105), - [sym__augmented_assignment_lhs] = STATE(1920), - [sym_augmented_assignment_expression] = STATE(1105), - [sym_ternary_expression] = STATE(1105), - [sym_binary_expression] = STATE(1105), - [sym_unary_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_sequence_expression] = STATE(3014), - [sym_string] = STATE(1506), - [sym_template_string] = STATE(1101), - [sym_regex] = STATE(1101), - [sym_meta_property] = STATE(1101), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2371), - [sym_rest_parameter] = STATE(2686), - [sym_non_null_expression] = STATE(755), - [sym_type_assertion] = STATE(1105), - [sym_as_expression] = STATE(1105), - [sym_internal_module] = STATE(1105), - [sym_nested_type_identifier] = STATE(1913), - [sym_accessibility_modifier] = STATE(1906), - [sym_required_parameter] = STATE(2686), - [sym_optional_parameter] = STATE(2686), - [sym__parameter_name] = STATE(2094), - [sym__rest_identifier] = STATE(2534), - [sym__type] = STATE(2588), - [sym_constructor_type] = STATE(2588), - [sym__primary_type] = STATE(448), - [sym_conditional_type] = STATE(448), - [sym_generic_type] = STATE(448), - [sym_type_query] = STATE(448), - [sym_index_type_query] = STATE(448), - [sym_lookup_type] = STATE(448), - [sym_literal_type] = STATE(448), - [sym__number] = STATE(446), - [sym_existential_type] = STATE(448), - [sym_flow_maybe_type] = STATE(448), - [sym_parenthesized_type] = STATE(448), - [sym_predefined_type] = STATE(448), - [sym_type_arguments] = STATE(361), - [sym_object_type] = STATE(448), - [sym_type_parameters] = STATE(2971), - [sym_array_type] = STATE(448), - [sym__tuple_type_body] = STATE(444), - [sym_tuple_type] = STATE(448), - [sym_union_type] = STATE(2588), - [sym_intersection_type] = STATE(2588), - [sym_function_type] = STATE(2588), - [aux_sym_export_statement_repeat1] = STATE(1764), + [sym_import] = STATE(1151), + [sym_parenthesized_expression] = STATE(759), + [sym__expression] = STATE(1125), + [sym_yield_expression] = STATE(1144), + [sym_object] = STATE(1485), + [sym_array] = STATE(1486), + [sym_nested_identifier] = STATE(3123), + [sym_class] = STATE(1151), + [sym_function] = STATE(1151), + [sym_generator_function] = STATE(1151), + [sym_arrow_function] = STATE(1151), + [sym__call_signature] = STATE(3082), + [sym_call_expression] = STATE(1151), + [sym_new_expression] = STATE(1144), + [sym_await_expression] = STATE(1144), + [sym_member_expression] = STATE(759), + [sym_subscript_expression] = STATE(759), + [sym_assignment_expression] = STATE(1144), + [sym__augmented_assignment_lhs] = STATE(1924), + [sym_augmented_assignment_expression] = STATE(1144), + [sym_ternary_expression] = STATE(1144), + [sym_binary_expression] = STATE(1144), + [sym_unary_expression] = STATE(1144), + [sym_update_expression] = STATE(1144), + [sym_sequence_expression] = STATE(3063), + [sym_string] = STATE(1634), + [sym_template_string] = STATE(1151), + [sym_regex] = STATE(1151), + [sym_meta_property] = STATE(1151), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2352), + [sym_rest_parameter] = STATE(2622), + [sym_non_null_expression] = STATE(754), + [sym_type_assertion] = STATE(1144), + [sym_as_expression] = STATE(1144), + [sym_internal_module] = STATE(1144), + [sym_nested_type_identifier] = STATE(1917), + [sym_accessibility_modifier] = STATE(1910), + [sym_required_parameter] = STATE(2622), + [sym_optional_parameter] = STATE(2622), + [sym__parameter_name] = STATE(2103), + [sym__rest_identifier] = STATE(2595), + [sym__type] = STATE(2609), + [sym_constructor_type] = STATE(2609), + [sym__primary_type] = STATE(432), + [sym_conditional_type] = STATE(432), + [sym_generic_type] = STATE(432), + [sym_type_query] = STATE(432), + [sym_index_type_query] = STATE(432), + [sym_lookup_type] = STATE(432), + [sym_literal_type] = STATE(432), + [sym__number] = STATE(433), + [sym_existential_type] = STATE(432), + [sym_flow_maybe_type] = STATE(432), + [sym_parenthesized_type] = STATE(432), + [sym_predefined_type] = STATE(432), + [sym_type_arguments] = STATE(326), + [sym_object_type] = STATE(432), + [sym_type_parameters] = STATE(2893), + [sym_array_type] = STATE(432), + [sym__tuple_type_body] = STATE(434), + [sym_tuple_type] = STATE(432), + [sym_union_type] = STATE(2609), + [sym_intersection_type] = STATE(2609), + [sym_function_type] = STATE(2609), + [aux_sym_export_statement_repeat1] = STATE(1765), [sym_identifier] = ACTIONS(423), [anon_sym_export] = ACTIONS(425), [anon_sym_STAR] = ACTIONS(427), @@ -16374,72 +16428,72 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(497), }, [50] = { - [sym_import] = STATE(1101), - [sym_parenthesized_expression] = STATE(739), - [sym__expression] = STATE(1202), - [sym_yield_expression] = STATE(1105), - [sym_object] = STATE(1598), - [sym_array] = STATE(1491), - [sym_nested_identifier] = STATE(2999), - [sym_class] = STATE(1101), - [sym_function] = STATE(1101), - [sym_generator_function] = STATE(1101), - [sym_arrow_function] = STATE(1101), - [sym__call_signature] = STATE(3116), - [sym_call_expression] = STATE(1101), - [sym_new_expression] = STATE(1105), - [sym_await_expression] = STATE(1105), - [sym_member_expression] = STATE(739), - [sym_subscript_expression] = STATE(739), - [sym_assignment_expression] = STATE(1105), - [sym__augmented_assignment_lhs] = STATE(1920), - [sym_augmented_assignment_expression] = STATE(1105), - [sym_ternary_expression] = STATE(1105), - [sym_binary_expression] = STATE(1105), - [sym_unary_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_sequence_expression] = STATE(3014), - [sym_string] = STATE(1506), - [sym_template_string] = STATE(1101), - [sym_regex] = STATE(1101), - [sym_meta_property] = STATE(1101), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2371), - [sym_rest_parameter] = STATE(2686), - [sym_non_null_expression] = STATE(755), - [sym_type_assertion] = STATE(1105), - [sym_as_expression] = STATE(1105), - [sym_internal_module] = STATE(1105), - [sym_nested_type_identifier] = STATE(1913), - [sym_accessibility_modifier] = STATE(1906), - [sym_required_parameter] = STATE(2686), - [sym_optional_parameter] = STATE(2686), - [sym__parameter_name] = STATE(2094), - [sym__rest_identifier] = STATE(2534), - [sym__type] = STATE(2591), - [sym_constructor_type] = STATE(2591), - [sym__primary_type] = STATE(448), - [sym_conditional_type] = STATE(448), - [sym_generic_type] = STATE(448), - [sym_type_query] = STATE(448), - [sym_index_type_query] = STATE(448), - [sym_lookup_type] = STATE(448), - [sym_literal_type] = STATE(448), - [sym__number] = STATE(446), - [sym_existential_type] = STATE(448), - [sym_flow_maybe_type] = STATE(448), - [sym_parenthesized_type] = STATE(448), - [sym_predefined_type] = STATE(448), - [sym_type_arguments] = STATE(361), - [sym_object_type] = STATE(448), - [sym_type_parameters] = STATE(2971), - [sym_array_type] = STATE(448), - [sym__tuple_type_body] = STATE(444), - [sym_tuple_type] = STATE(448), - [sym_union_type] = STATE(2591), - [sym_intersection_type] = STATE(2591), - [sym_function_type] = STATE(2591), - [aux_sym_export_statement_repeat1] = STATE(1764), + [sym_import] = STATE(1151), + [sym_parenthesized_expression] = STATE(759), + [sym__expression] = STATE(1101), + [sym_yield_expression] = STATE(1144), + [sym_object] = STATE(1485), + [sym_array] = STATE(1486), + [sym_nested_identifier] = STATE(3123), + [sym_class] = STATE(1151), + [sym_function] = STATE(1151), + [sym_generator_function] = STATE(1151), + [sym_arrow_function] = STATE(1151), + [sym__call_signature] = STATE(3082), + [sym_call_expression] = STATE(1151), + [sym_new_expression] = STATE(1144), + [sym_await_expression] = STATE(1144), + [sym_member_expression] = STATE(759), + [sym_subscript_expression] = STATE(759), + [sym_assignment_expression] = STATE(1144), + [sym__augmented_assignment_lhs] = STATE(1924), + [sym_augmented_assignment_expression] = STATE(1144), + [sym_ternary_expression] = STATE(1144), + [sym_binary_expression] = STATE(1144), + [sym_unary_expression] = STATE(1144), + [sym_update_expression] = STATE(1144), + [sym_sequence_expression] = STATE(3143), + [sym_string] = STATE(1634), + [sym_template_string] = STATE(1151), + [sym_regex] = STATE(1151), + [sym_meta_property] = STATE(1151), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2352), + [sym_rest_parameter] = STATE(2622), + [sym_non_null_expression] = STATE(754), + [sym_type_assertion] = STATE(1144), + [sym_as_expression] = STATE(1144), + [sym_internal_module] = STATE(1144), + [sym_nested_type_identifier] = STATE(1917), + [sym_accessibility_modifier] = STATE(1910), + [sym_required_parameter] = STATE(2622), + [sym_optional_parameter] = STATE(2622), + [sym__parameter_name] = STATE(2103), + [sym__rest_identifier] = STATE(2595), + [sym__type] = STATE(2510), + [sym_constructor_type] = STATE(2510), + [sym__primary_type] = STATE(432), + [sym_conditional_type] = STATE(432), + [sym_generic_type] = STATE(432), + [sym_type_query] = STATE(432), + [sym_index_type_query] = STATE(432), + [sym_lookup_type] = STATE(432), + [sym_literal_type] = STATE(432), + [sym__number] = STATE(433), + [sym_existential_type] = STATE(432), + [sym_flow_maybe_type] = STATE(432), + [sym_parenthesized_type] = STATE(432), + [sym_predefined_type] = STATE(432), + [sym_type_arguments] = STATE(326), + [sym_object_type] = STATE(432), + [sym_type_parameters] = STATE(2893), + [sym_array_type] = STATE(432), + [sym__tuple_type_body] = STATE(434), + [sym_tuple_type] = STATE(432), + [sym_union_type] = STATE(2510), + [sym_intersection_type] = STATE(2510), + [sym_function_type] = STATE(2510), + [aux_sym_export_statement_repeat1] = STATE(1765), [sym_identifier] = ACTIONS(423), [anon_sym_export] = ACTIONS(425), [anon_sym_STAR] = ACTIONS(427), @@ -16501,72 +16555,72 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(497), }, [51] = { - [sym_import] = STATE(1101), - [sym_parenthesized_expression] = STATE(739), - [sym__expression] = STATE(1134), - [sym_yield_expression] = STATE(1105), - [sym_object] = STATE(1598), - [sym_array] = STATE(1491), - [sym_nested_identifier] = STATE(2999), - [sym_class] = STATE(1101), - [sym_function] = STATE(1101), - [sym_generator_function] = STATE(1101), - [sym_arrow_function] = STATE(1101), - [sym__call_signature] = STATE(3116), - [sym_call_expression] = STATE(1101), - [sym_new_expression] = STATE(1105), - [sym_await_expression] = STATE(1105), - [sym_member_expression] = STATE(739), - [sym_subscript_expression] = STATE(739), - [sym_assignment_expression] = STATE(1105), - [sym__augmented_assignment_lhs] = STATE(1920), - [sym_augmented_assignment_expression] = STATE(1105), - [sym_ternary_expression] = STATE(1105), - [sym_binary_expression] = STATE(1105), - [sym_unary_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_sequence_expression] = STATE(3025), - [sym_string] = STATE(1506), - [sym_template_string] = STATE(1101), - [sym_regex] = STATE(1101), - [sym_meta_property] = STATE(1101), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2371), - [sym_rest_parameter] = STATE(2686), - [sym_non_null_expression] = STATE(755), - [sym_type_assertion] = STATE(1105), - [sym_as_expression] = STATE(1105), - [sym_internal_module] = STATE(1105), - [sym_nested_type_identifier] = STATE(1913), - [sym_accessibility_modifier] = STATE(1906), - [sym_required_parameter] = STATE(2686), - [sym_optional_parameter] = STATE(2686), - [sym__parameter_name] = STATE(2094), - [sym__rest_identifier] = STATE(2534), - [sym__type] = STATE(2588), - [sym_constructor_type] = STATE(2588), - [sym__primary_type] = STATE(448), - [sym_conditional_type] = STATE(448), - [sym_generic_type] = STATE(448), - [sym_type_query] = STATE(448), - [sym_index_type_query] = STATE(448), - [sym_lookup_type] = STATE(448), - [sym_literal_type] = STATE(448), - [sym__number] = STATE(446), - [sym_existential_type] = STATE(448), - [sym_flow_maybe_type] = STATE(448), - [sym_parenthesized_type] = STATE(448), - [sym_predefined_type] = STATE(448), - [sym_type_arguments] = STATE(361), - [sym_object_type] = STATE(448), - [sym_type_parameters] = STATE(2971), - [sym_array_type] = STATE(448), - [sym__tuple_type_body] = STATE(444), - [sym_tuple_type] = STATE(448), - [sym_union_type] = STATE(2588), - [sym_intersection_type] = STATE(2588), - [sym_function_type] = STATE(2588), - [aux_sym_export_statement_repeat1] = STATE(1764), + [sym_import] = STATE(1151), + [sym_parenthesized_expression] = STATE(759), + [sym__expression] = STATE(1177), + [sym_yield_expression] = STATE(1144), + [sym_object] = STATE(1485), + [sym_array] = STATE(1486), + [sym_nested_identifier] = STATE(3123), + [sym_class] = STATE(1151), + [sym_function] = STATE(1151), + [sym_generator_function] = STATE(1151), + [sym_arrow_function] = STATE(1151), + [sym__call_signature] = STATE(3082), + [sym_call_expression] = STATE(1151), + [sym_new_expression] = STATE(1144), + [sym_await_expression] = STATE(1144), + [sym_member_expression] = STATE(759), + [sym_subscript_expression] = STATE(759), + [sym_assignment_expression] = STATE(1144), + [sym__augmented_assignment_lhs] = STATE(1924), + [sym_augmented_assignment_expression] = STATE(1144), + [sym_ternary_expression] = STATE(1144), + [sym_binary_expression] = STATE(1144), + [sym_unary_expression] = STATE(1144), + [sym_update_expression] = STATE(1144), + [sym_sequence_expression] = STATE(3169), + [sym_string] = STATE(1634), + [sym_template_string] = STATE(1151), + [sym_regex] = STATE(1151), + [sym_meta_property] = STATE(1151), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2352), + [sym_rest_parameter] = STATE(2622), + [sym_non_null_expression] = STATE(754), + [sym_type_assertion] = STATE(1144), + [sym_as_expression] = STATE(1144), + [sym_internal_module] = STATE(1144), + [sym_nested_type_identifier] = STATE(1917), + [sym_accessibility_modifier] = STATE(1910), + [sym_required_parameter] = STATE(2622), + [sym_optional_parameter] = STATE(2622), + [sym__parameter_name] = STATE(2103), + [sym__rest_identifier] = STATE(2595), + [sym__type] = STATE(2510), + [sym_constructor_type] = STATE(2510), + [sym__primary_type] = STATE(432), + [sym_conditional_type] = STATE(432), + [sym_generic_type] = STATE(432), + [sym_type_query] = STATE(432), + [sym_index_type_query] = STATE(432), + [sym_lookup_type] = STATE(432), + [sym_literal_type] = STATE(432), + [sym__number] = STATE(433), + [sym_existential_type] = STATE(432), + [sym_flow_maybe_type] = STATE(432), + [sym_parenthesized_type] = STATE(432), + [sym_predefined_type] = STATE(432), + [sym_type_arguments] = STATE(326), + [sym_object_type] = STATE(432), + [sym_type_parameters] = STATE(2893), + [sym_array_type] = STATE(432), + [sym__tuple_type_body] = STATE(434), + [sym_tuple_type] = STATE(432), + [sym_union_type] = STATE(2510), + [sym_intersection_type] = STATE(2510), + [sym_function_type] = STATE(2510), + [aux_sym_export_statement_repeat1] = STATE(1765), [sym_identifier] = ACTIONS(423), [anon_sym_export] = ACTIONS(425), [anon_sym_STAR] = ACTIONS(427), @@ -16628,42 +16682,42 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(497), }, [52] = { - [sym_import] = STATE(1101), - [sym_parenthesized_expression] = STATE(739), - [sym__expression] = STATE(1093), - [sym_yield_expression] = STATE(1105), - [sym_object] = STATE(1297), - [sym_array] = STATE(1296), - [sym_class] = STATE(1101), - [sym_function] = STATE(1101), - [sym_generator_function] = STATE(1101), - [sym_arrow_function] = STATE(1101), - [sym__call_signature] = STATE(3116), - [sym_call_expression] = STATE(1101), - [sym_new_expression] = STATE(1105), - [sym_await_expression] = STATE(1105), - [sym_member_expression] = STATE(739), - [sym_subscript_expression] = STATE(739), - [sym_assignment_expression] = STATE(1105), - [sym__augmented_assignment_lhs] = STATE(1920), - [sym_augmented_assignment_expression] = STATE(1105), - [sym_ternary_expression] = STATE(1105), - [sym_binary_expression] = STATE(1105), - [sym_unary_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_string] = STATE(1101), - [sym_template_string] = STATE(1101), - [sym_regex] = STATE(1101), - [sym_meta_property] = STATE(1101), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(755), - [sym_type_assertion] = STATE(1105), - [sym_as_expression] = STATE(1105), - [sym_internal_module] = STATE(1105), - [sym_type_arguments] = STATE(361), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2497), + [sym_import] = STATE(1151), + [sym_parenthesized_expression] = STATE(759), + [sym__expression] = STATE(1039), + [sym_yield_expression] = STATE(1144), + [sym_object] = STATE(1257), + [sym_array] = STATE(1254), + [sym_class] = STATE(1151), + [sym_function] = STATE(1151), + [sym_generator_function] = STATE(1151), + [sym_arrow_function] = STATE(1151), + [sym__call_signature] = STATE(3082), + [sym_call_expression] = STATE(1151), + [sym_new_expression] = STATE(1144), + [sym_await_expression] = STATE(1144), + [sym_member_expression] = STATE(759), + [sym_subscript_expression] = STATE(759), + [sym_assignment_expression] = STATE(1144), + [sym__augmented_assignment_lhs] = STATE(1924), + [sym_augmented_assignment_expression] = STATE(1144), + [sym_ternary_expression] = STATE(1144), + [sym_binary_expression] = STATE(1144), + [sym_unary_expression] = STATE(1144), + [sym_update_expression] = STATE(1144), + [sym_string] = STATE(1151), + [sym_template_string] = STATE(1151), + [sym_regex] = STATE(1151), + [sym_meta_property] = STATE(1151), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(754), + [sym_type_assertion] = STATE(1144), + [sym_as_expression] = STATE(1144), + [sym_internal_module] = STATE(1144), + [sym_type_arguments] = STATE(326), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2580), [sym_identifier] = ACTIONS(499), [anon_sym_export] = ACTIONS(501), [anon_sym_STAR] = ACTIONS(503), @@ -16747,65 +16801,65 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_readonly] = ACTIONS(501), }, [53] = { - [sym_import] = STATE(1682), - [sym_parenthesized_expression] = STATE(828), - [sym__expression] = STATE(1230), - [sym_yield_expression] = STATE(1680), - [sym_object] = STATE(1586), - [sym_array] = STATE(1585), - [sym_nested_identifier] = STATE(2999), - [sym_class] = STATE(1682), - [sym_function] = STATE(1682), - [sym_generator_function] = STATE(1682), - [sym_arrow_function] = STATE(1682), - [sym__call_signature] = STATE(3105), - [sym_call_expression] = STATE(1682), - [sym_new_expression] = STATE(1680), - [sym_await_expression] = STATE(1680), - [sym_member_expression] = STATE(828), - [sym_subscript_expression] = STATE(828), - [sym_assignment_expression] = STATE(1680), - [sym__augmented_assignment_lhs] = STATE(1918), - [sym_augmented_assignment_expression] = STATE(1680), - [sym_ternary_expression] = STATE(1680), - [sym_binary_expression] = STATE(1680), - [sym_unary_expression] = STATE(1680), - [sym_update_expression] = STATE(1680), - [sym_string] = STATE(1622), - [sym_template_string] = STATE(1682), - [sym_regex] = STATE(1682), - [sym_meta_property] = STATE(1682), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2371), - [sym_non_null_expression] = STATE(827), - [sym_type_assertion] = STATE(1680), - [sym_as_expression] = STATE(1680), - [sym_internal_module] = STATE(1680), - [sym_nested_type_identifier] = STATE(1913), - [sym__type] = STATE(2194), - [sym_constructor_type] = STATE(2194), - [sym__primary_type] = STATE(448), - [sym_conditional_type] = STATE(448), - [sym_generic_type] = STATE(448), - [sym_type_query] = STATE(448), - [sym_index_type_query] = STATE(448), - [sym_lookup_type] = STATE(448), - [sym_literal_type] = STATE(448), - [sym__number] = STATE(446), - [sym_existential_type] = STATE(448), - [sym_flow_maybe_type] = STATE(448), - [sym_parenthesized_type] = STATE(448), - [sym_predefined_type] = STATE(448), - [sym_type_arguments] = STATE(256), - [sym_object_type] = STATE(448), - [sym_type_parameters] = STATE(2971), - [sym_array_type] = STATE(448), - [sym__tuple_type_body] = STATE(444), - [sym_tuple_type] = STATE(448), - [sym_union_type] = STATE(2194), - [sym_intersection_type] = STATE(2194), - [sym_function_type] = STATE(2194), - [aux_sym_export_statement_repeat1] = STATE(2529), + [sym_import] = STATE(1523), + [sym_parenthesized_expression] = STATE(768), + [sym__expression] = STATE(1178), + [sym_yield_expression] = STATE(1567), + [sym_object] = STATE(1357), + [sym_array] = STATE(1360), + [sym_nested_identifier] = STATE(3123), + [sym_class] = STATE(1523), + [sym_function] = STATE(1523), + [sym_generator_function] = STATE(1523), + [sym_arrow_function] = STATE(1523), + [sym__call_signature] = STATE(3196), + [sym_call_expression] = STATE(1523), + [sym_new_expression] = STATE(1567), + [sym_await_expression] = STATE(1567), + [sym_member_expression] = STATE(768), + [sym_subscript_expression] = STATE(768), + [sym_assignment_expression] = STATE(1567), + [sym__augmented_assignment_lhs] = STATE(1928), + [sym_augmented_assignment_expression] = STATE(1567), + [sym_ternary_expression] = STATE(1567), + [sym_binary_expression] = STATE(1567), + [sym_unary_expression] = STATE(1567), + [sym_update_expression] = STATE(1567), + [sym_string] = STATE(1473), + [sym_template_string] = STATE(1523), + [sym_regex] = STATE(1523), + [sym_meta_property] = STATE(1523), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2352), + [sym_non_null_expression] = STATE(774), + [sym_type_assertion] = STATE(1567), + [sym_as_expression] = STATE(1567), + [sym_internal_module] = STATE(1567), + [sym_nested_type_identifier] = STATE(1917), + [sym__type] = STATE(2235), + [sym_constructor_type] = STATE(2235), + [sym__primary_type] = STATE(432), + [sym_conditional_type] = STATE(432), + [sym_generic_type] = STATE(432), + [sym_type_query] = STATE(432), + [sym_index_type_query] = STATE(432), + [sym_lookup_type] = STATE(432), + [sym_literal_type] = STATE(432), + [sym__number] = STATE(433), + [sym_existential_type] = STATE(432), + [sym_flow_maybe_type] = STATE(432), + [sym_parenthesized_type] = STATE(432), + [sym_predefined_type] = STATE(432), + [sym_type_arguments] = STATE(292), + [sym_object_type] = STATE(432), + [sym_type_parameters] = STATE(2893), + [sym_array_type] = STATE(432), + [sym__tuple_type_body] = STATE(434), + [sym_tuple_type] = STATE(432), + [sym_union_type] = STATE(2235), + [sym_intersection_type] = STATE(2235), + [sym_function_type] = STATE(2235), + [aux_sym_export_statement_repeat1] = STATE(2575), [sym_identifier] = ACTIONS(529), [anon_sym_export] = ACTIONS(531), [anon_sym_STAR] = ACTIONS(427), @@ -16814,38 +16868,38 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_type] = ACTIONS(531), [anon_sym_typeof] = ACTIONS(537), [anon_sym_import] = ACTIONS(539), - [anon_sym_BANG] = ACTIONS(541), - [anon_sym_LPAREN] = ACTIONS(543), - [anon_sym_await] = ACTIONS(545), - [anon_sym_yield] = ACTIONS(547), - [anon_sym_LBRACK] = ACTIONS(549), + [anon_sym_BANG] = ACTIONS(29), + [anon_sym_LPAREN] = ACTIONS(541), + [anon_sym_await] = ACTIONS(39), + [anon_sym_yield] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(543), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(551), - [anon_sym_class] = ACTIONS(553), - [anon_sym_async] = ACTIONS(555), - [anon_sym_function] = ACTIONS(557), - [anon_sym_new] = ACTIONS(559), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(545), + [anon_sym_async] = ACTIONS(547), + [anon_sym_function] = ACTIONS(549), + [anon_sym_new] = ACTIONS(551), [anon_sym_QMARK] = ACTIONS(461), [anon_sym_AMP] = ACTIONS(463), [anon_sym_PIPE] = ACTIONS(465), - [anon_sym_PLUS] = ACTIONS(561), - [anon_sym_DASH] = ACTIONS(561), - [anon_sym_TILDE] = ACTIONS(541), - [anon_sym_void] = ACTIONS(563), - [anon_sym_delete] = ACTIONS(565), - [anon_sym_PLUS_PLUS] = ACTIONS(567), - [anon_sym_DASH_DASH] = ACTIONS(567), - [anon_sym_DQUOTE] = ACTIONS(569), - [anon_sym_SQUOTE] = ACTIONS(571), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(573), - [sym_number] = ACTIONS(575), - [sym_this] = ACTIONS(577), - [sym_super] = ACTIONS(579), - [sym_true] = ACTIONS(581), - [sym_false] = ACTIONS(581), - [sym_null] = ACTIONS(579), - [sym_undefined] = ACTIONS(579), + [anon_sym_PLUS] = ACTIONS(553), + [anon_sym_DASH] = ACTIONS(553), + [anon_sym_TILDE] = ACTIONS(29), + [anon_sym_void] = ACTIONS(555), + [anon_sym_delete] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_DQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(85), + [sym_number] = ACTIONS(557), + [sym_this] = ACTIONS(559), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(561), + [sym_false] = ACTIONS(561), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(531), [anon_sym_get] = ACTIONS(531), @@ -16855,64 +16909,64 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_private] = ACTIONS(531), [anon_sym_protected] = ACTIONS(531), [anon_sym_module] = ACTIONS(531), - [anon_sym_any] = ACTIONS(583), - [anon_sym_number] = ACTIONS(583), - [anon_sym_boolean] = ACTIONS(583), - [anon_sym_string] = ACTIONS(583), - [anon_sym_symbol] = ACTIONS(583), - [sym_readonly] = ACTIONS(585), + [anon_sym_any] = ACTIONS(563), + [anon_sym_number] = ACTIONS(563), + [anon_sym_boolean] = ACTIONS(563), + [anon_sym_string] = ACTIONS(563), + [anon_sym_symbol] = ACTIONS(563), + [sym_readonly] = ACTIONS(565), [anon_sym_keyof] = ACTIONS(495), [anon_sym_LBRACE_PIPE] = ACTIONS(497), }, [54] = { - [sym_import] = STATE(1498), - [sym_parenthesized_expression] = STATE(764), - [sym__expression] = STATE(1149), - [sym_yield_expression] = STATE(1518), - [sym_object] = STATE(1435), - [sym_array] = STATE(1433), - [sym_class] = STATE(1498), - [sym_function] = STATE(1498), - [sym_generator_function] = STATE(1498), - [sym_arrow_function] = STATE(1498), - [sym__call_signature] = STATE(3145), - [sym_call_expression] = STATE(1498), - [sym_new_expression] = STATE(1518), - [sym_await_expression] = STATE(1518), - [sym_member_expression] = STATE(764), - [sym_subscript_expression] = STATE(764), - [sym_assignment_expression] = STATE(1518), - [sym__augmented_assignment_lhs] = STATE(1925), - [sym_augmented_assignment_expression] = STATE(1518), - [sym_ternary_expression] = STATE(1518), - [sym_binary_expression] = STATE(1518), - [sym_unary_expression] = STATE(1518), - [sym_update_expression] = STATE(1518), - [sym_string] = STATE(1498), - [sym_template_string] = STATE(1498), - [sym_regex] = STATE(1498), - [sym_meta_property] = STATE(1498), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(772), - [sym_type_assertion] = STATE(1518), - [sym_as_expression] = STATE(1518), - [sym_internal_module] = STATE(1518), - [sym_type_arguments] = STATE(349), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2554), - [sym_identifier] = ACTIONS(587), - [anon_sym_export] = ACTIONS(589), - [anon_sym_STAR] = ACTIONS(591), + [sym_import] = STATE(1523), + [sym_parenthesized_expression] = STATE(768), + [sym__expression] = STATE(1181), + [sym_yield_expression] = STATE(1567), + [sym_object] = STATE(1357), + [sym_array] = STATE(1360), + [sym_class] = STATE(1523), + [sym_function] = STATE(1523), + [sym_generator_function] = STATE(1523), + [sym_arrow_function] = STATE(1523), + [sym__call_signature] = STATE(3196), + [sym_call_expression] = STATE(1523), + [sym_new_expression] = STATE(1567), + [sym_await_expression] = STATE(1567), + [sym_member_expression] = STATE(768), + [sym_subscript_expression] = STATE(768), + [sym_assignment_expression] = STATE(1567), + [sym__augmented_assignment_lhs] = STATE(1928), + [sym_augmented_assignment_expression] = STATE(1567), + [sym_ternary_expression] = STATE(1567), + [sym_binary_expression] = STATE(1567), + [sym_unary_expression] = STATE(1567), + [sym_update_expression] = STATE(1567), + [sym_string] = STATE(1523), + [sym_template_string] = STATE(1523), + [sym_regex] = STATE(1523), + [sym_meta_property] = STATE(1523), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(774), + [sym_type_assertion] = STATE(1567), + [sym_as_expression] = STATE(1567), + [sym_internal_module] = STATE(1567), + [sym_type_arguments] = STATE(292), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2575), + [sym_identifier] = ACTIONS(567), + [anon_sym_export] = ACTIONS(531), + [anon_sym_STAR] = ACTIONS(569), [anon_sym_as] = ACTIONS(505), - [anon_sym_namespace] = ACTIONS(593), - [anon_sym_LBRACE] = ACTIONS(595), + [anon_sym_namespace] = ACTIONS(533), + [anon_sym_LBRACE] = ACTIONS(571), [anon_sym_COMMA] = ACTIONS(511), [anon_sym_RBRACE] = ACTIONS(511), - [anon_sym_type] = ACTIONS(589), + [anon_sym_type] = ACTIONS(531), [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(597), - [anon_sym_BANG] = ACTIONS(599), + [anon_sym_import] = ACTIONS(539), + [anon_sym_BANG] = ACTIONS(573), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_await] = ACTIONS(39), [anon_sym_in] = ACTIONS(505), @@ -16923,9 +16977,9 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(505), [anon_sym_SLASH] = ACTIONS(67), [anon_sym_DOT] = ACTIONS(505), - [anon_sym_class] = ACTIONS(601), - [anon_sym_async] = ACTIONS(603), - [anon_sym_function] = ACTIONS(605), + [anon_sym_class] = ACTIONS(545), + [anon_sym_async] = ACTIONS(547), + [anon_sym_function] = ACTIONS(549), [anon_sym_QMARK_DOT] = ACTIONS(511), [anon_sym_new] = ACTIONS(75), [anon_sym_QMARK] = ACTIONS(505), @@ -16966,131 +17020,249 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(589), - [anon_sym_get] = ACTIONS(589), - [anon_sym_set] = ACTIONS(589), - [anon_sym_declare] = ACTIONS(589), - [anon_sym_public] = ACTIONS(589), - [anon_sym_private] = ACTIONS(589), - [anon_sym_protected] = ACTIONS(589), - [anon_sym_module] = ACTIONS(589), - [anon_sym_any] = ACTIONS(589), - [anon_sym_number] = ACTIONS(589), - [anon_sym_boolean] = ACTIONS(589), - [anon_sym_string] = ACTIONS(589), - [anon_sym_symbol] = ACTIONS(589), - [sym_readonly] = ACTIONS(589), + [anon_sym_static] = ACTIONS(531), + [anon_sym_get] = ACTIONS(531), + [anon_sym_set] = ACTIONS(531), + [anon_sym_declare] = ACTIONS(531), + [anon_sym_public] = ACTIONS(531), + [anon_sym_private] = ACTIONS(531), + [anon_sym_protected] = ACTIONS(531), + [anon_sym_module] = ACTIONS(531), + [anon_sym_any] = ACTIONS(531), + [anon_sym_number] = ACTIONS(531), + [anon_sym_boolean] = ACTIONS(531), + [anon_sym_string] = ACTIONS(531), + [anon_sym_symbol] = ACTIONS(531), + [sym_readonly] = ACTIONS(531), [sym__automatic_semicolon] = ACTIONS(511), }, [55] = { - [sym_import] = STATE(1498), - [sym_parenthesized_expression] = STATE(764), - [sym__expression] = STATE(1118), - [sym_yield_expression] = STATE(1518), - [sym_object] = STATE(1435), - [sym_array] = STATE(1433), - [sym_nested_identifier] = STATE(2999), - [sym_class] = STATE(1498), - [sym_function] = STATE(1498), - [sym_generator_function] = STATE(1498), - [sym_arrow_function] = STATE(1498), - [sym__call_signature] = STATE(3145), - [sym_call_expression] = STATE(1498), - [sym_new_expression] = STATE(1518), - [sym_await_expression] = STATE(1518), - [sym_member_expression] = STATE(764), - [sym_subscript_expression] = STATE(764), - [sym_assignment_expression] = STATE(1518), + [sym_import] = STATE(1151), + [sym_parenthesized_expression] = STATE(956), + [sym__expression] = STATE(1402), + [sym_yield_expression] = STATE(1144), + [sym_object] = STATE(1653), + [sym_array] = STATE(1660), + [sym_nested_identifier] = STATE(3123), + [sym_class] = STATE(1151), + [sym_function] = STATE(1151), + [sym_generator_function] = STATE(1151), + [sym_arrow_function] = STATE(1151), + [sym__call_signature] = STATE(3024), + [sym_call_expression] = STATE(1151), + [sym_new_expression] = STATE(1144), + [sym_await_expression] = STATE(1144), + [sym_member_expression] = STATE(956), + [sym_subscript_expression] = STATE(956), + [sym_assignment_expression] = STATE(1144), [sym__augmented_assignment_lhs] = STATE(1925), - [sym_augmented_assignment_expression] = STATE(1518), - [sym_ternary_expression] = STATE(1518), - [sym_binary_expression] = STATE(1518), - [sym_unary_expression] = STATE(1518), - [sym_update_expression] = STATE(1518), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1498), - [sym_regex] = STATE(1498), - [sym_meta_property] = STATE(1498), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2371), - [sym_non_null_expression] = STATE(772), - [sym_type_assertion] = STATE(1518), - [sym_as_expression] = STATE(1518), - [sym_internal_module] = STATE(1518), - [sym_nested_type_identifier] = STATE(1913), - [sym__type] = STATE(2194), - [sym_constructor_type] = STATE(2194), - [sym__primary_type] = STATE(448), - [sym_conditional_type] = STATE(448), - [sym_generic_type] = STATE(448), - [sym_type_query] = STATE(448), - [sym_index_type_query] = STATE(448), - [sym_lookup_type] = STATE(448), - [sym_literal_type] = STATE(448), - [sym__number] = STATE(446), - [sym_existential_type] = STATE(448), - [sym_flow_maybe_type] = STATE(448), - [sym_parenthesized_type] = STATE(448), - [sym_predefined_type] = STATE(448), - [sym_type_arguments] = STATE(349), - [sym_object_type] = STATE(448), - [sym_type_parameters] = STATE(2971), - [sym_array_type] = STATE(448), - [sym__tuple_type_body] = STATE(444), - [sym_tuple_type] = STATE(448), - [sym_union_type] = STATE(2194), - [sym_intersection_type] = STATE(2194), - [sym_function_type] = STATE(2194), - [aux_sym_export_statement_repeat1] = STATE(2554), - [sym_identifier] = ACTIONS(607), - [anon_sym_export] = ACTIONS(589), + [sym_augmented_assignment_expression] = STATE(1144), + [sym_ternary_expression] = STATE(1144), + [sym_binary_expression] = STATE(1144), + [sym_unary_expression] = STATE(1144), + [sym_update_expression] = STATE(1144), + [sym_string] = STATE(1525), + [sym_template_string] = STATE(1151), + [sym_regex] = STATE(1151), + [sym_meta_property] = STATE(1151), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2352), + [sym_non_null_expression] = STATE(950), + [sym_type_assertion] = STATE(1144), + [sym_as_expression] = STATE(1144), + [sym_internal_module] = STATE(1144), + [sym_nested_type_identifier] = STATE(1917), + [sym__type] = STATE(2235), + [sym_constructor_type] = STATE(2235), + [sym__primary_type] = STATE(432), + [sym_conditional_type] = STATE(432), + [sym_generic_type] = STATE(432), + [sym_type_query] = STATE(432), + [sym_index_type_query] = STATE(432), + [sym_lookup_type] = STATE(432), + [sym_literal_type] = STATE(432), + [sym__number] = STATE(433), + [sym_existential_type] = STATE(432), + [sym_flow_maybe_type] = STATE(432), + [sym_parenthesized_type] = STATE(432), + [sym_predefined_type] = STATE(432), + [sym_type_arguments] = STATE(395), + [sym_object_type] = STATE(432), + [sym_type_parameters] = STATE(2893), + [sym_array_type] = STATE(432), + [sym__tuple_type_body] = STATE(434), + [sym_tuple_type] = STATE(432), + [sym_union_type] = STATE(2235), + [sym_intersection_type] = STATE(2235), + [sym_function_type] = STATE(2235), + [aux_sym_export_statement_repeat1] = STATE(2580), + [sym_identifier] = ACTIONS(575), + [anon_sym_export] = ACTIONS(577), [anon_sym_STAR] = ACTIONS(427), - [anon_sym_namespace] = ACTIONS(593), - [anon_sym_LBRACE] = ACTIONS(609), - [anon_sym_type] = ACTIONS(589), - [anon_sym_typeof] = ACTIONS(611), - [anon_sym_import] = ACTIONS(597), - [anon_sym_BANG] = ACTIONS(29), - [anon_sym_LPAREN] = ACTIONS(613), - [anon_sym_await] = ACTIONS(39), - [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(615), + [anon_sym_namespace] = ACTIONS(579), + [anon_sym_LBRACE] = ACTIONS(581), + [anon_sym_type] = ACTIONS(577), + [anon_sym_typeof] = ACTIONS(583), + [anon_sym_import] = ACTIONS(435), + [anon_sym_BANG] = ACTIONS(585), + [anon_sym_LPAREN] = ACTIONS(439), + [anon_sym_await] = ACTIONS(587), + [anon_sym_yield] = ACTIONS(589), + [anon_sym_LBRACK] = ACTIONS(591), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(601), - [anon_sym_async] = ACTIONS(603), - [anon_sym_function] = ACTIONS(605), - [anon_sym_new] = ACTIONS(617), + [anon_sym_SLASH] = ACTIONS(449), + [anon_sym_class] = ACTIONS(451), + [anon_sym_async] = ACTIONS(593), + [anon_sym_function] = ACTIONS(455), + [anon_sym_new] = ACTIONS(595), [anon_sym_QMARK] = ACTIONS(461), [anon_sym_AMP] = ACTIONS(463), [anon_sym_PIPE] = ACTIONS(465), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(29), - [anon_sym_void] = ACTIONS(621), - [anon_sym_delete] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), + [anon_sym_PLUS] = ACTIONS(597), + [anon_sym_DASH] = ACTIONS(597), + [anon_sym_TILDE] = ACTIONS(585), + [anon_sym_void] = ACTIONS(599), + [anon_sym_delete] = ACTIONS(601), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_DQUOTE] = ACTIONS(475), + [anon_sym_SQUOTE] = ACTIONS(477), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(85), + [anon_sym_BQUOTE] = ACTIONS(479), + [sym_number] = ACTIONS(605), + [sym_this] = ACTIONS(607), + [sym_super] = ACTIONS(485), + [sym_true] = ACTIONS(609), + [sym_false] = ACTIONS(609), + [sym_null] = ACTIONS(485), + [sym_undefined] = ACTIONS(485), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(577), + [anon_sym_get] = ACTIONS(577), + [anon_sym_set] = ACTIONS(577), + [anon_sym_declare] = ACTIONS(577), + [anon_sym_public] = ACTIONS(577), + [anon_sym_private] = ACTIONS(577), + [anon_sym_protected] = ACTIONS(577), + [anon_sym_module] = ACTIONS(577), + [anon_sym_any] = ACTIONS(611), + [anon_sym_number] = ACTIONS(611), + [anon_sym_boolean] = ACTIONS(611), + [anon_sym_string] = ACTIONS(611), + [anon_sym_symbol] = ACTIONS(611), + [sym_readonly] = ACTIONS(613), + [anon_sym_keyof] = ACTIONS(495), + [anon_sym_LBRACE_PIPE] = ACTIONS(497), + }, + [56] = { + [sym_import] = STATE(1151), + [sym_parenthesized_expression] = STATE(759), + [sym__expression] = STATE(1032), + [sym_yield_expression] = STATE(1144), + [sym_object] = STATE(1257), + [sym_array] = STATE(1254), + [sym_nested_identifier] = STATE(3123), + [sym_class] = STATE(1151), + [sym_function] = STATE(1151), + [sym_generator_function] = STATE(1151), + [sym_arrow_function] = STATE(1151), + [sym__call_signature] = STATE(3082), + [sym_call_expression] = STATE(1151), + [sym_new_expression] = STATE(1144), + [sym_await_expression] = STATE(1144), + [sym_member_expression] = STATE(759), + [sym_subscript_expression] = STATE(759), + [sym_assignment_expression] = STATE(1144), + [sym__augmented_assignment_lhs] = STATE(1924), + [sym_augmented_assignment_expression] = STATE(1144), + [sym_ternary_expression] = STATE(1144), + [sym_binary_expression] = STATE(1144), + [sym_unary_expression] = STATE(1144), + [sym_update_expression] = STATE(1144), + [sym_string] = STATE(1037), + [sym_template_string] = STATE(1151), + [sym_regex] = STATE(1151), + [sym_meta_property] = STATE(1151), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2352), + [sym_non_null_expression] = STATE(754), + [sym_type_assertion] = STATE(1144), + [sym_as_expression] = STATE(1144), + [sym_internal_module] = STATE(1144), + [sym_nested_type_identifier] = STATE(1917), + [sym__type] = STATE(2235), + [sym_constructor_type] = STATE(2235), + [sym__primary_type] = STATE(432), + [sym_conditional_type] = STATE(432), + [sym_generic_type] = STATE(432), + [sym_type_query] = STATE(432), + [sym_index_type_query] = STATE(432), + [sym_lookup_type] = STATE(432), + [sym_literal_type] = STATE(432), + [sym__number] = STATE(433), + [sym_existential_type] = STATE(432), + [sym_flow_maybe_type] = STATE(432), + [sym_parenthesized_type] = STATE(432), + [sym_predefined_type] = STATE(432), + [sym_type_arguments] = STATE(326), + [sym_object_type] = STATE(432), + [sym_type_parameters] = STATE(2893), + [sym_array_type] = STATE(432), + [sym__tuple_type_body] = STATE(434), + [sym_tuple_type] = STATE(432), + [sym_union_type] = STATE(2235), + [sym_intersection_type] = STATE(2235), + [sym_function_type] = STATE(2235), + [aux_sym_export_statement_repeat1] = STATE(2580), + [sym_identifier] = ACTIONS(615), + [anon_sym_export] = ACTIONS(501), + [anon_sym_STAR] = ACTIONS(427), + [anon_sym_namespace] = ACTIONS(507), + [anon_sym_LBRACE] = ACTIONS(581), + [anon_sym_type] = ACTIONS(501), + [anon_sym_typeof] = ACTIONS(617), + [anon_sym_import] = ACTIONS(435), + [anon_sym_BANG] = ACTIONS(437), + [anon_sym_LPAREN] = ACTIONS(439), + [anon_sym_await] = ACTIONS(443), + [anon_sym_yield] = ACTIONS(445), + [anon_sym_LBRACK] = ACTIONS(619), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(449), + [anon_sym_class] = ACTIONS(451), + [anon_sym_async] = ACTIONS(521), + [anon_sym_function] = ACTIONS(455), + [anon_sym_new] = ACTIONS(457), + [anon_sym_QMARK] = ACTIONS(461), + [anon_sym_AMP] = ACTIONS(463), + [anon_sym_PIPE] = ACTIONS(465), + [anon_sym_PLUS] = ACTIONS(621), + [anon_sym_DASH] = ACTIONS(621), + [anon_sym_TILDE] = ACTIONS(437), + [anon_sym_void] = ACTIONS(469), + [anon_sym_delete] = ACTIONS(471), + [anon_sym_PLUS_PLUS] = ACTIONS(473), + [anon_sym_DASH_DASH] = ACTIONS(473), + [anon_sym_DQUOTE] = ACTIONS(475), + [anon_sym_SQUOTE] = ACTIONS(477), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(479), [sym_number] = ACTIONS(623), [sym_this] = ACTIONS(625), - [sym_super] = ACTIONS(89), + [sym_super] = ACTIONS(485), [sym_true] = ACTIONS(627), [sym_false] = ACTIONS(627), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), + [sym_null] = ACTIONS(485), + [sym_undefined] = ACTIONS(485), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(589), - [anon_sym_get] = ACTIONS(589), - [anon_sym_set] = ACTIONS(589), - [anon_sym_declare] = ACTIONS(589), - [anon_sym_public] = ACTIONS(589), - [anon_sym_private] = ACTIONS(589), - [anon_sym_protected] = ACTIONS(589), - [anon_sym_module] = ACTIONS(589), + [anon_sym_static] = ACTIONS(501), + [anon_sym_get] = ACTIONS(501), + [anon_sym_set] = ACTIONS(501), + [anon_sym_declare] = ACTIONS(501), + [anon_sym_public] = ACTIONS(501), + [anon_sym_private] = ACTIONS(501), + [anon_sym_protected] = ACTIONS(501), + [anon_sym_module] = ACTIONS(501), [anon_sym_any] = ACTIONS(629), [anon_sym_number] = ACTIONS(629), [anon_sym_boolean] = ACTIONS(629), @@ -17100,106 +17272,106 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_keyof] = ACTIONS(495), [anon_sym_LBRACE_PIPE] = ACTIONS(497), }, - [56] = { - [sym_import] = STATE(1101), - [sym_parenthesized_expression] = STATE(948), - [sym__expression] = STATE(1393), - [sym_yield_expression] = STATE(1105), - [sym_object] = STATE(1654), - [sym_array] = STATE(1640), - [sym_nested_identifier] = STATE(2999), - [sym_class] = STATE(1101), - [sym_function] = STATE(1101), - [sym_generator_function] = STATE(1101), - [sym_arrow_function] = STATE(1101), - [sym__call_signature] = STATE(3002), - [sym_call_expression] = STATE(1101), - [sym_new_expression] = STATE(1105), - [sym_await_expression] = STATE(1105), - [sym_member_expression] = STATE(948), - [sym_subscript_expression] = STATE(948), - [sym_assignment_expression] = STATE(1105), - [sym__augmented_assignment_lhs] = STATE(1921), - [sym_augmented_assignment_expression] = STATE(1105), - [sym_ternary_expression] = STATE(1105), - [sym_binary_expression] = STATE(1105), - [sym_unary_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_string] = STATE(1546), - [sym_template_string] = STATE(1101), - [sym_regex] = STATE(1101), - [sym_meta_property] = STATE(1101), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2371), - [sym_non_null_expression] = STATE(949), - [sym_type_assertion] = STATE(1105), - [sym_as_expression] = STATE(1105), - [sym_internal_module] = STATE(1105), - [sym_nested_type_identifier] = STATE(1913), - [sym__type] = STATE(2194), - [sym_constructor_type] = STATE(2194), - [sym__primary_type] = STATE(448), - [sym_conditional_type] = STATE(448), - [sym_generic_type] = STATE(448), - [sym_type_query] = STATE(448), - [sym_index_type_query] = STATE(448), - [sym_lookup_type] = STATE(448), - [sym_literal_type] = STATE(448), - [sym__number] = STATE(446), - [sym_existential_type] = STATE(448), - [sym_flow_maybe_type] = STATE(448), - [sym_parenthesized_type] = STATE(448), - [sym_predefined_type] = STATE(448), - [sym_type_arguments] = STATE(324), - [sym_object_type] = STATE(448), - [sym_type_parameters] = STATE(2971), - [sym_array_type] = STATE(448), - [sym__tuple_type_body] = STATE(444), - [sym_tuple_type] = STATE(448), - [sym_union_type] = STATE(2194), - [sym_intersection_type] = STATE(2194), - [sym_function_type] = STATE(2194), - [aux_sym_export_statement_repeat1] = STATE(2497), + [57] = { + [sym_import] = STATE(1523), + [sym_parenthesized_expression] = STATE(955), + [sym__expression] = STATE(1325), + [sym_yield_expression] = STATE(1567), + [sym_object] = STATE(1636), + [sym_array] = STATE(1643), + [sym_nested_identifier] = STATE(3123), + [sym_class] = STATE(1523), + [sym_function] = STATE(1523), + [sym_generator_function] = STATE(1523), + [sym_arrow_function] = STATE(1523), + [sym__call_signature] = STATE(3078), + [sym_call_expression] = STATE(1523), + [sym_new_expression] = STATE(1567), + [sym_await_expression] = STATE(1567), + [sym_member_expression] = STATE(955), + [sym_subscript_expression] = STATE(955), + [sym_assignment_expression] = STATE(1567), + [sym__augmented_assignment_lhs] = STATE(1929), + [sym_augmented_assignment_expression] = STATE(1567), + [sym_ternary_expression] = STATE(1567), + [sym_binary_expression] = STATE(1567), + [sym_unary_expression] = STATE(1567), + [sym_update_expression] = STATE(1567), + [sym_string] = STATE(1537), + [sym_template_string] = STATE(1523), + [sym_regex] = STATE(1523), + [sym_meta_property] = STATE(1523), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2352), + [sym_non_null_expression] = STATE(953), + [sym_type_assertion] = STATE(1567), + [sym_as_expression] = STATE(1567), + [sym_internal_module] = STATE(1567), + [sym_nested_type_identifier] = STATE(1917), + [sym__type] = STATE(2235), + [sym_constructor_type] = STATE(2235), + [sym__primary_type] = STATE(432), + [sym_conditional_type] = STATE(432), + [sym_generic_type] = STATE(432), + [sym_type_query] = STATE(432), + [sym_index_type_query] = STATE(432), + [sym_lookup_type] = STATE(432), + [sym_literal_type] = STATE(432), + [sym__number] = STATE(433), + [sym_existential_type] = STATE(432), + [sym_flow_maybe_type] = STATE(432), + [sym_parenthesized_type] = STATE(432), + [sym_predefined_type] = STATE(432), + [sym_type_arguments] = STATE(384), + [sym_object_type] = STATE(432), + [sym_type_parameters] = STATE(2893), + [sym_array_type] = STATE(432), + [sym__tuple_type_body] = STATE(434), + [sym_tuple_type] = STATE(432), + [sym_union_type] = STATE(2235), + [sym_intersection_type] = STATE(2235), + [sym_function_type] = STATE(2235), + [aux_sym_export_statement_repeat1] = STATE(2575), [sym_identifier] = ACTIONS(633), [anon_sym_export] = ACTIONS(635), [anon_sym_STAR] = ACTIONS(427), [anon_sym_namespace] = ACTIONS(637), - [anon_sym_LBRACE] = ACTIONS(639), + [anon_sym_LBRACE] = ACTIONS(535), [anon_sym_type] = ACTIONS(635), - [anon_sym_typeof] = ACTIONS(641), - [anon_sym_import] = ACTIONS(435), - [anon_sym_BANG] = ACTIONS(643), - [anon_sym_LPAREN] = ACTIONS(439), - [anon_sym_await] = ACTIONS(645), - [anon_sym_yield] = ACTIONS(647), - [anon_sym_LBRACK] = ACTIONS(649), + [anon_sym_typeof] = ACTIONS(639), + [anon_sym_import] = ACTIONS(539), + [anon_sym_BANG] = ACTIONS(641), + [anon_sym_LPAREN] = ACTIONS(541), + [anon_sym_await] = ACTIONS(643), + [anon_sym_yield] = ACTIONS(645), + [anon_sym_LBRACK] = ACTIONS(647), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(449), - [anon_sym_class] = ACTIONS(451), - [anon_sym_async] = ACTIONS(651), - [anon_sym_function] = ACTIONS(455), - [anon_sym_new] = ACTIONS(653), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(545), + [anon_sym_async] = ACTIONS(649), + [anon_sym_function] = ACTIONS(549), + [anon_sym_new] = ACTIONS(651), [anon_sym_QMARK] = ACTIONS(461), [anon_sym_AMP] = ACTIONS(463), [anon_sym_PIPE] = ACTIONS(465), - [anon_sym_PLUS] = ACTIONS(655), - [anon_sym_DASH] = ACTIONS(655), - [anon_sym_TILDE] = ACTIONS(643), - [anon_sym_void] = ACTIONS(657), - [anon_sym_delete] = ACTIONS(659), - [anon_sym_PLUS_PLUS] = ACTIONS(661), - [anon_sym_DASH_DASH] = ACTIONS(661), - [anon_sym_DQUOTE] = ACTIONS(475), - [anon_sym_SQUOTE] = ACTIONS(477), + [anon_sym_PLUS] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(653), + [anon_sym_TILDE] = ACTIONS(641), + [anon_sym_void] = ACTIONS(655), + [anon_sym_delete] = ACTIONS(657), + [anon_sym_PLUS_PLUS] = ACTIONS(659), + [anon_sym_DASH_DASH] = ACTIONS(659), + [anon_sym_DQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(479), - [sym_number] = ACTIONS(663), - [sym_this] = ACTIONS(665), - [sym_super] = ACTIONS(485), - [sym_true] = ACTIONS(667), - [sym_false] = ACTIONS(667), - [sym_null] = ACTIONS(485), - [sym_undefined] = ACTIONS(485), + [anon_sym_BQUOTE] = ACTIONS(85), + [sym_number] = ACTIONS(661), + [sym_this] = ACTIONS(663), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(665), + [sym_false] = ACTIONS(665), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(635), [anon_sym_get] = ACTIONS(635), @@ -17209,219 +17381,219 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_private] = ACTIONS(635), [anon_sym_protected] = ACTIONS(635), [anon_sym_module] = ACTIONS(635), - [anon_sym_any] = ACTIONS(669), - [anon_sym_number] = ACTIONS(669), - [anon_sym_boolean] = ACTIONS(669), - [anon_sym_string] = ACTIONS(669), - [anon_sym_symbol] = ACTIONS(669), - [sym_readonly] = ACTIONS(671), + [anon_sym_any] = ACTIONS(667), + [anon_sym_number] = ACTIONS(667), + [anon_sym_boolean] = ACTIONS(667), + [anon_sym_string] = ACTIONS(667), + [anon_sym_symbol] = ACTIONS(667), + [sym_readonly] = ACTIONS(669), [anon_sym_keyof] = ACTIONS(495), [anon_sym_LBRACE_PIPE] = ACTIONS(497), }, - [57] = { - [sym_import] = STATE(1498), - [sym_parenthesized_expression] = STATE(952), - [sym__expression] = STATE(1445), - [sym_yield_expression] = STATE(1518), - [sym_object] = STATE(1677), - [sym_array] = STATE(1671), - [sym_nested_identifier] = STATE(2999), - [sym_class] = STATE(1498), - [sym_function] = STATE(1498), - [sym_generator_function] = STATE(1498), - [sym_arrow_function] = STATE(1498), - [sym__call_signature] = STATE(3059), - [sym_call_expression] = STATE(1498), - [sym_new_expression] = STATE(1518), - [sym_await_expression] = STATE(1518), - [sym_member_expression] = STATE(952), - [sym_subscript_expression] = STATE(952), - [sym_assignment_expression] = STATE(1518), - [sym__augmented_assignment_lhs] = STATE(1919), - [sym_augmented_assignment_expression] = STATE(1518), - [sym_ternary_expression] = STATE(1518), - [sym_binary_expression] = STATE(1518), - [sym_unary_expression] = STATE(1518), - [sym_update_expression] = STATE(1518), - [sym_string] = STATE(1533), - [sym_template_string] = STATE(1498), - [sym_regex] = STATE(1498), - [sym_meta_property] = STATE(1498), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2371), - [sym_non_null_expression] = STATE(946), - [sym_type_assertion] = STATE(1518), - [sym_as_expression] = STATE(1518), - [sym_internal_module] = STATE(1518), - [sym_nested_type_identifier] = STATE(1913), - [sym__type] = STATE(2194), - [sym_constructor_type] = STATE(2194), - [sym__primary_type] = STATE(448), - [sym_conditional_type] = STATE(448), - [sym_generic_type] = STATE(448), - [sym_type_query] = STATE(448), - [sym_index_type_query] = STATE(448), - [sym_lookup_type] = STATE(448), - [sym_literal_type] = STATE(448), - [sym__number] = STATE(446), - [sym_existential_type] = STATE(448), - [sym_flow_maybe_type] = STATE(448), - [sym_parenthesized_type] = STATE(448), - [sym_predefined_type] = STATE(448), - [sym_type_arguments] = STATE(263), - [sym_object_type] = STATE(448), - [sym_type_parameters] = STATE(2971), - [sym_array_type] = STATE(448), - [sym__tuple_type_body] = STATE(444), - [sym_tuple_type] = STATE(448), - [sym_union_type] = STATE(2194), - [sym_intersection_type] = STATE(2194), - [sym_function_type] = STATE(2194), - [aux_sym_export_statement_repeat1] = STATE(2554), - [sym_identifier] = ACTIONS(673), - [anon_sym_export] = ACTIONS(675), + [58] = { + [sym_import] = STATE(1690), + [sym_parenthesized_expression] = STATE(834), + [sym__expression] = STATE(1278), + [sym_yield_expression] = STATE(1687), + [sym_object] = STATE(1538), + [sym_array] = STATE(1543), + [sym_nested_identifier] = STATE(3123), + [sym_class] = STATE(1690), + [sym_function] = STATE(1690), + [sym_generator_function] = STATE(1690), + [sym_arrow_function] = STATE(1690), + [sym__call_signature] = STATE(3133), + [sym_call_expression] = STATE(1690), + [sym_new_expression] = STATE(1687), + [sym_await_expression] = STATE(1687), + [sym_member_expression] = STATE(834), + [sym_subscript_expression] = STATE(834), + [sym_assignment_expression] = STATE(1687), + [sym__augmented_assignment_lhs] = STATE(1921), + [sym_augmented_assignment_expression] = STATE(1687), + [sym_ternary_expression] = STATE(1687), + [sym_binary_expression] = STATE(1687), + [sym_unary_expression] = STATE(1687), + [sym_update_expression] = STATE(1687), + [sym_string] = STATE(1611), + [sym_template_string] = STATE(1690), + [sym_regex] = STATE(1690), + [sym_meta_property] = STATE(1690), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2352), + [sym_non_null_expression] = STATE(846), + [sym_type_assertion] = STATE(1687), + [sym_as_expression] = STATE(1687), + [sym_internal_module] = STATE(1687), + [sym_nested_type_identifier] = STATE(1917), + [sym__type] = STATE(2235), + [sym_constructor_type] = STATE(2235), + [sym__primary_type] = STATE(432), + [sym_conditional_type] = STATE(432), + [sym_generic_type] = STATE(432), + [sym_type_query] = STATE(432), + [sym_index_type_query] = STATE(432), + [sym_lookup_type] = STATE(432), + [sym_literal_type] = STATE(432), + [sym__number] = STATE(433), + [sym_existential_type] = STATE(432), + [sym_flow_maybe_type] = STATE(432), + [sym_parenthesized_type] = STATE(432), + [sym_predefined_type] = STATE(432), + [sym_type_arguments] = STATE(301), + [sym_object_type] = STATE(432), + [sym_type_parameters] = STATE(2893), + [sym_array_type] = STATE(432), + [sym__tuple_type_body] = STATE(434), + [sym_tuple_type] = STATE(432), + [sym_union_type] = STATE(2235), + [sym_intersection_type] = STATE(2235), + [sym_function_type] = STATE(2235), + [aux_sym_export_statement_repeat1] = STATE(2545), + [sym_identifier] = ACTIONS(671), + [anon_sym_export] = ACTIONS(673), [anon_sym_STAR] = ACTIONS(427), - [anon_sym_namespace] = ACTIONS(677), - [anon_sym_LBRACE] = ACTIONS(609), - [anon_sym_type] = ACTIONS(675), + [anon_sym_namespace] = ACTIONS(675), + [anon_sym_LBRACE] = ACTIONS(677), + [anon_sym_type] = ACTIONS(673), [anon_sym_typeof] = ACTIONS(679), - [anon_sym_import] = ACTIONS(597), - [anon_sym_BANG] = ACTIONS(681), - [anon_sym_LPAREN] = ACTIONS(613), - [anon_sym_await] = ACTIONS(683), - [anon_sym_yield] = ACTIONS(685), - [anon_sym_LBRACK] = ACTIONS(687), + [anon_sym_import] = ACTIONS(681), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_LPAREN] = ACTIONS(685), + [anon_sym_await] = ACTIONS(687), + [anon_sym_yield] = ACTIONS(689), + [anon_sym_LBRACK] = ACTIONS(691), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(601), - [anon_sym_async] = ACTIONS(689), - [anon_sym_function] = ACTIONS(605), - [anon_sym_new] = ACTIONS(691), + [anon_sym_SLASH] = ACTIONS(693), + [anon_sym_class] = ACTIONS(695), + [anon_sym_async] = ACTIONS(697), + [anon_sym_function] = ACTIONS(699), + [anon_sym_new] = ACTIONS(701), [anon_sym_QMARK] = ACTIONS(461), [anon_sym_AMP] = ACTIONS(463), [anon_sym_PIPE] = ACTIONS(465), - [anon_sym_PLUS] = ACTIONS(693), - [anon_sym_DASH] = ACTIONS(693), - [anon_sym_TILDE] = ACTIONS(681), - [anon_sym_void] = ACTIONS(695), - [anon_sym_delete] = ACTIONS(697), - [anon_sym_PLUS_PLUS] = ACTIONS(699), - [anon_sym_DASH_DASH] = ACTIONS(699), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(85), - [sym_number] = ACTIONS(701), - [sym_this] = ACTIONS(703), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(705), - [sym_false] = ACTIONS(705), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), + [anon_sym_PLUS] = ACTIONS(703), + [anon_sym_DASH] = ACTIONS(703), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_void] = ACTIONS(705), + [anon_sym_delete] = ACTIONS(707), + [anon_sym_PLUS_PLUS] = ACTIONS(709), + [anon_sym_DASH_DASH] = ACTIONS(709), + [anon_sym_DQUOTE] = ACTIONS(711), + [anon_sym_SQUOTE] = ACTIONS(713), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(715), + [sym_number] = ACTIONS(717), + [sym_this] = ACTIONS(719), + [sym_super] = ACTIONS(721), + [sym_true] = ACTIONS(723), + [sym_false] = ACTIONS(723), + [sym_null] = ACTIONS(721), + [sym_undefined] = ACTIONS(721), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(675), - [anon_sym_get] = ACTIONS(675), - [anon_sym_set] = ACTIONS(675), - [anon_sym_declare] = ACTIONS(675), - [anon_sym_public] = ACTIONS(675), - [anon_sym_private] = ACTIONS(675), - [anon_sym_protected] = ACTIONS(675), - [anon_sym_module] = ACTIONS(675), - [anon_sym_any] = ACTIONS(707), - [anon_sym_number] = ACTIONS(707), - [anon_sym_boolean] = ACTIONS(707), - [anon_sym_string] = ACTIONS(707), - [anon_sym_symbol] = ACTIONS(707), - [sym_readonly] = ACTIONS(709), + [anon_sym_static] = ACTIONS(673), + [anon_sym_get] = ACTIONS(673), + [anon_sym_set] = ACTIONS(673), + [anon_sym_declare] = ACTIONS(673), + [anon_sym_public] = ACTIONS(673), + [anon_sym_private] = ACTIONS(673), + [anon_sym_protected] = ACTIONS(673), + [anon_sym_module] = ACTIONS(673), + [anon_sym_any] = ACTIONS(725), + [anon_sym_number] = ACTIONS(725), + [anon_sym_boolean] = ACTIONS(725), + [anon_sym_string] = ACTIONS(725), + [anon_sym_symbol] = ACTIONS(725), + [sym_readonly] = ACTIONS(727), [anon_sym_keyof] = ACTIONS(495), [anon_sym_LBRACE_PIPE] = ACTIONS(497), }, - [58] = { - [sym_import] = STATE(1101), - [sym_parenthesized_expression] = STATE(739), + [59] = { + [sym_import] = STATE(1151), + [sym_parenthesized_expression] = STATE(759), [sym__expression] = STATE(1431), - [sym_yield_expression] = STATE(1105), - [sym_object] = STATE(1297), - [sym_array] = STATE(1296), - [sym_nested_identifier] = STATE(2998), - [sym_class] = STATE(1101), - [sym_function] = STATE(1101), - [sym_generator_function] = STATE(1101), - [sym_arrow_function] = STATE(1101), - [sym__call_signature] = STATE(3116), - [sym_call_expression] = STATE(1101), - [sym_new_expression] = STATE(1105), - [sym_await_expression] = STATE(1105), - [sym_member_expression] = STATE(739), - [sym_subscript_expression] = STATE(739), - [sym_assignment_expression] = STATE(1105), - [sym__augmented_assignment_lhs] = STATE(1920), - [sym_augmented_assignment_expression] = STATE(1105), - [sym_ternary_expression] = STATE(1105), - [sym_binary_expression] = STATE(1105), - [sym_unary_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_string] = STATE(1295), - [sym_template_string] = STATE(1101), - [sym_regex] = STATE(1101), - [sym_meta_property] = STATE(1101), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2405), - [sym_non_null_expression] = STATE(755), - [sym_type_assertion] = STATE(1105), - [sym_as_expression] = STATE(1105), - [sym_internal_module] = STATE(1105), - [sym_nested_type_identifier] = STATE(1947), - [sym__type] = STATE(2009), - [sym_constructor_type] = STATE(2009), - [sym__primary_type] = STATE(1974), - [sym_conditional_type] = STATE(1974), - [sym_generic_type] = STATE(1974), - [sym_type_query] = STATE(1974), - [sym_index_type_query] = STATE(1974), - [sym_lookup_type] = STATE(1974), - [sym_literal_type] = STATE(1974), - [sym__number] = STATE(1981), - [sym_existential_type] = STATE(1974), - [sym_flow_maybe_type] = STATE(1974), - [sym_parenthesized_type] = STATE(1974), - [sym_predefined_type] = STATE(1974), - [sym_type_arguments] = STATE(361), - [sym_object_type] = STATE(1974), - [sym_type_parameters] = STATE(2972), - [sym_array_type] = STATE(1974), - [sym__tuple_type_body] = STATE(1972), - [sym_tuple_type] = STATE(1974), - [sym_union_type] = STATE(2009), - [sym_intersection_type] = STATE(2009), - [sym_function_type] = STATE(2009), - [aux_sym_export_statement_repeat1] = STATE(2497), - [sym_identifier] = ACTIONS(711), + [sym_yield_expression] = STATE(1144), + [sym_object] = STATE(1257), + [sym_array] = STATE(1254), + [sym_nested_identifier] = STATE(3017), + [sym_class] = STATE(1151), + [sym_function] = STATE(1151), + [sym_generator_function] = STATE(1151), + [sym_arrow_function] = STATE(1151), + [sym__call_signature] = STATE(3082), + [sym_call_expression] = STATE(1151), + [sym_new_expression] = STATE(1144), + [sym_await_expression] = STATE(1144), + [sym_member_expression] = STATE(759), + [sym_subscript_expression] = STATE(759), + [sym_assignment_expression] = STATE(1144), + [sym__augmented_assignment_lhs] = STATE(1924), + [sym_augmented_assignment_expression] = STATE(1144), + [sym_ternary_expression] = STATE(1144), + [sym_binary_expression] = STATE(1144), + [sym_unary_expression] = STATE(1144), + [sym_update_expression] = STATE(1144), + [sym_string] = STATE(1212), + [sym_template_string] = STATE(1151), + [sym_regex] = STATE(1151), + [sym_meta_property] = STATE(1151), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2326), + [sym_non_null_expression] = STATE(754), + [sym_type_assertion] = STATE(1144), + [sym_as_expression] = STATE(1144), + [sym_internal_module] = STATE(1144), + [sym_nested_type_identifier] = STATE(1950), + [sym__type] = STATE(2018), + [sym_constructor_type] = STATE(2018), + [sym__primary_type] = STATE(2003), + [sym_conditional_type] = STATE(2003), + [sym_generic_type] = STATE(2003), + [sym_type_query] = STATE(2003), + [sym_index_type_query] = STATE(2003), + [sym_lookup_type] = STATE(2003), + [sym_literal_type] = STATE(2003), + [sym__number] = STATE(2000), + [sym_existential_type] = STATE(2003), + [sym_flow_maybe_type] = STATE(2003), + [sym_parenthesized_type] = STATE(2003), + [sym_predefined_type] = STATE(2003), + [sym_type_arguments] = STATE(326), + [sym_object_type] = STATE(2003), + [sym_type_parameters] = STATE(2999), + [sym_array_type] = STATE(2003), + [sym__tuple_type_body] = STATE(2010), + [sym_tuple_type] = STATE(2003), + [sym_union_type] = STATE(2018), + [sym_intersection_type] = STATE(2018), + [sym_function_type] = STATE(2018), + [aux_sym_export_statement_repeat1] = STATE(2580), + [sym_identifier] = ACTIONS(729), [anon_sym_export] = ACTIONS(501), - [anon_sym_STAR] = ACTIONS(713), + [anon_sym_STAR] = ACTIONS(731), [anon_sym_namespace] = ACTIONS(507), - [anon_sym_LBRACE] = ACTIONS(715), + [anon_sym_LBRACE] = ACTIONS(733), [anon_sym_type] = ACTIONS(501), - [anon_sym_typeof] = ACTIONS(717), + [anon_sym_typeof] = ACTIONS(735), [anon_sym_import] = ACTIONS(435), [anon_sym_BANG] = ACTIONS(437), - [anon_sym_LPAREN] = ACTIONS(719), + [anon_sym_LPAREN] = ACTIONS(737), [anon_sym_await] = ACTIONS(443), [anon_sym_yield] = ACTIONS(445), - [anon_sym_LBRACK] = ACTIONS(721), + [anon_sym_LBRACK] = ACTIONS(739), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(449), [anon_sym_class] = ACTIONS(451), [anon_sym_async] = ACTIONS(521), [anon_sym_function] = ACTIONS(455), - [anon_sym_new] = ACTIONS(723), - [anon_sym_QMARK] = ACTIONS(725), - [anon_sym_AMP] = ACTIONS(727), - [anon_sym_PIPE] = ACTIONS(729), - [anon_sym_PLUS] = ACTIONS(731), - [anon_sym_DASH] = ACTIONS(731), + [anon_sym_new] = ACTIONS(741), + [anon_sym_QMARK] = ACTIONS(743), + [anon_sym_AMP] = ACTIONS(745), + [anon_sym_PIPE] = ACTIONS(747), + [anon_sym_PLUS] = ACTIONS(749), + [anon_sym_DASH] = ACTIONS(749), [anon_sym_TILDE] = ACTIONS(437), - [anon_sym_void] = ACTIONS(733), + [anon_sym_void] = ACTIONS(751), [anon_sym_delete] = ACTIONS(471), [anon_sym_PLUS_PLUS] = ACTIONS(473), [anon_sym_DASH_DASH] = ACTIONS(473), @@ -17429,11 +17601,11 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(479), - [sym_number] = ACTIONS(735), - [sym_this] = ACTIONS(737), + [sym_number] = ACTIONS(753), + [sym_this] = ACTIONS(755), [sym_super] = ACTIONS(485), - [sym_true] = ACTIONS(739), - [sym_false] = ACTIONS(739), + [sym_true] = ACTIONS(757), + [sym_false] = ACTIONS(757), [sym_null] = ACTIONS(485), [sym_undefined] = ACTIONS(485), [anon_sym_AT] = ACTIONS(91), @@ -17445,242 +17617,124 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_private] = ACTIONS(501), [anon_sym_protected] = ACTIONS(501), [anon_sym_module] = ACTIONS(501), - [anon_sym_any] = ACTIONS(741), - [anon_sym_number] = ACTIONS(741), - [anon_sym_boolean] = ACTIONS(741), - [anon_sym_string] = ACTIONS(741), - [anon_sym_symbol] = ACTIONS(741), - [sym_readonly] = ACTIONS(743), - [anon_sym_keyof] = ACTIONS(745), - [anon_sym_LBRACE_PIPE] = ACTIONS(747), - }, - [59] = { - [sym_import] = STATE(1101), - [sym_parenthesized_expression] = STATE(921), - [sym__expression] = STATE(1258), - [sym_yield_expression] = STATE(1105), - [sym_object] = STATE(1531), - [sym_array] = STATE(1536), - [sym_nested_identifier] = STATE(2999), - [sym_class] = STATE(1101), - [sym_function] = STATE(1101), - [sym_generator_function] = STATE(1101), - [sym_arrow_function] = STATE(1101), - [sym__call_signature] = STATE(3170), - [sym_call_expression] = STATE(1101), - [sym_new_expression] = STATE(1105), - [sym_await_expression] = STATE(1105), - [sym_member_expression] = STATE(921), - [sym_subscript_expression] = STATE(921), - [sym_assignment_expression] = STATE(1105), - [sym__augmented_assignment_lhs] = STATE(1917), - [sym_augmented_assignment_expression] = STATE(1105), - [sym_ternary_expression] = STATE(1105), - [sym_binary_expression] = STATE(1105), - [sym_unary_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_string] = STATE(1078), - [sym_template_string] = STATE(1101), - [sym_regex] = STATE(1101), - [sym_meta_property] = STATE(1101), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2371), - [sym_non_null_expression] = STATE(882), - [sym_type_assertion] = STATE(1105), - [sym_as_expression] = STATE(1105), - [sym_internal_module] = STATE(1105), - [sym_nested_type_identifier] = STATE(1913), - [sym__type] = STATE(2194), - [sym_constructor_type] = STATE(2194), - [sym__primary_type] = STATE(448), - [sym_conditional_type] = STATE(448), - [sym_generic_type] = STATE(448), - [sym_type_query] = STATE(448), - [sym_index_type_query] = STATE(448), - [sym_lookup_type] = STATE(448), - [sym_literal_type] = STATE(448), - [sym__number] = STATE(446), - [sym_existential_type] = STATE(448), - [sym_flow_maybe_type] = STATE(448), - [sym_parenthesized_type] = STATE(448), - [sym_predefined_type] = STATE(448), - [sym_type_arguments] = STATE(355), - [sym_object_type] = STATE(448), - [sym_type_parameters] = STATE(2971), - [sym_array_type] = STATE(448), - [sym__tuple_type_body] = STATE(444), - [sym_tuple_type] = STATE(448), - [sym_union_type] = STATE(2194), - [sym_intersection_type] = STATE(2194), - [sym_function_type] = STATE(2194), - [aux_sym_export_statement_repeat1] = STATE(2497), - [sym_identifier] = ACTIONS(749), - [anon_sym_export] = ACTIONS(751), - [anon_sym_STAR] = ACTIONS(427), - [anon_sym_namespace] = ACTIONS(753), - [anon_sym_LBRACE] = ACTIONS(639), - [anon_sym_type] = ACTIONS(751), - [anon_sym_typeof] = ACTIONS(755), - [anon_sym_import] = ACTIONS(435), - [anon_sym_BANG] = ACTIONS(757), - [anon_sym_LPAREN] = ACTIONS(439), - [anon_sym_await] = ACTIONS(759), - [anon_sym_yield] = ACTIONS(761), - [anon_sym_LBRACK] = ACTIONS(763), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(765), - [anon_sym_class] = ACTIONS(451), - [anon_sym_async] = ACTIONS(767), - [anon_sym_function] = ACTIONS(455), - [anon_sym_new] = ACTIONS(769), - [anon_sym_QMARK] = ACTIONS(461), - [anon_sym_AMP] = ACTIONS(463), - [anon_sym_PIPE] = ACTIONS(465), - [anon_sym_PLUS] = ACTIONS(771), - [anon_sym_DASH] = ACTIONS(771), - [anon_sym_TILDE] = ACTIONS(757), - [anon_sym_void] = ACTIONS(773), - [anon_sym_delete] = ACTIONS(775), - [anon_sym_PLUS_PLUS] = ACTIONS(777), - [anon_sym_DASH_DASH] = ACTIONS(777), - [anon_sym_DQUOTE] = ACTIONS(475), - [anon_sym_SQUOTE] = ACTIONS(477), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(479), - [sym_number] = ACTIONS(779), - [sym_this] = ACTIONS(781), - [sym_super] = ACTIONS(485), - [sym_true] = ACTIONS(783), - [sym_false] = ACTIONS(783), - [sym_null] = ACTIONS(485), - [sym_undefined] = ACTIONS(485), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(751), - [anon_sym_get] = ACTIONS(751), - [anon_sym_set] = ACTIONS(751), - [anon_sym_declare] = ACTIONS(751), - [anon_sym_public] = ACTIONS(751), - [anon_sym_private] = ACTIONS(751), - [anon_sym_protected] = ACTIONS(751), - [anon_sym_module] = ACTIONS(751), - [anon_sym_any] = ACTIONS(785), - [anon_sym_number] = ACTIONS(785), - [anon_sym_boolean] = ACTIONS(785), - [anon_sym_string] = ACTIONS(785), - [anon_sym_symbol] = ACTIONS(785), - [sym_readonly] = ACTIONS(787), - [anon_sym_keyof] = ACTIONS(495), - [anon_sym_LBRACE_PIPE] = ACTIONS(497), + [anon_sym_any] = ACTIONS(759), + [anon_sym_number] = ACTIONS(759), + [anon_sym_boolean] = ACTIONS(759), + [anon_sym_string] = ACTIONS(759), + [anon_sym_symbol] = ACTIONS(759), + [sym_readonly] = ACTIONS(761), + [anon_sym_keyof] = ACTIONS(763), + [anon_sym_LBRACE_PIPE] = ACTIONS(765), }, [60] = { - [sym_import] = STATE(1101), - [sym_parenthesized_expression] = STATE(739), - [sym__expression] = STATE(1079), - [sym_yield_expression] = STATE(1105), - [sym_object] = STATE(1297), - [sym_array] = STATE(1296), - [sym_nested_identifier] = STATE(2999), - [sym_class] = STATE(1101), - [sym_function] = STATE(1101), - [sym_generator_function] = STATE(1101), - [sym_arrow_function] = STATE(1101), - [sym__call_signature] = STATE(3116), - [sym_call_expression] = STATE(1101), - [sym_new_expression] = STATE(1105), - [sym_await_expression] = STATE(1105), - [sym_member_expression] = STATE(739), - [sym_subscript_expression] = STATE(739), - [sym_assignment_expression] = STATE(1105), - [sym__augmented_assignment_lhs] = STATE(1920), - [sym_augmented_assignment_expression] = STATE(1105), - [sym_ternary_expression] = STATE(1105), - [sym_binary_expression] = STATE(1105), - [sym_unary_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_string] = STATE(1078), - [sym_template_string] = STATE(1101), - [sym_regex] = STATE(1101), - [sym_meta_property] = STATE(1101), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2371), - [sym_non_null_expression] = STATE(755), - [sym_type_assertion] = STATE(1105), - [sym_as_expression] = STATE(1105), - [sym_internal_module] = STATE(1105), - [sym_nested_type_identifier] = STATE(1913), - [sym__type] = STATE(2194), - [sym_constructor_type] = STATE(2194), - [sym__primary_type] = STATE(448), - [sym_conditional_type] = STATE(448), - [sym_generic_type] = STATE(448), - [sym_type_query] = STATE(448), - [sym_index_type_query] = STATE(448), - [sym_lookup_type] = STATE(448), - [sym_literal_type] = STATE(448), - [sym__number] = STATE(446), - [sym_existential_type] = STATE(448), - [sym_flow_maybe_type] = STATE(448), - [sym_parenthesized_type] = STATE(448), - [sym_predefined_type] = STATE(448), - [sym_type_arguments] = STATE(361), - [sym_object_type] = STATE(448), - [sym_type_parameters] = STATE(2971), - [sym_array_type] = STATE(448), - [sym__tuple_type_body] = STATE(444), - [sym_tuple_type] = STATE(448), - [sym_union_type] = STATE(2194), - [sym_intersection_type] = STATE(2194), - [sym_function_type] = STATE(2194), - [aux_sym_export_statement_repeat1] = STATE(2497), - [sym_identifier] = ACTIONS(789), - [anon_sym_export] = ACTIONS(501), + [sym_import] = STATE(1151), + [sym_parenthesized_expression] = STATE(837), + [sym__expression] = STATE(1302), + [sym_yield_expression] = STATE(1144), + [sym_object] = STATE(1495), + [sym_array] = STATE(1493), + [sym_nested_identifier] = STATE(3123), + [sym_class] = STATE(1151), + [sym_function] = STATE(1151), + [sym_generator_function] = STATE(1151), + [sym_arrow_function] = STATE(1151), + [sym__call_signature] = STATE(3190), + [sym_call_expression] = STATE(1151), + [sym_new_expression] = STATE(1144), + [sym_await_expression] = STATE(1144), + [sym_member_expression] = STATE(837), + [sym_subscript_expression] = STATE(837), + [sym_assignment_expression] = STATE(1144), + [sym__augmented_assignment_lhs] = STATE(1927), + [sym_augmented_assignment_expression] = STATE(1144), + [sym_ternary_expression] = STATE(1144), + [sym_binary_expression] = STATE(1144), + [sym_unary_expression] = STATE(1144), + [sym_update_expression] = STATE(1144), + [sym_string] = STATE(1037), + [sym_template_string] = STATE(1151), + [sym_regex] = STATE(1151), + [sym_meta_property] = STATE(1151), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2352), + [sym_non_null_expression] = STATE(845), + [sym_type_assertion] = STATE(1144), + [sym_as_expression] = STATE(1144), + [sym_internal_module] = STATE(1144), + [sym_nested_type_identifier] = STATE(1917), + [sym__type] = STATE(2235), + [sym_constructor_type] = STATE(2235), + [sym__primary_type] = STATE(432), + [sym_conditional_type] = STATE(432), + [sym_generic_type] = STATE(432), + [sym_type_query] = STATE(432), + [sym_index_type_query] = STATE(432), + [sym_lookup_type] = STATE(432), + [sym_literal_type] = STATE(432), + [sym__number] = STATE(433), + [sym_existential_type] = STATE(432), + [sym_flow_maybe_type] = STATE(432), + [sym_parenthesized_type] = STATE(432), + [sym_predefined_type] = STATE(432), + [sym_type_arguments] = STATE(357), + [sym_object_type] = STATE(432), + [sym_type_parameters] = STATE(2893), + [sym_array_type] = STATE(432), + [sym__tuple_type_body] = STATE(434), + [sym_tuple_type] = STATE(432), + [sym_union_type] = STATE(2235), + [sym_intersection_type] = STATE(2235), + [sym_function_type] = STATE(2235), + [aux_sym_export_statement_repeat1] = STATE(2580), + [sym_identifier] = ACTIONS(767), + [anon_sym_export] = ACTIONS(769), [anon_sym_STAR] = ACTIONS(427), - [anon_sym_namespace] = ACTIONS(507), - [anon_sym_LBRACE] = ACTIONS(639), - [anon_sym_type] = ACTIONS(501), - [anon_sym_typeof] = ACTIONS(791), + [anon_sym_namespace] = ACTIONS(771), + [anon_sym_LBRACE] = ACTIONS(581), + [anon_sym_type] = ACTIONS(769), + [anon_sym_typeof] = ACTIONS(773), [anon_sym_import] = ACTIONS(435), - [anon_sym_BANG] = ACTIONS(437), + [anon_sym_BANG] = ACTIONS(775), [anon_sym_LPAREN] = ACTIONS(439), - [anon_sym_await] = ACTIONS(443), - [anon_sym_yield] = ACTIONS(445), - [anon_sym_LBRACK] = ACTIONS(763), + [anon_sym_await] = ACTIONS(777), + [anon_sym_yield] = ACTIONS(779), + [anon_sym_LBRACK] = ACTIONS(619), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(449), + [anon_sym_SLASH] = ACTIONS(781), [anon_sym_class] = ACTIONS(451), - [anon_sym_async] = ACTIONS(521), + [anon_sym_async] = ACTIONS(783), [anon_sym_function] = ACTIONS(455), - [anon_sym_new] = ACTIONS(457), + [anon_sym_new] = ACTIONS(785), [anon_sym_QMARK] = ACTIONS(461), [anon_sym_AMP] = ACTIONS(463), [anon_sym_PIPE] = ACTIONS(465), - [anon_sym_PLUS] = ACTIONS(793), - [anon_sym_DASH] = ACTIONS(793), - [anon_sym_TILDE] = ACTIONS(437), - [anon_sym_void] = ACTIONS(469), - [anon_sym_delete] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(473), - [anon_sym_DASH_DASH] = ACTIONS(473), + [anon_sym_PLUS] = ACTIONS(787), + [anon_sym_DASH] = ACTIONS(787), + [anon_sym_TILDE] = ACTIONS(775), + [anon_sym_void] = ACTIONS(789), + [anon_sym_delete] = ACTIONS(791), + [anon_sym_PLUS_PLUS] = ACTIONS(793), + [anon_sym_DASH_DASH] = ACTIONS(793), [anon_sym_DQUOTE] = ACTIONS(475), [anon_sym_SQUOTE] = ACTIONS(477), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(479), - [sym_number] = ACTIONS(779), - [sym_this] = ACTIONS(781), + [sym_number] = ACTIONS(623), + [sym_this] = ACTIONS(625), [sym_super] = ACTIONS(485), - [sym_true] = ACTIONS(783), - [sym_false] = ACTIONS(783), + [sym_true] = ACTIONS(627), + [sym_false] = ACTIONS(627), [sym_null] = ACTIONS(485), [sym_undefined] = ACTIONS(485), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(501), - [anon_sym_get] = ACTIONS(501), - [anon_sym_set] = ACTIONS(501), - [anon_sym_declare] = ACTIONS(501), - [anon_sym_public] = ACTIONS(501), - [anon_sym_private] = ACTIONS(501), - [anon_sym_protected] = ACTIONS(501), - [anon_sym_module] = ACTIONS(501), + [anon_sym_static] = ACTIONS(769), + [anon_sym_get] = ACTIONS(769), + [anon_sym_set] = ACTIONS(769), + [anon_sym_declare] = ACTIONS(769), + [anon_sym_public] = ACTIONS(769), + [anon_sym_private] = ACTIONS(769), + [anon_sym_protected] = ACTIONS(769), + [anon_sym_module] = ACTIONS(769), [anon_sym_any] = ACTIONS(795), [anon_sym_number] = ACTIONS(795), [anon_sym_boolean] = ACTIONS(795), @@ -17691,34 +17745,34 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(497), }, [61] = { - [sym_object] = STATE(2322), - [sym_array] = STATE(2325), - [sym_nested_identifier] = STATE(2999), - [sym_string] = STATE(446), - [sym_formal_parameters] = STATE(2996), - [sym_nested_type_identifier] = STATE(1913), - [sym__type] = STATE(2626), - [sym_constructor_type] = STATE(2626), - [sym__primary_type] = STATE(2496), - [sym_conditional_type] = STATE(2496), - [sym_generic_type] = STATE(2496), - [sym_type_query] = STATE(2496), - [sym_index_type_query] = STATE(2496), - [sym_lookup_type] = STATE(2496), - [sym_literal_type] = STATE(2496), - [sym__number] = STATE(446), - [sym_existential_type] = STATE(2496), - [sym_flow_maybe_type] = STATE(2496), - [sym_parenthesized_type] = STATE(2496), - [sym_predefined_type] = STATE(2496), - [sym_object_type] = STATE(2496), - [sym_type_parameters] = STATE(2959), - [sym_array_type] = STATE(2496), - [sym__tuple_type_body] = STATE(426), - [sym_tuple_type] = STATE(2496), - [sym_union_type] = STATE(2626), - [sym_intersection_type] = STATE(2626), - [sym_function_type] = STATE(2626), + [sym_object] = STATE(2357), + [sym_array] = STATE(2356), + [sym_nested_identifier] = STATE(3123), + [sym_string] = STATE(433), + [sym_formal_parameters] = STATE(3122), + [sym_nested_type_identifier] = STATE(1917), + [sym__type] = STATE(2780), + [sym_constructor_type] = STATE(2780), + [sym__primary_type] = STATE(2509), + [sym_conditional_type] = STATE(2509), + [sym_generic_type] = STATE(2509), + [sym_type_query] = STATE(2509), + [sym_index_type_query] = STATE(2509), + [sym_lookup_type] = STATE(2509), + [sym_literal_type] = STATE(2509), + [sym__number] = STATE(433), + [sym_existential_type] = STATE(2509), + [sym_flow_maybe_type] = STATE(2509), + [sym_parenthesized_type] = STATE(2509), + [sym_predefined_type] = STATE(2509), + [sym_object_type] = STATE(2509), + [sym_type_parameters] = STATE(2916), + [sym_array_type] = STATE(2509), + [sym__tuple_type_body] = STATE(424), + [sym_tuple_type] = STATE(2509), + [sym_union_type] = STATE(2780), + [sym_intersection_type] = STATE(2780), + [sym_function_type] = STATE(2780), [sym_identifier] = ACTIONS(799), [anon_sym_export] = ACTIONS(801), [anon_sym_STAR] = ACTIONS(803), @@ -17808,65 +17862,64 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(497), }, [62] = { - [sym_import] = STATE(1101), - [sym_parenthesized_expression] = STATE(948), - [sym__expression] = STATE(1337), - [sym_yield_expression] = STATE(1105), - [sym_object] = STATE(1654), - [sym_array] = STATE(1640), - [sym_class] = STATE(1101), - [sym_function] = STATE(1101), - [sym_generator_function] = STATE(1101), - [sym_arrow_function] = STATE(1101), - [sym__call_signature] = STATE(3002), - [sym_call_expression] = STATE(1101), - [sym_new_expression] = STATE(1105), - [sym_await_expression] = STATE(1105), - [sym_member_expression] = STATE(948), - [sym_subscript_expression] = STATE(948), - [sym_assignment_expression] = STATE(1105), - [sym__augmented_assignment_lhs] = STATE(1921), - [sym_augmented_assignment_expression] = STATE(1105), - [sym_ternary_expression] = STATE(1105), - [sym_binary_expression] = STATE(1105), - [sym_unary_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_string] = STATE(1101), - [sym_template_string] = STATE(1101), - [sym_regex] = STATE(1101), - [sym_meta_property] = STATE(1101), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(949), - [sym_type_assertion] = STATE(1105), - [sym_as_expression] = STATE(1105), - [sym_internal_module] = STATE(1105), - [sym_type_arguments] = STATE(324), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2497), + [sym_import] = STATE(1151), + [sym_parenthesized_expression] = STATE(837), + [sym__expression] = STATE(1279), + [sym_yield_expression] = STATE(1144), + [sym_object] = STATE(1495), + [sym_array] = STATE(1493), + [sym_class] = STATE(1151), + [sym_function] = STATE(1151), + [sym_generator_function] = STATE(1151), + [sym_arrow_function] = STATE(1151), + [sym__call_signature] = STATE(3190), + [sym_call_expression] = STATE(1151), + [sym_new_expression] = STATE(1144), + [sym_await_expression] = STATE(1144), + [sym_member_expression] = STATE(837), + [sym_subscript_expression] = STATE(837), + [sym_assignment_expression] = STATE(1144), + [sym__augmented_assignment_lhs] = STATE(1927), + [sym_augmented_assignment_expression] = STATE(1144), + [sym_ternary_expression] = STATE(1144), + [sym_binary_expression] = STATE(1144), + [sym_unary_expression] = STATE(1144), + [sym_update_expression] = STATE(1144), + [sym_string] = STATE(1151), + [sym_template_string] = STATE(1151), + [sym_regex] = STATE(1151), + [sym_meta_property] = STATE(1151), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(845), + [sym_type_assertion] = STATE(1144), + [sym_as_expression] = STATE(1144), + [sym_internal_module] = STATE(1144), + [sym_type_arguments] = STATE(357), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2580), [sym_identifier] = ACTIONS(859), - [anon_sym_export] = ACTIONS(635), + [anon_sym_export] = ACTIONS(769), [anon_sym_STAR] = ACTIONS(861), [anon_sym_as] = ACTIONS(505), - [anon_sym_namespace] = ACTIONS(637), + [anon_sym_namespace] = ACTIONS(771), [anon_sym_LBRACE] = ACTIONS(509), - [anon_sym_type] = ACTIONS(635), - [anon_sym_typeof] = ACTIONS(659), + [anon_sym_COMMA] = ACTIONS(511), + [anon_sym_type] = ACTIONS(769), + [anon_sym_typeof] = ACTIONS(791), [anon_sym_import] = ACTIONS(435), [anon_sym_BANG] = ACTIONS(863), [anon_sym_LPAREN] = ACTIONS(515), - [anon_sym_await] = ACTIONS(645), + [anon_sym_await] = ACTIONS(777), [anon_sym_in] = ACTIONS(505), - [anon_sym_COLON] = ACTIONS(511), - [anon_sym_yield] = ACTIONS(647), + [anon_sym_yield] = ACTIONS(779), [anon_sym_LBRACK] = ACTIONS(517), - [anon_sym_RBRACK] = ACTIONS(511), [anon_sym_LT] = ACTIONS(519), [anon_sym_GT] = ACTIONS(505), - [anon_sym_SLASH] = ACTIONS(449), + [anon_sym_SLASH] = ACTIONS(781), [anon_sym_DOT] = ACTIONS(505), [anon_sym_class] = ACTIONS(451), - [anon_sym_async] = ACTIONS(651), + [anon_sym_async] = ACTIONS(783), [anon_sym_function] = ACTIONS(455), [anon_sym_QMARK_DOT] = ACTIONS(511), [anon_sym_new] = ACTIONS(865), @@ -17891,11 +17944,11 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(511), [anon_sym_QMARK_QMARK] = ACTIONS(511), [anon_sym_instanceof] = ACTIONS(505), - [anon_sym_TILDE] = ACTIONS(643), - [anon_sym_void] = ACTIONS(659), - [anon_sym_delete] = ACTIONS(659), - [anon_sym_PLUS_PLUS] = ACTIONS(661), - [anon_sym_DASH_DASH] = ACTIONS(661), + [anon_sym_TILDE] = ACTIONS(775), + [anon_sym_void] = ACTIONS(791), + [anon_sym_delete] = ACTIONS(791), + [anon_sym_PLUS_PLUS] = ACTIONS(793), + [anon_sym_DASH_DASH] = ACTIONS(793), [anon_sym_DQUOTE] = ACTIONS(475), [anon_sym_SQUOTE] = ACTIONS(477), [sym_comment] = ACTIONS(3), @@ -17908,83 +17961,84 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(485), [sym_undefined] = ACTIONS(485), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(635), - [anon_sym_get] = ACTIONS(635), - [anon_sym_set] = ACTIONS(635), - [anon_sym_declare] = ACTIONS(635), - [anon_sym_public] = ACTIONS(635), - [anon_sym_private] = ACTIONS(635), - [anon_sym_protected] = ACTIONS(635), - [anon_sym_module] = ACTIONS(635), - [anon_sym_any] = ACTIONS(635), - [anon_sym_number] = ACTIONS(635), - [anon_sym_boolean] = ACTIONS(635), - [anon_sym_string] = ACTIONS(635), - [anon_sym_symbol] = ACTIONS(635), - [sym_readonly] = ACTIONS(635), + [anon_sym_static] = ACTIONS(769), + [anon_sym_get] = ACTIONS(769), + [anon_sym_set] = ACTIONS(769), + [anon_sym_declare] = ACTIONS(769), + [anon_sym_public] = ACTIONS(769), + [anon_sym_private] = ACTIONS(769), + [anon_sym_protected] = ACTIONS(769), + [anon_sym_module] = ACTIONS(769), + [anon_sym_any] = ACTIONS(769), + [anon_sym_number] = ACTIONS(769), + [anon_sym_boolean] = ACTIONS(769), + [anon_sym_string] = ACTIONS(769), + [anon_sym_symbol] = ACTIONS(769), + [anon_sym_implements] = ACTIONS(505), + [sym_readonly] = ACTIONS(769), }, [63] = { - [sym_import] = STATE(1498), - [sym_parenthesized_expression] = STATE(952), - [sym__expression] = STATE(1418), - [sym_yield_expression] = STATE(1518), - [sym_object] = STATE(1677), - [sym_array] = STATE(1671), - [sym_class] = STATE(1498), - [sym_function] = STATE(1498), - [sym_generator_function] = STATE(1498), - [sym_arrow_function] = STATE(1498), - [sym__call_signature] = STATE(3059), - [sym_call_expression] = STATE(1498), - [sym_new_expression] = STATE(1518), - [sym_await_expression] = STATE(1518), - [sym_member_expression] = STATE(952), - [sym_subscript_expression] = STATE(952), - [sym_assignment_expression] = STATE(1518), - [sym__augmented_assignment_lhs] = STATE(1919), - [sym_augmented_assignment_expression] = STATE(1518), - [sym_ternary_expression] = STATE(1518), - [sym_binary_expression] = STATE(1518), - [sym_unary_expression] = STATE(1518), - [sym_update_expression] = STATE(1518), - [sym_string] = STATE(1498), - [sym_template_string] = STATE(1498), - [sym_regex] = STATE(1498), - [sym_meta_property] = STATE(1498), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(946), - [sym_type_assertion] = STATE(1518), - [sym_as_expression] = STATE(1518), - [sym_internal_module] = STATE(1518), - [sym_type_arguments] = STATE(263), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2554), + [sym_import] = STATE(1690), + [sym_parenthesized_expression] = STATE(834), + [sym__expression] = STATE(1290), + [sym_yield_expression] = STATE(1687), + [sym_object] = STATE(1538), + [sym_array] = STATE(1543), + [sym_class] = STATE(1690), + [sym_function] = STATE(1690), + [sym_generator_function] = STATE(1690), + [sym_arrow_function] = STATE(1690), + [sym__call_signature] = STATE(3133), + [sym_call_expression] = STATE(1690), + [sym_new_expression] = STATE(1687), + [sym_await_expression] = STATE(1687), + [sym_member_expression] = STATE(834), + [sym_subscript_expression] = STATE(834), + [sym_assignment_expression] = STATE(1687), + [sym__augmented_assignment_lhs] = STATE(1921), + [sym_augmented_assignment_expression] = STATE(1687), + [sym_ternary_expression] = STATE(1687), + [sym_binary_expression] = STATE(1687), + [sym_unary_expression] = STATE(1687), + [sym_update_expression] = STATE(1687), + [sym_string] = STATE(1690), + [sym_template_string] = STATE(1690), + [sym_regex] = STATE(1690), + [sym_meta_property] = STATE(1690), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(846), + [sym_type_assertion] = STATE(1687), + [sym_as_expression] = STATE(1687), + [sym_internal_module] = STATE(1687), + [sym_type_arguments] = STATE(301), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2545), [sym_identifier] = ACTIONS(869), - [anon_sym_export] = ACTIONS(675), + [anon_sym_export] = ACTIONS(673), [anon_sym_STAR] = ACTIONS(871), [anon_sym_as] = ACTIONS(505), - [anon_sym_namespace] = ACTIONS(677), - [anon_sym_LBRACE] = ACTIONS(595), - [anon_sym_type] = ACTIONS(675), - [anon_sym_typeof] = ACTIONS(697), - [anon_sym_import] = ACTIONS(597), - [anon_sym_BANG] = ACTIONS(873), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(683), + [anon_sym_namespace] = ACTIONS(675), + [anon_sym_LBRACE] = ACTIONS(873), + [anon_sym_COMMA] = ACTIONS(511), + [anon_sym_type] = ACTIONS(673), + [anon_sym_typeof] = ACTIONS(707), + [anon_sym_import] = ACTIONS(681), + [anon_sym_BANG] = ACTIONS(875), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_await] = ACTIONS(687), [anon_sym_in] = ACTIONS(505), - [anon_sym_SEMI] = ACTIONS(511), - [anon_sym_yield] = ACTIONS(685), - [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_yield] = ACTIONS(689), + [anon_sym_LBRACK] = ACTIONS(879), [anon_sym_LT] = ACTIONS(519), [anon_sym_GT] = ACTIONS(505), - [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_SLASH] = ACTIONS(693), [anon_sym_DOT] = ACTIONS(505), - [anon_sym_class] = ACTIONS(601), - [anon_sym_async] = ACTIONS(689), - [anon_sym_function] = ACTIONS(605), + [anon_sym_class] = ACTIONS(695), + [anon_sym_async] = ACTIONS(697), + [anon_sym_function] = ACTIONS(699), [anon_sym_QMARK_DOT] = ACTIONS(511), - [anon_sym_new] = ACTIONS(875), + [anon_sym_new] = ACTIONS(881), [anon_sym_QMARK] = ACTIONS(505), [anon_sym_AMP_AMP] = ACTIONS(511), [anon_sym_PIPE_PIPE] = ACTIONS(511), @@ -17994,8 +18048,8 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(505), [anon_sym_CARET] = ACTIONS(511), [anon_sym_PIPE] = ACTIONS(505), - [anon_sym_PLUS] = ACTIONS(877), - [anon_sym_DASH] = ACTIONS(877), + [anon_sym_PLUS] = ACTIONS(883), + [anon_sym_DASH] = ACTIONS(883), [anon_sym_PERCENT] = ACTIONS(511), [anon_sym_STAR_STAR] = ACTIONS(511), [anon_sym_LT_EQ] = ACTIONS(511), @@ -18006,101 +18060,101 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(511), [anon_sym_QMARK_QMARK] = ACTIONS(511), [anon_sym_instanceof] = ACTIONS(505), - [anon_sym_TILDE] = ACTIONS(681), - [anon_sym_void] = ACTIONS(697), - [anon_sym_delete] = ACTIONS(697), - [anon_sym_PLUS_PLUS] = ACTIONS(699), - [anon_sym_DASH_DASH] = ACTIONS(699), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(85), - [sym_number] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_void] = ACTIONS(707), + [anon_sym_delete] = ACTIONS(707), + [anon_sym_PLUS_PLUS] = ACTIONS(709), + [anon_sym_DASH_DASH] = ACTIONS(709), + [anon_sym_DQUOTE] = ACTIONS(711), + [anon_sym_SQUOTE] = ACTIONS(713), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(715), + [sym_number] = ACTIONS(885), + [sym_this] = ACTIONS(721), + [sym_super] = ACTIONS(721), + [sym_true] = ACTIONS(721), + [sym_false] = ACTIONS(721), + [sym_null] = ACTIONS(721), + [sym_undefined] = ACTIONS(721), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(675), - [anon_sym_get] = ACTIONS(675), - [anon_sym_set] = ACTIONS(675), - [anon_sym_declare] = ACTIONS(675), - [anon_sym_public] = ACTIONS(675), - [anon_sym_private] = ACTIONS(675), - [anon_sym_protected] = ACTIONS(675), - [anon_sym_module] = ACTIONS(675), - [anon_sym_any] = ACTIONS(675), - [anon_sym_number] = ACTIONS(675), - [anon_sym_boolean] = ACTIONS(675), - [anon_sym_string] = ACTIONS(675), - [anon_sym_symbol] = ACTIONS(675), - [sym_readonly] = ACTIONS(675), - [sym__automatic_semicolon] = ACTIONS(511), + [anon_sym_static] = ACTIONS(673), + [anon_sym_get] = ACTIONS(673), + [anon_sym_set] = ACTIONS(673), + [anon_sym_declare] = ACTIONS(673), + [anon_sym_public] = ACTIONS(673), + [anon_sym_private] = ACTIONS(673), + [anon_sym_protected] = ACTIONS(673), + [anon_sym_module] = ACTIONS(673), + [anon_sym_any] = ACTIONS(673), + [anon_sym_number] = ACTIONS(673), + [anon_sym_boolean] = ACTIONS(673), + [anon_sym_string] = ACTIONS(673), + [anon_sym_symbol] = ACTIONS(673), + [sym_readonly] = ACTIONS(673), + [anon_sym_LBRACE_PIPE] = ACTIONS(511), }, [64] = { - [sym_import] = STATE(1682), - [sym_parenthesized_expression] = STATE(828), - [sym__expression] = STATE(1212), - [sym_yield_expression] = STATE(1680), - [sym_object] = STATE(1586), - [sym_array] = STATE(1585), - [sym_class] = STATE(1682), - [sym_function] = STATE(1682), - [sym_generator_function] = STATE(1682), - [sym_arrow_function] = STATE(1682), - [sym__call_signature] = STATE(3105), - [sym_call_expression] = STATE(1682), - [sym_new_expression] = STATE(1680), - [sym_await_expression] = STATE(1680), - [sym_member_expression] = STATE(828), - [sym_subscript_expression] = STATE(828), - [sym_assignment_expression] = STATE(1680), - [sym__augmented_assignment_lhs] = STATE(1918), - [sym_augmented_assignment_expression] = STATE(1680), - [sym_ternary_expression] = STATE(1680), - [sym_binary_expression] = STATE(1680), - [sym_unary_expression] = STATE(1680), - [sym_update_expression] = STATE(1680), - [sym_string] = STATE(1682), - [sym_template_string] = STATE(1682), - [sym_regex] = STATE(1682), - [sym_meta_property] = STATE(1682), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(827), - [sym_type_assertion] = STATE(1680), - [sym_as_expression] = STATE(1680), - [sym_internal_module] = STATE(1680), - [sym_type_arguments] = STATE(256), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2529), - [sym_identifier] = ACTIONS(879), - [anon_sym_export] = ACTIONS(531), - [anon_sym_STAR] = ACTIONS(881), + [sym_import] = STATE(1523), + [sym_parenthesized_expression] = STATE(955), + [sym__expression] = STATE(1410), + [sym_yield_expression] = STATE(1567), + [sym_object] = STATE(1636), + [sym_array] = STATE(1643), + [sym_class] = STATE(1523), + [sym_function] = STATE(1523), + [sym_generator_function] = STATE(1523), + [sym_arrow_function] = STATE(1523), + [sym__call_signature] = STATE(3078), + [sym_call_expression] = STATE(1523), + [sym_new_expression] = STATE(1567), + [sym_await_expression] = STATE(1567), + [sym_member_expression] = STATE(955), + [sym_subscript_expression] = STATE(955), + [sym_assignment_expression] = STATE(1567), + [sym__augmented_assignment_lhs] = STATE(1929), + [sym_augmented_assignment_expression] = STATE(1567), + [sym_ternary_expression] = STATE(1567), + [sym_binary_expression] = STATE(1567), + [sym_unary_expression] = STATE(1567), + [sym_update_expression] = STATE(1567), + [sym_string] = STATE(1523), + [sym_template_string] = STATE(1523), + [sym_regex] = STATE(1523), + [sym_meta_property] = STATE(1523), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(953), + [sym_type_assertion] = STATE(1567), + [sym_as_expression] = STATE(1567), + [sym_internal_module] = STATE(1567), + [sym_type_arguments] = STATE(384), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2575), + [sym_identifier] = ACTIONS(887), + [anon_sym_export] = ACTIONS(635), + [anon_sym_STAR] = ACTIONS(889), [anon_sym_as] = ACTIONS(505), - [anon_sym_namespace] = ACTIONS(533), - [anon_sym_LBRACE] = ACTIONS(883), - [anon_sym_COMMA] = ACTIONS(511), - [anon_sym_type] = ACTIONS(531), - [anon_sym_typeof] = ACTIONS(565), + [anon_sym_namespace] = ACTIONS(637), + [anon_sym_LBRACE] = ACTIONS(571), + [anon_sym_type] = ACTIONS(635), + [anon_sym_typeof] = ACTIONS(657), [anon_sym_import] = ACTIONS(539), - [anon_sym_BANG] = ACTIONS(885), - [anon_sym_LPAREN] = ACTIONS(887), - [anon_sym_await] = ACTIONS(545), + [anon_sym_BANG] = ACTIONS(891), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(643), [anon_sym_in] = ACTIONS(505), - [anon_sym_yield] = ACTIONS(547), - [anon_sym_LBRACK] = ACTIONS(889), + [anon_sym_SEMI] = ACTIONS(511), + [anon_sym_yield] = ACTIONS(645), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(519), [anon_sym_GT] = ACTIONS(505), - [anon_sym_SLASH] = ACTIONS(551), + [anon_sym_SLASH] = ACTIONS(67), [anon_sym_DOT] = ACTIONS(505), - [anon_sym_class] = ACTIONS(553), - [anon_sym_async] = ACTIONS(555), - [anon_sym_function] = ACTIONS(557), + [anon_sym_class] = ACTIONS(545), + [anon_sym_async] = ACTIONS(649), + [anon_sym_function] = ACTIONS(549), [anon_sym_QMARK_DOT] = ACTIONS(511), - [anon_sym_new] = ACTIONS(891), + [anon_sym_new] = ACTIONS(893), [anon_sym_QMARK] = ACTIONS(505), [anon_sym_AMP_AMP] = ACTIONS(511), [anon_sym_PIPE_PIPE] = ACTIONS(511), @@ -18110,8 +18164,8 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(505), [anon_sym_CARET] = ACTIONS(511), [anon_sym_PIPE] = ACTIONS(505), - [anon_sym_PLUS] = ACTIONS(893), - [anon_sym_DASH] = ACTIONS(893), + [anon_sym_PLUS] = ACTIONS(895), + [anon_sym_DASH] = ACTIONS(895), [anon_sym_PERCENT] = ACTIONS(511), [anon_sym_STAR_STAR] = ACTIONS(511), [anon_sym_LT_EQ] = ACTIONS(511), @@ -18122,98 +18176,99 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(511), [anon_sym_QMARK_QMARK] = ACTIONS(511), [anon_sym_instanceof] = ACTIONS(505), - [anon_sym_TILDE] = ACTIONS(541), - [anon_sym_void] = ACTIONS(565), - [anon_sym_delete] = ACTIONS(565), - [anon_sym_PLUS_PLUS] = ACTIONS(567), - [anon_sym_DASH_DASH] = ACTIONS(567), - [anon_sym_DQUOTE] = ACTIONS(569), - [anon_sym_SQUOTE] = ACTIONS(571), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(573), - [sym_number] = ACTIONS(895), - [sym_this] = ACTIONS(579), - [sym_super] = ACTIONS(579), - [sym_true] = ACTIONS(579), - [sym_false] = ACTIONS(579), - [sym_null] = ACTIONS(579), - [sym_undefined] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(641), + [anon_sym_void] = ACTIONS(657), + [anon_sym_delete] = ACTIONS(657), + [anon_sym_PLUS_PLUS] = ACTIONS(659), + [anon_sym_DASH_DASH] = ACTIONS(659), + [anon_sym_DQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(85), + [sym_number] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(531), - [anon_sym_get] = ACTIONS(531), - [anon_sym_set] = ACTIONS(531), - [anon_sym_declare] = ACTIONS(531), - [anon_sym_public] = ACTIONS(531), - [anon_sym_private] = ACTIONS(531), - [anon_sym_protected] = ACTIONS(531), - [anon_sym_module] = ACTIONS(531), - [anon_sym_any] = ACTIONS(531), - [anon_sym_number] = ACTIONS(531), - [anon_sym_boolean] = ACTIONS(531), - [anon_sym_string] = ACTIONS(531), - [anon_sym_symbol] = ACTIONS(531), - [sym_readonly] = ACTIONS(531), - [anon_sym_LBRACE_PIPE] = ACTIONS(511), + [anon_sym_static] = ACTIONS(635), + [anon_sym_get] = ACTIONS(635), + [anon_sym_set] = ACTIONS(635), + [anon_sym_declare] = ACTIONS(635), + [anon_sym_public] = ACTIONS(635), + [anon_sym_private] = ACTIONS(635), + [anon_sym_protected] = ACTIONS(635), + [anon_sym_module] = ACTIONS(635), + [anon_sym_any] = ACTIONS(635), + [anon_sym_number] = ACTIONS(635), + [anon_sym_boolean] = ACTIONS(635), + [anon_sym_string] = ACTIONS(635), + [anon_sym_symbol] = ACTIONS(635), + [sym_readonly] = ACTIONS(635), + [sym__automatic_semicolon] = ACTIONS(511), }, [65] = { - [sym_import] = STATE(1101), - [sym_parenthesized_expression] = STATE(921), - [sym__expression] = STATE(1301), - [sym_yield_expression] = STATE(1105), - [sym_object] = STATE(1531), - [sym_array] = STATE(1536), - [sym_class] = STATE(1101), - [sym_function] = STATE(1101), - [sym_generator_function] = STATE(1101), - [sym_arrow_function] = STATE(1101), - [sym__call_signature] = STATE(3170), - [sym_call_expression] = STATE(1101), - [sym_new_expression] = STATE(1105), - [sym_await_expression] = STATE(1105), - [sym_member_expression] = STATE(921), - [sym_subscript_expression] = STATE(921), - [sym_assignment_expression] = STATE(1105), - [sym__augmented_assignment_lhs] = STATE(1917), - [sym_augmented_assignment_expression] = STATE(1105), - [sym_ternary_expression] = STATE(1105), - [sym_binary_expression] = STATE(1105), - [sym_unary_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_string] = STATE(1101), - [sym_template_string] = STATE(1101), - [sym_regex] = STATE(1101), - [sym_meta_property] = STATE(1101), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(882), - [sym_type_assertion] = STATE(1105), - [sym_as_expression] = STATE(1105), - [sym_internal_module] = STATE(1105), - [sym_type_arguments] = STATE(355), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2497), + [sym_import] = STATE(1151), + [sym_parenthesized_expression] = STATE(956), + [sym__expression] = STATE(1355), + [sym_yield_expression] = STATE(1144), + [sym_object] = STATE(1653), + [sym_array] = STATE(1660), + [sym_class] = STATE(1151), + [sym_function] = STATE(1151), + [sym_generator_function] = STATE(1151), + [sym_arrow_function] = STATE(1151), + [sym__call_signature] = STATE(3024), + [sym_call_expression] = STATE(1151), + [sym_new_expression] = STATE(1144), + [sym_await_expression] = STATE(1144), + [sym_member_expression] = STATE(956), + [sym_subscript_expression] = STATE(956), + [sym_assignment_expression] = STATE(1144), + [sym__augmented_assignment_lhs] = STATE(1925), + [sym_augmented_assignment_expression] = STATE(1144), + [sym_ternary_expression] = STATE(1144), + [sym_binary_expression] = STATE(1144), + [sym_unary_expression] = STATE(1144), + [sym_update_expression] = STATE(1144), + [sym_string] = STATE(1151), + [sym_template_string] = STATE(1151), + [sym_regex] = STATE(1151), + [sym_meta_property] = STATE(1151), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(950), + [sym_type_assertion] = STATE(1144), + [sym_as_expression] = STATE(1144), + [sym_internal_module] = STATE(1144), + [sym_type_arguments] = STATE(395), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2580), [sym_identifier] = ACTIONS(897), - [anon_sym_export] = ACTIONS(751), + [anon_sym_export] = ACTIONS(577), [anon_sym_STAR] = ACTIONS(899), [anon_sym_as] = ACTIONS(505), - [anon_sym_namespace] = ACTIONS(753), + [anon_sym_namespace] = ACTIONS(579), [anon_sym_LBRACE] = ACTIONS(509), - [anon_sym_COMMA] = ACTIONS(511), - [anon_sym_type] = ACTIONS(751), - [anon_sym_typeof] = ACTIONS(775), + [anon_sym_type] = ACTIONS(577), + [anon_sym_typeof] = ACTIONS(601), [anon_sym_import] = ACTIONS(435), [anon_sym_BANG] = ACTIONS(901), [anon_sym_LPAREN] = ACTIONS(515), - [anon_sym_await] = ACTIONS(759), + [anon_sym_await] = ACTIONS(587), [anon_sym_in] = ACTIONS(505), - [anon_sym_yield] = ACTIONS(761), + [anon_sym_COLON] = ACTIONS(511), + [anon_sym_yield] = ACTIONS(589), [anon_sym_LBRACK] = ACTIONS(517), + [anon_sym_RBRACK] = ACTIONS(511), [anon_sym_LT] = ACTIONS(519), [anon_sym_GT] = ACTIONS(505), - [anon_sym_SLASH] = ACTIONS(765), + [anon_sym_SLASH] = ACTIONS(449), [anon_sym_DOT] = ACTIONS(505), [anon_sym_class] = ACTIONS(451), - [anon_sym_async] = ACTIONS(767), + [anon_sym_async] = ACTIONS(593), [anon_sym_function] = ACTIONS(455), [anon_sym_QMARK_DOT] = ACTIONS(511), [anon_sym_new] = ACTIONS(903), @@ -18238,11 +18293,11 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(511), [anon_sym_QMARK_QMARK] = ACTIONS(511), [anon_sym_instanceof] = ACTIONS(505), - [anon_sym_TILDE] = ACTIONS(757), - [anon_sym_void] = ACTIONS(775), - [anon_sym_delete] = ACTIONS(775), - [anon_sym_PLUS_PLUS] = ACTIONS(777), - [anon_sym_DASH_DASH] = ACTIONS(777), + [anon_sym_TILDE] = ACTIONS(585), + [anon_sym_void] = ACTIONS(601), + [anon_sym_delete] = ACTIONS(601), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(603), [anon_sym_DQUOTE] = ACTIONS(475), [anon_sym_SQUOTE] = ACTIONS(477), [sym_comment] = ACTIONS(3), @@ -18255,21 +18310,20 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(485), [sym_undefined] = ACTIONS(485), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(751), - [anon_sym_get] = ACTIONS(751), - [anon_sym_set] = ACTIONS(751), - [anon_sym_declare] = ACTIONS(751), - [anon_sym_public] = ACTIONS(751), - [anon_sym_private] = ACTIONS(751), - [anon_sym_protected] = ACTIONS(751), - [anon_sym_module] = ACTIONS(751), - [anon_sym_any] = ACTIONS(751), - [anon_sym_number] = ACTIONS(751), - [anon_sym_boolean] = ACTIONS(751), - [anon_sym_string] = ACTIONS(751), - [anon_sym_symbol] = ACTIONS(751), - [anon_sym_implements] = ACTIONS(505), - [sym_readonly] = ACTIONS(751), + [anon_sym_static] = ACTIONS(577), + [anon_sym_get] = ACTIONS(577), + [anon_sym_set] = ACTIONS(577), + [anon_sym_declare] = ACTIONS(577), + [anon_sym_public] = ACTIONS(577), + [anon_sym_private] = ACTIONS(577), + [anon_sym_protected] = ACTIONS(577), + [anon_sym_module] = ACTIONS(577), + [anon_sym_any] = ACTIONS(577), + [anon_sym_number] = ACTIONS(577), + [anon_sym_boolean] = ACTIONS(577), + [anon_sym_string] = ACTIONS(577), + [anon_sym_symbol] = ACTIONS(577), + [sym_readonly] = ACTIONS(577), }, [66] = { [ts_builtin_sym_end] = ACTIONS(907), @@ -18377,7 +18431,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__automatic_semicolon] = ACTIONS(915), }, [67] = { - [sym_statement_block] = STATE(78), + [sym_statement_block] = STATE(79), [ts_builtin_sym_end] = ACTIONS(917), [sym_identifier] = ACTIONS(919), [anon_sym_export] = ACTIONS(919), @@ -18482,7 +18536,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__automatic_semicolon] = ACTIONS(917), }, [68] = { - [sym_statement_block] = STATE(78), + [sym_statement_block] = STATE(79), [ts_builtin_sym_end] = ACTIONS(917), [sym_identifier] = ACTIONS(919), [anon_sym_export] = ACTIONS(919), @@ -18587,32 +18641,32 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__automatic_semicolon] = ACTIONS(917), }, [69] = { - [sym_nested_identifier] = STATE(2999), - [sym_string] = STATE(446), - [sym_formal_parameters] = STATE(2996), - [sym_nested_type_identifier] = STATE(1913), - [sym__type] = STATE(2626), - [sym_constructor_type] = STATE(2626), - [sym__primary_type] = STATE(2496), - [sym_conditional_type] = STATE(2496), - [sym_generic_type] = STATE(2496), - [sym_type_query] = STATE(2496), - [sym_index_type_query] = STATE(2496), - [sym_lookup_type] = STATE(2496), - [sym_literal_type] = STATE(2496), - [sym__number] = STATE(446), - [sym_existential_type] = STATE(2496), - [sym_flow_maybe_type] = STATE(2496), - [sym_parenthesized_type] = STATE(2496), - [sym_predefined_type] = STATE(2496), - [sym_object_type] = STATE(2496), - [sym_type_parameters] = STATE(2959), - [sym_array_type] = STATE(2496), - [sym__tuple_type_body] = STATE(426), - [sym_tuple_type] = STATE(2496), - [sym_union_type] = STATE(2626), - [sym_intersection_type] = STATE(2626), - [sym_function_type] = STATE(2626), + [sym_nested_identifier] = STATE(3123), + [sym_string] = STATE(433), + [sym_formal_parameters] = STATE(3122), + [sym_nested_type_identifier] = STATE(1917), + [sym__type] = STATE(2780), + [sym_constructor_type] = STATE(2780), + [sym__primary_type] = STATE(2509), + [sym_conditional_type] = STATE(2509), + [sym_generic_type] = STATE(2509), + [sym_type_query] = STATE(2509), + [sym_index_type_query] = STATE(2509), + [sym_lookup_type] = STATE(2509), + [sym_literal_type] = STATE(2509), + [sym__number] = STATE(433), + [sym_existential_type] = STATE(2509), + [sym_flow_maybe_type] = STATE(2509), + [sym_parenthesized_type] = STATE(2509), + [sym_predefined_type] = STATE(2509), + [sym_object_type] = STATE(2509), + [sym_type_parameters] = STATE(2916), + [sym_array_type] = STATE(2509), + [sym__tuple_type_body] = STATE(424), + [sym_tuple_type] = STATE(2509), + [sym_union_type] = STATE(2780), + [sym_intersection_type] = STATE(2780), + [sym_function_type] = STATE(2780), [sym_identifier] = ACTIONS(925), [anon_sym_STAR] = ACTIONS(803), [anon_sym_EQ] = ACTIONS(927), @@ -18695,12 +18749,12 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [ts_builtin_sym_end] = ACTIONS(937), [sym_identifier] = ACTIONS(939), [anon_sym_export] = ACTIONS(939), - [anon_sym_STAR] = ACTIONS(941), + [anon_sym_STAR] = ACTIONS(939), [anon_sym_default] = ACTIONS(939), - [anon_sym_as] = ACTIONS(941), + [anon_sym_as] = ACTIONS(939), [anon_sym_namespace] = ACTIONS(939), [anon_sym_LBRACE] = ACTIONS(937), - [anon_sym_COMMA] = ACTIONS(943), + [anon_sym_COMMA] = ACTIONS(937), [anon_sym_RBRACE] = ACTIONS(937), [anon_sym_type] = ACTIONS(939), [anon_sym_typeof] = ACTIONS(939), @@ -18715,7 +18769,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(939), [anon_sym_LPAREN] = ACTIONS(937), [anon_sym_await] = ACTIONS(939), - [anon_sym_in] = ACTIONS(941), + [anon_sym_in] = ACTIONS(939), [anon_sym_while] = ACTIONS(939), [anon_sym_do] = ACTIONS(939), [anon_sym_try] = ACTIONS(939), @@ -18730,35 +18784,35 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(939), [anon_sym_LBRACK] = ACTIONS(937), [anon_sym_LT] = ACTIONS(939), - [anon_sym_GT] = ACTIONS(941), + [anon_sym_GT] = ACTIONS(939), [anon_sym_SLASH] = ACTIONS(939), - [anon_sym_DOT] = ACTIONS(941), + [anon_sym_DOT] = ACTIONS(939), [anon_sym_class] = ACTIONS(939), [anon_sym_async] = ACTIONS(939), [anon_sym_function] = ACTIONS(939), - [anon_sym_QMARK_DOT] = ACTIONS(943), + [anon_sym_QMARK_DOT] = ACTIONS(937), [anon_sym_new] = ACTIONS(939), - [anon_sym_QMARK] = ACTIONS(941), - [anon_sym_AMP_AMP] = ACTIONS(943), - [anon_sym_PIPE_PIPE] = ACTIONS(943), - [anon_sym_GT_GT] = ACTIONS(941), - [anon_sym_GT_GT_GT] = ACTIONS(943), - [anon_sym_LT_LT] = ACTIONS(943), - [anon_sym_AMP] = ACTIONS(941), - [anon_sym_CARET] = ACTIONS(943), - [anon_sym_PIPE] = ACTIONS(941), + [anon_sym_QMARK] = ACTIONS(939), + [anon_sym_AMP_AMP] = ACTIONS(937), + [anon_sym_PIPE_PIPE] = ACTIONS(937), + [anon_sym_GT_GT] = ACTIONS(939), + [anon_sym_GT_GT_GT] = ACTIONS(937), + [anon_sym_LT_LT] = ACTIONS(937), + [anon_sym_AMP] = ACTIONS(939), + [anon_sym_CARET] = ACTIONS(937), + [anon_sym_PIPE] = ACTIONS(939), [anon_sym_PLUS] = ACTIONS(939), [anon_sym_DASH] = ACTIONS(939), - [anon_sym_PERCENT] = ACTIONS(943), - [anon_sym_STAR_STAR] = ACTIONS(943), - [anon_sym_LT_EQ] = ACTIONS(943), - [anon_sym_EQ_EQ] = ACTIONS(941), - [anon_sym_EQ_EQ_EQ] = ACTIONS(943), - [anon_sym_BANG_EQ] = ACTIONS(941), - [anon_sym_BANG_EQ_EQ] = ACTIONS(943), - [anon_sym_GT_EQ] = ACTIONS(943), - [anon_sym_QMARK_QMARK] = ACTIONS(943), - [anon_sym_instanceof] = ACTIONS(941), + [anon_sym_PERCENT] = ACTIONS(937), + [anon_sym_STAR_STAR] = ACTIONS(937), + [anon_sym_LT_EQ] = ACTIONS(937), + [anon_sym_EQ_EQ] = ACTIONS(939), + [anon_sym_EQ_EQ_EQ] = ACTIONS(937), + [anon_sym_BANG_EQ] = ACTIONS(939), + [anon_sym_BANG_EQ_EQ] = ACTIONS(937), + [anon_sym_GT_EQ] = ACTIONS(937), + [anon_sym_QMARK_QMARK] = ACTIONS(937), + [anon_sym_instanceof] = ACTIONS(939), [anon_sym_TILDE] = ACTIONS(937), [anon_sym_void] = ACTIONS(939), [anon_sym_delete] = ACTIONS(939), @@ -18793,425 +18847,633 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(939), [anon_sym_enum] = ACTIONS(939), [sym_readonly] = ACTIONS(939), - [sym__automatic_semicolon] = ACTIONS(945), + [sym__automatic_semicolon] = ACTIONS(937), }, [71] = { - [ts_builtin_sym_end] = ACTIONS(947), - [sym_identifier] = ACTIONS(949), - [anon_sym_export] = ACTIONS(949), - [anon_sym_STAR] = ACTIONS(949), - [anon_sym_default] = ACTIONS(949), - [anon_sym_as] = ACTIONS(949), - [anon_sym_namespace] = ACTIONS(949), - [anon_sym_LBRACE] = ACTIONS(947), - [anon_sym_COMMA] = ACTIONS(947), - [anon_sym_RBRACE] = ACTIONS(947), - [anon_sym_type] = ACTIONS(949), - [anon_sym_typeof] = ACTIONS(949), - [anon_sym_import] = ACTIONS(949), - [anon_sym_var] = ACTIONS(949), - [anon_sym_let] = ACTIONS(949), - [anon_sym_const] = ACTIONS(949), - [anon_sym_BANG] = ACTIONS(949), - [anon_sym_else] = ACTIONS(949), - [anon_sym_if] = ACTIONS(949), - [anon_sym_switch] = ACTIONS(949), - [anon_sym_for] = ACTIONS(949), - [anon_sym_LPAREN] = ACTIONS(947), - [anon_sym_await] = ACTIONS(949), - [anon_sym_in] = ACTIONS(949), - [anon_sym_while] = ACTIONS(949), - [anon_sym_do] = ACTIONS(949), - [anon_sym_try] = ACTIONS(949), - [anon_sym_with] = ACTIONS(949), - [anon_sym_break] = ACTIONS(949), - [anon_sym_continue] = ACTIONS(949), - [anon_sym_debugger] = ACTIONS(949), - [anon_sym_return] = ACTIONS(949), - [anon_sym_throw] = ACTIONS(949), - [anon_sym_SEMI] = ACTIONS(947), - [anon_sym_case] = ACTIONS(949), - [anon_sym_yield] = ACTIONS(949), - [anon_sym_LBRACK] = ACTIONS(947), - [anon_sym_LT] = ACTIONS(949), - [anon_sym_GT] = ACTIONS(949), - [anon_sym_SLASH] = ACTIONS(949), - [anon_sym_DOT] = ACTIONS(949), - [anon_sym_class] = ACTIONS(949), - [anon_sym_async] = ACTIONS(949), - [anon_sym_function] = ACTIONS(949), - [anon_sym_QMARK_DOT] = ACTIONS(947), - [anon_sym_new] = ACTIONS(949), - [anon_sym_QMARK] = ACTIONS(949), - [anon_sym_AMP_AMP] = ACTIONS(947), - [anon_sym_PIPE_PIPE] = ACTIONS(947), - [anon_sym_GT_GT] = ACTIONS(949), - [anon_sym_GT_GT_GT] = ACTIONS(947), - [anon_sym_LT_LT] = ACTIONS(947), - [anon_sym_AMP] = ACTIONS(949), - [anon_sym_CARET] = ACTIONS(947), - [anon_sym_PIPE] = ACTIONS(949), - [anon_sym_PLUS] = ACTIONS(949), - [anon_sym_DASH] = ACTIONS(949), - [anon_sym_PERCENT] = ACTIONS(947), - [anon_sym_STAR_STAR] = ACTIONS(947), - [anon_sym_LT_EQ] = ACTIONS(947), - [anon_sym_EQ_EQ] = ACTIONS(949), - [anon_sym_EQ_EQ_EQ] = ACTIONS(947), - [anon_sym_BANG_EQ] = ACTIONS(949), - [anon_sym_BANG_EQ_EQ] = ACTIONS(947), - [anon_sym_GT_EQ] = ACTIONS(947), - [anon_sym_QMARK_QMARK] = ACTIONS(947), - [anon_sym_instanceof] = ACTIONS(949), - [anon_sym_TILDE] = ACTIONS(947), - [anon_sym_void] = ACTIONS(949), - [anon_sym_delete] = ACTIONS(949), - [anon_sym_PLUS_PLUS] = ACTIONS(947), - [anon_sym_DASH_DASH] = ACTIONS(947), - [anon_sym_DQUOTE] = ACTIONS(947), - [anon_sym_SQUOTE] = ACTIONS(947), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(947), - [sym_number] = ACTIONS(947), - [sym_this] = ACTIONS(949), - [sym_super] = ACTIONS(949), - [sym_true] = ACTIONS(949), - [sym_false] = ACTIONS(949), - [sym_null] = ACTIONS(949), - [sym_undefined] = ACTIONS(949), - [anon_sym_AT] = ACTIONS(947), - [anon_sym_static] = ACTIONS(949), - [anon_sym_abstract] = ACTIONS(949), - [anon_sym_get] = ACTIONS(949), - [anon_sym_set] = ACTIONS(949), - [anon_sym_declare] = ACTIONS(949), - [anon_sym_public] = ACTIONS(949), - [anon_sym_private] = ACTIONS(949), - [anon_sym_protected] = ACTIONS(949), - [anon_sym_module] = ACTIONS(949), - [anon_sym_any] = ACTIONS(949), - [anon_sym_number] = ACTIONS(949), - [anon_sym_boolean] = ACTIONS(949), - [anon_sym_string] = ACTIONS(949), - [anon_sym_symbol] = ACTIONS(949), - [anon_sym_interface] = ACTIONS(949), - [anon_sym_enum] = ACTIONS(949), - [sym_readonly] = ACTIONS(949), - [sym__automatic_semicolon] = ACTIONS(947), + [ts_builtin_sym_end] = ACTIONS(941), + [sym_identifier] = ACTIONS(943), + [anon_sym_export] = ACTIONS(943), + [anon_sym_STAR] = ACTIONS(943), + [anon_sym_default] = ACTIONS(943), + [anon_sym_as] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(943), + [anon_sym_LBRACE] = ACTIONS(941), + [anon_sym_COMMA] = ACTIONS(941), + [anon_sym_RBRACE] = ACTIONS(941), + [anon_sym_type] = ACTIONS(943), + [anon_sym_typeof] = ACTIONS(943), + [anon_sym_import] = ACTIONS(943), + [anon_sym_var] = ACTIONS(943), + [anon_sym_let] = ACTIONS(943), + [anon_sym_const] = ACTIONS(943), + [anon_sym_BANG] = ACTIONS(943), + [anon_sym_else] = ACTIONS(943), + [anon_sym_if] = ACTIONS(943), + [anon_sym_switch] = ACTIONS(943), + [anon_sym_for] = ACTIONS(943), + [anon_sym_LPAREN] = ACTIONS(941), + [anon_sym_await] = ACTIONS(943), + [anon_sym_in] = ACTIONS(943), + [anon_sym_while] = ACTIONS(943), + [anon_sym_do] = ACTIONS(943), + [anon_sym_try] = ACTIONS(943), + [anon_sym_with] = ACTIONS(943), + [anon_sym_break] = ACTIONS(943), + [anon_sym_continue] = ACTIONS(943), + [anon_sym_debugger] = ACTIONS(943), + [anon_sym_return] = ACTIONS(943), + [anon_sym_throw] = ACTIONS(943), + [anon_sym_SEMI] = ACTIONS(941), + [anon_sym_case] = ACTIONS(943), + [anon_sym_yield] = ACTIONS(943), + [anon_sym_LBRACK] = ACTIONS(941), + [anon_sym_LT] = ACTIONS(943), + [anon_sym_GT] = ACTIONS(943), + [anon_sym_SLASH] = ACTIONS(943), + [anon_sym_DOT] = ACTIONS(943), + [anon_sym_class] = ACTIONS(943), + [anon_sym_async] = ACTIONS(943), + [anon_sym_function] = ACTIONS(943), + [anon_sym_QMARK_DOT] = ACTIONS(941), + [anon_sym_new] = ACTIONS(943), + [anon_sym_QMARK] = ACTIONS(943), + [anon_sym_AMP_AMP] = ACTIONS(941), + [anon_sym_PIPE_PIPE] = ACTIONS(941), + [anon_sym_GT_GT] = ACTIONS(943), + [anon_sym_GT_GT_GT] = ACTIONS(941), + [anon_sym_LT_LT] = ACTIONS(941), + [anon_sym_AMP] = ACTIONS(943), + [anon_sym_CARET] = ACTIONS(941), + [anon_sym_PIPE] = ACTIONS(943), + [anon_sym_PLUS] = ACTIONS(943), + [anon_sym_DASH] = ACTIONS(943), + [anon_sym_PERCENT] = ACTIONS(941), + [anon_sym_STAR_STAR] = ACTIONS(941), + [anon_sym_LT_EQ] = ACTIONS(941), + [anon_sym_EQ_EQ] = ACTIONS(943), + [anon_sym_EQ_EQ_EQ] = ACTIONS(941), + [anon_sym_BANG_EQ] = ACTIONS(943), + [anon_sym_BANG_EQ_EQ] = ACTIONS(941), + [anon_sym_GT_EQ] = ACTIONS(941), + [anon_sym_QMARK_QMARK] = ACTIONS(941), + [anon_sym_instanceof] = ACTIONS(943), + [anon_sym_TILDE] = ACTIONS(941), + [anon_sym_void] = ACTIONS(943), + [anon_sym_delete] = ACTIONS(943), + [anon_sym_PLUS_PLUS] = ACTIONS(941), + [anon_sym_DASH_DASH] = ACTIONS(941), + [anon_sym_DQUOTE] = ACTIONS(941), + [anon_sym_SQUOTE] = ACTIONS(941), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(941), + [sym_number] = ACTIONS(941), + [sym_this] = ACTIONS(943), + [sym_super] = ACTIONS(943), + [sym_true] = ACTIONS(943), + [sym_false] = ACTIONS(943), + [sym_null] = ACTIONS(943), + [sym_undefined] = ACTIONS(943), + [anon_sym_AT] = ACTIONS(941), + [anon_sym_static] = ACTIONS(943), + [anon_sym_abstract] = ACTIONS(943), + [anon_sym_get] = ACTIONS(943), + [anon_sym_set] = ACTIONS(943), + [anon_sym_declare] = ACTIONS(943), + [anon_sym_public] = ACTIONS(943), + [anon_sym_private] = ACTIONS(943), + [anon_sym_protected] = ACTIONS(943), + [anon_sym_module] = ACTIONS(943), + [anon_sym_any] = ACTIONS(943), + [anon_sym_number] = ACTIONS(943), + [anon_sym_boolean] = ACTIONS(943), + [anon_sym_string] = ACTIONS(943), + [anon_sym_symbol] = ACTIONS(943), + [anon_sym_interface] = ACTIONS(943), + [anon_sym_enum] = ACTIONS(943), + [sym_readonly] = ACTIONS(943), + [sym__automatic_semicolon] = ACTIONS(941), }, [72] = { - [ts_builtin_sym_end] = ACTIONS(951), - [sym_identifier] = ACTIONS(953), - [anon_sym_export] = ACTIONS(953), - [anon_sym_STAR] = ACTIONS(955), - [anon_sym_default] = ACTIONS(953), - [anon_sym_as] = ACTIONS(955), - [anon_sym_namespace] = ACTIONS(953), - [anon_sym_LBRACE] = ACTIONS(951), - [anon_sym_COMMA] = ACTIONS(957), - [anon_sym_RBRACE] = ACTIONS(951), - [anon_sym_type] = ACTIONS(953), - [anon_sym_typeof] = ACTIONS(953), - [anon_sym_import] = ACTIONS(953), - [anon_sym_var] = ACTIONS(953), - [anon_sym_let] = ACTIONS(953), - [anon_sym_const] = ACTIONS(953), - [anon_sym_BANG] = ACTIONS(953), - [anon_sym_else] = ACTIONS(953), - [anon_sym_if] = ACTIONS(953), - [anon_sym_switch] = ACTIONS(953), - [anon_sym_for] = ACTIONS(953), - [anon_sym_LPAREN] = ACTIONS(951), - [anon_sym_await] = ACTIONS(953), - [anon_sym_in] = ACTIONS(955), - [anon_sym_while] = ACTIONS(953), - [anon_sym_do] = ACTIONS(953), - [anon_sym_try] = ACTIONS(953), - [anon_sym_with] = ACTIONS(953), - [anon_sym_break] = ACTIONS(953), - [anon_sym_continue] = ACTIONS(953), - [anon_sym_debugger] = ACTIONS(953), - [anon_sym_return] = ACTIONS(953), - [anon_sym_throw] = ACTIONS(953), - [anon_sym_SEMI] = ACTIONS(951), - [anon_sym_case] = ACTIONS(953), - [anon_sym_yield] = ACTIONS(953), - [anon_sym_LBRACK] = ACTIONS(951), - [anon_sym_LT] = ACTIONS(953), - [anon_sym_GT] = ACTIONS(955), - [anon_sym_SLASH] = ACTIONS(953), - [anon_sym_DOT] = ACTIONS(955), - [anon_sym_class] = ACTIONS(953), - [anon_sym_async] = ACTIONS(953), - [anon_sym_function] = ACTIONS(953), - [anon_sym_QMARK_DOT] = ACTIONS(957), - [anon_sym_new] = ACTIONS(953), - [anon_sym_QMARK] = ACTIONS(955), - [anon_sym_AMP_AMP] = ACTIONS(957), - [anon_sym_PIPE_PIPE] = ACTIONS(957), - [anon_sym_GT_GT] = ACTIONS(955), - [anon_sym_GT_GT_GT] = ACTIONS(957), - [anon_sym_LT_LT] = ACTIONS(957), - [anon_sym_AMP] = ACTIONS(955), - [anon_sym_CARET] = ACTIONS(957), - [anon_sym_PIPE] = ACTIONS(955), - [anon_sym_PLUS] = ACTIONS(953), - [anon_sym_DASH] = ACTIONS(953), - [anon_sym_PERCENT] = ACTIONS(957), - [anon_sym_STAR_STAR] = ACTIONS(957), - [anon_sym_LT_EQ] = ACTIONS(957), - [anon_sym_EQ_EQ] = ACTIONS(955), - [anon_sym_EQ_EQ_EQ] = ACTIONS(957), - [anon_sym_BANG_EQ] = ACTIONS(955), - [anon_sym_BANG_EQ_EQ] = ACTIONS(957), - [anon_sym_GT_EQ] = ACTIONS(957), - [anon_sym_QMARK_QMARK] = ACTIONS(957), - [anon_sym_instanceof] = ACTIONS(955), - [anon_sym_TILDE] = ACTIONS(951), - [anon_sym_void] = ACTIONS(953), - [anon_sym_delete] = ACTIONS(953), - [anon_sym_PLUS_PLUS] = ACTIONS(951), - [anon_sym_DASH_DASH] = ACTIONS(951), - [anon_sym_DQUOTE] = ACTIONS(951), - [anon_sym_SQUOTE] = ACTIONS(951), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(951), - [sym_number] = ACTIONS(951), - [sym_this] = ACTIONS(953), - [sym_super] = ACTIONS(953), - [sym_true] = ACTIONS(953), - [sym_false] = ACTIONS(953), - [sym_null] = ACTIONS(953), - [sym_undefined] = ACTIONS(953), - [anon_sym_AT] = ACTIONS(951), - [anon_sym_static] = ACTIONS(953), - [anon_sym_abstract] = ACTIONS(953), - [anon_sym_get] = ACTIONS(953), - [anon_sym_set] = ACTIONS(953), - [anon_sym_declare] = ACTIONS(953), - [anon_sym_public] = ACTIONS(953), - [anon_sym_private] = ACTIONS(953), - [anon_sym_protected] = ACTIONS(953), - [anon_sym_module] = ACTIONS(953), - [anon_sym_any] = ACTIONS(953), - [anon_sym_number] = ACTIONS(953), - [anon_sym_boolean] = ACTIONS(953), - [anon_sym_string] = ACTIONS(953), - [anon_sym_symbol] = ACTIONS(953), - [anon_sym_interface] = ACTIONS(953), - [anon_sym_enum] = ACTIONS(953), - [sym_readonly] = ACTIONS(953), - [sym__automatic_semicolon] = ACTIONS(959), + [ts_builtin_sym_end] = ACTIONS(945), + [sym_identifier] = ACTIONS(947), + [anon_sym_export] = ACTIONS(947), + [anon_sym_STAR] = ACTIONS(947), + [anon_sym_default] = ACTIONS(947), + [anon_sym_as] = ACTIONS(947), + [anon_sym_namespace] = ACTIONS(947), + [anon_sym_LBRACE] = ACTIONS(945), + [anon_sym_COMMA] = ACTIONS(945), + [anon_sym_RBRACE] = ACTIONS(945), + [anon_sym_type] = ACTIONS(947), + [anon_sym_typeof] = ACTIONS(947), + [anon_sym_import] = ACTIONS(947), + [anon_sym_var] = ACTIONS(947), + [anon_sym_let] = ACTIONS(947), + [anon_sym_const] = ACTIONS(947), + [anon_sym_BANG] = ACTIONS(947), + [anon_sym_else] = ACTIONS(947), + [anon_sym_if] = ACTIONS(947), + [anon_sym_switch] = ACTIONS(947), + [anon_sym_for] = ACTIONS(947), + [anon_sym_LPAREN] = ACTIONS(945), + [anon_sym_await] = ACTIONS(947), + [anon_sym_in] = ACTIONS(947), + [anon_sym_while] = ACTIONS(947), + [anon_sym_do] = ACTIONS(947), + [anon_sym_try] = ACTIONS(947), + [anon_sym_with] = ACTIONS(947), + [anon_sym_break] = ACTIONS(947), + [anon_sym_continue] = ACTIONS(947), + [anon_sym_debugger] = ACTIONS(947), + [anon_sym_return] = ACTIONS(947), + [anon_sym_throw] = ACTIONS(947), + [anon_sym_SEMI] = ACTIONS(945), + [anon_sym_case] = ACTIONS(947), + [anon_sym_yield] = ACTIONS(947), + [anon_sym_LBRACK] = ACTIONS(945), + [anon_sym_LT] = ACTIONS(947), + [anon_sym_GT] = ACTIONS(947), + [anon_sym_SLASH] = ACTIONS(947), + [anon_sym_DOT] = ACTIONS(947), + [anon_sym_class] = ACTIONS(947), + [anon_sym_async] = ACTIONS(947), + [anon_sym_function] = ACTIONS(947), + [anon_sym_QMARK_DOT] = ACTIONS(945), + [anon_sym_new] = ACTIONS(947), + [anon_sym_QMARK] = ACTIONS(947), + [anon_sym_AMP_AMP] = ACTIONS(945), + [anon_sym_PIPE_PIPE] = ACTIONS(945), + [anon_sym_GT_GT] = ACTIONS(947), + [anon_sym_GT_GT_GT] = ACTIONS(945), + [anon_sym_LT_LT] = ACTIONS(945), + [anon_sym_AMP] = ACTIONS(947), + [anon_sym_CARET] = ACTIONS(945), + [anon_sym_PIPE] = ACTIONS(947), + [anon_sym_PLUS] = ACTIONS(947), + [anon_sym_DASH] = ACTIONS(947), + [anon_sym_PERCENT] = ACTIONS(945), + [anon_sym_STAR_STAR] = ACTIONS(945), + [anon_sym_LT_EQ] = ACTIONS(945), + [anon_sym_EQ_EQ] = ACTIONS(947), + [anon_sym_EQ_EQ_EQ] = ACTIONS(945), + [anon_sym_BANG_EQ] = ACTIONS(947), + [anon_sym_BANG_EQ_EQ] = ACTIONS(945), + [anon_sym_GT_EQ] = ACTIONS(945), + [anon_sym_QMARK_QMARK] = ACTIONS(945), + [anon_sym_instanceof] = ACTIONS(947), + [anon_sym_TILDE] = ACTIONS(945), + [anon_sym_void] = ACTIONS(947), + [anon_sym_delete] = ACTIONS(947), + [anon_sym_PLUS_PLUS] = ACTIONS(945), + [anon_sym_DASH_DASH] = ACTIONS(945), + [anon_sym_DQUOTE] = ACTIONS(945), + [anon_sym_SQUOTE] = ACTIONS(945), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(945), + [sym_number] = ACTIONS(945), + [sym_this] = ACTIONS(947), + [sym_super] = ACTIONS(947), + [sym_true] = ACTIONS(947), + [sym_false] = ACTIONS(947), + [sym_null] = ACTIONS(947), + [sym_undefined] = ACTIONS(947), + [anon_sym_AT] = ACTIONS(945), + [anon_sym_static] = ACTIONS(947), + [anon_sym_abstract] = ACTIONS(947), + [anon_sym_get] = ACTIONS(947), + [anon_sym_set] = ACTIONS(947), + [anon_sym_declare] = ACTIONS(947), + [anon_sym_public] = ACTIONS(947), + [anon_sym_private] = ACTIONS(947), + [anon_sym_protected] = ACTIONS(947), + [anon_sym_module] = ACTIONS(947), + [anon_sym_any] = ACTIONS(947), + [anon_sym_number] = ACTIONS(947), + [anon_sym_boolean] = ACTIONS(947), + [anon_sym_string] = ACTIONS(947), + [anon_sym_symbol] = ACTIONS(947), + [anon_sym_interface] = ACTIONS(947), + [anon_sym_enum] = ACTIONS(947), + [sym_readonly] = ACTIONS(947), + [sym__automatic_semicolon] = ACTIONS(945), }, [73] = { - [ts_builtin_sym_end] = ACTIONS(961), - [sym_identifier] = ACTIONS(963), - [anon_sym_export] = ACTIONS(963), - [anon_sym_STAR] = ACTIONS(965), - [anon_sym_default] = ACTIONS(963), - [anon_sym_as] = ACTIONS(965), - [anon_sym_namespace] = ACTIONS(963), - [anon_sym_LBRACE] = ACTIONS(961), - [anon_sym_COMMA] = ACTIONS(967), - [anon_sym_RBRACE] = ACTIONS(961), - [anon_sym_type] = ACTIONS(963), - [anon_sym_typeof] = ACTIONS(963), - [anon_sym_import] = ACTIONS(963), - [anon_sym_var] = ACTIONS(963), - [anon_sym_let] = ACTIONS(963), - [anon_sym_const] = ACTIONS(963), - [anon_sym_BANG] = ACTIONS(963), - [anon_sym_else] = ACTIONS(963), - [anon_sym_if] = ACTIONS(963), - [anon_sym_switch] = ACTIONS(963), - [anon_sym_for] = ACTIONS(963), - [anon_sym_LPAREN] = ACTIONS(961), - [anon_sym_await] = ACTIONS(963), - [anon_sym_in] = ACTIONS(965), - [anon_sym_while] = ACTIONS(963), - [anon_sym_do] = ACTIONS(963), - [anon_sym_try] = ACTIONS(963), - [anon_sym_with] = ACTIONS(963), - [anon_sym_break] = ACTIONS(963), - [anon_sym_continue] = ACTIONS(963), - [anon_sym_debugger] = ACTIONS(963), - [anon_sym_return] = ACTIONS(963), - [anon_sym_throw] = ACTIONS(963), - [anon_sym_SEMI] = ACTIONS(961), - [anon_sym_case] = ACTIONS(963), - [anon_sym_yield] = ACTIONS(963), - [anon_sym_LBRACK] = ACTIONS(961), - [anon_sym_LT] = ACTIONS(963), - [anon_sym_GT] = ACTIONS(965), - [anon_sym_SLASH] = ACTIONS(963), - [anon_sym_DOT] = ACTIONS(965), - [anon_sym_class] = ACTIONS(963), - [anon_sym_async] = ACTIONS(963), - [anon_sym_function] = ACTIONS(963), - [anon_sym_QMARK_DOT] = ACTIONS(967), - [anon_sym_new] = ACTIONS(963), - [anon_sym_QMARK] = ACTIONS(965), - [anon_sym_AMP_AMP] = ACTIONS(967), - [anon_sym_PIPE_PIPE] = ACTIONS(967), - [anon_sym_GT_GT] = ACTIONS(965), - [anon_sym_GT_GT_GT] = ACTIONS(967), - [anon_sym_LT_LT] = ACTIONS(967), - [anon_sym_AMP] = ACTIONS(965), - [anon_sym_CARET] = ACTIONS(967), - [anon_sym_PIPE] = ACTIONS(965), - [anon_sym_PLUS] = ACTIONS(963), - [anon_sym_DASH] = ACTIONS(963), - [anon_sym_PERCENT] = ACTIONS(967), - [anon_sym_STAR_STAR] = ACTIONS(967), - [anon_sym_LT_EQ] = ACTIONS(967), - [anon_sym_EQ_EQ] = ACTIONS(965), - [anon_sym_EQ_EQ_EQ] = ACTIONS(967), - [anon_sym_BANG_EQ] = ACTIONS(965), - [anon_sym_BANG_EQ_EQ] = ACTIONS(967), - [anon_sym_GT_EQ] = ACTIONS(967), - [anon_sym_QMARK_QMARK] = ACTIONS(967), - [anon_sym_instanceof] = ACTIONS(965), - [anon_sym_TILDE] = ACTIONS(961), - [anon_sym_void] = ACTIONS(963), - [anon_sym_delete] = ACTIONS(963), - [anon_sym_PLUS_PLUS] = ACTIONS(961), - [anon_sym_DASH_DASH] = ACTIONS(961), - [anon_sym_DQUOTE] = ACTIONS(961), - [anon_sym_SQUOTE] = ACTIONS(961), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(961), - [sym_number] = ACTIONS(961), - [sym_this] = ACTIONS(963), - [sym_super] = ACTIONS(963), - [sym_true] = ACTIONS(963), - [sym_false] = ACTIONS(963), - [sym_null] = ACTIONS(963), - [sym_undefined] = ACTIONS(963), - [anon_sym_AT] = ACTIONS(961), - [anon_sym_static] = ACTIONS(963), - [anon_sym_abstract] = ACTIONS(963), - [anon_sym_get] = ACTIONS(963), - [anon_sym_set] = ACTIONS(963), - [anon_sym_declare] = ACTIONS(963), - [anon_sym_public] = ACTIONS(963), - [anon_sym_private] = ACTIONS(963), - [anon_sym_protected] = ACTIONS(963), - [anon_sym_module] = ACTIONS(963), - [anon_sym_any] = ACTIONS(963), - [anon_sym_number] = ACTIONS(963), - [anon_sym_boolean] = ACTIONS(963), - [anon_sym_string] = ACTIONS(963), - [anon_sym_symbol] = ACTIONS(963), - [anon_sym_interface] = ACTIONS(963), - [anon_sym_enum] = ACTIONS(963), - [sym_readonly] = ACTIONS(963), - [sym__automatic_semicolon] = ACTIONS(969), + [ts_builtin_sym_end] = ACTIONS(949), + [sym_identifier] = ACTIONS(951), + [anon_sym_export] = ACTIONS(951), + [anon_sym_STAR] = ACTIONS(953), + [anon_sym_default] = ACTIONS(951), + [anon_sym_as] = ACTIONS(953), + [anon_sym_namespace] = ACTIONS(951), + [anon_sym_LBRACE] = ACTIONS(949), + [anon_sym_COMMA] = ACTIONS(955), + [anon_sym_RBRACE] = ACTIONS(949), + [anon_sym_type] = ACTIONS(951), + [anon_sym_typeof] = ACTIONS(951), + [anon_sym_import] = ACTIONS(951), + [anon_sym_var] = ACTIONS(951), + [anon_sym_let] = ACTIONS(951), + [anon_sym_const] = ACTIONS(951), + [anon_sym_BANG] = ACTIONS(951), + [anon_sym_else] = ACTIONS(951), + [anon_sym_if] = ACTIONS(951), + [anon_sym_switch] = ACTIONS(951), + [anon_sym_for] = ACTIONS(951), + [anon_sym_LPAREN] = ACTIONS(949), + [anon_sym_await] = ACTIONS(951), + [anon_sym_in] = ACTIONS(953), + [anon_sym_while] = ACTIONS(951), + [anon_sym_do] = ACTIONS(951), + [anon_sym_try] = ACTIONS(951), + [anon_sym_with] = ACTIONS(951), + [anon_sym_break] = ACTIONS(951), + [anon_sym_continue] = ACTIONS(951), + [anon_sym_debugger] = ACTIONS(951), + [anon_sym_return] = ACTIONS(951), + [anon_sym_throw] = ACTIONS(951), + [anon_sym_SEMI] = ACTIONS(949), + [anon_sym_case] = ACTIONS(951), + [anon_sym_yield] = ACTIONS(951), + [anon_sym_LBRACK] = ACTIONS(949), + [anon_sym_LT] = ACTIONS(951), + [anon_sym_GT] = ACTIONS(953), + [anon_sym_SLASH] = ACTIONS(951), + [anon_sym_DOT] = ACTIONS(953), + [anon_sym_class] = ACTIONS(951), + [anon_sym_async] = ACTIONS(951), + [anon_sym_function] = ACTIONS(951), + [anon_sym_QMARK_DOT] = ACTIONS(955), + [anon_sym_new] = ACTIONS(951), + [anon_sym_QMARK] = ACTIONS(953), + [anon_sym_AMP_AMP] = ACTIONS(955), + [anon_sym_PIPE_PIPE] = ACTIONS(955), + [anon_sym_GT_GT] = ACTIONS(953), + [anon_sym_GT_GT_GT] = ACTIONS(955), + [anon_sym_LT_LT] = ACTIONS(955), + [anon_sym_AMP] = ACTIONS(953), + [anon_sym_CARET] = ACTIONS(955), + [anon_sym_PIPE] = ACTIONS(953), + [anon_sym_PLUS] = ACTIONS(951), + [anon_sym_DASH] = ACTIONS(951), + [anon_sym_PERCENT] = ACTIONS(955), + [anon_sym_STAR_STAR] = ACTIONS(955), + [anon_sym_LT_EQ] = ACTIONS(955), + [anon_sym_EQ_EQ] = ACTIONS(953), + [anon_sym_EQ_EQ_EQ] = ACTIONS(955), + [anon_sym_BANG_EQ] = ACTIONS(953), + [anon_sym_BANG_EQ_EQ] = ACTIONS(955), + [anon_sym_GT_EQ] = ACTIONS(955), + [anon_sym_QMARK_QMARK] = ACTIONS(955), + [anon_sym_instanceof] = ACTIONS(953), + [anon_sym_TILDE] = ACTIONS(949), + [anon_sym_void] = ACTIONS(951), + [anon_sym_delete] = ACTIONS(951), + [anon_sym_PLUS_PLUS] = ACTIONS(949), + [anon_sym_DASH_DASH] = ACTIONS(949), + [anon_sym_DQUOTE] = ACTIONS(949), + [anon_sym_SQUOTE] = ACTIONS(949), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(949), + [sym_number] = ACTIONS(949), + [sym_this] = ACTIONS(951), + [sym_super] = ACTIONS(951), + [sym_true] = ACTIONS(951), + [sym_false] = ACTIONS(951), + [sym_null] = ACTIONS(951), + [sym_undefined] = ACTIONS(951), + [anon_sym_AT] = ACTIONS(949), + [anon_sym_static] = ACTIONS(951), + [anon_sym_abstract] = ACTIONS(951), + [anon_sym_get] = ACTIONS(951), + [anon_sym_set] = ACTIONS(951), + [anon_sym_declare] = ACTIONS(951), + [anon_sym_public] = ACTIONS(951), + [anon_sym_private] = ACTIONS(951), + [anon_sym_protected] = ACTIONS(951), + [anon_sym_module] = ACTIONS(951), + [anon_sym_any] = ACTIONS(951), + [anon_sym_number] = ACTIONS(951), + [anon_sym_boolean] = ACTIONS(951), + [anon_sym_string] = ACTIONS(951), + [anon_sym_symbol] = ACTIONS(951), + [anon_sym_interface] = ACTIONS(951), + [anon_sym_enum] = ACTIONS(951), + [sym_readonly] = ACTIONS(951), + [sym__automatic_semicolon] = ACTIONS(957), }, [74] = { - [ts_builtin_sym_end] = ACTIONS(971), - [sym_identifier] = ACTIONS(973), - [anon_sym_export] = ACTIONS(973), - [anon_sym_STAR] = ACTIONS(975), - [anon_sym_default] = ACTIONS(973), - [anon_sym_as] = ACTIONS(975), - [anon_sym_namespace] = ACTIONS(973), - [anon_sym_LBRACE] = ACTIONS(971), - [anon_sym_COMMA] = ACTIONS(977), - [anon_sym_RBRACE] = ACTIONS(971), - [anon_sym_type] = ACTIONS(973), - [anon_sym_typeof] = ACTIONS(973), - [anon_sym_import] = ACTIONS(973), - [anon_sym_var] = ACTIONS(973), - [anon_sym_let] = ACTIONS(973), - [anon_sym_const] = ACTIONS(973), - [anon_sym_BANG] = ACTIONS(973), - [anon_sym_else] = ACTIONS(973), - [anon_sym_if] = ACTIONS(973), - [anon_sym_switch] = ACTIONS(973), - [anon_sym_for] = ACTIONS(973), - [anon_sym_LPAREN] = ACTIONS(971), - [anon_sym_await] = ACTIONS(973), - [anon_sym_in] = ACTIONS(975), - [anon_sym_while] = ACTIONS(973), - [anon_sym_do] = ACTIONS(973), - [anon_sym_try] = ACTIONS(973), - [anon_sym_with] = ACTIONS(973), - [anon_sym_break] = ACTIONS(973), - [anon_sym_continue] = ACTIONS(973), - [anon_sym_debugger] = ACTIONS(973), - [anon_sym_return] = ACTIONS(973), - [anon_sym_throw] = ACTIONS(973), - [anon_sym_SEMI] = ACTIONS(971), - [anon_sym_case] = ACTIONS(973), - [anon_sym_yield] = ACTIONS(973), - [anon_sym_LBRACK] = ACTIONS(971), - [anon_sym_LT] = ACTIONS(973), - [anon_sym_GT] = ACTIONS(975), - [anon_sym_SLASH] = ACTIONS(973), - [anon_sym_DOT] = ACTIONS(975), - [anon_sym_class] = ACTIONS(973), - [anon_sym_async] = ACTIONS(973), - [anon_sym_function] = ACTIONS(973), - [anon_sym_QMARK_DOT] = ACTIONS(977), - [anon_sym_new] = ACTIONS(973), - [anon_sym_QMARK] = ACTIONS(975), - [anon_sym_AMP_AMP] = ACTIONS(977), - [anon_sym_PIPE_PIPE] = ACTIONS(977), - [anon_sym_GT_GT] = ACTIONS(975), - [anon_sym_GT_GT_GT] = ACTIONS(977), - [anon_sym_LT_LT] = ACTIONS(977), - [anon_sym_AMP] = ACTIONS(975), - [anon_sym_CARET] = ACTIONS(977), - [anon_sym_PIPE] = ACTIONS(975), - [anon_sym_PLUS] = ACTIONS(973), - [anon_sym_DASH] = ACTIONS(973), - [anon_sym_PERCENT] = ACTIONS(977), - [anon_sym_STAR_STAR] = ACTIONS(977), - [anon_sym_LT_EQ] = ACTIONS(977), - [anon_sym_EQ_EQ] = ACTIONS(975), - [anon_sym_EQ_EQ_EQ] = ACTIONS(977), - [anon_sym_BANG_EQ] = ACTIONS(975), - [anon_sym_BANG_EQ_EQ] = ACTIONS(977), - [anon_sym_GT_EQ] = ACTIONS(977), - [anon_sym_QMARK_QMARK] = ACTIONS(977), - [anon_sym_instanceof] = ACTIONS(975), - [anon_sym_TILDE] = ACTIONS(971), - [anon_sym_void] = ACTIONS(973), - [anon_sym_delete] = ACTIONS(973), - [anon_sym_PLUS_PLUS] = ACTIONS(971), - [anon_sym_DASH_DASH] = ACTIONS(971), - [anon_sym_DQUOTE] = ACTIONS(971), - [anon_sym_SQUOTE] = ACTIONS(971), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(971), - [sym_number] = ACTIONS(971), - [sym_this] = ACTIONS(973), - [sym_super] = ACTIONS(973), - [sym_true] = ACTIONS(973), - [sym_false] = ACTIONS(973), - [sym_null] = ACTIONS(973), - [sym_undefined] = ACTIONS(973), - [anon_sym_AT] = ACTIONS(971), - [anon_sym_static] = ACTIONS(973), - [anon_sym_abstract] = ACTIONS(973), - [anon_sym_get] = ACTIONS(973), - [anon_sym_set] = ACTIONS(973), - [anon_sym_declare] = ACTIONS(973), - [anon_sym_public] = ACTIONS(973), - [anon_sym_private] = ACTIONS(973), - [anon_sym_protected] = ACTIONS(973), - [anon_sym_module] = ACTIONS(973), - [anon_sym_any] = ACTIONS(973), - [anon_sym_number] = ACTIONS(973), - [anon_sym_boolean] = ACTIONS(973), - [anon_sym_string] = ACTIONS(973), - [anon_sym_symbol] = ACTIONS(973), - [anon_sym_interface] = ACTIONS(973), - [anon_sym_enum] = ACTIONS(973), - [sym_readonly] = ACTIONS(973), - [sym__automatic_semicolon] = ACTIONS(979), + [ts_builtin_sym_end] = ACTIONS(959), + [sym_identifier] = ACTIONS(961), + [anon_sym_export] = ACTIONS(961), + [anon_sym_STAR] = ACTIONS(963), + [anon_sym_default] = ACTIONS(961), + [anon_sym_as] = ACTIONS(963), + [anon_sym_namespace] = ACTIONS(961), + [anon_sym_LBRACE] = ACTIONS(959), + [anon_sym_COMMA] = ACTIONS(965), + [anon_sym_RBRACE] = ACTIONS(959), + [anon_sym_type] = ACTIONS(961), + [anon_sym_typeof] = ACTIONS(961), + [anon_sym_import] = ACTIONS(961), + [anon_sym_var] = ACTIONS(961), + [anon_sym_let] = ACTIONS(961), + [anon_sym_const] = ACTIONS(961), + [anon_sym_BANG] = ACTIONS(961), + [anon_sym_else] = ACTIONS(961), + [anon_sym_if] = ACTIONS(961), + [anon_sym_switch] = ACTIONS(961), + [anon_sym_for] = ACTIONS(961), + [anon_sym_LPAREN] = ACTIONS(959), + [anon_sym_await] = ACTIONS(961), + [anon_sym_in] = ACTIONS(963), + [anon_sym_while] = ACTIONS(961), + [anon_sym_do] = ACTIONS(961), + [anon_sym_try] = ACTIONS(961), + [anon_sym_with] = ACTIONS(961), + [anon_sym_break] = ACTIONS(961), + [anon_sym_continue] = ACTIONS(961), + [anon_sym_debugger] = ACTIONS(961), + [anon_sym_return] = ACTIONS(961), + [anon_sym_throw] = ACTIONS(961), + [anon_sym_SEMI] = ACTIONS(959), + [anon_sym_case] = ACTIONS(961), + [anon_sym_yield] = ACTIONS(961), + [anon_sym_LBRACK] = ACTIONS(959), + [anon_sym_LT] = ACTIONS(961), + [anon_sym_GT] = ACTIONS(963), + [anon_sym_SLASH] = ACTIONS(961), + [anon_sym_DOT] = ACTIONS(963), + [anon_sym_class] = ACTIONS(961), + [anon_sym_async] = ACTIONS(961), + [anon_sym_function] = ACTIONS(961), + [anon_sym_QMARK_DOT] = ACTIONS(965), + [anon_sym_new] = ACTIONS(961), + [anon_sym_QMARK] = ACTIONS(963), + [anon_sym_AMP_AMP] = ACTIONS(965), + [anon_sym_PIPE_PIPE] = ACTIONS(965), + [anon_sym_GT_GT] = ACTIONS(963), + [anon_sym_GT_GT_GT] = ACTIONS(965), + [anon_sym_LT_LT] = ACTIONS(965), + [anon_sym_AMP] = ACTIONS(963), + [anon_sym_CARET] = ACTIONS(965), + [anon_sym_PIPE] = ACTIONS(963), + [anon_sym_PLUS] = ACTIONS(961), + [anon_sym_DASH] = ACTIONS(961), + [anon_sym_PERCENT] = ACTIONS(965), + [anon_sym_STAR_STAR] = ACTIONS(965), + [anon_sym_LT_EQ] = ACTIONS(965), + [anon_sym_EQ_EQ] = ACTIONS(963), + [anon_sym_EQ_EQ_EQ] = ACTIONS(965), + [anon_sym_BANG_EQ] = ACTIONS(963), + [anon_sym_BANG_EQ_EQ] = ACTIONS(965), + [anon_sym_GT_EQ] = ACTIONS(965), + [anon_sym_QMARK_QMARK] = ACTIONS(965), + [anon_sym_instanceof] = ACTIONS(963), + [anon_sym_TILDE] = ACTIONS(959), + [anon_sym_void] = ACTIONS(961), + [anon_sym_delete] = ACTIONS(961), + [anon_sym_PLUS_PLUS] = ACTIONS(959), + [anon_sym_DASH_DASH] = ACTIONS(959), + [anon_sym_DQUOTE] = ACTIONS(959), + [anon_sym_SQUOTE] = ACTIONS(959), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(959), + [sym_number] = ACTIONS(959), + [sym_this] = ACTIONS(961), + [sym_super] = ACTIONS(961), + [sym_true] = ACTIONS(961), + [sym_false] = ACTIONS(961), + [sym_null] = ACTIONS(961), + [sym_undefined] = ACTIONS(961), + [anon_sym_AT] = ACTIONS(959), + [anon_sym_static] = ACTIONS(961), + [anon_sym_abstract] = ACTIONS(961), + [anon_sym_get] = ACTIONS(961), + [anon_sym_set] = ACTIONS(961), + [anon_sym_declare] = ACTIONS(961), + [anon_sym_public] = ACTIONS(961), + [anon_sym_private] = ACTIONS(961), + [anon_sym_protected] = ACTIONS(961), + [anon_sym_module] = ACTIONS(961), + [anon_sym_any] = ACTIONS(961), + [anon_sym_number] = ACTIONS(961), + [anon_sym_boolean] = ACTIONS(961), + [anon_sym_string] = ACTIONS(961), + [anon_sym_symbol] = ACTIONS(961), + [anon_sym_interface] = ACTIONS(961), + [anon_sym_enum] = ACTIONS(961), + [sym_readonly] = ACTIONS(961), + [sym__automatic_semicolon] = ACTIONS(967), }, [75] = { + [ts_builtin_sym_end] = ACTIONS(969), + [sym_identifier] = ACTIONS(971), + [anon_sym_export] = ACTIONS(971), + [anon_sym_STAR] = ACTIONS(973), + [anon_sym_default] = ACTIONS(971), + [anon_sym_as] = ACTIONS(973), + [anon_sym_namespace] = ACTIONS(971), + [anon_sym_LBRACE] = ACTIONS(969), + [anon_sym_COMMA] = ACTIONS(975), + [anon_sym_RBRACE] = ACTIONS(969), + [anon_sym_type] = ACTIONS(971), + [anon_sym_typeof] = ACTIONS(971), + [anon_sym_import] = ACTIONS(971), + [anon_sym_var] = ACTIONS(971), + [anon_sym_let] = ACTIONS(971), + [anon_sym_const] = ACTIONS(971), + [anon_sym_BANG] = ACTIONS(971), + [anon_sym_else] = ACTIONS(971), + [anon_sym_if] = ACTIONS(971), + [anon_sym_switch] = ACTIONS(971), + [anon_sym_for] = ACTIONS(971), + [anon_sym_LPAREN] = ACTIONS(969), + [anon_sym_await] = ACTIONS(971), + [anon_sym_in] = ACTIONS(973), + [anon_sym_while] = ACTIONS(971), + [anon_sym_do] = ACTIONS(971), + [anon_sym_try] = ACTIONS(971), + [anon_sym_with] = ACTIONS(971), + [anon_sym_break] = ACTIONS(971), + [anon_sym_continue] = ACTIONS(971), + [anon_sym_debugger] = ACTIONS(971), + [anon_sym_return] = ACTIONS(971), + [anon_sym_throw] = ACTIONS(971), + [anon_sym_SEMI] = ACTIONS(969), + [anon_sym_case] = ACTIONS(971), + [anon_sym_yield] = ACTIONS(971), + [anon_sym_LBRACK] = ACTIONS(969), + [anon_sym_LT] = ACTIONS(971), + [anon_sym_GT] = ACTIONS(973), + [anon_sym_SLASH] = ACTIONS(971), + [anon_sym_DOT] = ACTIONS(973), + [anon_sym_class] = ACTIONS(971), + [anon_sym_async] = ACTIONS(971), + [anon_sym_function] = ACTIONS(971), + [anon_sym_QMARK_DOT] = ACTIONS(975), + [anon_sym_new] = ACTIONS(971), + [anon_sym_QMARK] = ACTIONS(973), + [anon_sym_AMP_AMP] = ACTIONS(975), + [anon_sym_PIPE_PIPE] = ACTIONS(975), + [anon_sym_GT_GT] = ACTIONS(973), + [anon_sym_GT_GT_GT] = ACTIONS(975), + [anon_sym_LT_LT] = ACTIONS(975), + [anon_sym_AMP] = ACTIONS(973), + [anon_sym_CARET] = ACTIONS(975), + [anon_sym_PIPE] = ACTIONS(973), + [anon_sym_PLUS] = ACTIONS(971), + [anon_sym_DASH] = ACTIONS(971), + [anon_sym_PERCENT] = ACTIONS(975), + [anon_sym_STAR_STAR] = ACTIONS(975), + [anon_sym_LT_EQ] = ACTIONS(975), + [anon_sym_EQ_EQ] = ACTIONS(973), + [anon_sym_EQ_EQ_EQ] = ACTIONS(975), + [anon_sym_BANG_EQ] = ACTIONS(973), + [anon_sym_BANG_EQ_EQ] = ACTIONS(975), + [anon_sym_GT_EQ] = ACTIONS(975), + [anon_sym_QMARK_QMARK] = ACTIONS(975), + [anon_sym_instanceof] = ACTIONS(973), + [anon_sym_TILDE] = ACTIONS(969), + [anon_sym_void] = ACTIONS(971), + [anon_sym_delete] = ACTIONS(971), + [anon_sym_PLUS_PLUS] = ACTIONS(969), + [anon_sym_DASH_DASH] = ACTIONS(969), + [anon_sym_DQUOTE] = ACTIONS(969), + [anon_sym_SQUOTE] = ACTIONS(969), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(969), + [sym_number] = ACTIONS(969), + [sym_this] = ACTIONS(971), + [sym_super] = ACTIONS(971), + [sym_true] = ACTIONS(971), + [sym_false] = ACTIONS(971), + [sym_null] = ACTIONS(971), + [sym_undefined] = ACTIONS(971), + [anon_sym_AT] = ACTIONS(969), + [anon_sym_static] = ACTIONS(971), + [anon_sym_abstract] = ACTIONS(971), + [anon_sym_get] = ACTIONS(971), + [anon_sym_set] = ACTIONS(971), + [anon_sym_declare] = ACTIONS(971), + [anon_sym_public] = ACTIONS(971), + [anon_sym_private] = ACTIONS(971), + [anon_sym_protected] = ACTIONS(971), + [anon_sym_module] = ACTIONS(971), + [anon_sym_any] = ACTIONS(971), + [anon_sym_number] = ACTIONS(971), + [anon_sym_boolean] = ACTIONS(971), + [anon_sym_string] = ACTIONS(971), + [anon_sym_symbol] = ACTIONS(971), + [anon_sym_interface] = ACTIONS(971), + [anon_sym_enum] = ACTIONS(971), + [sym_readonly] = ACTIONS(971), + [sym__automatic_semicolon] = ACTIONS(977), + }, + [76] = { + [ts_builtin_sym_end] = ACTIONS(907), + [sym_identifier] = ACTIONS(909), + [anon_sym_export] = ACTIONS(909), + [anon_sym_STAR] = ACTIONS(909), + [anon_sym_default] = ACTIONS(909), + [anon_sym_as] = ACTIONS(909), + [anon_sym_namespace] = ACTIONS(909), + [anon_sym_LBRACE] = ACTIONS(907), + [anon_sym_COMMA] = ACTIONS(907), + [anon_sym_RBRACE] = ACTIONS(907), + [anon_sym_type] = ACTIONS(909), + [anon_sym_typeof] = ACTIONS(909), + [anon_sym_import] = ACTIONS(909), + [anon_sym_var] = ACTIONS(909), + [anon_sym_let] = ACTIONS(909), + [anon_sym_const] = ACTIONS(909), + [anon_sym_BANG] = ACTIONS(909), + [anon_sym_else] = ACTIONS(909), + [anon_sym_if] = ACTIONS(909), + [anon_sym_switch] = ACTIONS(909), + [anon_sym_for] = ACTIONS(909), + [anon_sym_LPAREN] = ACTIONS(907), + [anon_sym_await] = ACTIONS(909), + [anon_sym_in] = ACTIONS(909), + [anon_sym_while] = ACTIONS(909), + [anon_sym_do] = ACTIONS(909), + [anon_sym_try] = ACTIONS(909), + [anon_sym_with] = ACTIONS(909), + [anon_sym_break] = ACTIONS(909), + [anon_sym_continue] = ACTIONS(909), + [anon_sym_debugger] = ACTIONS(909), + [anon_sym_return] = ACTIONS(909), + [anon_sym_throw] = ACTIONS(909), + [anon_sym_SEMI] = ACTIONS(907), + [anon_sym_case] = ACTIONS(909), + [anon_sym_yield] = ACTIONS(909), + [anon_sym_LBRACK] = ACTIONS(907), + [anon_sym_LT] = ACTIONS(909), + [anon_sym_GT] = ACTIONS(909), + [anon_sym_SLASH] = ACTIONS(909), + [anon_sym_DOT] = ACTIONS(909), + [anon_sym_class] = ACTIONS(909), + [anon_sym_async] = ACTIONS(909), + [anon_sym_function] = ACTIONS(909), + [anon_sym_QMARK_DOT] = ACTIONS(907), + [anon_sym_new] = ACTIONS(909), + [anon_sym_QMARK] = ACTIONS(909), + [anon_sym_AMP_AMP] = ACTIONS(907), + [anon_sym_PIPE_PIPE] = ACTIONS(907), + [anon_sym_GT_GT] = ACTIONS(909), + [anon_sym_GT_GT_GT] = ACTIONS(907), + [anon_sym_LT_LT] = ACTIONS(907), + [anon_sym_AMP] = ACTIONS(909), + [anon_sym_CARET] = ACTIONS(907), + [anon_sym_PIPE] = ACTIONS(909), + [anon_sym_PLUS] = ACTIONS(909), + [anon_sym_DASH] = ACTIONS(909), + [anon_sym_PERCENT] = ACTIONS(907), + [anon_sym_STAR_STAR] = ACTIONS(907), + [anon_sym_LT_EQ] = ACTIONS(907), + [anon_sym_EQ_EQ] = ACTIONS(909), + [anon_sym_EQ_EQ_EQ] = ACTIONS(907), + [anon_sym_BANG_EQ] = ACTIONS(909), + [anon_sym_BANG_EQ_EQ] = ACTIONS(907), + [anon_sym_GT_EQ] = ACTIONS(907), + [anon_sym_QMARK_QMARK] = ACTIONS(907), + [anon_sym_instanceof] = ACTIONS(909), + [anon_sym_TILDE] = ACTIONS(907), + [anon_sym_void] = ACTIONS(909), + [anon_sym_delete] = ACTIONS(909), + [anon_sym_PLUS_PLUS] = ACTIONS(907), + [anon_sym_DASH_DASH] = ACTIONS(907), + [anon_sym_DQUOTE] = ACTIONS(907), + [anon_sym_SQUOTE] = ACTIONS(907), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(907), + [sym_number] = ACTIONS(907), + [sym_this] = ACTIONS(909), + [sym_super] = ACTIONS(909), + [sym_true] = ACTIONS(909), + [sym_false] = ACTIONS(909), + [sym_null] = ACTIONS(909), + [sym_undefined] = ACTIONS(909), + [anon_sym_AT] = ACTIONS(907), + [anon_sym_static] = ACTIONS(909), + [anon_sym_abstract] = ACTIONS(909), + [anon_sym_get] = ACTIONS(909), + [anon_sym_set] = ACTIONS(909), + [anon_sym_declare] = ACTIONS(909), + [anon_sym_public] = ACTIONS(909), + [anon_sym_private] = ACTIONS(909), + [anon_sym_protected] = ACTIONS(909), + [anon_sym_module] = ACTIONS(909), + [anon_sym_any] = ACTIONS(909), + [anon_sym_number] = ACTIONS(909), + [anon_sym_boolean] = ACTIONS(909), + [anon_sym_string] = ACTIONS(909), + [anon_sym_symbol] = ACTIONS(909), + [anon_sym_interface] = ACTIONS(909), + [anon_sym_enum] = ACTIONS(909), + [sym_readonly] = ACTIONS(909), + [sym__automatic_semicolon] = ACTIONS(979), + }, + [77] = { [ts_builtin_sym_end] = ACTIONS(981), [sym_identifier] = ACTIONS(983), [anon_sym_export] = ACTIONS(983), @@ -19315,7 +19577,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_readonly] = ACTIONS(983), [sym__automatic_semicolon] = ACTIONS(989), }, - [76] = { + [78] = { [ts_builtin_sym_end] = ACTIONS(991), [sym_identifier] = ACTIONS(993), [anon_sym_export] = ACTIONS(993), @@ -19419,7 +19681,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_readonly] = ACTIONS(993), [sym__automatic_semicolon] = ACTIONS(991), }, - [77] = { + [79] = { [ts_builtin_sym_end] = ACTIONS(995), [sym_identifier] = ACTIONS(997), [anon_sym_export] = ACTIONS(997), @@ -19523,7 +19785,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_readonly] = ACTIONS(997), [sym__automatic_semicolon] = ACTIONS(995), }, - [78] = { + [80] = { [ts_builtin_sym_end] = ACTIONS(999), [sym_identifier] = ACTIONS(1001), [anon_sym_export] = ACTIONS(1001), @@ -19627,36 +19889,348 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_readonly] = ACTIONS(1001), [sym__automatic_semicolon] = ACTIONS(999), }, - [79] = { - [sym_nested_identifier] = STATE(2999), - [sym_string] = STATE(446), - [sym_formal_parameters] = STATE(2996), - [sym_nested_type_identifier] = STATE(1913), - [sym__type] = STATE(2626), - [sym_constructor_type] = STATE(2626), - [sym__primary_type] = STATE(2496), - [sym_conditional_type] = STATE(2496), - [sym_generic_type] = STATE(2496), - [sym_type_query] = STATE(2496), - [sym_index_type_query] = STATE(2496), - [sym_lookup_type] = STATE(2496), - [sym_literal_type] = STATE(2496), - [sym__number] = STATE(446), - [sym_existential_type] = STATE(2496), - [sym_flow_maybe_type] = STATE(2496), - [sym_parenthesized_type] = STATE(2496), - [sym_predefined_type] = STATE(2496), - [sym_object_type] = STATE(2496), - [sym_type_parameters] = STATE(2959), - [sym_array_type] = STATE(2496), - [sym__tuple_type_body] = STATE(426), - [sym_tuple_type] = STATE(2496), - [sym_union_type] = STATE(2626), - [sym_intersection_type] = STATE(2626), - [sym_function_type] = STATE(2626), + [81] = { + [ts_builtin_sym_end] = ACTIONS(1003), + [sym_identifier] = ACTIONS(1005), + [anon_sym_export] = ACTIONS(1005), + [anon_sym_STAR] = ACTIONS(1005), + [anon_sym_default] = ACTIONS(1005), + [anon_sym_as] = ACTIONS(1005), + [anon_sym_namespace] = ACTIONS(1005), + [anon_sym_LBRACE] = ACTIONS(1003), + [anon_sym_COMMA] = ACTIONS(1003), + [anon_sym_RBRACE] = ACTIONS(1003), + [anon_sym_type] = ACTIONS(1005), + [anon_sym_typeof] = ACTIONS(1005), + [anon_sym_import] = ACTIONS(1005), + [anon_sym_var] = ACTIONS(1005), + [anon_sym_let] = ACTIONS(1005), + [anon_sym_const] = ACTIONS(1005), + [anon_sym_BANG] = ACTIONS(1005), + [anon_sym_else] = ACTIONS(1005), + [anon_sym_if] = ACTIONS(1005), + [anon_sym_switch] = ACTIONS(1005), + [anon_sym_for] = ACTIONS(1005), + [anon_sym_LPAREN] = ACTIONS(1003), + [anon_sym_await] = ACTIONS(1005), + [anon_sym_in] = ACTIONS(1005), + [anon_sym_while] = ACTIONS(1005), + [anon_sym_do] = ACTIONS(1005), + [anon_sym_try] = ACTIONS(1005), + [anon_sym_with] = ACTIONS(1005), + [anon_sym_break] = ACTIONS(1005), + [anon_sym_continue] = ACTIONS(1005), + [anon_sym_debugger] = ACTIONS(1005), + [anon_sym_return] = ACTIONS(1005), + [anon_sym_throw] = ACTIONS(1005), + [anon_sym_SEMI] = ACTIONS(1003), + [anon_sym_case] = ACTIONS(1005), + [anon_sym_yield] = ACTIONS(1005), + [anon_sym_LBRACK] = ACTIONS(1003), + [anon_sym_LT] = ACTIONS(1005), + [anon_sym_GT] = ACTIONS(1005), + [anon_sym_SLASH] = ACTIONS(1005), + [anon_sym_DOT] = ACTIONS(1005), + [anon_sym_class] = ACTIONS(1005), + [anon_sym_async] = ACTIONS(1005), + [anon_sym_function] = ACTIONS(1005), + [anon_sym_QMARK_DOT] = ACTIONS(1003), + [anon_sym_new] = ACTIONS(1005), + [anon_sym_QMARK] = ACTIONS(1005), + [anon_sym_AMP_AMP] = ACTIONS(1003), + [anon_sym_PIPE_PIPE] = ACTIONS(1003), + [anon_sym_GT_GT] = ACTIONS(1005), + [anon_sym_GT_GT_GT] = ACTIONS(1003), + [anon_sym_LT_LT] = ACTIONS(1003), + [anon_sym_AMP] = ACTIONS(1005), + [anon_sym_CARET] = ACTIONS(1003), + [anon_sym_PIPE] = ACTIONS(1005), + [anon_sym_PLUS] = ACTIONS(1005), + [anon_sym_DASH] = ACTIONS(1005), + [anon_sym_PERCENT] = ACTIONS(1003), + [anon_sym_STAR_STAR] = ACTIONS(1003), + [anon_sym_LT_EQ] = ACTIONS(1003), + [anon_sym_EQ_EQ] = ACTIONS(1005), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1003), + [anon_sym_BANG_EQ] = ACTIONS(1005), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1003), + [anon_sym_GT_EQ] = ACTIONS(1003), + [anon_sym_QMARK_QMARK] = ACTIONS(1003), + [anon_sym_instanceof] = ACTIONS(1005), + [anon_sym_TILDE] = ACTIONS(1003), + [anon_sym_void] = ACTIONS(1005), + [anon_sym_delete] = ACTIONS(1005), + [anon_sym_PLUS_PLUS] = ACTIONS(1003), + [anon_sym_DASH_DASH] = ACTIONS(1003), + [anon_sym_DQUOTE] = ACTIONS(1003), + [anon_sym_SQUOTE] = ACTIONS(1003), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1003), + [sym_number] = ACTIONS(1003), + [sym_this] = ACTIONS(1005), + [sym_super] = ACTIONS(1005), + [sym_true] = ACTIONS(1005), + [sym_false] = ACTIONS(1005), + [sym_null] = ACTIONS(1005), + [sym_undefined] = ACTIONS(1005), + [anon_sym_AT] = ACTIONS(1003), + [anon_sym_static] = ACTIONS(1005), + [anon_sym_abstract] = ACTIONS(1005), + [anon_sym_get] = ACTIONS(1005), + [anon_sym_set] = ACTIONS(1005), + [anon_sym_declare] = ACTIONS(1005), + [anon_sym_public] = ACTIONS(1005), + [anon_sym_private] = ACTIONS(1005), + [anon_sym_protected] = ACTIONS(1005), + [anon_sym_module] = ACTIONS(1005), + [anon_sym_any] = ACTIONS(1005), + [anon_sym_number] = ACTIONS(1005), + [anon_sym_boolean] = ACTIONS(1005), + [anon_sym_string] = ACTIONS(1005), + [anon_sym_symbol] = ACTIONS(1005), + [anon_sym_interface] = ACTIONS(1005), + [anon_sym_enum] = ACTIONS(1005), + [sym_readonly] = ACTIONS(1005), + [sym__automatic_semicolon] = ACTIONS(1003), + }, + [82] = { + [ts_builtin_sym_end] = ACTIONS(1007), + [sym_identifier] = ACTIONS(1009), + [anon_sym_export] = ACTIONS(1009), + [anon_sym_STAR] = ACTIONS(1009), + [anon_sym_default] = ACTIONS(1009), + [anon_sym_as] = ACTIONS(1009), + [anon_sym_namespace] = ACTIONS(1009), + [anon_sym_LBRACE] = ACTIONS(1007), + [anon_sym_COMMA] = ACTIONS(1007), + [anon_sym_RBRACE] = ACTIONS(1007), + [anon_sym_type] = ACTIONS(1009), + [anon_sym_typeof] = ACTIONS(1009), + [anon_sym_import] = ACTIONS(1009), + [anon_sym_var] = ACTIONS(1009), + [anon_sym_let] = ACTIONS(1009), + [anon_sym_const] = ACTIONS(1009), + [anon_sym_BANG] = ACTIONS(1009), + [anon_sym_else] = ACTIONS(1009), + [anon_sym_if] = ACTIONS(1009), + [anon_sym_switch] = ACTIONS(1009), + [anon_sym_for] = ACTIONS(1009), + [anon_sym_LPAREN] = ACTIONS(1007), + [anon_sym_await] = ACTIONS(1009), + [anon_sym_in] = ACTIONS(1009), + [anon_sym_while] = ACTIONS(1009), + [anon_sym_do] = ACTIONS(1009), + [anon_sym_try] = ACTIONS(1009), + [anon_sym_with] = ACTIONS(1009), + [anon_sym_break] = ACTIONS(1009), + [anon_sym_continue] = ACTIONS(1009), + [anon_sym_debugger] = ACTIONS(1009), + [anon_sym_return] = ACTIONS(1009), + [anon_sym_throw] = ACTIONS(1009), + [anon_sym_SEMI] = ACTIONS(1007), + [anon_sym_case] = ACTIONS(1009), + [anon_sym_yield] = ACTIONS(1009), + [anon_sym_LBRACK] = ACTIONS(1007), + [anon_sym_LT] = ACTIONS(1009), + [anon_sym_GT] = ACTIONS(1009), + [anon_sym_SLASH] = ACTIONS(1009), + [anon_sym_DOT] = ACTIONS(1009), + [anon_sym_class] = ACTIONS(1009), + [anon_sym_async] = ACTIONS(1009), + [anon_sym_function] = ACTIONS(1009), + [anon_sym_QMARK_DOT] = ACTIONS(1007), + [anon_sym_new] = ACTIONS(1009), + [anon_sym_QMARK] = ACTIONS(1009), + [anon_sym_AMP_AMP] = ACTIONS(1007), + [anon_sym_PIPE_PIPE] = ACTIONS(1007), + [anon_sym_GT_GT] = ACTIONS(1009), + [anon_sym_GT_GT_GT] = ACTIONS(1007), + [anon_sym_LT_LT] = ACTIONS(1007), + [anon_sym_AMP] = ACTIONS(1009), + [anon_sym_CARET] = ACTIONS(1007), + [anon_sym_PIPE] = ACTIONS(1009), + [anon_sym_PLUS] = ACTIONS(1009), + [anon_sym_DASH] = ACTIONS(1009), + [anon_sym_PERCENT] = ACTIONS(1007), + [anon_sym_STAR_STAR] = ACTIONS(1007), + [anon_sym_LT_EQ] = ACTIONS(1007), + [anon_sym_EQ_EQ] = ACTIONS(1009), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1007), + [anon_sym_BANG_EQ] = ACTIONS(1009), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1007), + [anon_sym_GT_EQ] = ACTIONS(1007), + [anon_sym_QMARK_QMARK] = ACTIONS(1007), + [anon_sym_instanceof] = ACTIONS(1009), + [anon_sym_TILDE] = ACTIONS(1007), + [anon_sym_void] = ACTIONS(1009), + [anon_sym_delete] = ACTIONS(1009), + [anon_sym_PLUS_PLUS] = ACTIONS(1007), + [anon_sym_DASH_DASH] = ACTIONS(1007), + [anon_sym_DQUOTE] = ACTIONS(1007), + [anon_sym_SQUOTE] = ACTIONS(1007), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1007), + [sym_number] = ACTIONS(1007), + [sym_this] = ACTIONS(1009), + [sym_super] = ACTIONS(1009), + [sym_true] = ACTIONS(1009), + [sym_false] = ACTIONS(1009), + [sym_null] = ACTIONS(1009), + [sym_undefined] = ACTIONS(1009), + [anon_sym_AT] = ACTIONS(1007), + [anon_sym_static] = ACTIONS(1009), + [anon_sym_abstract] = ACTIONS(1009), + [anon_sym_get] = ACTIONS(1009), + [anon_sym_set] = ACTIONS(1009), + [anon_sym_declare] = ACTIONS(1009), + [anon_sym_public] = ACTIONS(1009), + [anon_sym_private] = ACTIONS(1009), + [anon_sym_protected] = ACTIONS(1009), + [anon_sym_module] = ACTIONS(1009), + [anon_sym_any] = ACTIONS(1009), + [anon_sym_number] = ACTIONS(1009), + [anon_sym_boolean] = ACTIONS(1009), + [anon_sym_string] = ACTIONS(1009), + [anon_sym_symbol] = ACTIONS(1009), + [anon_sym_interface] = ACTIONS(1009), + [anon_sym_enum] = ACTIONS(1009), + [sym_readonly] = ACTIONS(1009), + [sym__automatic_semicolon] = ACTIONS(1007), + }, + [83] = { + [ts_builtin_sym_end] = ACTIONS(937), + [sym_identifier] = ACTIONS(939), + [anon_sym_export] = ACTIONS(939), + [anon_sym_STAR] = ACTIONS(939), + [anon_sym_default] = ACTIONS(939), + [anon_sym_as] = ACTIONS(939), + [anon_sym_namespace] = ACTIONS(939), + [anon_sym_LBRACE] = ACTIONS(937), + [anon_sym_COMMA] = ACTIONS(937), + [anon_sym_RBRACE] = ACTIONS(937), + [anon_sym_type] = ACTIONS(939), + [anon_sym_typeof] = ACTIONS(939), + [anon_sym_import] = ACTIONS(939), + [anon_sym_var] = ACTIONS(939), + [anon_sym_let] = ACTIONS(939), + [anon_sym_const] = ACTIONS(939), + [anon_sym_BANG] = ACTIONS(939), + [anon_sym_else] = ACTIONS(939), + [anon_sym_if] = ACTIONS(939), + [anon_sym_switch] = ACTIONS(939), + [anon_sym_for] = ACTIONS(939), + [anon_sym_LPAREN] = ACTIONS(937), + [anon_sym_await] = ACTIONS(939), + [anon_sym_in] = ACTIONS(939), + [anon_sym_while] = ACTIONS(939), + [anon_sym_do] = ACTIONS(939), + [anon_sym_try] = ACTIONS(939), + [anon_sym_with] = ACTIONS(939), + [anon_sym_break] = ACTIONS(939), + [anon_sym_continue] = ACTIONS(939), + [anon_sym_debugger] = ACTIONS(939), + [anon_sym_return] = ACTIONS(939), + [anon_sym_throw] = ACTIONS(939), + [anon_sym_SEMI] = ACTIONS(937), + [anon_sym_case] = ACTIONS(939), + [anon_sym_yield] = ACTIONS(939), + [anon_sym_LBRACK] = ACTIONS(937), + [anon_sym_LT] = ACTIONS(939), + [anon_sym_GT] = ACTIONS(939), + [anon_sym_SLASH] = ACTIONS(939), + [anon_sym_DOT] = ACTIONS(939), + [anon_sym_class] = ACTIONS(939), + [anon_sym_async] = ACTIONS(939), + [anon_sym_function] = ACTIONS(939), + [anon_sym_QMARK_DOT] = ACTIONS(937), + [anon_sym_new] = ACTIONS(939), + [anon_sym_QMARK] = ACTIONS(939), + [anon_sym_AMP_AMP] = ACTIONS(937), + [anon_sym_PIPE_PIPE] = ACTIONS(937), + [anon_sym_GT_GT] = ACTIONS(939), + [anon_sym_GT_GT_GT] = ACTIONS(937), + [anon_sym_LT_LT] = ACTIONS(937), + [anon_sym_AMP] = ACTIONS(939), + [anon_sym_CARET] = ACTIONS(937), + [anon_sym_PIPE] = ACTIONS(939), + [anon_sym_PLUS] = ACTIONS(939), + [anon_sym_DASH] = ACTIONS(939), + [anon_sym_PERCENT] = ACTIONS(937), + [anon_sym_STAR_STAR] = ACTIONS(937), + [anon_sym_LT_EQ] = ACTIONS(937), + [anon_sym_EQ_EQ] = ACTIONS(939), + [anon_sym_EQ_EQ_EQ] = ACTIONS(937), + [anon_sym_BANG_EQ] = ACTIONS(939), + [anon_sym_BANG_EQ_EQ] = ACTIONS(937), + [anon_sym_GT_EQ] = ACTIONS(937), + [anon_sym_QMARK_QMARK] = ACTIONS(937), + [anon_sym_instanceof] = ACTIONS(939), + [anon_sym_TILDE] = ACTIONS(937), + [anon_sym_void] = ACTIONS(939), + [anon_sym_delete] = ACTIONS(939), + [anon_sym_PLUS_PLUS] = ACTIONS(937), + [anon_sym_DASH_DASH] = ACTIONS(937), + [anon_sym_DQUOTE] = ACTIONS(937), + [anon_sym_SQUOTE] = ACTIONS(937), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(937), + [sym_number] = ACTIONS(937), + [sym_this] = ACTIONS(939), + [sym_super] = ACTIONS(939), + [sym_true] = ACTIONS(939), + [sym_false] = ACTIONS(939), + [sym_null] = ACTIONS(939), + [sym_undefined] = ACTIONS(939), + [anon_sym_AT] = ACTIONS(937), + [anon_sym_static] = ACTIONS(939), + [anon_sym_abstract] = ACTIONS(939), + [anon_sym_get] = ACTIONS(939), + [anon_sym_set] = ACTIONS(939), + [anon_sym_declare] = ACTIONS(939), + [anon_sym_public] = ACTIONS(939), + [anon_sym_private] = ACTIONS(939), + [anon_sym_protected] = ACTIONS(939), + [anon_sym_module] = ACTIONS(939), + [anon_sym_any] = ACTIONS(939), + [anon_sym_number] = ACTIONS(939), + [anon_sym_boolean] = ACTIONS(939), + [anon_sym_string] = ACTIONS(939), + [anon_sym_symbol] = ACTIONS(939), + [anon_sym_interface] = ACTIONS(939), + [anon_sym_enum] = ACTIONS(939), + [sym_readonly] = ACTIONS(939), + [sym__automatic_semicolon] = ACTIONS(1011), + }, + [84] = { + [sym_nested_identifier] = STATE(3123), + [sym_string] = STATE(433), + [sym_formal_parameters] = STATE(3122), + [sym_nested_type_identifier] = STATE(1917), + [sym__type] = STATE(2780), + [sym_constructor_type] = STATE(2780), + [sym__primary_type] = STATE(2509), + [sym_conditional_type] = STATE(2509), + [sym_generic_type] = STATE(2509), + [sym_type_query] = STATE(2509), + [sym_index_type_query] = STATE(2509), + [sym_lookup_type] = STATE(2509), + [sym_literal_type] = STATE(2509), + [sym__number] = STATE(433), + [sym_existential_type] = STATE(2509), + [sym_flow_maybe_type] = STATE(2509), + [sym_parenthesized_type] = STATE(2509), + [sym_predefined_type] = STATE(2509), + [sym_object_type] = STATE(2509), + [sym_type_parameters] = STATE(2916), + [sym_array_type] = STATE(2509), + [sym__tuple_type_body] = STATE(424), + [sym_tuple_type] = STATE(2509), + [sym_union_type] = STATE(2780), + [sym_intersection_type] = STATE(2780), + [sym_function_type] = STATE(2780), [sym_identifier] = ACTIONS(925), [anon_sym_STAR] = ACTIONS(803), - [anon_sym_EQ] = ACTIONS(1003), + [anon_sym_EQ] = ACTIONS(1013), [anon_sym_as] = ACTIONS(808), [anon_sym_LBRACE] = ACTIONS(929), [anon_sym_COMMA] = ACTIONS(841), @@ -19666,13 +20240,13 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(817), [anon_sym_in] = ACTIONS(808), [anon_sym_SEMI] = ACTIONS(841), - [anon_sym_LBRACK] = ACTIONS(1005), + [anon_sym_LBRACK] = ACTIONS(1015), [anon_sym_LT] = ACTIONS(821), [anon_sym_GT] = ACTIONS(808), [anon_sym_SLASH] = ACTIONS(808), - [anon_sym_DOT] = ACTIONS(1007), - [anon_sym_EQ_GT] = ACTIONS(1009), - [anon_sym_QMARK_DOT] = ACTIONS(1011), + [anon_sym_DOT] = ACTIONS(1017), + [anon_sym_EQ_GT] = ACTIONS(1019), + [anon_sym_QMARK_DOT] = ACTIONS(1021), [anon_sym_new] = ACTIONS(829), [anon_sym_PLUS_EQ] = ACTIONS(831), [anon_sym_DASH_EQ] = ACTIONS(831), @@ -19731,111 +20305,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(497), [sym__automatic_semicolon] = ACTIONS(841), }, - [80] = { - [ts_builtin_sym_end] = ACTIONS(1013), - [sym_identifier] = ACTIONS(1015), - [anon_sym_export] = ACTIONS(1015), - [anon_sym_STAR] = ACTIONS(1017), - [anon_sym_default] = ACTIONS(1015), - [anon_sym_as] = ACTIONS(1017), - [anon_sym_namespace] = ACTIONS(1015), - [anon_sym_LBRACE] = ACTIONS(1013), - [anon_sym_COMMA] = ACTIONS(1019), - [anon_sym_RBRACE] = ACTIONS(1013), - [anon_sym_type] = ACTIONS(1015), - [anon_sym_typeof] = ACTIONS(1015), - [anon_sym_import] = ACTIONS(1015), - [anon_sym_var] = ACTIONS(1015), - [anon_sym_let] = ACTIONS(1015), - [anon_sym_const] = ACTIONS(1015), - [anon_sym_BANG] = ACTIONS(1015), - [anon_sym_else] = ACTIONS(1015), - [anon_sym_if] = ACTIONS(1015), - [anon_sym_switch] = ACTIONS(1015), - [anon_sym_for] = ACTIONS(1015), - [anon_sym_LPAREN] = ACTIONS(1013), - [anon_sym_await] = ACTIONS(1015), - [anon_sym_in] = ACTIONS(1017), - [anon_sym_while] = ACTIONS(1015), - [anon_sym_do] = ACTIONS(1015), - [anon_sym_try] = ACTIONS(1015), - [anon_sym_with] = ACTIONS(1015), - [anon_sym_break] = ACTIONS(1015), - [anon_sym_continue] = ACTIONS(1015), - [anon_sym_debugger] = ACTIONS(1015), - [anon_sym_return] = ACTIONS(1015), - [anon_sym_throw] = ACTIONS(1015), - [anon_sym_SEMI] = ACTIONS(1013), - [anon_sym_case] = ACTIONS(1015), - [anon_sym_yield] = ACTIONS(1015), - [anon_sym_LBRACK] = ACTIONS(1013), - [anon_sym_LT] = ACTIONS(1015), - [anon_sym_GT] = ACTIONS(1017), - [anon_sym_SLASH] = ACTIONS(1015), - [anon_sym_DOT] = ACTIONS(1017), - [anon_sym_class] = ACTIONS(1015), - [anon_sym_async] = ACTIONS(1015), - [anon_sym_function] = ACTIONS(1015), - [anon_sym_QMARK_DOT] = ACTIONS(1019), - [anon_sym_new] = ACTIONS(1015), - [anon_sym_QMARK] = ACTIONS(1017), - [anon_sym_AMP_AMP] = ACTIONS(1019), - [anon_sym_PIPE_PIPE] = ACTIONS(1019), - [anon_sym_GT_GT] = ACTIONS(1017), - [anon_sym_GT_GT_GT] = ACTIONS(1019), - [anon_sym_LT_LT] = ACTIONS(1019), - [anon_sym_AMP] = ACTIONS(1017), - [anon_sym_CARET] = ACTIONS(1019), - [anon_sym_PIPE] = ACTIONS(1017), - [anon_sym_PLUS] = ACTIONS(1015), - [anon_sym_DASH] = ACTIONS(1015), - [anon_sym_PERCENT] = ACTIONS(1019), - [anon_sym_STAR_STAR] = ACTIONS(1019), - [anon_sym_LT_EQ] = ACTIONS(1019), - [anon_sym_EQ_EQ] = ACTIONS(1017), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1019), - [anon_sym_BANG_EQ] = ACTIONS(1017), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1019), - [anon_sym_GT_EQ] = ACTIONS(1019), - [anon_sym_QMARK_QMARK] = ACTIONS(1019), - [anon_sym_instanceof] = ACTIONS(1017), - [anon_sym_TILDE] = ACTIONS(1013), - [anon_sym_void] = ACTIONS(1015), - [anon_sym_delete] = ACTIONS(1015), - [anon_sym_PLUS_PLUS] = ACTIONS(1013), - [anon_sym_DASH_DASH] = ACTIONS(1013), - [anon_sym_DQUOTE] = ACTIONS(1013), - [anon_sym_SQUOTE] = ACTIONS(1013), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1013), - [sym_number] = ACTIONS(1013), - [sym_this] = ACTIONS(1015), - [sym_super] = ACTIONS(1015), - [sym_true] = ACTIONS(1015), - [sym_false] = ACTIONS(1015), - [sym_null] = ACTIONS(1015), - [sym_undefined] = ACTIONS(1015), - [anon_sym_AT] = ACTIONS(1013), - [anon_sym_static] = ACTIONS(1015), - [anon_sym_abstract] = ACTIONS(1015), - [anon_sym_get] = ACTIONS(1015), - [anon_sym_set] = ACTIONS(1015), - [anon_sym_declare] = ACTIONS(1015), - [anon_sym_public] = ACTIONS(1015), - [anon_sym_private] = ACTIONS(1015), - [anon_sym_protected] = ACTIONS(1015), - [anon_sym_module] = ACTIONS(1015), - [anon_sym_any] = ACTIONS(1015), - [anon_sym_number] = ACTIONS(1015), - [anon_sym_boolean] = ACTIONS(1015), - [anon_sym_string] = ACTIONS(1015), - [anon_sym_symbol] = ACTIONS(1015), - [anon_sym_interface] = ACTIONS(1015), - [anon_sym_enum] = ACTIONS(1015), - [sym_readonly] = ACTIONS(1015), - [sym__automatic_semicolon] = ACTIONS(1021), - }, - [81] = { + [85] = { [ts_builtin_sym_end] = ACTIONS(1023), [sym_identifier] = ACTIONS(1025), [anon_sym_export] = ACTIONS(1025), @@ -19939,7 +20409,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_readonly] = ACTIONS(1025), [sym__automatic_semicolon] = ACTIONS(1031), }, - [82] = { + [86] = { [ts_builtin_sym_end] = ACTIONS(1033), [sym_identifier] = ACTIONS(1035), [anon_sym_export] = ACTIONS(1035), @@ -20041,642 +20511,434 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(1035), [anon_sym_enum] = ACTIONS(1035), [sym_readonly] = ACTIONS(1035), - [sym__automatic_semicolon] = ACTIONS(1041), - }, - [83] = { - [ts_builtin_sym_end] = ACTIONS(1043), - [sym_identifier] = ACTIONS(1045), - [anon_sym_export] = ACTIONS(1045), - [anon_sym_STAR] = ACTIONS(1047), - [anon_sym_default] = ACTIONS(1045), - [anon_sym_as] = ACTIONS(1047), - [anon_sym_namespace] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(1043), - [anon_sym_COMMA] = ACTIONS(1049), - [anon_sym_RBRACE] = ACTIONS(1043), - [anon_sym_type] = ACTIONS(1045), - [anon_sym_typeof] = ACTIONS(1045), - [anon_sym_import] = ACTIONS(1045), - [anon_sym_var] = ACTIONS(1045), - [anon_sym_let] = ACTIONS(1045), - [anon_sym_const] = ACTIONS(1045), - [anon_sym_BANG] = ACTIONS(1045), - [anon_sym_else] = ACTIONS(1045), - [anon_sym_if] = ACTIONS(1045), - [anon_sym_switch] = ACTIONS(1045), - [anon_sym_for] = ACTIONS(1045), - [anon_sym_LPAREN] = ACTIONS(1043), - [anon_sym_await] = ACTIONS(1045), - [anon_sym_in] = ACTIONS(1047), - [anon_sym_while] = ACTIONS(1045), - [anon_sym_do] = ACTIONS(1045), - [anon_sym_try] = ACTIONS(1045), - [anon_sym_with] = ACTIONS(1045), - [anon_sym_break] = ACTIONS(1045), - [anon_sym_continue] = ACTIONS(1045), - [anon_sym_debugger] = ACTIONS(1045), - [anon_sym_return] = ACTIONS(1045), - [anon_sym_throw] = ACTIONS(1045), - [anon_sym_SEMI] = ACTIONS(1043), - [anon_sym_case] = ACTIONS(1045), - [anon_sym_yield] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1043), - [anon_sym_LT] = ACTIONS(1045), - [anon_sym_GT] = ACTIONS(1047), - [anon_sym_SLASH] = ACTIONS(1045), - [anon_sym_DOT] = ACTIONS(1047), - [anon_sym_class] = ACTIONS(1045), - [anon_sym_async] = ACTIONS(1045), - [anon_sym_function] = ACTIONS(1045), - [anon_sym_QMARK_DOT] = ACTIONS(1049), - [anon_sym_new] = ACTIONS(1045), - [anon_sym_QMARK] = ACTIONS(1047), - [anon_sym_AMP_AMP] = ACTIONS(1049), - [anon_sym_PIPE_PIPE] = ACTIONS(1049), - [anon_sym_GT_GT] = ACTIONS(1047), - [anon_sym_GT_GT_GT] = ACTIONS(1049), - [anon_sym_LT_LT] = ACTIONS(1049), - [anon_sym_AMP] = ACTIONS(1047), - [anon_sym_CARET] = ACTIONS(1049), - [anon_sym_PIPE] = ACTIONS(1047), - [anon_sym_PLUS] = ACTIONS(1045), - [anon_sym_DASH] = ACTIONS(1045), - [anon_sym_PERCENT] = ACTIONS(1049), - [anon_sym_STAR_STAR] = ACTIONS(1049), - [anon_sym_LT_EQ] = ACTIONS(1049), - [anon_sym_EQ_EQ] = ACTIONS(1047), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1049), - [anon_sym_BANG_EQ] = ACTIONS(1047), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1049), - [anon_sym_GT_EQ] = ACTIONS(1049), - [anon_sym_QMARK_QMARK] = ACTIONS(1049), - [anon_sym_instanceof] = ACTIONS(1047), - [anon_sym_TILDE] = ACTIONS(1043), - [anon_sym_void] = ACTIONS(1045), - [anon_sym_delete] = ACTIONS(1045), - [anon_sym_PLUS_PLUS] = ACTIONS(1043), - [anon_sym_DASH_DASH] = ACTIONS(1043), - [anon_sym_DQUOTE] = ACTIONS(1043), - [anon_sym_SQUOTE] = ACTIONS(1043), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1043), - [sym_number] = ACTIONS(1043), - [sym_this] = ACTIONS(1045), - [sym_super] = ACTIONS(1045), - [sym_true] = ACTIONS(1045), - [sym_false] = ACTIONS(1045), - [sym_null] = ACTIONS(1045), - [sym_undefined] = ACTIONS(1045), - [anon_sym_AT] = ACTIONS(1043), - [anon_sym_static] = ACTIONS(1045), - [anon_sym_abstract] = ACTIONS(1045), - [anon_sym_get] = ACTIONS(1045), - [anon_sym_set] = ACTIONS(1045), - [anon_sym_declare] = ACTIONS(1045), - [anon_sym_public] = ACTIONS(1045), - [anon_sym_private] = ACTIONS(1045), - [anon_sym_protected] = ACTIONS(1045), - [anon_sym_module] = ACTIONS(1045), - [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_interface] = ACTIONS(1045), - [anon_sym_enum] = ACTIONS(1045), - [sym_readonly] = ACTIONS(1045), - [sym__automatic_semicolon] = ACTIONS(1051), - }, - [84] = { - [ts_builtin_sym_end] = ACTIONS(1053), - [sym_identifier] = ACTIONS(1055), - [anon_sym_export] = ACTIONS(1055), - [anon_sym_STAR] = ACTIONS(1057), - [anon_sym_default] = ACTIONS(1055), - [anon_sym_as] = ACTIONS(1057), - [anon_sym_namespace] = ACTIONS(1055), - [anon_sym_LBRACE] = ACTIONS(1053), - [anon_sym_COMMA] = ACTIONS(1059), - [anon_sym_RBRACE] = ACTIONS(1053), - [anon_sym_type] = ACTIONS(1055), - [anon_sym_typeof] = ACTIONS(1055), - [anon_sym_import] = ACTIONS(1055), - [anon_sym_var] = ACTIONS(1055), - [anon_sym_let] = ACTIONS(1055), - [anon_sym_const] = ACTIONS(1055), - [anon_sym_BANG] = ACTIONS(1055), - [anon_sym_else] = ACTIONS(1055), - [anon_sym_if] = ACTIONS(1055), - [anon_sym_switch] = ACTIONS(1055), - [anon_sym_for] = ACTIONS(1055), - [anon_sym_LPAREN] = ACTIONS(1053), - [anon_sym_await] = ACTIONS(1055), - [anon_sym_in] = ACTIONS(1057), - [anon_sym_while] = ACTIONS(1055), - [anon_sym_do] = ACTIONS(1055), - [anon_sym_try] = ACTIONS(1055), - [anon_sym_with] = ACTIONS(1055), - [anon_sym_break] = ACTIONS(1055), - [anon_sym_continue] = ACTIONS(1055), - [anon_sym_debugger] = ACTIONS(1055), - [anon_sym_return] = ACTIONS(1055), - [anon_sym_throw] = ACTIONS(1055), - [anon_sym_SEMI] = ACTIONS(1053), - [anon_sym_case] = ACTIONS(1055), - [anon_sym_yield] = ACTIONS(1055), - [anon_sym_LBRACK] = ACTIONS(1053), - [anon_sym_LT] = ACTIONS(1055), - [anon_sym_GT] = ACTIONS(1057), - [anon_sym_SLASH] = ACTIONS(1055), - [anon_sym_DOT] = ACTIONS(1057), - [anon_sym_class] = ACTIONS(1055), - [anon_sym_async] = ACTIONS(1055), - [anon_sym_function] = ACTIONS(1055), - [anon_sym_QMARK_DOT] = ACTIONS(1059), - [anon_sym_new] = ACTIONS(1055), - [anon_sym_QMARK] = ACTIONS(1057), - [anon_sym_AMP_AMP] = ACTIONS(1059), - [anon_sym_PIPE_PIPE] = ACTIONS(1059), - [anon_sym_GT_GT] = ACTIONS(1057), - [anon_sym_GT_GT_GT] = ACTIONS(1059), - [anon_sym_LT_LT] = ACTIONS(1059), - [anon_sym_AMP] = ACTIONS(1057), - [anon_sym_CARET] = ACTIONS(1059), - [anon_sym_PIPE] = ACTIONS(1057), - [anon_sym_PLUS] = ACTIONS(1055), - [anon_sym_DASH] = ACTIONS(1055), - [anon_sym_PERCENT] = ACTIONS(1059), - [anon_sym_STAR_STAR] = ACTIONS(1059), - [anon_sym_LT_EQ] = ACTIONS(1059), - [anon_sym_EQ_EQ] = ACTIONS(1057), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1059), - [anon_sym_BANG_EQ] = ACTIONS(1057), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1059), - [anon_sym_GT_EQ] = ACTIONS(1059), - [anon_sym_QMARK_QMARK] = ACTIONS(1059), - [anon_sym_instanceof] = ACTIONS(1057), - [anon_sym_TILDE] = ACTIONS(1053), - [anon_sym_void] = ACTIONS(1055), - [anon_sym_delete] = ACTIONS(1055), - [anon_sym_PLUS_PLUS] = ACTIONS(1053), - [anon_sym_DASH_DASH] = ACTIONS(1053), - [anon_sym_DQUOTE] = ACTIONS(1053), - [anon_sym_SQUOTE] = ACTIONS(1053), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1053), - [sym_number] = ACTIONS(1053), - [sym_this] = ACTIONS(1055), - [sym_super] = ACTIONS(1055), - [sym_true] = ACTIONS(1055), - [sym_false] = ACTIONS(1055), - [sym_null] = ACTIONS(1055), - [sym_undefined] = ACTIONS(1055), - [anon_sym_AT] = ACTIONS(1053), - [anon_sym_static] = ACTIONS(1055), - [anon_sym_abstract] = ACTIONS(1055), - [anon_sym_get] = ACTIONS(1055), - [anon_sym_set] = ACTIONS(1055), - [anon_sym_declare] = ACTIONS(1055), - [anon_sym_public] = ACTIONS(1055), - [anon_sym_private] = ACTIONS(1055), - [anon_sym_protected] = ACTIONS(1055), - [anon_sym_module] = ACTIONS(1055), - [anon_sym_any] = ACTIONS(1055), - [anon_sym_number] = ACTIONS(1055), - [anon_sym_boolean] = ACTIONS(1055), - [anon_sym_string] = ACTIONS(1055), - [anon_sym_symbol] = ACTIONS(1055), - [anon_sym_interface] = ACTIONS(1055), - [anon_sym_enum] = ACTIONS(1055), - [sym_readonly] = ACTIONS(1055), - [sym__automatic_semicolon] = ACTIONS(1061), - }, - [85] = { - [ts_builtin_sym_end] = ACTIONS(1063), - [sym_identifier] = ACTIONS(1065), - [anon_sym_export] = ACTIONS(1065), - [anon_sym_STAR] = ACTIONS(1067), - [anon_sym_default] = ACTIONS(1065), - [anon_sym_as] = ACTIONS(1067), - [anon_sym_namespace] = ACTIONS(1065), - [anon_sym_LBRACE] = ACTIONS(1063), - [anon_sym_COMMA] = ACTIONS(1069), - [anon_sym_RBRACE] = ACTIONS(1063), - [anon_sym_type] = ACTIONS(1065), - [anon_sym_typeof] = ACTIONS(1065), - [anon_sym_import] = ACTIONS(1065), - [anon_sym_var] = ACTIONS(1065), - [anon_sym_let] = ACTIONS(1065), - [anon_sym_const] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1065), - [anon_sym_else] = ACTIONS(1065), - [anon_sym_if] = ACTIONS(1065), - [anon_sym_switch] = ACTIONS(1065), - [anon_sym_for] = ACTIONS(1065), - [anon_sym_LPAREN] = ACTIONS(1063), - [anon_sym_await] = ACTIONS(1065), - [anon_sym_in] = ACTIONS(1067), - [anon_sym_while] = ACTIONS(1065), - [anon_sym_do] = ACTIONS(1065), - [anon_sym_try] = ACTIONS(1065), - [anon_sym_with] = ACTIONS(1065), - [anon_sym_break] = ACTIONS(1065), - [anon_sym_continue] = ACTIONS(1065), - [anon_sym_debugger] = ACTIONS(1065), - [anon_sym_return] = ACTIONS(1065), - [anon_sym_throw] = ACTIONS(1065), - [anon_sym_SEMI] = ACTIONS(1063), - [anon_sym_case] = ACTIONS(1065), - [anon_sym_yield] = ACTIONS(1065), - [anon_sym_LBRACK] = ACTIONS(1063), - [anon_sym_LT] = ACTIONS(1065), - [anon_sym_GT] = ACTIONS(1067), - [anon_sym_SLASH] = ACTIONS(1065), - [anon_sym_DOT] = ACTIONS(1067), - [anon_sym_class] = ACTIONS(1065), - [anon_sym_async] = ACTIONS(1065), - [anon_sym_function] = ACTIONS(1065), - [anon_sym_QMARK_DOT] = ACTIONS(1069), - [anon_sym_new] = ACTIONS(1065), - [anon_sym_QMARK] = ACTIONS(1067), - [anon_sym_AMP_AMP] = ACTIONS(1069), - [anon_sym_PIPE_PIPE] = ACTIONS(1069), - [anon_sym_GT_GT] = ACTIONS(1067), - [anon_sym_GT_GT_GT] = ACTIONS(1069), - [anon_sym_LT_LT] = ACTIONS(1069), - [anon_sym_AMP] = ACTIONS(1067), - [anon_sym_CARET] = ACTIONS(1069), - [anon_sym_PIPE] = ACTIONS(1067), - [anon_sym_PLUS] = ACTIONS(1065), - [anon_sym_DASH] = ACTIONS(1065), - [anon_sym_PERCENT] = ACTIONS(1069), - [anon_sym_STAR_STAR] = ACTIONS(1069), - [anon_sym_LT_EQ] = ACTIONS(1069), - [anon_sym_EQ_EQ] = ACTIONS(1067), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1069), - [anon_sym_BANG_EQ] = ACTIONS(1067), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1069), - [anon_sym_GT_EQ] = ACTIONS(1069), - [anon_sym_QMARK_QMARK] = ACTIONS(1069), - [anon_sym_instanceof] = ACTIONS(1067), - [anon_sym_TILDE] = ACTIONS(1063), - [anon_sym_void] = ACTIONS(1065), - [anon_sym_delete] = ACTIONS(1065), - [anon_sym_PLUS_PLUS] = ACTIONS(1063), - [anon_sym_DASH_DASH] = ACTIONS(1063), - [anon_sym_DQUOTE] = ACTIONS(1063), - [anon_sym_SQUOTE] = ACTIONS(1063), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1063), - [sym_number] = ACTIONS(1063), - [sym_this] = ACTIONS(1065), - [sym_super] = ACTIONS(1065), - [sym_true] = ACTIONS(1065), - [sym_false] = ACTIONS(1065), - [sym_null] = ACTIONS(1065), - [sym_undefined] = ACTIONS(1065), - [anon_sym_AT] = ACTIONS(1063), - [anon_sym_static] = ACTIONS(1065), - [anon_sym_abstract] = ACTIONS(1065), - [anon_sym_get] = ACTIONS(1065), - [anon_sym_set] = ACTIONS(1065), - [anon_sym_declare] = ACTIONS(1065), - [anon_sym_public] = ACTIONS(1065), - [anon_sym_private] = ACTIONS(1065), - [anon_sym_protected] = ACTIONS(1065), - [anon_sym_module] = ACTIONS(1065), - [anon_sym_any] = ACTIONS(1065), - [anon_sym_number] = ACTIONS(1065), - [anon_sym_boolean] = ACTIONS(1065), - [anon_sym_string] = ACTIONS(1065), - [anon_sym_symbol] = ACTIONS(1065), - [anon_sym_interface] = ACTIONS(1065), - [anon_sym_enum] = ACTIONS(1065), - [sym_readonly] = ACTIONS(1065), - [sym__automatic_semicolon] = ACTIONS(1071), - }, - [86] = { - [ts_builtin_sym_end] = ACTIONS(947), - [sym_identifier] = ACTIONS(949), - [anon_sym_export] = ACTIONS(949), - [anon_sym_STAR] = ACTIONS(949), - [anon_sym_default] = ACTIONS(949), - [anon_sym_as] = ACTIONS(949), - [anon_sym_namespace] = ACTIONS(949), - [anon_sym_LBRACE] = ACTIONS(947), - [anon_sym_COMMA] = ACTIONS(947), - [anon_sym_RBRACE] = ACTIONS(947), - [anon_sym_type] = ACTIONS(949), - [anon_sym_typeof] = ACTIONS(949), - [anon_sym_import] = ACTIONS(949), - [anon_sym_var] = ACTIONS(949), - [anon_sym_let] = ACTIONS(949), - [anon_sym_const] = ACTIONS(949), - [anon_sym_BANG] = ACTIONS(949), - [anon_sym_else] = ACTIONS(949), - [anon_sym_if] = ACTIONS(949), - [anon_sym_switch] = ACTIONS(949), - [anon_sym_for] = ACTIONS(949), - [anon_sym_LPAREN] = ACTIONS(947), - [anon_sym_await] = ACTIONS(949), - [anon_sym_in] = ACTIONS(949), - [anon_sym_while] = ACTIONS(949), - [anon_sym_do] = ACTIONS(949), - [anon_sym_try] = ACTIONS(949), - [anon_sym_with] = ACTIONS(949), - [anon_sym_break] = ACTIONS(949), - [anon_sym_continue] = ACTIONS(949), - [anon_sym_debugger] = ACTIONS(949), - [anon_sym_return] = ACTIONS(949), - [anon_sym_throw] = ACTIONS(949), - [anon_sym_SEMI] = ACTIONS(947), - [anon_sym_case] = ACTIONS(949), - [anon_sym_yield] = ACTIONS(949), - [anon_sym_LBRACK] = ACTIONS(947), - [anon_sym_LT] = ACTIONS(949), - [anon_sym_GT] = ACTIONS(949), - [anon_sym_SLASH] = ACTIONS(949), - [anon_sym_DOT] = ACTIONS(949), - [anon_sym_class] = ACTIONS(949), - [anon_sym_async] = ACTIONS(949), - [anon_sym_function] = ACTIONS(949), - [anon_sym_QMARK_DOT] = ACTIONS(947), - [anon_sym_new] = ACTIONS(949), - [anon_sym_QMARK] = ACTIONS(949), - [anon_sym_AMP_AMP] = ACTIONS(947), - [anon_sym_PIPE_PIPE] = ACTIONS(947), - [anon_sym_GT_GT] = ACTIONS(949), - [anon_sym_GT_GT_GT] = ACTIONS(947), - [anon_sym_LT_LT] = ACTIONS(947), - [anon_sym_AMP] = ACTIONS(949), - [anon_sym_CARET] = ACTIONS(947), - [anon_sym_PIPE] = ACTIONS(949), - [anon_sym_PLUS] = ACTIONS(949), - [anon_sym_DASH] = ACTIONS(949), - [anon_sym_PERCENT] = ACTIONS(947), - [anon_sym_STAR_STAR] = ACTIONS(947), - [anon_sym_LT_EQ] = ACTIONS(947), - [anon_sym_EQ_EQ] = ACTIONS(949), - [anon_sym_EQ_EQ_EQ] = ACTIONS(947), - [anon_sym_BANG_EQ] = ACTIONS(949), - [anon_sym_BANG_EQ_EQ] = ACTIONS(947), - [anon_sym_GT_EQ] = ACTIONS(947), - [anon_sym_QMARK_QMARK] = ACTIONS(947), - [anon_sym_instanceof] = ACTIONS(949), - [anon_sym_TILDE] = ACTIONS(947), - [anon_sym_void] = ACTIONS(949), - [anon_sym_delete] = ACTIONS(949), - [anon_sym_PLUS_PLUS] = ACTIONS(947), - [anon_sym_DASH_DASH] = ACTIONS(947), - [anon_sym_DQUOTE] = ACTIONS(947), - [anon_sym_SQUOTE] = ACTIONS(947), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(947), - [sym_number] = ACTIONS(947), - [sym_this] = ACTIONS(949), - [sym_super] = ACTIONS(949), - [sym_true] = ACTIONS(949), - [sym_false] = ACTIONS(949), - [sym_null] = ACTIONS(949), - [sym_undefined] = ACTIONS(949), - [anon_sym_AT] = ACTIONS(947), - [anon_sym_static] = ACTIONS(949), - [anon_sym_abstract] = ACTIONS(949), - [anon_sym_get] = ACTIONS(949), - [anon_sym_set] = ACTIONS(949), - [anon_sym_declare] = ACTIONS(949), - [anon_sym_public] = ACTIONS(949), - [anon_sym_private] = ACTIONS(949), - [anon_sym_protected] = ACTIONS(949), - [anon_sym_module] = ACTIONS(949), - [anon_sym_any] = ACTIONS(949), - [anon_sym_number] = ACTIONS(949), - [anon_sym_boolean] = ACTIONS(949), - [anon_sym_string] = ACTIONS(949), - [anon_sym_symbol] = ACTIONS(949), - [anon_sym_interface] = ACTIONS(949), - [anon_sym_enum] = ACTIONS(949), - [sym_readonly] = ACTIONS(949), - [sym__automatic_semicolon] = ACTIONS(1073), + [sym__automatic_semicolon] = ACTIONS(1039), }, [87] = { - [ts_builtin_sym_end] = ACTIONS(1075), - [sym_identifier] = ACTIONS(1077), - [anon_sym_export] = ACTIONS(1077), - [anon_sym_STAR] = ACTIONS(1077), - [anon_sym_default] = ACTIONS(1077), - [anon_sym_as] = ACTIONS(1077), - [anon_sym_namespace] = ACTIONS(1077), - [anon_sym_LBRACE] = ACTIONS(1075), - [anon_sym_COMMA] = ACTIONS(1075), - [anon_sym_RBRACE] = ACTIONS(1075), - [anon_sym_type] = ACTIONS(1077), - [anon_sym_typeof] = ACTIONS(1077), - [anon_sym_import] = ACTIONS(1077), - [anon_sym_var] = ACTIONS(1077), - [anon_sym_let] = ACTIONS(1077), - [anon_sym_const] = ACTIONS(1077), - [anon_sym_BANG] = ACTIONS(1077), - [anon_sym_else] = ACTIONS(1077), - [anon_sym_if] = ACTIONS(1077), - [anon_sym_switch] = ACTIONS(1077), - [anon_sym_for] = ACTIONS(1077), - [anon_sym_LPAREN] = ACTIONS(1075), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_in] = ACTIONS(1077), - [anon_sym_while] = ACTIONS(1077), - [anon_sym_do] = ACTIONS(1077), - [anon_sym_try] = ACTIONS(1077), - [anon_sym_with] = ACTIONS(1077), - [anon_sym_break] = ACTIONS(1077), - [anon_sym_continue] = ACTIONS(1077), - [anon_sym_debugger] = ACTIONS(1077), - [anon_sym_return] = ACTIONS(1077), - [anon_sym_throw] = ACTIONS(1077), - [anon_sym_SEMI] = ACTIONS(1075), - [anon_sym_case] = ACTIONS(1077), - [anon_sym_yield] = ACTIONS(1077), - [anon_sym_LBRACK] = ACTIONS(1075), - [anon_sym_LT] = ACTIONS(1077), - [anon_sym_GT] = ACTIONS(1077), - [anon_sym_SLASH] = ACTIONS(1077), - [anon_sym_DOT] = ACTIONS(1077), - [anon_sym_class] = ACTIONS(1077), - [anon_sym_async] = ACTIONS(1077), - [anon_sym_function] = ACTIONS(1077), - [anon_sym_QMARK_DOT] = ACTIONS(1075), - [anon_sym_new] = ACTIONS(1077), - [anon_sym_QMARK] = ACTIONS(1077), - [anon_sym_AMP_AMP] = ACTIONS(1075), - [anon_sym_PIPE_PIPE] = ACTIONS(1075), - [anon_sym_GT_GT] = ACTIONS(1077), - [anon_sym_GT_GT_GT] = ACTIONS(1075), - [anon_sym_LT_LT] = ACTIONS(1075), - [anon_sym_AMP] = ACTIONS(1077), - [anon_sym_CARET] = ACTIONS(1075), - [anon_sym_PIPE] = ACTIONS(1077), - [anon_sym_PLUS] = ACTIONS(1077), - [anon_sym_DASH] = ACTIONS(1077), - [anon_sym_PERCENT] = ACTIONS(1075), - [anon_sym_STAR_STAR] = ACTIONS(1075), - [anon_sym_LT_EQ] = ACTIONS(1075), - [anon_sym_EQ_EQ] = ACTIONS(1077), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1075), - [anon_sym_BANG_EQ] = ACTIONS(1077), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1075), - [anon_sym_GT_EQ] = ACTIONS(1075), - [anon_sym_QMARK_QMARK] = ACTIONS(1075), - [anon_sym_instanceof] = ACTIONS(1077), - [anon_sym_TILDE] = ACTIONS(1075), - [anon_sym_void] = ACTIONS(1077), - [anon_sym_delete] = ACTIONS(1077), - [anon_sym_PLUS_PLUS] = ACTIONS(1075), - [anon_sym_DASH_DASH] = ACTIONS(1075), - [anon_sym_DQUOTE] = ACTIONS(1075), - [anon_sym_SQUOTE] = ACTIONS(1075), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1075), - [sym_number] = ACTIONS(1075), - [sym_this] = ACTIONS(1077), - [sym_super] = ACTIONS(1077), - [sym_true] = ACTIONS(1077), - [sym_false] = ACTIONS(1077), - [sym_null] = ACTIONS(1077), - [sym_undefined] = ACTIONS(1077), - [anon_sym_AT] = ACTIONS(1075), - [anon_sym_static] = ACTIONS(1077), - [anon_sym_abstract] = ACTIONS(1077), - [anon_sym_get] = ACTIONS(1077), - [anon_sym_set] = ACTIONS(1077), - [anon_sym_declare] = ACTIONS(1077), - [anon_sym_public] = ACTIONS(1077), - [anon_sym_private] = ACTIONS(1077), - [anon_sym_protected] = ACTIONS(1077), - [anon_sym_module] = ACTIONS(1077), - [anon_sym_any] = ACTIONS(1077), - [anon_sym_number] = ACTIONS(1077), - [anon_sym_boolean] = ACTIONS(1077), - [anon_sym_string] = ACTIONS(1077), - [anon_sym_symbol] = ACTIONS(1077), - [anon_sym_interface] = ACTIONS(1077), - [anon_sym_enum] = ACTIONS(1077), - [sym_readonly] = ACTIONS(1077), - [sym__automatic_semicolon] = ACTIONS(1075), + [ts_builtin_sym_end] = ACTIONS(1041), + [sym_identifier] = ACTIONS(1043), + [anon_sym_export] = ACTIONS(1043), + [anon_sym_STAR] = ACTIONS(1045), + [anon_sym_default] = ACTIONS(1043), + [anon_sym_as] = ACTIONS(1045), + [anon_sym_namespace] = ACTIONS(1043), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_COMMA] = ACTIONS(1047), + [anon_sym_RBRACE] = ACTIONS(1041), + [anon_sym_type] = ACTIONS(1043), + [anon_sym_typeof] = ACTIONS(1043), + [anon_sym_import] = ACTIONS(1043), + [anon_sym_var] = ACTIONS(1043), + [anon_sym_let] = ACTIONS(1043), + [anon_sym_const] = ACTIONS(1043), + [anon_sym_BANG] = ACTIONS(1043), + [anon_sym_else] = ACTIONS(1043), + [anon_sym_if] = ACTIONS(1043), + [anon_sym_switch] = ACTIONS(1043), + [anon_sym_for] = ACTIONS(1043), + [anon_sym_LPAREN] = ACTIONS(1041), + [anon_sym_await] = ACTIONS(1043), + [anon_sym_in] = ACTIONS(1045), + [anon_sym_while] = ACTIONS(1043), + [anon_sym_do] = ACTIONS(1043), + [anon_sym_try] = ACTIONS(1043), + [anon_sym_with] = ACTIONS(1043), + [anon_sym_break] = ACTIONS(1043), + [anon_sym_continue] = ACTIONS(1043), + [anon_sym_debugger] = ACTIONS(1043), + [anon_sym_return] = ACTIONS(1043), + [anon_sym_throw] = ACTIONS(1043), + [anon_sym_SEMI] = ACTIONS(1041), + [anon_sym_case] = ACTIONS(1043), + [anon_sym_yield] = ACTIONS(1043), + [anon_sym_LBRACK] = ACTIONS(1041), + [anon_sym_LT] = ACTIONS(1043), + [anon_sym_GT] = ACTIONS(1045), + [anon_sym_SLASH] = ACTIONS(1043), + [anon_sym_DOT] = ACTIONS(1045), + [anon_sym_class] = ACTIONS(1043), + [anon_sym_async] = ACTIONS(1043), + [anon_sym_function] = ACTIONS(1043), + [anon_sym_QMARK_DOT] = ACTIONS(1047), + [anon_sym_new] = ACTIONS(1043), + [anon_sym_QMARK] = ACTIONS(1045), + [anon_sym_AMP_AMP] = ACTIONS(1047), + [anon_sym_PIPE_PIPE] = ACTIONS(1047), + [anon_sym_GT_GT] = ACTIONS(1045), + [anon_sym_GT_GT_GT] = ACTIONS(1047), + [anon_sym_LT_LT] = ACTIONS(1047), + [anon_sym_AMP] = ACTIONS(1045), + [anon_sym_CARET] = ACTIONS(1047), + [anon_sym_PIPE] = ACTIONS(1045), + [anon_sym_PLUS] = ACTIONS(1043), + [anon_sym_DASH] = ACTIONS(1043), + [anon_sym_PERCENT] = ACTIONS(1047), + [anon_sym_STAR_STAR] = ACTIONS(1047), + [anon_sym_LT_EQ] = ACTIONS(1047), + [anon_sym_EQ_EQ] = ACTIONS(1045), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1047), + [anon_sym_BANG_EQ] = ACTIONS(1045), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1047), + [anon_sym_GT_EQ] = ACTIONS(1047), + [anon_sym_QMARK_QMARK] = ACTIONS(1047), + [anon_sym_instanceof] = ACTIONS(1045), + [anon_sym_TILDE] = ACTIONS(1041), + [anon_sym_void] = ACTIONS(1043), + [anon_sym_delete] = ACTIONS(1043), + [anon_sym_PLUS_PLUS] = ACTIONS(1041), + [anon_sym_DASH_DASH] = ACTIONS(1041), + [anon_sym_DQUOTE] = ACTIONS(1041), + [anon_sym_SQUOTE] = ACTIONS(1041), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1041), + [sym_number] = ACTIONS(1041), + [sym_this] = ACTIONS(1043), + [sym_super] = ACTIONS(1043), + [sym_true] = ACTIONS(1043), + [sym_false] = ACTIONS(1043), + [sym_null] = ACTIONS(1043), + [sym_undefined] = ACTIONS(1043), + [anon_sym_AT] = ACTIONS(1041), + [anon_sym_static] = ACTIONS(1043), + [anon_sym_abstract] = ACTIONS(1043), + [anon_sym_get] = ACTIONS(1043), + [anon_sym_set] = ACTIONS(1043), + [anon_sym_declare] = ACTIONS(1043), + [anon_sym_public] = ACTIONS(1043), + [anon_sym_private] = ACTIONS(1043), + [anon_sym_protected] = ACTIONS(1043), + [anon_sym_module] = ACTIONS(1043), + [anon_sym_any] = ACTIONS(1043), + [anon_sym_number] = ACTIONS(1043), + [anon_sym_boolean] = ACTIONS(1043), + [anon_sym_string] = ACTIONS(1043), + [anon_sym_symbol] = ACTIONS(1043), + [anon_sym_interface] = ACTIONS(1043), + [anon_sym_enum] = ACTIONS(1043), + [sym_readonly] = ACTIONS(1043), + [sym__automatic_semicolon] = ACTIONS(1049), }, [88] = { - [ts_builtin_sym_end] = ACTIONS(907), - [sym_identifier] = ACTIONS(909), - [anon_sym_export] = ACTIONS(909), - [anon_sym_STAR] = ACTIONS(909), - [anon_sym_default] = ACTIONS(909), - [anon_sym_as] = ACTIONS(909), - [anon_sym_namespace] = ACTIONS(909), - [anon_sym_LBRACE] = ACTIONS(907), - [anon_sym_COMMA] = ACTIONS(907), - [anon_sym_RBRACE] = ACTIONS(907), - [anon_sym_type] = ACTIONS(909), - [anon_sym_typeof] = ACTIONS(909), - [anon_sym_import] = ACTIONS(909), - [anon_sym_var] = ACTIONS(909), - [anon_sym_let] = ACTIONS(909), - [anon_sym_const] = ACTIONS(909), - [anon_sym_BANG] = ACTIONS(909), - [anon_sym_else] = ACTIONS(909), - [anon_sym_if] = ACTIONS(909), - [anon_sym_switch] = ACTIONS(909), - [anon_sym_for] = ACTIONS(909), - [anon_sym_LPAREN] = ACTIONS(907), - [anon_sym_await] = ACTIONS(909), - [anon_sym_in] = ACTIONS(909), - [anon_sym_while] = ACTIONS(909), - [anon_sym_do] = ACTIONS(909), - [anon_sym_try] = ACTIONS(909), - [anon_sym_with] = ACTIONS(909), - [anon_sym_break] = ACTIONS(909), - [anon_sym_continue] = ACTIONS(909), - [anon_sym_debugger] = ACTIONS(909), - [anon_sym_return] = ACTIONS(909), - [anon_sym_throw] = ACTIONS(909), - [anon_sym_SEMI] = ACTIONS(907), - [anon_sym_case] = ACTIONS(909), - [anon_sym_yield] = ACTIONS(909), - [anon_sym_LBRACK] = ACTIONS(907), - [anon_sym_LT] = ACTIONS(909), - [anon_sym_GT] = ACTIONS(909), - [anon_sym_SLASH] = ACTIONS(909), - [anon_sym_DOT] = ACTIONS(909), - [anon_sym_class] = ACTIONS(909), - [anon_sym_async] = ACTIONS(909), - [anon_sym_function] = ACTIONS(909), - [anon_sym_QMARK_DOT] = ACTIONS(907), - [anon_sym_new] = ACTIONS(909), - [anon_sym_QMARK] = ACTIONS(909), - [anon_sym_AMP_AMP] = ACTIONS(907), - [anon_sym_PIPE_PIPE] = ACTIONS(907), - [anon_sym_GT_GT] = ACTIONS(909), - [anon_sym_GT_GT_GT] = ACTIONS(907), - [anon_sym_LT_LT] = ACTIONS(907), - [anon_sym_AMP] = ACTIONS(909), - [anon_sym_CARET] = ACTIONS(907), - [anon_sym_PIPE] = ACTIONS(909), - [anon_sym_PLUS] = ACTIONS(909), - [anon_sym_DASH] = ACTIONS(909), - [anon_sym_PERCENT] = ACTIONS(907), - [anon_sym_STAR_STAR] = ACTIONS(907), - [anon_sym_LT_EQ] = ACTIONS(907), - [anon_sym_EQ_EQ] = ACTIONS(909), - [anon_sym_EQ_EQ_EQ] = ACTIONS(907), - [anon_sym_BANG_EQ] = ACTIONS(909), - [anon_sym_BANG_EQ_EQ] = ACTIONS(907), - [anon_sym_GT_EQ] = ACTIONS(907), - [anon_sym_QMARK_QMARK] = ACTIONS(907), - [anon_sym_instanceof] = ACTIONS(909), - [anon_sym_TILDE] = ACTIONS(907), - [anon_sym_void] = ACTIONS(909), - [anon_sym_delete] = ACTIONS(909), - [anon_sym_PLUS_PLUS] = ACTIONS(907), - [anon_sym_DASH_DASH] = ACTIONS(907), - [anon_sym_DQUOTE] = ACTIONS(907), - [anon_sym_SQUOTE] = ACTIONS(907), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(907), - [sym_number] = ACTIONS(907), - [sym_this] = ACTIONS(909), - [sym_super] = ACTIONS(909), - [sym_true] = ACTIONS(909), - [sym_false] = ACTIONS(909), - [sym_null] = ACTIONS(909), - [sym_undefined] = ACTIONS(909), - [anon_sym_AT] = ACTIONS(907), - [anon_sym_static] = ACTIONS(909), - [anon_sym_abstract] = ACTIONS(909), - [anon_sym_get] = ACTIONS(909), - [anon_sym_set] = ACTIONS(909), - [anon_sym_declare] = ACTIONS(909), - [anon_sym_public] = ACTIONS(909), - [anon_sym_private] = ACTIONS(909), - [anon_sym_protected] = ACTIONS(909), - [anon_sym_module] = ACTIONS(909), - [anon_sym_any] = ACTIONS(909), - [anon_sym_number] = ACTIONS(909), - [anon_sym_boolean] = ACTIONS(909), - [anon_sym_string] = ACTIONS(909), - [anon_sym_symbol] = ACTIONS(909), - [anon_sym_interface] = ACTIONS(909), - [anon_sym_enum] = ACTIONS(909), - [sym_readonly] = ACTIONS(909), - [sym__automatic_semicolon] = ACTIONS(1079), + [ts_builtin_sym_end] = ACTIONS(1051), + [sym_identifier] = ACTIONS(1053), + [anon_sym_export] = ACTIONS(1053), + [anon_sym_STAR] = ACTIONS(1055), + [anon_sym_default] = ACTIONS(1053), + [anon_sym_as] = ACTIONS(1055), + [anon_sym_namespace] = ACTIONS(1053), + [anon_sym_LBRACE] = ACTIONS(1051), + [anon_sym_COMMA] = ACTIONS(1057), + [anon_sym_RBRACE] = ACTIONS(1051), + [anon_sym_type] = ACTIONS(1053), + [anon_sym_typeof] = ACTIONS(1053), + [anon_sym_import] = ACTIONS(1053), + [anon_sym_var] = ACTIONS(1053), + [anon_sym_let] = ACTIONS(1053), + [anon_sym_const] = ACTIONS(1053), + [anon_sym_BANG] = ACTIONS(1053), + [anon_sym_else] = ACTIONS(1053), + [anon_sym_if] = ACTIONS(1053), + [anon_sym_switch] = ACTIONS(1053), + [anon_sym_for] = ACTIONS(1053), + [anon_sym_LPAREN] = ACTIONS(1051), + [anon_sym_await] = ACTIONS(1053), + [anon_sym_in] = ACTIONS(1055), + [anon_sym_while] = ACTIONS(1053), + [anon_sym_do] = ACTIONS(1053), + [anon_sym_try] = ACTIONS(1053), + [anon_sym_with] = ACTIONS(1053), + [anon_sym_break] = ACTIONS(1053), + [anon_sym_continue] = ACTIONS(1053), + [anon_sym_debugger] = ACTIONS(1053), + [anon_sym_return] = ACTIONS(1053), + [anon_sym_throw] = ACTIONS(1053), + [anon_sym_SEMI] = ACTIONS(1051), + [anon_sym_case] = ACTIONS(1053), + [anon_sym_yield] = ACTIONS(1053), + [anon_sym_LBRACK] = ACTIONS(1051), + [anon_sym_LT] = ACTIONS(1053), + [anon_sym_GT] = ACTIONS(1055), + [anon_sym_SLASH] = ACTIONS(1053), + [anon_sym_DOT] = ACTIONS(1055), + [anon_sym_class] = ACTIONS(1053), + [anon_sym_async] = ACTIONS(1053), + [anon_sym_function] = ACTIONS(1053), + [anon_sym_QMARK_DOT] = ACTIONS(1057), + [anon_sym_new] = ACTIONS(1053), + [anon_sym_QMARK] = ACTIONS(1055), + [anon_sym_AMP_AMP] = ACTIONS(1057), + [anon_sym_PIPE_PIPE] = ACTIONS(1057), + [anon_sym_GT_GT] = ACTIONS(1055), + [anon_sym_GT_GT_GT] = ACTIONS(1057), + [anon_sym_LT_LT] = ACTIONS(1057), + [anon_sym_AMP] = ACTIONS(1055), + [anon_sym_CARET] = ACTIONS(1057), + [anon_sym_PIPE] = ACTIONS(1055), + [anon_sym_PLUS] = ACTIONS(1053), + [anon_sym_DASH] = ACTIONS(1053), + [anon_sym_PERCENT] = ACTIONS(1057), + [anon_sym_STAR_STAR] = ACTIONS(1057), + [anon_sym_LT_EQ] = ACTIONS(1057), + [anon_sym_EQ_EQ] = ACTIONS(1055), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1057), + [anon_sym_BANG_EQ] = ACTIONS(1055), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1057), + [anon_sym_GT_EQ] = ACTIONS(1057), + [anon_sym_QMARK_QMARK] = ACTIONS(1057), + [anon_sym_instanceof] = ACTIONS(1055), + [anon_sym_TILDE] = ACTIONS(1051), + [anon_sym_void] = ACTIONS(1053), + [anon_sym_delete] = ACTIONS(1053), + [anon_sym_PLUS_PLUS] = ACTIONS(1051), + [anon_sym_DASH_DASH] = ACTIONS(1051), + [anon_sym_DQUOTE] = ACTIONS(1051), + [anon_sym_SQUOTE] = ACTIONS(1051), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1051), + [sym_number] = ACTIONS(1051), + [sym_this] = ACTIONS(1053), + [sym_super] = ACTIONS(1053), + [sym_true] = ACTIONS(1053), + [sym_false] = ACTIONS(1053), + [sym_null] = ACTIONS(1053), + [sym_undefined] = ACTIONS(1053), + [anon_sym_AT] = ACTIONS(1051), + [anon_sym_static] = ACTIONS(1053), + [anon_sym_abstract] = ACTIONS(1053), + [anon_sym_get] = ACTIONS(1053), + [anon_sym_set] = ACTIONS(1053), + [anon_sym_declare] = ACTIONS(1053), + [anon_sym_public] = ACTIONS(1053), + [anon_sym_private] = ACTIONS(1053), + [anon_sym_protected] = ACTIONS(1053), + [anon_sym_module] = ACTIONS(1053), + [anon_sym_any] = ACTIONS(1053), + [anon_sym_number] = ACTIONS(1053), + [anon_sym_boolean] = ACTIONS(1053), + [anon_sym_string] = ACTIONS(1053), + [anon_sym_symbol] = ACTIONS(1053), + [anon_sym_interface] = ACTIONS(1053), + [anon_sym_enum] = ACTIONS(1053), + [sym_readonly] = ACTIONS(1053), + [sym__automatic_semicolon] = ACTIONS(1059), }, [89] = { + [ts_builtin_sym_end] = ACTIONS(1061), + [sym_identifier] = ACTIONS(1063), + [anon_sym_export] = ACTIONS(1063), + [anon_sym_STAR] = ACTIONS(1065), + [anon_sym_default] = ACTIONS(1063), + [anon_sym_as] = ACTIONS(1065), + [anon_sym_namespace] = ACTIONS(1063), + [anon_sym_LBRACE] = ACTIONS(1061), + [anon_sym_COMMA] = ACTIONS(1067), + [anon_sym_RBRACE] = ACTIONS(1061), + [anon_sym_type] = ACTIONS(1063), + [anon_sym_typeof] = ACTIONS(1063), + [anon_sym_import] = ACTIONS(1063), + [anon_sym_var] = ACTIONS(1063), + [anon_sym_let] = ACTIONS(1063), + [anon_sym_const] = ACTIONS(1063), + [anon_sym_BANG] = ACTIONS(1063), + [anon_sym_else] = ACTIONS(1063), + [anon_sym_if] = ACTIONS(1063), + [anon_sym_switch] = ACTIONS(1063), + [anon_sym_for] = ACTIONS(1063), + [anon_sym_LPAREN] = ACTIONS(1061), + [anon_sym_await] = ACTIONS(1063), + [anon_sym_in] = ACTIONS(1065), + [anon_sym_while] = ACTIONS(1063), + [anon_sym_do] = ACTIONS(1063), + [anon_sym_try] = ACTIONS(1063), + [anon_sym_with] = ACTIONS(1063), + [anon_sym_break] = ACTIONS(1063), + [anon_sym_continue] = ACTIONS(1063), + [anon_sym_debugger] = ACTIONS(1063), + [anon_sym_return] = ACTIONS(1063), + [anon_sym_throw] = ACTIONS(1063), + [anon_sym_SEMI] = ACTIONS(1061), + [anon_sym_case] = ACTIONS(1063), + [anon_sym_yield] = ACTIONS(1063), + [anon_sym_LBRACK] = ACTIONS(1061), + [anon_sym_LT] = ACTIONS(1063), + [anon_sym_GT] = ACTIONS(1065), + [anon_sym_SLASH] = ACTIONS(1063), + [anon_sym_DOT] = ACTIONS(1065), + [anon_sym_class] = ACTIONS(1063), + [anon_sym_async] = ACTIONS(1063), + [anon_sym_function] = ACTIONS(1063), + [anon_sym_QMARK_DOT] = ACTIONS(1067), + [anon_sym_new] = ACTIONS(1063), + [anon_sym_QMARK] = ACTIONS(1065), + [anon_sym_AMP_AMP] = ACTIONS(1067), + [anon_sym_PIPE_PIPE] = ACTIONS(1067), + [anon_sym_GT_GT] = ACTIONS(1065), + [anon_sym_GT_GT_GT] = ACTIONS(1067), + [anon_sym_LT_LT] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1065), + [anon_sym_CARET] = ACTIONS(1067), + [anon_sym_PIPE] = ACTIONS(1065), + [anon_sym_PLUS] = ACTIONS(1063), + [anon_sym_DASH] = ACTIONS(1063), + [anon_sym_PERCENT] = ACTIONS(1067), + [anon_sym_STAR_STAR] = ACTIONS(1067), + [anon_sym_LT_EQ] = ACTIONS(1067), + [anon_sym_EQ_EQ] = ACTIONS(1065), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1067), + [anon_sym_BANG_EQ] = ACTIONS(1065), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1067), + [anon_sym_GT_EQ] = ACTIONS(1067), + [anon_sym_QMARK_QMARK] = ACTIONS(1067), + [anon_sym_instanceof] = ACTIONS(1065), + [anon_sym_TILDE] = ACTIONS(1061), + [anon_sym_void] = ACTIONS(1063), + [anon_sym_delete] = ACTIONS(1063), + [anon_sym_PLUS_PLUS] = ACTIONS(1061), + [anon_sym_DASH_DASH] = ACTIONS(1061), + [anon_sym_DQUOTE] = ACTIONS(1061), + [anon_sym_SQUOTE] = ACTIONS(1061), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1061), + [sym_number] = ACTIONS(1061), + [sym_this] = ACTIONS(1063), + [sym_super] = ACTIONS(1063), + [sym_true] = ACTIONS(1063), + [sym_false] = ACTIONS(1063), + [sym_null] = ACTIONS(1063), + [sym_undefined] = ACTIONS(1063), + [anon_sym_AT] = ACTIONS(1061), + [anon_sym_static] = ACTIONS(1063), + [anon_sym_abstract] = ACTIONS(1063), + [anon_sym_get] = ACTIONS(1063), + [anon_sym_set] = ACTIONS(1063), + [anon_sym_declare] = ACTIONS(1063), + [anon_sym_public] = ACTIONS(1063), + [anon_sym_private] = ACTIONS(1063), + [anon_sym_protected] = ACTIONS(1063), + [anon_sym_module] = ACTIONS(1063), + [anon_sym_any] = ACTIONS(1063), + [anon_sym_number] = ACTIONS(1063), + [anon_sym_boolean] = ACTIONS(1063), + [anon_sym_string] = ACTIONS(1063), + [anon_sym_symbol] = ACTIONS(1063), + [anon_sym_interface] = ACTIONS(1063), + [anon_sym_enum] = ACTIONS(1063), + [sym_readonly] = ACTIONS(1063), + [sym__automatic_semicolon] = ACTIONS(1069), + }, + [90] = { + [ts_builtin_sym_end] = ACTIONS(1071), + [sym_identifier] = ACTIONS(1073), + [anon_sym_export] = ACTIONS(1073), + [anon_sym_STAR] = ACTIONS(1075), + [anon_sym_default] = ACTIONS(1073), + [anon_sym_as] = ACTIONS(1075), + [anon_sym_namespace] = ACTIONS(1073), + [anon_sym_LBRACE] = ACTIONS(1071), + [anon_sym_COMMA] = ACTIONS(1077), + [anon_sym_RBRACE] = ACTIONS(1071), + [anon_sym_type] = ACTIONS(1073), + [anon_sym_typeof] = ACTIONS(1073), + [anon_sym_import] = ACTIONS(1073), + [anon_sym_var] = ACTIONS(1073), + [anon_sym_let] = ACTIONS(1073), + [anon_sym_const] = ACTIONS(1073), + [anon_sym_BANG] = ACTIONS(1073), + [anon_sym_else] = ACTIONS(1073), + [anon_sym_if] = ACTIONS(1073), + [anon_sym_switch] = ACTIONS(1073), + [anon_sym_for] = ACTIONS(1073), + [anon_sym_LPAREN] = ACTIONS(1071), + [anon_sym_await] = ACTIONS(1073), + [anon_sym_in] = ACTIONS(1075), + [anon_sym_while] = ACTIONS(1073), + [anon_sym_do] = ACTIONS(1073), + [anon_sym_try] = ACTIONS(1073), + [anon_sym_with] = ACTIONS(1073), + [anon_sym_break] = ACTIONS(1073), + [anon_sym_continue] = ACTIONS(1073), + [anon_sym_debugger] = ACTIONS(1073), + [anon_sym_return] = ACTIONS(1073), + [anon_sym_throw] = ACTIONS(1073), + [anon_sym_SEMI] = ACTIONS(1071), + [anon_sym_case] = ACTIONS(1073), + [anon_sym_yield] = ACTIONS(1073), + [anon_sym_LBRACK] = ACTIONS(1071), + [anon_sym_LT] = ACTIONS(1073), + [anon_sym_GT] = ACTIONS(1075), + [anon_sym_SLASH] = ACTIONS(1073), + [anon_sym_DOT] = ACTIONS(1075), + [anon_sym_class] = ACTIONS(1073), + [anon_sym_async] = ACTIONS(1073), + [anon_sym_function] = ACTIONS(1073), + [anon_sym_QMARK_DOT] = ACTIONS(1077), + [anon_sym_new] = ACTIONS(1073), + [anon_sym_QMARK] = ACTIONS(1075), + [anon_sym_AMP_AMP] = ACTIONS(1077), + [anon_sym_PIPE_PIPE] = ACTIONS(1077), + [anon_sym_GT_GT] = ACTIONS(1075), + [anon_sym_GT_GT_GT] = ACTIONS(1077), + [anon_sym_LT_LT] = ACTIONS(1077), + [anon_sym_AMP] = ACTIONS(1075), + [anon_sym_CARET] = ACTIONS(1077), + [anon_sym_PIPE] = ACTIONS(1075), + [anon_sym_PLUS] = ACTIONS(1073), + [anon_sym_DASH] = ACTIONS(1073), + [anon_sym_PERCENT] = ACTIONS(1077), + [anon_sym_STAR_STAR] = ACTIONS(1077), + [anon_sym_LT_EQ] = ACTIONS(1077), + [anon_sym_EQ_EQ] = ACTIONS(1075), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1077), + [anon_sym_BANG_EQ] = ACTIONS(1075), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1077), + [anon_sym_GT_EQ] = ACTIONS(1077), + [anon_sym_QMARK_QMARK] = ACTIONS(1077), + [anon_sym_instanceof] = ACTIONS(1075), + [anon_sym_TILDE] = ACTIONS(1071), + [anon_sym_void] = ACTIONS(1073), + [anon_sym_delete] = ACTIONS(1073), + [anon_sym_PLUS_PLUS] = ACTIONS(1071), + [anon_sym_DASH_DASH] = ACTIONS(1071), + [anon_sym_DQUOTE] = ACTIONS(1071), + [anon_sym_SQUOTE] = ACTIONS(1071), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1071), + [sym_number] = ACTIONS(1071), + [sym_this] = ACTIONS(1073), + [sym_super] = ACTIONS(1073), + [sym_true] = ACTIONS(1073), + [sym_false] = ACTIONS(1073), + [sym_null] = ACTIONS(1073), + [sym_undefined] = ACTIONS(1073), + [anon_sym_AT] = ACTIONS(1071), + [anon_sym_static] = ACTIONS(1073), + [anon_sym_abstract] = ACTIONS(1073), + [anon_sym_get] = ACTIONS(1073), + [anon_sym_set] = ACTIONS(1073), + [anon_sym_declare] = ACTIONS(1073), + [anon_sym_public] = ACTIONS(1073), + [anon_sym_private] = ACTIONS(1073), + [anon_sym_protected] = ACTIONS(1073), + [anon_sym_module] = ACTIONS(1073), + [anon_sym_any] = ACTIONS(1073), + [anon_sym_number] = ACTIONS(1073), + [anon_sym_boolean] = ACTIONS(1073), + [anon_sym_string] = ACTIONS(1073), + [anon_sym_symbol] = ACTIONS(1073), + [anon_sym_interface] = ACTIONS(1073), + [anon_sym_enum] = ACTIONS(1073), + [sym_readonly] = ACTIONS(1073), + [sym__automatic_semicolon] = ACTIONS(1079), + }, + [91] = { [ts_builtin_sym_end] = ACTIONS(1081), [sym_identifier] = ACTIONS(1083), [anon_sym_export] = ACTIONS(1083), - [anon_sym_STAR] = ACTIONS(1083), + [anon_sym_STAR] = ACTIONS(1085), [anon_sym_default] = ACTIONS(1083), - [anon_sym_as] = ACTIONS(1083), + [anon_sym_as] = ACTIONS(1085), [anon_sym_namespace] = ACTIONS(1083), [anon_sym_LBRACE] = ACTIONS(1081), - [anon_sym_COMMA] = ACTIONS(1081), + [anon_sym_COMMA] = ACTIONS(1087), [anon_sym_RBRACE] = ACTIONS(1081), [anon_sym_type] = ACTIONS(1083), [anon_sym_typeof] = ACTIONS(1083), @@ -20691,7 +20953,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(1083), [anon_sym_LPAREN] = ACTIONS(1081), [anon_sym_await] = ACTIONS(1083), - [anon_sym_in] = ACTIONS(1083), + [anon_sym_in] = ACTIONS(1085), [anon_sym_while] = ACTIONS(1083), [anon_sym_do] = ACTIONS(1083), [anon_sym_try] = ACTIONS(1083), @@ -20706,35 +20968,35 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1083), [anon_sym_LBRACK] = ACTIONS(1081), [anon_sym_LT] = ACTIONS(1083), - [anon_sym_GT] = ACTIONS(1083), + [anon_sym_GT] = ACTIONS(1085), [anon_sym_SLASH] = ACTIONS(1083), - [anon_sym_DOT] = ACTIONS(1083), + [anon_sym_DOT] = ACTIONS(1085), [anon_sym_class] = ACTIONS(1083), [anon_sym_async] = ACTIONS(1083), [anon_sym_function] = ACTIONS(1083), - [anon_sym_QMARK_DOT] = ACTIONS(1081), + [anon_sym_QMARK_DOT] = ACTIONS(1087), [anon_sym_new] = ACTIONS(1083), - [anon_sym_QMARK] = ACTIONS(1083), - [anon_sym_AMP_AMP] = ACTIONS(1081), - [anon_sym_PIPE_PIPE] = ACTIONS(1081), - [anon_sym_GT_GT] = ACTIONS(1083), - [anon_sym_GT_GT_GT] = ACTIONS(1081), - [anon_sym_LT_LT] = ACTIONS(1081), - [anon_sym_AMP] = ACTIONS(1083), - [anon_sym_CARET] = ACTIONS(1081), - [anon_sym_PIPE] = ACTIONS(1083), + [anon_sym_QMARK] = ACTIONS(1085), + [anon_sym_AMP_AMP] = ACTIONS(1087), + [anon_sym_PIPE_PIPE] = ACTIONS(1087), + [anon_sym_GT_GT] = ACTIONS(1085), + [anon_sym_GT_GT_GT] = ACTIONS(1087), + [anon_sym_LT_LT] = ACTIONS(1087), + [anon_sym_AMP] = ACTIONS(1085), + [anon_sym_CARET] = ACTIONS(1087), + [anon_sym_PIPE] = ACTIONS(1085), [anon_sym_PLUS] = ACTIONS(1083), [anon_sym_DASH] = ACTIONS(1083), - [anon_sym_PERCENT] = ACTIONS(1081), - [anon_sym_STAR_STAR] = ACTIONS(1081), - [anon_sym_LT_EQ] = ACTIONS(1081), - [anon_sym_EQ_EQ] = ACTIONS(1083), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1081), - [anon_sym_BANG_EQ] = ACTIONS(1083), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1081), - [anon_sym_GT_EQ] = ACTIONS(1081), - [anon_sym_QMARK_QMARK] = ACTIONS(1081), - [anon_sym_instanceof] = ACTIONS(1083), + [anon_sym_PERCENT] = ACTIONS(1087), + [anon_sym_STAR_STAR] = ACTIONS(1087), + [anon_sym_LT_EQ] = ACTIONS(1087), + [anon_sym_EQ_EQ] = ACTIONS(1085), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1087), + [anon_sym_BANG_EQ] = ACTIONS(1085), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1087), + [anon_sym_GT_EQ] = ACTIONS(1087), + [anon_sym_QMARK_QMARK] = ACTIONS(1087), + [anon_sym_instanceof] = ACTIONS(1085), [anon_sym_TILDE] = ACTIONS(1081), [anon_sym_void] = ACTIONS(1083), [anon_sym_delete] = ACTIONS(1083), @@ -20769,318 +21031,110 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(1083), [anon_sym_enum] = ACTIONS(1083), [sym_readonly] = ACTIONS(1083), - [sym__automatic_semicolon] = ACTIONS(1081), - }, - [90] = { - [ts_builtin_sym_end] = ACTIONS(1085), - [sym_identifier] = ACTIONS(1087), - [anon_sym_export] = ACTIONS(1087), - [anon_sym_STAR] = ACTIONS(1087), - [anon_sym_default] = ACTIONS(1087), - [anon_sym_as] = ACTIONS(1087), - [anon_sym_namespace] = ACTIONS(1087), - [anon_sym_LBRACE] = ACTIONS(1085), - [anon_sym_COMMA] = ACTIONS(1085), - [anon_sym_RBRACE] = ACTIONS(1085), - [anon_sym_type] = ACTIONS(1087), - [anon_sym_typeof] = ACTIONS(1087), - [anon_sym_import] = ACTIONS(1087), - [anon_sym_var] = ACTIONS(1087), - [anon_sym_let] = ACTIONS(1087), - [anon_sym_const] = ACTIONS(1087), - [anon_sym_BANG] = ACTIONS(1087), - [anon_sym_else] = ACTIONS(1087), - [anon_sym_if] = ACTIONS(1087), - [anon_sym_switch] = ACTIONS(1087), - [anon_sym_for] = ACTIONS(1087), - [anon_sym_LPAREN] = ACTIONS(1085), - [anon_sym_await] = ACTIONS(1087), - [anon_sym_in] = ACTIONS(1087), - [anon_sym_while] = ACTIONS(1087), - [anon_sym_do] = ACTIONS(1087), - [anon_sym_try] = ACTIONS(1087), - [anon_sym_with] = ACTIONS(1087), - [anon_sym_break] = ACTIONS(1087), - [anon_sym_continue] = ACTIONS(1087), - [anon_sym_debugger] = ACTIONS(1087), - [anon_sym_return] = ACTIONS(1087), - [anon_sym_throw] = ACTIONS(1087), - [anon_sym_SEMI] = ACTIONS(1085), - [anon_sym_case] = ACTIONS(1087), - [anon_sym_yield] = ACTIONS(1087), - [anon_sym_LBRACK] = ACTIONS(1085), - [anon_sym_LT] = ACTIONS(1087), - [anon_sym_GT] = ACTIONS(1087), - [anon_sym_SLASH] = ACTIONS(1087), - [anon_sym_DOT] = ACTIONS(1087), - [anon_sym_class] = ACTIONS(1087), - [anon_sym_async] = ACTIONS(1087), - [anon_sym_function] = ACTIONS(1087), - [anon_sym_QMARK_DOT] = ACTIONS(1085), - [anon_sym_new] = ACTIONS(1087), - [anon_sym_QMARK] = ACTIONS(1087), - [anon_sym_AMP_AMP] = ACTIONS(1085), - [anon_sym_PIPE_PIPE] = ACTIONS(1085), - [anon_sym_GT_GT] = ACTIONS(1087), - [anon_sym_GT_GT_GT] = ACTIONS(1085), - [anon_sym_LT_LT] = ACTIONS(1085), - [anon_sym_AMP] = ACTIONS(1087), - [anon_sym_CARET] = ACTIONS(1085), - [anon_sym_PIPE] = ACTIONS(1087), - [anon_sym_PLUS] = ACTIONS(1087), - [anon_sym_DASH] = ACTIONS(1087), - [anon_sym_PERCENT] = ACTIONS(1085), - [anon_sym_STAR_STAR] = ACTIONS(1085), - [anon_sym_LT_EQ] = ACTIONS(1085), - [anon_sym_EQ_EQ] = ACTIONS(1087), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1085), - [anon_sym_BANG_EQ] = ACTIONS(1087), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1085), - [anon_sym_GT_EQ] = ACTIONS(1085), - [anon_sym_QMARK_QMARK] = ACTIONS(1085), - [anon_sym_instanceof] = ACTIONS(1087), - [anon_sym_TILDE] = ACTIONS(1085), - [anon_sym_void] = ACTIONS(1087), - [anon_sym_delete] = ACTIONS(1087), - [anon_sym_PLUS_PLUS] = ACTIONS(1085), - [anon_sym_DASH_DASH] = ACTIONS(1085), - [anon_sym_DQUOTE] = ACTIONS(1085), - [anon_sym_SQUOTE] = ACTIONS(1085), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1085), - [sym_number] = ACTIONS(1085), - [sym_this] = ACTIONS(1087), - [sym_super] = ACTIONS(1087), - [sym_true] = ACTIONS(1087), - [sym_false] = ACTIONS(1087), - [sym_null] = ACTIONS(1087), - [sym_undefined] = ACTIONS(1087), - [anon_sym_AT] = ACTIONS(1085), - [anon_sym_static] = ACTIONS(1087), - [anon_sym_abstract] = ACTIONS(1087), - [anon_sym_get] = ACTIONS(1087), - [anon_sym_set] = ACTIONS(1087), - [anon_sym_declare] = ACTIONS(1087), - [anon_sym_public] = ACTIONS(1087), - [anon_sym_private] = ACTIONS(1087), - [anon_sym_protected] = ACTIONS(1087), - [anon_sym_module] = ACTIONS(1087), - [anon_sym_any] = ACTIONS(1087), - [anon_sym_number] = ACTIONS(1087), - [anon_sym_boolean] = ACTIONS(1087), - [anon_sym_string] = ACTIONS(1087), - [anon_sym_symbol] = ACTIONS(1087), - [anon_sym_interface] = ACTIONS(1087), - [anon_sym_enum] = ACTIONS(1087), - [sym_readonly] = ACTIONS(1087), - [sym__automatic_semicolon] = ACTIONS(1085), - }, - [91] = { - [ts_builtin_sym_end] = ACTIONS(1089), - [sym_identifier] = ACTIONS(1091), - [anon_sym_export] = ACTIONS(1091), - [anon_sym_STAR] = ACTIONS(1091), - [anon_sym_default] = ACTIONS(1091), - [anon_sym_as] = ACTIONS(1091), - [anon_sym_namespace] = ACTIONS(1091), - [anon_sym_LBRACE] = ACTIONS(1089), - [anon_sym_COMMA] = ACTIONS(1089), - [anon_sym_RBRACE] = ACTIONS(1089), - [anon_sym_type] = ACTIONS(1091), - [anon_sym_typeof] = ACTIONS(1091), - [anon_sym_import] = ACTIONS(1091), - [anon_sym_var] = ACTIONS(1091), - [anon_sym_let] = ACTIONS(1091), - [anon_sym_const] = ACTIONS(1091), - [anon_sym_BANG] = ACTIONS(1091), - [anon_sym_else] = ACTIONS(1091), - [anon_sym_if] = ACTIONS(1091), - [anon_sym_switch] = ACTIONS(1091), - [anon_sym_for] = ACTIONS(1091), - [anon_sym_LPAREN] = ACTIONS(1089), - [anon_sym_await] = ACTIONS(1091), - [anon_sym_in] = ACTIONS(1091), - [anon_sym_while] = ACTIONS(1091), - [anon_sym_do] = ACTIONS(1091), - [anon_sym_try] = ACTIONS(1091), - [anon_sym_with] = ACTIONS(1091), - [anon_sym_break] = ACTIONS(1091), - [anon_sym_continue] = ACTIONS(1091), - [anon_sym_debugger] = ACTIONS(1091), - [anon_sym_return] = ACTIONS(1091), - [anon_sym_throw] = ACTIONS(1091), - [anon_sym_SEMI] = ACTIONS(1089), - [anon_sym_case] = ACTIONS(1091), - [anon_sym_yield] = ACTIONS(1091), - [anon_sym_LBRACK] = ACTIONS(1089), - [anon_sym_LT] = ACTIONS(1091), - [anon_sym_GT] = ACTIONS(1091), - [anon_sym_SLASH] = ACTIONS(1091), - [anon_sym_DOT] = ACTIONS(1091), - [anon_sym_class] = ACTIONS(1091), - [anon_sym_async] = ACTIONS(1091), - [anon_sym_function] = ACTIONS(1091), - [anon_sym_QMARK_DOT] = ACTIONS(1089), - [anon_sym_new] = ACTIONS(1091), - [anon_sym_QMARK] = ACTIONS(1091), - [anon_sym_AMP_AMP] = ACTIONS(1089), - [anon_sym_PIPE_PIPE] = ACTIONS(1089), - [anon_sym_GT_GT] = ACTIONS(1091), - [anon_sym_GT_GT_GT] = ACTIONS(1089), - [anon_sym_LT_LT] = ACTIONS(1089), - [anon_sym_AMP] = ACTIONS(1091), - [anon_sym_CARET] = ACTIONS(1089), - [anon_sym_PIPE] = ACTIONS(1091), - [anon_sym_PLUS] = ACTIONS(1091), - [anon_sym_DASH] = ACTIONS(1091), - [anon_sym_PERCENT] = ACTIONS(1089), - [anon_sym_STAR_STAR] = ACTIONS(1089), - [anon_sym_LT_EQ] = ACTIONS(1089), - [anon_sym_EQ_EQ] = ACTIONS(1091), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1089), - [anon_sym_BANG_EQ] = ACTIONS(1091), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1089), - [anon_sym_GT_EQ] = ACTIONS(1089), - [anon_sym_QMARK_QMARK] = ACTIONS(1089), - [anon_sym_instanceof] = ACTIONS(1091), - [anon_sym_TILDE] = ACTIONS(1089), - [anon_sym_void] = ACTIONS(1091), - [anon_sym_delete] = ACTIONS(1091), - [anon_sym_PLUS_PLUS] = ACTIONS(1089), - [anon_sym_DASH_DASH] = ACTIONS(1089), - [anon_sym_DQUOTE] = ACTIONS(1089), - [anon_sym_SQUOTE] = ACTIONS(1089), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1089), - [sym_number] = ACTIONS(1089), - [sym_this] = ACTIONS(1091), - [sym_super] = ACTIONS(1091), - [sym_true] = ACTIONS(1091), - [sym_false] = ACTIONS(1091), - [sym_null] = ACTIONS(1091), - [sym_undefined] = ACTIONS(1091), - [anon_sym_AT] = ACTIONS(1089), - [anon_sym_static] = ACTIONS(1091), - [anon_sym_abstract] = ACTIONS(1091), - [anon_sym_get] = ACTIONS(1091), - [anon_sym_set] = ACTIONS(1091), - [anon_sym_declare] = ACTIONS(1091), - [anon_sym_public] = ACTIONS(1091), - [anon_sym_private] = ACTIONS(1091), - [anon_sym_protected] = ACTIONS(1091), - [anon_sym_module] = ACTIONS(1091), - [anon_sym_any] = ACTIONS(1091), - [anon_sym_number] = ACTIONS(1091), - [anon_sym_boolean] = ACTIONS(1091), - [anon_sym_string] = ACTIONS(1091), - [anon_sym_symbol] = ACTIONS(1091), - [anon_sym_interface] = ACTIONS(1091), - [anon_sym_enum] = ACTIONS(1091), - [sym_readonly] = ACTIONS(1091), [sym__automatic_semicolon] = ACTIONS(1089), }, [92] = { - [ts_builtin_sym_end] = ACTIONS(1093), - [sym_identifier] = ACTIONS(1095), - [anon_sym_export] = ACTIONS(1095), - [anon_sym_STAR] = ACTIONS(1097), - [anon_sym_default] = ACTIONS(1095), - [anon_sym_as] = ACTIONS(1097), - [anon_sym_namespace] = ACTIONS(1095), - [anon_sym_LBRACE] = ACTIONS(1093), - [anon_sym_COMMA] = ACTIONS(1099), - [anon_sym_RBRACE] = ACTIONS(1093), - [anon_sym_type] = ACTIONS(1095), - [anon_sym_typeof] = ACTIONS(1095), - [anon_sym_import] = ACTIONS(1095), - [anon_sym_var] = ACTIONS(1095), - [anon_sym_let] = ACTIONS(1095), - [anon_sym_const] = ACTIONS(1095), - [anon_sym_BANG] = ACTIONS(1095), - [anon_sym_else] = ACTIONS(1095), - [anon_sym_if] = ACTIONS(1095), - [anon_sym_switch] = ACTIONS(1095), - [anon_sym_for] = ACTIONS(1095), - [anon_sym_LPAREN] = ACTIONS(1093), - [anon_sym_await] = ACTIONS(1095), - [anon_sym_in] = ACTIONS(1097), - [anon_sym_while] = ACTIONS(1095), - [anon_sym_do] = ACTIONS(1095), - [anon_sym_try] = ACTIONS(1095), - [anon_sym_with] = ACTIONS(1095), - [anon_sym_break] = ACTIONS(1095), - [anon_sym_continue] = ACTIONS(1095), - [anon_sym_debugger] = ACTIONS(1095), - [anon_sym_return] = ACTIONS(1095), - [anon_sym_throw] = ACTIONS(1095), - [anon_sym_SEMI] = ACTIONS(1093), - [anon_sym_case] = ACTIONS(1095), - [anon_sym_yield] = ACTIONS(1095), - [anon_sym_LBRACK] = ACTIONS(1093), - [anon_sym_LT] = ACTIONS(1095), - [anon_sym_GT] = ACTIONS(1097), - [anon_sym_SLASH] = ACTIONS(1095), - [anon_sym_DOT] = ACTIONS(1097), - [anon_sym_class] = ACTIONS(1095), - [anon_sym_async] = ACTIONS(1095), - [anon_sym_function] = ACTIONS(1095), - [anon_sym_QMARK_DOT] = ACTIONS(1099), - [anon_sym_new] = ACTIONS(1095), - [anon_sym_QMARK] = ACTIONS(1097), - [anon_sym_AMP_AMP] = ACTIONS(1099), - [anon_sym_PIPE_PIPE] = ACTIONS(1099), - [anon_sym_GT_GT] = ACTIONS(1097), - [anon_sym_GT_GT_GT] = ACTIONS(1099), - [anon_sym_LT_LT] = ACTIONS(1099), - [anon_sym_AMP] = ACTIONS(1097), - [anon_sym_CARET] = ACTIONS(1099), - [anon_sym_PIPE] = ACTIONS(1097), - [anon_sym_PLUS] = ACTIONS(1095), - [anon_sym_DASH] = ACTIONS(1095), - [anon_sym_PERCENT] = ACTIONS(1099), - [anon_sym_STAR_STAR] = ACTIONS(1099), - [anon_sym_LT_EQ] = ACTIONS(1099), - [anon_sym_EQ_EQ] = ACTIONS(1097), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1099), - [anon_sym_BANG_EQ] = ACTIONS(1097), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1099), - [anon_sym_GT_EQ] = ACTIONS(1099), - [anon_sym_QMARK_QMARK] = ACTIONS(1099), - [anon_sym_instanceof] = ACTIONS(1097), - [anon_sym_TILDE] = ACTIONS(1093), - [anon_sym_void] = ACTIONS(1095), - [anon_sym_delete] = ACTIONS(1095), - [anon_sym_PLUS_PLUS] = ACTIONS(1093), - [anon_sym_DASH_DASH] = ACTIONS(1093), - [anon_sym_DQUOTE] = ACTIONS(1093), - [anon_sym_SQUOTE] = ACTIONS(1093), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1093), - [sym_number] = ACTIONS(1093), - [sym_this] = ACTIONS(1095), - [sym_super] = ACTIONS(1095), - [sym_true] = ACTIONS(1095), - [sym_false] = ACTIONS(1095), - [sym_null] = ACTIONS(1095), - [sym_undefined] = ACTIONS(1095), - [anon_sym_AT] = ACTIONS(1093), - [anon_sym_static] = ACTIONS(1095), - [anon_sym_abstract] = ACTIONS(1095), - [anon_sym_get] = ACTIONS(1095), - [anon_sym_set] = ACTIONS(1095), - [anon_sym_declare] = ACTIONS(1095), - [anon_sym_public] = ACTIONS(1095), - [anon_sym_private] = ACTIONS(1095), - [anon_sym_protected] = ACTIONS(1095), - [anon_sym_module] = ACTIONS(1095), - [anon_sym_any] = ACTIONS(1095), - [anon_sym_number] = ACTIONS(1095), - [anon_sym_boolean] = ACTIONS(1095), - [anon_sym_string] = ACTIONS(1095), - [anon_sym_symbol] = ACTIONS(1095), - [anon_sym_interface] = ACTIONS(1095), - [anon_sym_enum] = ACTIONS(1095), - [sym_readonly] = ACTIONS(1095), + [ts_builtin_sym_end] = ACTIONS(1091), + [sym_identifier] = ACTIONS(1093), + [anon_sym_export] = ACTIONS(1093), + [anon_sym_STAR] = ACTIONS(1095), + [anon_sym_default] = ACTIONS(1093), + [anon_sym_as] = ACTIONS(1095), + [anon_sym_namespace] = ACTIONS(1093), + [anon_sym_LBRACE] = ACTIONS(1091), + [anon_sym_COMMA] = ACTIONS(1097), + [anon_sym_RBRACE] = ACTIONS(1091), + [anon_sym_type] = ACTIONS(1093), + [anon_sym_typeof] = ACTIONS(1093), + [anon_sym_import] = ACTIONS(1093), + [anon_sym_var] = ACTIONS(1093), + [anon_sym_let] = ACTIONS(1093), + [anon_sym_const] = ACTIONS(1093), + [anon_sym_BANG] = ACTIONS(1093), + [anon_sym_else] = ACTIONS(1093), + [anon_sym_if] = ACTIONS(1093), + [anon_sym_switch] = ACTIONS(1093), + [anon_sym_for] = ACTIONS(1093), + [anon_sym_LPAREN] = ACTIONS(1091), + [anon_sym_await] = ACTIONS(1093), + [anon_sym_in] = ACTIONS(1095), + [anon_sym_while] = ACTIONS(1093), + [anon_sym_do] = ACTIONS(1093), + [anon_sym_try] = ACTIONS(1093), + [anon_sym_with] = ACTIONS(1093), + [anon_sym_break] = ACTIONS(1093), + [anon_sym_continue] = ACTIONS(1093), + [anon_sym_debugger] = ACTIONS(1093), + [anon_sym_return] = ACTIONS(1093), + [anon_sym_throw] = ACTIONS(1093), + [anon_sym_SEMI] = ACTIONS(1091), + [anon_sym_case] = ACTIONS(1093), + [anon_sym_yield] = ACTIONS(1093), + [anon_sym_LBRACK] = ACTIONS(1091), + [anon_sym_LT] = ACTIONS(1093), + [anon_sym_GT] = ACTIONS(1095), + [anon_sym_SLASH] = ACTIONS(1093), + [anon_sym_DOT] = ACTIONS(1095), + [anon_sym_class] = ACTIONS(1093), + [anon_sym_async] = ACTIONS(1093), + [anon_sym_function] = ACTIONS(1093), + [anon_sym_QMARK_DOT] = ACTIONS(1097), + [anon_sym_new] = ACTIONS(1093), + [anon_sym_QMARK] = ACTIONS(1095), + [anon_sym_AMP_AMP] = ACTIONS(1097), + [anon_sym_PIPE_PIPE] = ACTIONS(1097), + [anon_sym_GT_GT] = ACTIONS(1095), + [anon_sym_GT_GT_GT] = ACTIONS(1097), + [anon_sym_LT_LT] = ACTIONS(1097), + [anon_sym_AMP] = ACTIONS(1095), + [anon_sym_CARET] = ACTIONS(1097), + [anon_sym_PIPE] = ACTIONS(1095), + [anon_sym_PLUS] = ACTIONS(1093), + [anon_sym_DASH] = ACTIONS(1093), + [anon_sym_PERCENT] = ACTIONS(1097), + [anon_sym_STAR_STAR] = ACTIONS(1097), + [anon_sym_LT_EQ] = ACTIONS(1097), + [anon_sym_EQ_EQ] = ACTIONS(1095), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1097), + [anon_sym_BANG_EQ] = ACTIONS(1095), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1097), + [anon_sym_GT_EQ] = ACTIONS(1097), + [anon_sym_QMARK_QMARK] = ACTIONS(1097), + [anon_sym_instanceof] = ACTIONS(1095), + [anon_sym_TILDE] = ACTIONS(1091), + [anon_sym_void] = ACTIONS(1093), + [anon_sym_delete] = ACTIONS(1093), + [anon_sym_PLUS_PLUS] = ACTIONS(1091), + [anon_sym_DASH_DASH] = ACTIONS(1091), + [anon_sym_DQUOTE] = ACTIONS(1091), + [anon_sym_SQUOTE] = ACTIONS(1091), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1091), + [sym_number] = ACTIONS(1091), + [sym_this] = ACTIONS(1093), + [sym_super] = ACTIONS(1093), + [sym_true] = ACTIONS(1093), + [sym_false] = ACTIONS(1093), + [sym_null] = ACTIONS(1093), + [sym_undefined] = ACTIONS(1093), + [anon_sym_AT] = ACTIONS(1091), + [anon_sym_static] = ACTIONS(1093), + [anon_sym_abstract] = ACTIONS(1093), + [anon_sym_get] = ACTIONS(1093), + [anon_sym_set] = ACTIONS(1093), + [anon_sym_declare] = ACTIONS(1093), + [anon_sym_public] = ACTIONS(1093), + [anon_sym_private] = ACTIONS(1093), + [anon_sym_protected] = ACTIONS(1093), + [anon_sym_module] = ACTIONS(1093), + [anon_sym_any] = ACTIONS(1093), + [anon_sym_number] = ACTIONS(1093), + [anon_sym_boolean] = ACTIONS(1093), + [anon_sym_string] = ACTIONS(1093), + [anon_sym_symbol] = ACTIONS(1093), + [anon_sym_interface] = ACTIONS(1093), + [anon_sym_enum] = ACTIONS(1093), + [sym_readonly] = ACTIONS(1093), [sym__automatic_semicolon] = ACTIONS(1099), }, [93] = { @@ -21292,32 +21346,32 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__automatic_semicolon] = ACTIONS(1111), }, [95] = { - [sym_nested_identifier] = STATE(2999), - [sym_string] = STATE(446), - [sym_formal_parameters] = STATE(2996), - [sym_nested_type_identifier] = STATE(1913), - [sym__type] = STATE(2626), - [sym_constructor_type] = STATE(2626), - [sym__primary_type] = STATE(2496), - [sym_conditional_type] = STATE(2496), - [sym_generic_type] = STATE(2496), - [sym_type_query] = STATE(2496), - [sym_index_type_query] = STATE(2496), - [sym_lookup_type] = STATE(2496), - [sym_literal_type] = STATE(2496), - [sym__number] = STATE(446), - [sym_existential_type] = STATE(2496), - [sym_flow_maybe_type] = STATE(2496), - [sym_parenthesized_type] = STATE(2496), - [sym_predefined_type] = STATE(2496), - [sym_object_type] = STATE(2496), - [sym_type_parameters] = STATE(2959), - [sym_array_type] = STATE(2496), - [sym__tuple_type_body] = STATE(426), - [sym_tuple_type] = STATE(2496), - [sym_union_type] = STATE(2626), - [sym_intersection_type] = STATE(2626), - [sym_function_type] = STATE(2626), + [sym_nested_identifier] = STATE(3123), + [sym_string] = STATE(433), + [sym_formal_parameters] = STATE(3122), + [sym_nested_type_identifier] = STATE(1917), + [sym__type] = STATE(2780), + [sym_constructor_type] = STATE(2780), + [sym__primary_type] = STATE(2509), + [sym_conditional_type] = STATE(2509), + [sym_generic_type] = STATE(2509), + [sym_type_query] = STATE(2509), + [sym_index_type_query] = STATE(2509), + [sym_lookup_type] = STATE(2509), + [sym_literal_type] = STATE(2509), + [sym__number] = STATE(433), + [sym_existential_type] = STATE(2509), + [sym_flow_maybe_type] = STATE(2509), + [sym_parenthesized_type] = STATE(2509), + [sym_predefined_type] = STATE(2509), + [sym_object_type] = STATE(2509), + [sym_type_parameters] = STATE(2916), + [sym_array_type] = STATE(2509), + [sym__tuple_type_body] = STATE(424), + [sym_tuple_type] = STATE(2509), + [sym_union_type] = STATE(2780), + [sym_intersection_type] = STATE(2780), + [sym_function_type] = STATE(2780), [sym_identifier] = ACTIONS(925), [anon_sym_STAR] = ACTIONS(803), [anon_sym_EQ] = ACTIONS(1115), @@ -21327,14 +21381,15 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(808), [anon_sym_LPAREN] = ACTIONS(817), [anon_sym_in] = ACTIONS(808), - [anon_sym_SEMI] = ACTIONS(841), - [anon_sym_LBRACK] = ACTIONS(1005), + [anon_sym_COLON] = ACTIONS(841), + [anon_sym_LBRACK] = ACTIONS(931), + [anon_sym_RBRACK] = ACTIONS(841), [anon_sym_LT] = ACTIONS(821), [anon_sym_GT] = ACTIONS(808), [anon_sym_SLASH] = ACTIONS(808), - [anon_sym_DOT] = ACTIONS(1007), + [anon_sym_DOT] = ACTIONS(823), [anon_sym_EQ_GT] = ACTIONS(1117), - [anon_sym_QMARK_DOT] = ACTIONS(1011), + [anon_sym_QMARK_DOT] = ACTIONS(827), [anon_sym_new] = ACTIONS(829), [anon_sym_PLUS_EQ] = ACTIONS(831), [anon_sym_DASH_EQ] = ACTIONS(831), @@ -21391,35 +21446,34 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_readonly] = ACTIONS(935), [anon_sym_keyof] = ACTIONS(495), [anon_sym_LBRACE_PIPE] = ACTIONS(497), - [sym__automatic_semicolon] = ACTIONS(841), }, [96] = { - [sym_nested_identifier] = STATE(2999), - [sym_string] = STATE(446), - [sym_formal_parameters] = STATE(2996), - [sym_nested_type_identifier] = STATE(1913), - [sym__type] = STATE(2626), - [sym_constructor_type] = STATE(2626), - [sym__primary_type] = STATE(2496), - [sym_conditional_type] = STATE(2496), - [sym_generic_type] = STATE(2496), - [sym_type_query] = STATE(2496), - [sym_index_type_query] = STATE(2496), - [sym_lookup_type] = STATE(2496), - [sym_literal_type] = STATE(2496), - [sym__number] = STATE(446), - [sym_existential_type] = STATE(2496), - [sym_flow_maybe_type] = STATE(2496), - [sym_parenthesized_type] = STATE(2496), - [sym_predefined_type] = STATE(2496), - [sym_object_type] = STATE(2496), - [sym_type_parameters] = STATE(2959), - [sym_array_type] = STATE(2496), - [sym__tuple_type_body] = STATE(426), - [sym_tuple_type] = STATE(2496), - [sym_union_type] = STATE(2626), - [sym_intersection_type] = STATE(2626), - [sym_function_type] = STATE(2626), + [sym_nested_identifier] = STATE(3123), + [sym_string] = STATE(433), + [sym_formal_parameters] = STATE(3122), + [sym_nested_type_identifier] = STATE(1917), + [sym__type] = STATE(2780), + [sym_constructor_type] = STATE(2780), + [sym__primary_type] = STATE(2509), + [sym_conditional_type] = STATE(2509), + [sym_generic_type] = STATE(2509), + [sym_type_query] = STATE(2509), + [sym_index_type_query] = STATE(2509), + [sym_lookup_type] = STATE(2509), + [sym_literal_type] = STATE(2509), + [sym__number] = STATE(433), + [sym_existential_type] = STATE(2509), + [sym_flow_maybe_type] = STATE(2509), + [sym_parenthesized_type] = STATE(2509), + [sym_predefined_type] = STATE(2509), + [sym_object_type] = STATE(2509), + [sym_type_parameters] = STATE(2916), + [sym_array_type] = STATE(2509), + [sym__tuple_type_body] = STATE(424), + [sym_tuple_type] = STATE(2509), + [sym_union_type] = STATE(2780), + [sym_intersection_type] = STATE(2780), + [sym_function_type] = STATE(2780), [sym_identifier] = ACTIONS(925), [anon_sym_STAR] = ACTIONS(803), [anon_sym_EQ] = ACTIONS(1119), @@ -21496,32 +21550,32 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(497), }, [97] = { - [sym_nested_identifier] = STATE(2999), - [sym_string] = STATE(446), - [sym_formal_parameters] = STATE(2996), - [sym_nested_type_identifier] = STATE(1913), - [sym__type] = STATE(2626), - [sym_constructor_type] = STATE(2626), - [sym__primary_type] = STATE(2533), - [sym_conditional_type] = STATE(2533), - [sym_generic_type] = STATE(2533), - [sym_type_query] = STATE(2533), - [sym_index_type_query] = STATE(2533), - [sym_lookup_type] = STATE(2533), - [sym_literal_type] = STATE(2533), - [sym__number] = STATE(446), - [sym_existential_type] = STATE(2533), - [sym_flow_maybe_type] = STATE(2533), - [sym_parenthesized_type] = STATE(2533), - [sym_predefined_type] = STATE(2533), - [sym_object_type] = STATE(2533), - [sym_type_parameters] = STATE(2959), - [sym_array_type] = STATE(2533), - [sym__tuple_type_body] = STATE(1994), - [sym_tuple_type] = STATE(2533), - [sym_union_type] = STATE(2626), - [sym_intersection_type] = STATE(2626), - [sym_function_type] = STATE(2626), + [sym_nested_identifier] = STATE(3123), + [sym_string] = STATE(433), + [sym_formal_parameters] = STATE(3122), + [sym_nested_type_identifier] = STATE(1917), + [sym__type] = STATE(2780), + [sym_constructor_type] = STATE(2780), + [sym__primary_type] = STATE(2596), + [sym_conditional_type] = STATE(2596), + [sym_generic_type] = STATE(2596), + [sym_type_query] = STATE(2596), + [sym_index_type_query] = STATE(2596), + [sym_lookup_type] = STATE(2596), + [sym_literal_type] = STATE(2596), + [sym__number] = STATE(433), + [sym_existential_type] = STATE(2596), + [sym_flow_maybe_type] = STATE(2596), + [sym_parenthesized_type] = STATE(2596), + [sym_predefined_type] = STATE(2596), + [sym_object_type] = STATE(2596), + [sym_type_parameters] = STATE(2916), + [sym_array_type] = STATE(2596), + [sym__tuple_type_body] = STATE(1972), + [sym_tuple_type] = STATE(2596), + [sym_union_type] = STATE(2780), + [sym_intersection_type] = STATE(2780), + [sym_function_type] = STATE(2780), [sym_identifier] = ACTIONS(925), [anon_sym_STAR] = ACTIONS(803), [anon_sym_EQ] = ACTIONS(927), @@ -21598,32 +21652,32 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(497), }, [98] = { - [sym_nested_identifier] = STATE(2999), - [sym_string] = STATE(446), - [sym_formal_parameters] = STATE(2996), - [sym_nested_type_identifier] = STATE(1913), - [sym__type] = STATE(2626), - [sym_constructor_type] = STATE(2626), - [sym__primary_type] = STATE(2496), - [sym_conditional_type] = STATE(2496), - [sym_generic_type] = STATE(2496), - [sym_type_query] = STATE(2496), - [sym_index_type_query] = STATE(2496), - [sym_lookup_type] = STATE(2496), - [sym_literal_type] = STATE(2496), - [sym__number] = STATE(446), - [sym_existential_type] = STATE(2496), - [sym_flow_maybe_type] = STATE(2496), - [sym_parenthesized_type] = STATE(2496), - [sym_predefined_type] = STATE(2496), - [sym_object_type] = STATE(2496), - [sym_type_parameters] = STATE(2959), - [sym_array_type] = STATE(2496), - [sym__tuple_type_body] = STATE(426), - [sym_tuple_type] = STATE(2496), - [sym_union_type] = STATE(2626), - [sym_intersection_type] = STATE(2626), - [sym_function_type] = STATE(2626), + [sym_nested_identifier] = STATE(3123), + [sym_string] = STATE(433), + [sym_formal_parameters] = STATE(3122), + [sym_nested_type_identifier] = STATE(1917), + [sym__type] = STATE(2780), + [sym_constructor_type] = STATE(2780), + [sym__primary_type] = STATE(2509), + [sym_conditional_type] = STATE(2509), + [sym_generic_type] = STATE(2509), + [sym_type_query] = STATE(2509), + [sym_index_type_query] = STATE(2509), + [sym_lookup_type] = STATE(2509), + [sym_literal_type] = STATE(2509), + [sym__number] = STATE(433), + [sym_existential_type] = STATE(2509), + [sym_flow_maybe_type] = STATE(2509), + [sym_parenthesized_type] = STATE(2509), + [sym_predefined_type] = STATE(2509), + [sym_object_type] = STATE(2509), + [sym_type_parameters] = STATE(2916), + [sym_array_type] = STATE(2509), + [sym__tuple_type_body] = STATE(424), + [sym_tuple_type] = STATE(2509), + [sym_union_type] = STATE(2780), + [sym_intersection_type] = STATE(2780), + [sym_function_type] = STATE(2780), [sym_identifier] = ACTIONS(925), [anon_sym_STAR] = ACTIONS(803), [anon_sym_EQ] = ACTIONS(1127), @@ -21633,15 +21687,14 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(808), [anon_sym_LPAREN] = ACTIONS(817), [anon_sym_in] = ACTIONS(808), - [anon_sym_COLON] = ACTIONS(841), - [anon_sym_LBRACK] = ACTIONS(931), - [anon_sym_RBRACK] = ACTIONS(841), + [anon_sym_SEMI] = ACTIONS(841), + [anon_sym_LBRACK] = ACTIONS(1015), [anon_sym_LT] = ACTIONS(821), [anon_sym_GT] = ACTIONS(808), [anon_sym_SLASH] = ACTIONS(808), - [anon_sym_DOT] = ACTIONS(823), + [anon_sym_DOT] = ACTIONS(1017), [anon_sym_EQ_GT] = ACTIONS(1129), - [anon_sym_QMARK_DOT] = ACTIONS(827), + [anon_sym_QMARK_DOT] = ACTIONS(1021), [anon_sym_new] = ACTIONS(829), [anon_sym_PLUS_EQ] = ACTIONS(831), [anon_sym_DASH_EQ] = ACTIONS(831), @@ -21698,37 +21751,139 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_readonly] = ACTIONS(935), [anon_sym_keyof] = ACTIONS(495), [anon_sym_LBRACE_PIPE] = ACTIONS(497), + [sym__automatic_semicolon] = ACTIONS(841), }, [99] = { - [sym_nested_identifier] = STATE(2999), - [sym_string] = STATE(446), - [sym_formal_parameters] = STATE(2996), - [sym_nested_type_identifier] = STATE(1913), - [sym__type] = STATE(2626), - [sym_constructor_type] = STATE(2626), - [sym__primary_type] = STATE(2496), - [sym_conditional_type] = STATE(2496), - [sym_generic_type] = STATE(2496), - [sym_type_query] = STATE(2496), - [sym_index_type_query] = STATE(2496), - [sym_lookup_type] = STATE(2496), - [sym_literal_type] = STATE(2496), - [sym__number] = STATE(446), - [sym_existential_type] = STATE(2496), - [sym_flow_maybe_type] = STATE(2496), - [sym_parenthesized_type] = STATE(2496), - [sym_predefined_type] = STATE(2496), - [sym_object_type] = STATE(2496), - [sym_type_parameters] = STATE(2959), - [sym_array_type] = STATE(2496), - [sym__tuple_type_body] = STATE(426), - [sym_tuple_type] = STATE(2496), - [sym_union_type] = STATE(2626), - [sym_intersection_type] = STATE(2626), - [sym_function_type] = STATE(2626), + [sym_import] = STATE(1151), + [sym_parenthesized_expression] = STATE(759), + [sym__expression] = STATE(1243), + [sym_yield_expression] = STATE(1144), + [sym_object] = STATE(1257), + [sym_array] = STATE(1254), + [sym_class] = STATE(1151), + [sym_function] = STATE(1151), + [sym_generator_function] = STATE(1151), + [sym_arrow_function] = STATE(1151), + [sym__call_signature] = STATE(3082), + [sym_call_expression] = STATE(1151), + [sym_new_expression] = STATE(1144), + [sym_await_expression] = STATE(1144), + [sym_member_expression] = STATE(759), + [sym_subscript_expression] = STATE(759), + [sym_assignment_expression] = STATE(1144), + [sym__augmented_assignment_lhs] = STATE(1924), + [sym_augmented_assignment_expression] = STATE(1144), + [sym_spread_element] = STATE(2679), + [sym_ternary_expression] = STATE(1144), + [sym_binary_expression] = STATE(1144), + [sym_unary_expression] = STATE(1144), + [sym_update_expression] = STATE(1144), + [sym_sequence_expression] = STATE(3054), + [sym_string] = STATE(1151), + [sym_template_string] = STATE(1151), + [sym_regex] = STATE(1151), + [sym_meta_property] = STATE(1151), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(754), + [sym_type_assertion] = STATE(1144), + [sym_as_expression] = STATE(1144), + [sym_internal_module] = STATE(1144), + [sym__rest_identifier] = STATE(2779), + [sym_rest_identifier] = STATE(2503), + [sym_optional_identifier] = STATE(2503), + [sym__tuple_type_identifier] = STATE(2503), + [sym_labeled_tuple_type_member] = STATE(2636), + [sym__tuple_type_member] = STATE(2636), + [sym_type_arguments] = STATE(326), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2580), + [aux_sym_array_repeat1] = STATE(2680), + [sym_identifier] = ACTIONS(1131), + [anon_sym_export] = ACTIONS(501), + [anon_sym_namespace] = ACTIONS(507), + [anon_sym_LBRACE] = ACTIONS(509), + [anon_sym_COMMA] = ACTIONS(1133), + [anon_sym_type] = ACTIONS(501), + [anon_sym_typeof] = ACTIONS(471), + [anon_sym_import] = ACTIONS(435), + [anon_sym_BANG] = ACTIONS(437), + [anon_sym_LPAREN] = ACTIONS(515), + [anon_sym_await] = ACTIONS(443), + [anon_sym_yield] = ACTIONS(445), + [anon_sym_LBRACK] = ACTIONS(517), + [anon_sym_RBRACK] = ACTIONS(1135), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(449), + [anon_sym_class] = ACTIONS(451), + [anon_sym_async] = ACTIONS(521), + [anon_sym_function] = ACTIONS(455), + [anon_sym_new] = ACTIONS(523), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1137), + [anon_sym_PLUS] = ACTIONS(525), + [anon_sym_DASH] = ACTIONS(525), + [anon_sym_TILDE] = ACTIONS(437), + [anon_sym_void] = ACTIONS(471), + [anon_sym_delete] = ACTIONS(471), + [anon_sym_PLUS_PLUS] = ACTIONS(473), + [anon_sym_DASH_DASH] = ACTIONS(473), + [anon_sym_DQUOTE] = ACTIONS(475), + [anon_sym_SQUOTE] = ACTIONS(477), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(479), + [sym_number] = ACTIONS(527), + [sym_this] = ACTIONS(485), + [sym_super] = ACTIONS(485), + [sym_true] = ACTIONS(485), + [sym_false] = ACTIONS(485), + [sym_null] = ACTIONS(485), + [sym_undefined] = ACTIONS(485), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(501), + [anon_sym_get] = ACTIONS(501), + [anon_sym_set] = ACTIONS(501), + [anon_sym_declare] = ACTIONS(501), + [anon_sym_public] = ACTIONS(501), + [anon_sym_private] = ACTIONS(501), + [anon_sym_protected] = ACTIONS(501), + [anon_sym_module] = ACTIONS(501), + [anon_sym_any] = ACTIONS(501), + [anon_sym_number] = ACTIONS(501), + [anon_sym_boolean] = ACTIONS(501), + [anon_sym_string] = ACTIONS(501), + [anon_sym_symbol] = ACTIONS(501), + [sym_readonly] = ACTIONS(501), + }, + [100] = { + [sym_nested_identifier] = STATE(3123), + [sym_string] = STATE(433), + [sym_formal_parameters] = STATE(3122), + [sym_nested_type_identifier] = STATE(1917), + [sym__type] = STATE(2780), + [sym_constructor_type] = STATE(2780), + [sym__primary_type] = STATE(2509), + [sym_conditional_type] = STATE(2509), + [sym_generic_type] = STATE(2509), + [sym_type_query] = STATE(2509), + [sym_index_type_query] = STATE(2509), + [sym_lookup_type] = STATE(2509), + [sym_literal_type] = STATE(2509), + [sym__number] = STATE(433), + [sym_existential_type] = STATE(2509), + [sym_flow_maybe_type] = STATE(2509), + [sym_parenthesized_type] = STATE(2509), + [sym_predefined_type] = STATE(2509), + [sym_object_type] = STATE(2509), + [sym_type_parameters] = STATE(2916), + [sym_array_type] = STATE(2509), + [sym__tuple_type_body] = STATE(424), + [sym_tuple_type] = STATE(2509), + [sym_union_type] = STATE(2780), + [sym_intersection_type] = STATE(2780), + [sym_function_type] = STATE(2780), [sym_identifier] = ACTIONS(925), [anon_sym_STAR] = ACTIONS(803), - [anon_sym_EQ] = ACTIONS(1131), + [anon_sym_EQ] = ACTIONS(1139), [anon_sym_as] = ACTIONS(808), [anon_sym_LBRACE] = ACTIONS(929), [anon_sym_COMMA] = ACTIONS(841), @@ -21736,13 +21891,13 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(808), [anon_sym_LPAREN] = ACTIONS(817), [anon_sym_in] = ACTIONS(808), - [anon_sym_LBRACK] = ACTIONS(1133), + [anon_sym_LBRACK] = ACTIONS(1141), [anon_sym_LT] = ACTIONS(821), [anon_sym_GT] = ACTIONS(808), [anon_sym_SLASH] = ACTIONS(808), - [anon_sym_DOT] = ACTIONS(1135), - [anon_sym_EQ_GT] = ACTIONS(1137), - [anon_sym_QMARK_DOT] = ACTIONS(1139), + [anon_sym_DOT] = ACTIONS(1143), + [anon_sym_EQ_GT] = ACTIONS(1145), + [anon_sym_QMARK_DOT] = ACTIONS(1147), [anon_sym_new] = ACTIONS(829), [anon_sym_PLUS_EQ] = ACTIONS(831), [anon_sym_DASH_EQ] = ACTIONS(831), @@ -21800,157 +21955,56 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_keyof] = ACTIONS(495), [anon_sym_LBRACE_PIPE] = ACTIONS(497), }, - [100] = { - [sym_import] = STATE(1101), - [sym_parenthesized_expression] = STATE(739), - [sym__expression] = STATE(1252), - [sym_yield_expression] = STATE(1105), - [sym_object] = STATE(1297), - [sym_array] = STATE(1296), - [sym_class] = STATE(1101), - [sym_function] = STATE(1101), - [sym_generator_function] = STATE(1101), - [sym_arrow_function] = STATE(1101), - [sym__call_signature] = STATE(3116), - [sym_call_expression] = STATE(1101), - [sym_new_expression] = STATE(1105), - [sym_await_expression] = STATE(1105), - [sym_member_expression] = STATE(739), - [sym_subscript_expression] = STATE(739), - [sym_assignment_expression] = STATE(1105), - [sym__augmented_assignment_lhs] = STATE(1920), - [sym_augmented_assignment_expression] = STATE(1105), - [sym_spread_element] = STATE(2661), - [sym_ternary_expression] = STATE(1105), - [sym_binary_expression] = STATE(1105), - [sym_unary_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_sequence_expression] = STATE(3102), - [sym_string] = STATE(1101), - [sym_template_string] = STATE(1101), - [sym_regex] = STATE(1101), - [sym_meta_property] = STATE(1101), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(755), - [sym_type_assertion] = STATE(1105), - [sym_as_expression] = STATE(1105), - [sym_internal_module] = STATE(1105), - [sym__rest_identifier] = STATE(2643), - [sym_rest_identifier] = STATE(2571), - [sym_optional_identifier] = STATE(2571), - [sym__tuple_type_identifier] = STATE(2571), - [sym_labeled_tuple_type_member] = STATE(2637), - [sym__tuple_type_member] = STATE(2637), - [sym_type_arguments] = STATE(361), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2497), - [aux_sym_array_repeat1] = STATE(2662), - [sym_identifier] = ACTIONS(1141), - [anon_sym_export] = ACTIONS(501), - [anon_sym_namespace] = ACTIONS(507), - [anon_sym_LBRACE] = ACTIONS(509), - [anon_sym_COMMA] = ACTIONS(1143), - [anon_sym_type] = ACTIONS(501), - [anon_sym_typeof] = ACTIONS(471), - [anon_sym_import] = ACTIONS(435), - [anon_sym_BANG] = ACTIONS(437), - [anon_sym_LPAREN] = ACTIONS(515), - [anon_sym_await] = ACTIONS(443), - [anon_sym_yield] = ACTIONS(445), - [anon_sym_LBRACK] = ACTIONS(517), - [anon_sym_RBRACK] = ACTIONS(1145), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(449), - [anon_sym_class] = ACTIONS(451), - [anon_sym_async] = ACTIONS(521), - [anon_sym_function] = ACTIONS(455), - [anon_sym_new] = ACTIONS(523), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1147), - [anon_sym_PLUS] = ACTIONS(525), - [anon_sym_DASH] = ACTIONS(525), - [anon_sym_TILDE] = ACTIONS(437), - [anon_sym_void] = ACTIONS(471), - [anon_sym_delete] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(473), - [anon_sym_DASH_DASH] = ACTIONS(473), - [anon_sym_DQUOTE] = ACTIONS(475), - [anon_sym_SQUOTE] = ACTIONS(477), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(479), - [sym_number] = ACTIONS(527), - [sym_this] = ACTIONS(485), - [sym_super] = ACTIONS(485), - [sym_true] = ACTIONS(485), - [sym_false] = ACTIONS(485), - [sym_null] = ACTIONS(485), - [sym_undefined] = ACTIONS(485), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(501), - [anon_sym_get] = ACTIONS(501), - [anon_sym_set] = ACTIONS(501), - [anon_sym_declare] = ACTIONS(501), - [anon_sym_public] = ACTIONS(501), - [anon_sym_private] = ACTIONS(501), - [anon_sym_protected] = ACTIONS(501), - [anon_sym_module] = ACTIONS(501), - [anon_sym_any] = ACTIONS(501), - [anon_sym_number] = ACTIONS(501), - [anon_sym_boolean] = ACTIONS(501), - [anon_sym_string] = ACTIONS(501), - [anon_sym_symbol] = ACTIONS(501), - [sym_readonly] = ACTIONS(501), - }, [101] = { - [sym_import] = STATE(1101), - [sym_parenthesized_expression] = STATE(739), - [sym__expression] = STATE(1213), - [sym_yield_expression] = STATE(1105), - [sym_object] = STATE(1297), - [sym_array] = STATE(1296), - [sym_class] = STATE(1101), - [sym_function] = STATE(1101), - [sym_generator_function] = STATE(1101), - [sym_arrow_function] = STATE(1101), - [sym__call_signature] = STATE(3116), - [sym_call_expression] = STATE(1101), - [sym_new_expression] = STATE(1105), - [sym_await_expression] = STATE(1105), - [sym_member_expression] = STATE(739), - [sym_subscript_expression] = STATE(739), - [sym_assignment_expression] = STATE(1105), - [sym__augmented_assignment_lhs] = STATE(1920), - [sym_augmented_assignment_expression] = STATE(1105), - [sym_spread_element] = STATE(2692), - [sym_ternary_expression] = STATE(1105), - [sym_binary_expression] = STATE(1105), - [sym_unary_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_string] = STATE(1101), - [sym_template_string] = STATE(1101), - [sym_regex] = STATE(1101), - [sym_meta_property] = STATE(1101), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(755), - [sym_type_assertion] = STATE(1105), - [sym_as_expression] = STATE(1105), - [sym_internal_module] = STATE(1105), - [sym__rest_identifier] = STATE(2643), - [sym_rest_identifier] = STATE(2571), - [sym_optional_identifier] = STATE(2571), - [sym__tuple_type_identifier] = STATE(2571), - [sym_labeled_tuple_type_member] = STATE(2637), - [sym__tuple_type_member] = STATE(2637), - [sym_type_arguments] = STATE(361), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2497), - [aux_sym_array_repeat1] = STATE(2690), - [sym_identifier] = ACTIONS(1141), + [sym_import] = STATE(1151), + [sym_parenthesized_expression] = STATE(759), + [sym__expression] = STATE(1281), + [sym_yield_expression] = STATE(1144), + [sym_object] = STATE(1257), + [sym_array] = STATE(1254), + [sym_class] = STATE(1151), + [sym_function] = STATE(1151), + [sym_generator_function] = STATE(1151), + [sym_arrow_function] = STATE(1151), + [sym__call_signature] = STATE(3082), + [sym_call_expression] = STATE(1151), + [sym_new_expression] = STATE(1144), + [sym_await_expression] = STATE(1144), + [sym_member_expression] = STATE(759), + [sym_subscript_expression] = STATE(759), + [sym_assignment_expression] = STATE(1144), + [sym__augmented_assignment_lhs] = STATE(1924), + [sym_augmented_assignment_expression] = STATE(1144), + [sym_spread_element] = STATE(2742), + [sym_ternary_expression] = STATE(1144), + [sym_binary_expression] = STATE(1144), + [sym_unary_expression] = STATE(1144), + [sym_update_expression] = STATE(1144), + [sym_string] = STATE(1151), + [sym_template_string] = STATE(1151), + [sym_regex] = STATE(1151), + [sym_meta_property] = STATE(1151), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(754), + [sym_type_assertion] = STATE(1144), + [sym_as_expression] = STATE(1144), + [sym_internal_module] = STATE(1144), + [sym__rest_identifier] = STATE(2779), + [sym_rest_identifier] = STATE(2503), + [sym_optional_identifier] = STATE(2503), + [sym__tuple_type_identifier] = STATE(2503), + [sym_labeled_tuple_type_member] = STATE(2636), + [sym__tuple_type_member] = STATE(2636), + [sym_type_arguments] = STATE(326), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2580), + [aux_sym_array_repeat1] = STATE(2743), + [sym_identifier] = ACTIONS(1131), [anon_sym_export] = ACTIONS(501), [anon_sym_namespace] = ACTIONS(507), [anon_sym_LBRACE] = ACTIONS(509), - [anon_sym_COMMA] = ACTIONS(1143), + [anon_sym_COMMA] = ACTIONS(1133), [anon_sym_type] = ACTIONS(501), [anon_sym_typeof] = ACTIONS(471), [anon_sym_import] = ACTIONS(435), @@ -21966,7 +22020,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_async] = ACTIONS(521), [anon_sym_function] = ACTIONS(455), [anon_sym_new] = ACTIONS(523), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1147), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1137), [anon_sym_PLUS] = ACTIONS(525), [anon_sym_DASH] = ACTIONS(525), [anon_sym_TILDE] = ACTIONS(437), @@ -22002,55 +22056,55 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_readonly] = ACTIONS(501), }, [102] = { - [sym_import] = STATE(1101), - [sym_parenthesized_expression] = STATE(739), - [sym__expression] = STATE(1239), - [sym_yield_expression] = STATE(1105), - [sym_object] = STATE(1297), - [sym_array] = STATE(1296), - [sym_class] = STATE(1101), - [sym_function] = STATE(1101), - [sym_generator_function] = STATE(1101), - [sym_arrow_function] = STATE(1101), - [sym__call_signature] = STATE(3116), - [sym_call_expression] = STATE(1101), - [sym_new_expression] = STATE(1105), - [sym_await_expression] = STATE(1105), - [sym_member_expression] = STATE(739), - [sym_subscript_expression] = STATE(739), - [sym_assignment_expression] = STATE(1105), - [sym__augmented_assignment_lhs] = STATE(1920), - [sym_augmented_assignment_expression] = STATE(1105), - [sym_spread_element] = STATE(2661), - [sym_ternary_expression] = STATE(1105), - [sym_binary_expression] = STATE(1105), - [sym_unary_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_string] = STATE(1101), - [sym_template_string] = STATE(1101), - [sym_regex] = STATE(1101), - [sym_meta_property] = STATE(1101), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(755), - [sym_type_assertion] = STATE(1105), - [sym_as_expression] = STATE(1105), - [sym_internal_module] = STATE(1105), - [sym__rest_identifier] = STATE(2643), - [sym_rest_identifier] = STATE(2571), - [sym_optional_identifier] = STATE(2571), - [sym__tuple_type_identifier] = STATE(2571), - [sym_labeled_tuple_type_member] = STATE(2637), - [sym__tuple_type_member] = STATE(2637), - [sym_type_arguments] = STATE(361), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2497), - [aux_sym_array_repeat1] = STATE(2662), - [sym_identifier] = ACTIONS(1141), + [sym_import] = STATE(1151), + [sym_parenthesized_expression] = STATE(759), + [sym__expression] = STATE(1283), + [sym_yield_expression] = STATE(1144), + [sym_object] = STATE(1257), + [sym_array] = STATE(1254), + [sym_class] = STATE(1151), + [sym_function] = STATE(1151), + [sym_generator_function] = STATE(1151), + [sym_arrow_function] = STATE(1151), + [sym__call_signature] = STATE(3082), + [sym_call_expression] = STATE(1151), + [sym_new_expression] = STATE(1144), + [sym_await_expression] = STATE(1144), + [sym_member_expression] = STATE(759), + [sym_subscript_expression] = STATE(759), + [sym_assignment_expression] = STATE(1144), + [sym__augmented_assignment_lhs] = STATE(1924), + [sym_augmented_assignment_expression] = STATE(1144), + [sym_spread_element] = STATE(2687), + [sym_ternary_expression] = STATE(1144), + [sym_binary_expression] = STATE(1144), + [sym_unary_expression] = STATE(1144), + [sym_update_expression] = STATE(1144), + [sym_string] = STATE(1151), + [sym_template_string] = STATE(1151), + [sym_regex] = STATE(1151), + [sym_meta_property] = STATE(1151), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(754), + [sym_type_assertion] = STATE(1144), + [sym_as_expression] = STATE(1144), + [sym_internal_module] = STATE(1144), + [sym__rest_identifier] = STATE(2779), + [sym_rest_identifier] = STATE(2503), + [sym_optional_identifier] = STATE(2503), + [sym__tuple_type_identifier] = STATE(2503), + [sym_labeled_tuple_type_member] = STATE(2636), + [sym__tuple_type_member] = STATE(2636), + [sym_type_arguments] = STATE(326), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2580), + [aux_sym_array_repeat1] = STATE(2683), + [sym_identifier] = ACTIONS(1131), [anon_sym_export] = ACTIONS(501), [anon_sym_namespace] = ACTIONS(507), [anon_sym_LBRACE] = ACTIONS(509), - [anon_sym_COMMA] = ACTIONS(1143), + [anon_sym_COMMA] = ACTIONS(1133), [anon_sym_type] = ACTIONS(501), [anon_sym_typeof] = ACTIONS(471), [anon_sym_import] = ACTIONS(435), @@ -22059,14 +22113,14 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(443), [anon_sym_yield] = ACTIONS(445), [anon_sym_LBRACK] = ACTIONS(517), - [anon_sym_RBRACK] = ACTIONS(1145), + [anon_sym_RBRACK] = ACTIONS(1151), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(449), [anon_sym_class] = ACTIONS(451), [anon_sym_async] = ACTIONS(521), [anon_sym_function] = ACTIONS(455), [anon_sym_new] = ACTIONS(523), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1147), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1137), [anon_sym_PLUS] = ACTIONS(525), [anon_sym_DASH] = ACTIONS(525), [anon_sym_TILDE] = ACTIONS(437), @@ -22102,55 +22156,55 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_readonly] = ACTIONS(501), }, [103] = { - [sym_import] = STATE(1101), - [sym_parenthesized_expression] = STATE(739), - [sym__expression] = STATE(1213), - [sym_yield_expression] = STATE(1105), - [sym_object] = STATE(1297), - [sym_array] = STATE(1296), - [sym_class] = STATE(1101), - [sym_function] = STATE(1101), - [sym_generator_function] = STATE(1101), - [sym_arrow_function] = STATE(1101), - [sym__call_signature] = STATE(3116), - [sym_call_expression] = STATE(1101), - [sym_new_expression] = STATE(1105), - [sym_await_expression] = STATE(1105), - [sym_member_expression] = STATE(739), - [sym_subscript_expression] = STATE(739), - [sym_assignment_expression] = STATE(1105), - [sym__augmented_assignment_lhs] = STATE(1920), - [sym_augmented_assignment_expression] = STATE(1105), - [sym_spread_element] = STATE(2692), - [sym_ternary_expression] = STATE(1105), - [sym_binary_expression] = STATE(1105), - [sym_unary_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_string] = STATE(1101), - [sym_template_string] = STATE(1101), - [sym_regex] = STATE(1101), - [sym_meta_property] = STATE(1101), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(755), - [sym_type_assertion] = STATE(1105), - [sym_as_expression] = STATE(1105), - [sym_internal_module] = STATE(1105), - [sym__rest_identifier] = STATE(2643), - [sym_rest_identifier] = STATE(2571), - [sym_optional_identifier] = STATE(2571), - [sym__tuple_type_identifier] = STATE(2571), - [sym_labeled_tuple_type_member] = STATE(2637), - [sym__tuple_type_member] = STATE(2637), - [sym_type_arguments] = STATE(361), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2497), - [aux_sym_array_repeat1] = STATE(2690), - [sym_identifier] = ACTIONS(1141), + [sym_import] = STATE(1151), + [sym_parenthesized_expression] = STATE(759), + [sym__expression] = STATE(1276), + [sym_yield_expression] = STATE(1144), + [sym_object] = STATE(1257), + [sym_array] = STATE(1254), + [sym_class] = STATE(1151), + [sym_function] = STATE(1151), + [sym_generator_function] = STATE(1151), + [sym_arrow_function] = STATE(1151), + [sym__call_signature] = STATE(3082), + [sym_call_expression] = STATE(1151), + [sym_new_expression] = STATE(1144), + [sym_await_expression] = STATE(1144), + [sym_member_expression] = STATE(759), + [sym_subscript_expression] = STATE(759), + [sym_assignment_expression] = STATE(1144), + [sym__augmented_assignment_lhs] = STATE(1924), + [sym_augmented_assignment_expression] = STATE(1144), + [sym_spread_element] = STATE(2678), + [sym_ternary_expression] = STATE(1144), + [sym_binary_expression] = STATE(1144), + [sym_unary_expression] = STATE(1144), + [sym_update_expression] = STATE(1144), + [sym_string] = STATE(1151), + [sym_template_string] = STATE(1151), + [sym_regex] = STATE(1151), + [sym_meta_property] = STATE(1151), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(754), + [sym_type_assertion] = STATE(1144), + [sym_as_expression] = STATE(1144), + [sym_internal_module] = STATE(1144), + [sym__rest_identifier] = STATE(2779), + [sym_rest_identifier] = STATE(2503), + [sym_optional_identifier] = STATE(2503), + [sym__tuple_type_identifier] = STATE(2503), + [sym_labeled_tuple_type_member] = STATE(2636), + [sym__tuple_type_member] = STATE(2636), + [sym_type_arguments] = STATE(326), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2580), + [aux_sym_array_repeat1] = STATE(2691), + [sym_identifier] = ACTIONS(1131), [anon_sym_export] = ACTIONS(501), [anon_sym_namespace] = ACTIONS(507), [anon_sym_LBRACE] = ACTIONS(509), - [anon_sym_COMMA] = ACTIONS(1143), + [anon_sym_COMMA] = ACTIONS(1133), [anon_sym_type] = ACTIONS(501), [anon_sym_typeof] = ACTIONS(471), [anon_sym_import] = ACTIONS(435), @@ -22159,14 +22213,14 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(443), [anon_sym_yield] = ACTIONS(445), [anon_sym_LBRACK] = ACTIONS(517), - [anon_sym_RBRACK] = ACTIONS(1151), + [anon_sym_RBRACK] = ACTIONS(1153), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(449), [anon_sym_class] = ACTIONS(451), [anon_sym_async] = ACTIONS(521), [anon_sym_function] = ACTIONS(455), [anon_sym_new] = ACTIONS(523), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1147), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1137), [anon_sym_PLUS] = ACTIONS(525), [anon_sym_DASH] = ACTIONS(525), [anon_sym_TILDE] = ACTIONS(437), @@ -22202,55 +22256,55 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_readonly] = ACTIONS(501), }, [104] = { - [sym_import] = STATE(1101), - [sym_parenthesized_expression] = STATE(739), - [sym__expression] = STATE(1257), - [sym_yield_expression] = STATE(1105), - [sym_object] = STATE(1297), - [sym_array] = STATE(1296), - [sym_class] = STATE(1101), - [sym_function] = STATE(1101), - [sym_generator_function] = STATE(1101), - [sym_arrow_function] = STATE(1101), - [sym__call_signature] = STATE(3116), - [sym_call_expression] = STATE(1101), - [sym_new_expression] = STATE(1105), - [sym_await_expression] = STATE(1105), - [sym_member_expression] = STATE(739), - [sym_subscript_expression] = STATE(739), - [sym_assignment_expression] = STATE(1105), - [sym__augmented_assignment_lhs] = STATE(1920), - [sym_augmented_assignment_expression] = STATE(1105), - [sym_spread_element] = STATE(2724), - [sym_ternary_expression] = STATE(1105), - [sym_binary_expression] = STATE(1105), - [sym_unary_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_string] = STATE(1101), - [sym_template_string] = STATE(1101), - [sym_regex] = STATE(1101), - [sym_meta_property] = STATE(1101), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(755), - [sym_type_assertion] = STATE(1105), - [sym_as_expression] = STATE(1105), - [sym_internal_module] = STATE(1105), - [sym__rest_identifier] = STATE(2643), - [sym_rest_identifier] = STATE(2571), - [sym_optional_identifier] = STATE(2571), - [sym__tuple_type_identifier] = STATE(2571), - [sym_labeled_tuple_type_member] = STATE(2637), - [sym__tuple_type_member] = STATE(2637), - [sym_type_arguments] = STATE(361), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2497), - [aux_sym_array_repeat1] = STATE(2725), - [sym_identifier] = ACTIONS(1141), + [sym_import] = STATE(1151), + [sym_parenthesized_expression] = STATE(759), + [sym__expression] = STATE(1283), + [sym_yield_expression] = STATE(1144), + [sym_object] = STATE(1257), + [sym_array] = STATE(1254), + [sym_class] = STATE(1151), + [sym_function] = STATE(1151), + [sym_generator_function] = STATE(1151), + [sym_arrow_function] = STATE(1151), + [sym__call_signature] = STATE(3082), + [sym_call_expression] = STATE(1151), + [sym_new_expression] = STATE(1144), + [sym_await_expression] = STATE(1144), + [sym_member_expression] = STATE(759), + [sym_subscript_expression] = STATE(759), + [sym_assignment_expression] = STATE(1144), + [sym__augmented_assignment_lhs] = STATE(1924), + [sym_augmented_assignment_expression] = STATE(1144), + [sym_spread_element] = STATE(2687), + [sym_ternary_expression] = STATE(1144), + [sym_binary_expression] = STATE(1144), + [sym_unary_expression] = STATE(1144), + [sym_update_expression] = STATE(1144), + [sym_string] = STATE(1151), + [sym_template_string] = STATE(1151), + [sym_regex] = STATE(1151), + [sym_meta_property] = STATE(1151), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(754), + [sym_type_assertion] = STATE(1144), + [sym_as_expression] = STATE(1144), + [sym_internal_module] = STATE(1144), + [sym__rest_identifier] = STATE(2779), + [sym_rest_identifier] = STATE(2503), + [sym_optional_identifier] = STATE(2503), + [sym__tuple_type_identifier] = STATE(2503), + [sym_labeled_tuple_type_member] = STATE(2623), + [sym__tuple_type_member] = STATE(2623), + [sym_type_arguments] = STATE(326), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2580), + [aux_sym_array_repeat1] = STATE(2683), + [sym_identifier] = ACTIONS(1131), [anon_sym_export] = ACTIONS(501), [anon_sym_namespace] = ACTIONS(507), [anon_sym_LBRACE] = ACTIONS(509), - [anon_sym_COMMA] = ACTIONS(1143), + [anon_sym_COMMA] = ACTIONS(1133), [anon_sym_type] = ACTIONS(501), [anon_sym_typeof] = ACTIONS(471), [anon_sym_import] = ACTIONS(435), @@ -22259,14 +22313,14 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(443), [anon_sym_yield] = ACTIONS(445), [anon_sym_LBRACK] = ACTIONS(517), - [anon_sym_RBRACK] = ACTIONS(1153), + [anon_sym_RBRACK] = ACTIONS(1155), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(449), [anon_sym_class] = ACTIONS(451), [anon_sym_async] = ACTIONS(521), [anon_sym_function] = ACTIONS(455), [anon_sym_new] = ACTIONS(523), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1147), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1137), [anon_sym_PLUS] = ACTIONS(525), [anon_sym_DASH] = ACTIONS(525), [anon_sym_TILDE] = ACTIONS(437), @@ -22302,55 +22356,55 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_readonly] = ACTIONS(501), }, [105] = { - [sym_import] = STATE(1101), - [sym_parenthesized_expression] = STATE(739), - [sym__expression] = STATE(1304), - [sym_yield_expression] = STATE(1105), - [sym_object] = STATE(1297), - [sym_array] = STATE(1296), - [sym_class] = STATE(1101), - [sym_function] = STATE(1101), - [sym_generator_function] = STATE(1101), - [sym_arrow_function] = STATE(1101), - [sym__call_signature] = STATE(3116), - [sym_call_expression] = STATE(1101), - [sym_new_expression] = STATE(1105), - [sym_await_expression] = STATE(1105), - [sym_member_expression] = STATE(739), - [sym_subscript_expression] = STATE(739), - [sym_assignment_expression] = STATE(1105), - [sym__augmented_assignment_lhs] = STATE(1920), - [sym_augmented_assignment_expression] = STATE(1105), - [sym_spread_element] = STATE(2720), - [sym_ternary_expression] = STATE(1105), - [sym_binary_expression] = STATE(1105), - [sym_unary_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_string] = STATE(1101), - [sym_template_string] = STATE(1101), - [sym_regex] = STATE(1101), - [sym_meta_property] = STATE(1101), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(755), - [sym_type_assertion] = STATE(1105), - [sym_as_expression] = STATE(1105), - [sym_internal_module] = STATE(1105), - [sym__rest_identifier] = STATE(2643), - [sym_rest_identifier] = STATE(2571), - [sym_optional_identifier] = STATE(2571), - [sym__tuple_type_identifier] = STATE(2571), - [sym_labeled_tuple_type_member] = STATE(2637), - [sym__tuple_type_member] = STATE(2637), - [sym_type_arguments] = STATE(361), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2497), - [aux_sym_array_repeat1] = STATE(2721), - [sym_identifier] = ACTIONS(1141), + [sym_import] = STATE(1151), + [sym_parenthesized_expression] = STATE(759), + [sym__expression] = STATE(1297), + [sym_yield_expression] = STATE(1144), + [sym_object] = STATE(1257), + [sym_array] = STATE(1254), + [sym_class] = STATE(1151), + [sym_function] = STATE(1151), + [sym_generator_function] = STATE(1151), + [sym_arrow_function] = STATE(1151), + [sym__call_signature] = STATE(3082), + [sym_call_expression] = STATE(1151), + [sym_new_expression] = STATE(1144), + [sym_await_expression] = STATE(1144), + [sym_member_expression] = STATE(759), + [sym_subscript_expression] = STATE(759), + [sym_assignment_expression] = STATE(1144), + [sym__augmented_assignment_lhs] = STATE(1924), + [sym_augmented_assignment_expression] = STATE(1144), + [sym_spread_element] = STATE(2679), + [sym_ternary_expression] = STATE(1144), + [sym_binary_expression] = STATE(1144), + [sym_unary_expression] = STATE(1144), + [sym_update_expression] = STATE(1144), + [sym_string] = STATE(1151), + [sym_template_string] = STATE(1151), + [sym_regex] = STATE(1151), + [sym_meta_property] = STATE(1151), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(754), + [sym_type_assertion] = STATE(1144), + [sym_as_expression] = STATE(1144), + [sym_internal_module] = STATE(1144), + [sym__rest_identifier] = STATE(2779), + [sym_rest_identifier] = STATE(2503), + [sym_optional_identifier] = STATE(2503), + [sym__tuple_type_identifier] = STATE(2503), + [sym_labeled_tuple_type_member] = STATE(2636), + [sym__tuple_type_member] = STATE(2636), + [sym_type_arguments] = STATE(326), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2580), + [aux_sym_array_repeat1] = STATE(2680), + [sym_identifier] = ACTIONS(1131), [anon_sym_export] = ACTIONS(501), [anon_sym_namespace] = ACTIONS(507), [anon_sym_LBRACE] = ACTIONS(509), - [anon_sym_COMMA] = ACTIONS(1143), + [anon_sym_COMMA] = ACTIONS(1133), [anon_sym_type] = ACTIONS(501), [anon_sym_typeof] = ACTIONS(471), [anon_sym_import] = ACTIONS(435), @@ -22359,14 +22413,14 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(443), [anon_sym_yield] = ACTIONS(445), [anon_sym_LBRACK] = ACTIONS(517), - [anon_sym_RBRACK] = ACTIONS(1155), + [anon_sym_RBRACK] = ACTIONS(1135), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(449), [anon_sym_class] = ACTIONS(451), [anon_sym_async] = ACTIONS(521), [anon_sym_function] = ACTIONS(455), [anon_sym_new] = ACTIONS(523), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1147), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1137), [anon_sym_PLUS] = ACTIONS(525), [anon_sym_DASH] = ACTIONS(525), [anon_sym_TILDE] = ACTIONS(437), @@ -22402,55 +22456,55 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_readonly] = ACTIONS(501), }, [106] = { - [sym_import] = STATE(1101), - [sym_parenthesized_expression] = STATE(739), - [sym__expression] = STATE(1213), - [sym_yield_expression] = STATE(1105), - [sym_object] = STATE(1297), - [sym_array] = STATE(1296), - [sym_class] = STATE(1101), - [sym_function] = STATE(1101), - [sym_generator_function] = STATE(1101), - [sym_arrow_function] = STATE(1101), - [sym__call_signature] = STATE(3116), - [sym_call_expression] = STATE(1101), - [sym_new_expression] = STATE(1105), - [sym_await_expression] = STATE(1105), - [sym_member_expression] = STATE(739), - [sym_subscript_expression] = STATE(739), - [sym_assignment_expression] = STATE(1105), - [sym__augmented_assignment_lhs] = STATE(1920), - [sym_augmented_assignment_expression] = STATE(1105), - [sym_spread_element] = STATE(2692), - [sym_ternary_expression] = STATE(1105), - [sym_binary_expression] = STATE(1105), - [sym_unary_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_string] = STATE(1101), - [sym_template_string] = STATE(1101), - [sym_regex] = STATE(1101), - [sym_meta_property] = STATE(1101), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(755), - [sym_type_assertion] = STATE(1105), - [sym_as_expression] = STATE(1105), - [sym_internal_module] = STATE(1105), - [sym__rest_identifier] = STATE(2643), - [sym_rest_identifier] = STATE(2571), - [sym_optional_identifier] = STATE(2571), - [sym__tuple_type_identifier] = STATE(2571), - [sym_labeled_tuple_type_member] = STATE(2637), - [sym__tuple_type_member] = STATE(2637), - [sym_type_arguments] = STATE(361), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2497), - [aux_sym_array_repeat1] = STATE(2690), - [sym_identifier] = ACTIONS(1141), + [sym_import] = STATE(1151), + [sym_parenthesized_expression] = STATE(759), + [sym__expression] = STATE(1276), + [sym_yield_expression] = STATE(1144), + [sym_object] = STATE(1257), + [sym_array] = STATE(1254), + [sym_class] = STATE(1151), + [sym_function] = STATE(1151), + [sym_generator_function] = STATE(1151), + [sym_arrow_function] = STATE(1151), + [sym__call_signature] = STATE(3082), + [sym_call_expression] = STATE(1151), + [sym_new_expression] = STATE(1144), + [sym_await_expression] = STATE(1144), + [sym_member_expression] = STATE(759), + [sym_subscript_expression] = STATE(759), + [sym_assignment_expression] = STATE(1144), + [sym__augmented_assignment_lhs] = STATE(1924), + [sym_augmented_assignment_expression] = STATE(1144), + [sym_spread_element] = STATE(2678), + [sym_ternary_expression] = STATE(1144), + [sym_binary_expression] = STATE(1144), + [sym_unary_expression] = STATE(1144), + [sym_update_expression] = STATE(1144), + [sym_string] = STATE(1151), + [sym_template_string] = STATE(1151), + [sym_regex] = STATE(1151), + [sym_meta_property] = STATE(1151), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(754), + [sym_type_assertion] = STATE(1144), + [sym_as_expression] = STATE(1144), + [sym_internal_module] = STATE(1144), + [sym__rest_identifier] = STATE(2779), + [sym_rest_identifier] = STATE(2503), + [sym_optional_identifier] = STATE(2503), + [sym__tuple_type_identifier] = STATE(2503), + [sym_labeled_tuple_type_member] = STATE(2636), + [sym__tuple_type_member] = STATE(2636), + [sym_type_arguments] = STATE(326), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2580), + [aux_sym_array_repeat1] = STATE(2691), + [sym_identifier] = ACTIONS(1131), [anon_sym_export] = ACTIONS(501), [anon_sym_namespace] = ACTIONS(507), [anon_sym_LBRACE] = ACTIONS(509), - [anon_sym_COMMA] = ACTIONS(1143), + [anon_sym_COMMA] = ACTIONS(1133), [anon_sym_type] = ACTIONS(501), [anon_sym_typeof] = ACTIONS(471), [anon_sym_import] = ACTIONS(435), @@ -22466,7 +22520,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_async] = ACTIONS(521), [anon_sym_function] = ACTIONS(455), [anon_sym_new] = ACTIONS(523), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1147), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1137), [anon_sym_PLUS] = ACTIONS(525), [anon_sym_DASH] = ACTIONS(525), [anon_sym_TILDE] = ACTIONS(437), @@ -22502,55 +22556,55 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_readonly] = ACTIONS(501), }, [107] = { - [sym_import] = STATE(1101), - [sym_parenthesized_expression] = STATE(739), - [sym__expression] = STATE(1304), - [sym_yield_expression] = STATE(1105), - [sym_object] = STATE(1297), - [sym_array] = STATE(1296), - [sym_class] = STATE(1101), - [sym_function] = STATE(1101), - [sym_generator_function] = STATE(1101), - [sym_arrow_function] = STATE(1101), - [sym__call_signature] = STATE(3116), - [sym_call_expression] = STATE(1101), - [sym_new_expression] = STATE(1105), - [sym_await_expression] = STATE(1105), - [sym_member_expression] = STATE(739), - [sym_subscript_expression] = STATE(739), - [sym_assignment_expression] = STATE(1105), - [sym__augmented_assignment_lhs] = STATE(1920), - [sym_augmented_assignment_expression] = STATE(1105), - [sym_spread_element] = STATE(2720), - [sym_ternary_expression] = STATE(1105), - [sym_binary_expression] = STATE(1105), - [sym_unary_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_string] = STATE(1101), - [sym_template_string] = STATE(1101), - [sym_regex] = STATE(1101), - [sym_meta_property] = STATE(1101), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(755), - [sym_type_assertion] = STATE(1105), - [sym_as_expression] = STATE(1105), - [sym_internal_module] = STATE(1105), - [sym__rest_identifier] = STATE(2643), - [sym_rest_identifier] = STATE(2571), - [sym_optional_identifier] = STATE(2571), - [sym__tuple_type_identifier] = STATE(2571), - [sym_labeled_tuple_type_member] = STATE(2637), - [sym__tuple_type_member] = STATE(2637), - [sym_type_arguments] = STATE(361), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2497), - [aux_sym_array_repeat1] = STATE(2721), - [sym_identifier] = ACTIONS(1141), + [sym_import] = STATE(1151), + [sym_parenthesized_expression] = STATE(759), + [sym__expression] = STATE(1283), + [sym_yield_expression] = STATE(1144), + [sym_object] = STATE(1257), + [sym_array] = STATE(1254), + [sym_class] = STATE(1151), + [sym_function] = STATE(1151), + [sym_generator_function] = STATE(1151), + [sym_arrow_function] = STATE(1151), + [sym__call_signature] = STATE(3082), + [sym_call_expression] = STATE(1151), + [sym_new_expression] = STATE(1144), + [sym_await_expression] = STATE(1144), + [sym_member_expression] = STATE(759), + [sym_subscript_expression] = STATE(759), + [sym_assignment_expression] = STATE(1144), + [sym__augmented_assignment_lhs] = STATE(1924), + [sym_augmented_assignment_expression] = STATE(1144), + [sym_spread_element] = STATE(2687), + [sym_ternary_expression] = STATE(1144), + [sym_binary_expression] = STATE(1144), + [sym_unary_expression] = STATE(1144), + [sym_update_expression] = STATE(1144), + [sym_string] = STATE(1151), + [sym_template_string] = STATE(1151), + [sym_regex] = STATE(1151), + [sym_meta_property] = STATE(1151), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(754), + [sym_type_assertion] = STATE(1144), + [sym_as_expression] = STATE(1144), + [sym_internal_module] = STATE(1144), + [sym__rest_identifier] = STATE(2779), + [sym_rest_identifier] = STATE(2503), + [sym_optional_identifier] = STATE(2503), + [sym__tuple_type_identifier] = STATE(2503), + [sym_labeled_tuple_type_member] = STATE(2636), + [sym__tuple_type_member] = STATE(2636), + [sym_type_arguments] = STATE(326), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2580), + [aux_sym_array_repeat1] = STATE(2683), + [sym_identifier] = ACTIONS(1131), [anon_sym_export] = ACTIONS(501), [anon_sym_namespace] = ACTIONS(507), [anon_sym_LBRACE] = ACTIONS(509), - [anon_sym_COMMA] = ACTIONS(1143), + [anon_sym_COMMA] = ACTIONS(1133), [anon_sym_type] = ACTIONS(501), [anon_sym_typeof] = ACTIONS(471), [anon_sym_import] = ACTIONS(435), @@ -22566,7 +22620,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_async] = ACTIONS(521), [anon_sym_function] = ACTIONS(455), [anon_sym_new] = ACTIONS(523), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1147), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1137), [anon_sym_PLUS] = ACTIONS(525), [anon_sym_DASH] = ACTIONS(525), [anon_sym_TILDE] = ACTIONS(437), @@ -22602,55 +22656,55 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_readonly] = ACTIONS(501), }, [108] = { - [sym_import] = STATE(1101), - [sym_parenthesized_expression] = STATE(739), - [sym__expression] = STATE(1213), - [sym_yield_expression] = STATE(1105), - [sym_object] = STATE(1297), - [sym_array] = STATE(1296), - [sym_class] = STATE(1101), - [sym_function] = STATE(1101), - [sym_generator_function] = STATE(1101), - [sym_arrow_function] = STATE(1101), - [sym__call_signature] = STATE(3116), - [sym_call_expression] = STATE(1101), - [sym_new_expression] = STATE(1105), - [sym_await_expression] = STATE(1105), - [sym_member_expression] = STATE(739), - [sym_subscript_expression] = STATE(739), - [sym_assignment_expression] = STATE(1105), - [sym__augmented_assignment_lhs] = STATE(1920), - [sym_augmented_assignment_expression] = STATE(1105), - [sym_spread_element] = STATE(2692), - [sym_ternary_expression] = STATE(1105), - [sym_binary_expression] = STATE(1105), - [sym_unary_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_string] = STATE(1101), - [sym_template_string] = STATE(1101), - [sym_regex] = STATE(1101), - [sym_meta_property] = STATE(1101), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(755), - [sym_type_assertion] = STATE(1105), - [sym_as_expression] = STATE(1105), - [sym_internal_module] = STATE(1105), - [sym__rest_identifier] = STATE(2643), - [sym_rest_identifier] = STATE(2571), - [sym_optional_identifier] = STATE(2571), - [sym__tuple_type_identifier] = STATE(2571), - [sym_labeled_tuple_type_member] = STATE(2609), - [sym__tuple_type_member] = STATE(2609), - [sym_type_arguments] = STATE(361), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2497), - [aux_sym_array_repeat1] = STATE(2690), - [sym_identifier] = ACTIONS(1141), + [sym_import] = STATE(1151), + [sym_parenthesized_expression] = STATE(759), + [sym__expression] = STATE(1283), + [sym_yield_expression] = STATE(1144), + [sym_object] = STATE(1257), + [sym_array] = STATE(1254), + [sym_class] = STATE(1151), + [sym_function] = STATE(1151), + [sym_generator_function] = STATE(1151), + [sym_arrow_function] = STATE(1151), + [sym__call_signature] = STATE(3082), + [sym_call_expression] = STATE(1151), + [sym_new_expression] = STATE(1144), + [sym_await_expression] = STATE(1144), + [sym_member_expression] = STATE(759), + [sym_subscript_expression] = STATE(759), + [sym_assignment_expression] = STATE(1144), + [sym__augmented_assignment_lhs] = STATE(1924), + [sym_augmented_assignment_expression] = STATE(1144), + [sym_spread_element] = STATE(2687), + [sym_ternary_expression] = STATE(1144), + [sym_binary_expression] = STATE(1144), + [sym_unary_expression] = STATE(1144), + [sym_update_expression] = STATE(1144), + [sym_string] = STATE(1151), + [sym_template_string] = STATE(1151), + [sym_regex] = STATE(1151), + [sym_meta_property] = STATE(1151), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(754), + [sym_type_assertion] = STATE(1144), + [sym_as_expression] = STATE(1144), + [sym_internal_module] = STATE(1144), + [sym__rest_identifier] = STATE(2779), + [sym_rest_identifier] = STATE(2503), + [sym_optional_identifier] = STATE(2503), + [sym__tuple_type_identifier] = STATE(2503), + [sym_labeled_tuple_type_member] = STATE(2636), + [sym__tuple_type_member] = STATE(2636), + [sym_type_arguments] = STATE(326), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2580), + [aux_sym_array_repeat1] = STATE(2683), + [sym_identifier] = ACTIONS(1131), [anon_sym_export] = ACTIONS(501), [anon_sym_namespace] = ACTIONS(507), [anon_sym_LBRACE] = ACTIONS(509), - [anon_sym_COMMA] = ACTIONS(1143), + [anon_sym_COMMA] = ACTIONS(1133), [anon_sym_type] = ACTIONS(501), [anon_sym_typeof] = ACTIONS(471), [anon_sym_import] = ACTIONS(435), @@ -22666,7 +22720,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_async] = ACTIONS(521), [anon_sym_function] = ACTIONS(455), [anon_sym_new] = ACTIONS(523), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1147), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1137), [anon_sym_PLUS] = ACTIONS(525), [anon_sym_DASH] = ACTIONS(525), [anon_sym_TILDE] = ACTIONS(437), @@ -22702,66 +22756,164 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_readonly] = ACTIONS(501), }, [109] = { - [sym_import] = STATE(1101), - [sym_parenthesized_expression] = STATE(739), - [sym__expression] = STATE(1134), - [sym_yield_expression] = STATE(1105), - [sym_object] = STATE(1598), - [sym_array] = STATE(1491), - [sym_class] = STATE(1101), - [sym_function] = STATE(1101), - [sym_generator_function] = STATE(1101), - [sym_arrow_function] = STATE(1101), - [sym__call_signature] = STATE(3116), - [sym_call_expression] = STATE(1101), - [sym_new_expression] = STATE(1105), - [sym_await_expression] = STATE(1105), - [sym_member_expression] = STATE(739), - [sym_subscript_expression] = STATE(739), - [sym_assignment_expression] = STATE(1105), - [sym__augmented_assignment_lhs] = STATE(1920), - [sym_augmented_assignment_expression] = STATE(1105), - [sym_ternary_expression] = STATE(1105), - [sym_binary_expression] = STATE(1105), - [sym_unary_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_sequence_expression] = STATE(3025), - [sym_string] = STATE(1101), - [sym_template_string] = STATE(1101), - [sym_regex] = STATE(1101), - [sym_meta_property] = STATE(1101), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_rest_parameter] = STATE(2686), - [sym_non_null_expression] = STATE(755), - [sym_type_assertion] = STATE(1105), - [sym_as_expression] = STATE(1105), - [sym_internal_module] = STATE(1105), - [sym_accessibility_modifier] = STATE(1906), - [sym_required_parameter] = STATE(2686), - [sym_optional_parameter] = STATE(2686), - [sym__parameter_name] = STATE(2094), - [sym__rest_identifier] = STATE(2534), - [sym_type_arguments] = STATE(361), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(1764), + [sym_import] = STATE(1523), + [sym_expression_statement] = STATE(149), + [sym_variable_declaration] = STATE(149), + [sym_lexical_declaration] = STATE(149), + [sym_empty_statement] = STATE(149), + [sym_parenthesized_expression] = STATE(794), + [sym__expression] = STATE(1211), + [sym_yield_expression] = STATE(1567), + [sym_object] = STATE(1464), + [sym_array] = STATE(1450), + [sym_class] = STATE(1523), + [sym_function] = STATE(1523), + [sym_generator_function] = STATE(1523), + [sym_arrow_function] = STATE(1523), + [sym__call_signature] = STATE(3196), + [sym_call_expression] = STATE(1523), + [sym_new_expression] = STATE(1567), + [sym_await_expression] = STATE(1567), + [sym_member_expression] = STATE(794), + [sym_subscript_expression] = STATE(794), + [sym_assignment_expression] = STATE(1567), + [sym__augmented_assignment_lhs] = STATE(1928), + [sym_augmented_assignment_expression] = STATE(1567), + [sym_ternary_expression] = STATE(1567), + [sym_binary_expression] = STATE(1567), + [sym_unary_expression] = STATE(1567), + [sym_update_expression] = STATE(1567), + [sym_sequence_expression] = STATE(2826), + [sym_string] = STATE(1523), + [sym_template_string] = STATE(1523), + [sym_regex] = STATE(1523), + [sym_meta_property] = STATE(1523), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(788), + [sym_type_assertion] = STATE(1567), + [sym_as_expression] = STATE(1567), + [sym_internal_module] = STATE(1567), + [sym_type_arguments] = STATE(292), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2575), [sym_identifier] = ACTIONS(1163), - [anon_sym_export] = ACTIONS(425), - [anon_sym_namespace] = ACTIONS(429), + [anon_sym_export] = ACTIONS(1165), + [anon_sym_namespace] = ACTIONS(1167), + [anon_sym_LBRACE] = ACTIONS(571), + [anon_sym_type] = ACTIONS(1165), + [anon_sym_typeof] = ACTIONS(19), + [anon_sym_import] = ACTIONS(539), + [anon_sym_var] = ACTIONS(1169), + [anon_sym_let] = ACTIONS(1171), + [anon_sym_const] = ACTIONS(1171), + [anon_sym_BANG] = ACTIONS(29), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(39), + [anon_sym_SEMI] = ACTIONS(59), + [anon_sym_yield] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(545), + [anon_sym_async] = ACTIONS(1173), + [anon_sym_function] = ACTIONS(549), + [anon_sym_new] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(29), + [anon_sym_void] = ACTIONS(19), + [anon_sym_delete] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_DQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(85), + [sym_number] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(1165), + [anon_sym_get] = ACTIONS(1165), + [anon_sym_set] = ACTIONS(1165), + [anon_sym_declare] = ACTIONS(1165), + [anon_sym_public] = ACTIONS(1165), + [anon_sym_private] = ACTIONS(1165), + [anon_sym_protected] = ACTIONS(1165), + [anon_sym_module] = ACTIONS(1165), + [anon_sym_any] = ACTIONS(1165), + [anon_sym_number] = ACTIONS(1165), + [anon_sym_boolean] = ACTIONS(1165), + [anon_sym_string] = ACTIONS(1165), + [anon_sym_symbol] = ACTIONS(1165), + [sym_readonly] = ACTIONS(1165), + }, + [110] = { + [sym_import] = STATE(1151), + [sym_parenthesized_expression] = STATE(759), + [sym__expression] = STATE(1426), + [sym_yield_expression] = STATE(1144), + [sym_object] = STATE(1257), + [sym_array] = STATE(1254), + [sym_class] = STATE(1151), + [sym_function] = STATE(1151), + [sym_generator_function] = STATE(1151), + [sym_arrow_function] = STATE(1151), + [sym__call_signature] = STATE(3082), + [sym_call_expression] = STATE(1151), + [sym_new_expression] = STATE(1144), + [sym_await_expression] = STATE(1144), + [sym_member_expression] = STATE(759), + [sym_subscript_expression] = STATE(759), + [sym_assignment_expression] = STATE(1144), + [sym__augmented_assignment_lhs] = STATE(1924), + [sym_augmented_assignment_expression] = STATE(1144), + [sym_ternary_expression] = STATE(1144), + [sym_binary_expression] = STATE(1144), + [sym_unary_expression] = STATE(1144), + [sym_update_expression] = STATE(1144), + [sym_sequence_expression] = STATE(3027), + [sym_string] = STATE(1151), + [sym_template_string] = STATE(1151), + [sym_regex] = STATE(1151), + [sym_meta_property] = STATE(1151), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(754), + [sym_type_assertion] = STATE(1144), + [sym_as_expression] = STATE(1144), + [sym_internal_module] = STATE(1144), + [sym__rest_identifier] = STATE(2779), + [sym_rest_identifier] = STATE(2503), + [sym_optional_identifier] = STATE(2503), + [sym__tuple_type_identifier] = STATE(2503), + [sym_labeled_tuple_type_member] = STATE(2636), + [sym__tuple_type_member] = STATE(2636), + [sym_type_arguments] = STATE(326), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2580), + [sym_identifier] = ACTIONS(1131), + [anon_sym_export] = ACTIONS(501), + [anon_sym_namespace] = ACTIONS(507), [anon_sym_LBRACE] = ACTIONS(509), - [anon_sym_type] = ACTIONS(425), + [anon_sym_type] = ACTIONS(501), [anon_sym_typeof] = ACTIONS(471), [anon_sym_import] = ACTIONS(435), [anon_sym_BANG] = ACTIONS(437), [anon_sym_LPAREN] = ACTIONS(515), - [anon_sym_RPAREN] = ACTIONS(441), [anon_sym_await] = ACTIONS(443), [anon_sym_yield] = ACTIONS(445), [anon_sym_LBRACK] = ACTIONS(517), + [anon_sym_RBRACK] = ACTIONS(1175), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(449), [anon_sym_class] = ACTIONS(451), - [anon_sym_async] = ACTIONS(453), + [anon_sym_async] = ACTIONS(521), [anon_sym_function] = ACTIONS(455), [anon_sym_new] = ACTIONS(523), [anon_sym_DOT_DOT_DOT] = ACTIONS(459), @@ -22777,73 +22929,73 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(479), [sym_number] = ACTIONS(527), - [sym_this] = ACTIONS(1165), + [sym_this] = ACTIONS(485), [sym_super] = ACTIONS(485), [sym_true] = ACTIONS(485), [sym_false] = ACTIONS(485), [sym_null] = ACTIONS(485), [sym_undefined] = ACTIONS(485), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(425), - [anon_sym_get] = ACTIONS(425), - [anon_sym_set] = ACTIONS(425), - [anon_sym_declare] = ACTIONS(425), - [anon_sym_public] = ACTIONS(489), - [anon_sym_private] = ACTIONS(489), - [anon_sym_protected] = ACTIONS(489), - [anon_sym_module] = ACTIONS(425), - [anon_sym_any] = ACTIONS(425), - [anon_sym_number] = ACTIONS(425), - [anon_sym_boolean] = ACTIONS(425), - [anon_sym_string] = ACTIONS(425), - [anon_sym_symbol] = ACTIONS(425), - [sym_readonly] = ACTIONS(1167), + [anon_sym_static] = ACTIONS(501), + [anon_sym_get] = ACTIONS(501), + [anon_sym_set] = ACTIONS(501), + [anon_sym_declare] = ACTIONS(501), + [anon_sym_public] = ACTIONS(501), + [anon_sym_private] = ACTIONS(501), + [anon_sym_protected] = ACTIONS(501), + [anon_sym_module] = ACTIONS(501), + [anon_sym_any] = ACTIONS(501), + [anon_sym_number] = ACTIONS(501), + [anon_sym_boolean] = ACTIONS(501), + [anon_sym_string] = ACTIONS(501), + [anon_sym_symbol] = ACTIONS(501), + [sym_readonly] = ACTIONS(501), }, - [110] = { - [sym_import] = STATE(1101), - [sym_parenthesized_expression] = STATE(739), - [sym__expression] = STATE(1319), - [sym_yield_expression] = STATE(1105), - [sym_object] = STATE(1297), - [sym_array] = STATE(1296), - [sym_class] = STATE(1101), - [sym_function] = STATE(1101), - [sym_generator_function] = STATE(1101), - [sym_arrow_function] = STATE(1101), - [sym__call_signature] = STATE(3116), - [sym_call_expression] = STATE(1101), - [sym_new_expression] = STATE(1105), - [sym_await_expression] = STATE(1105), - [sym_member_expression] = STATE(739), - [sym_subscript_expression] = STATE(739), - [sym_assignment_expression] = STATE(1105), - [sym__augmented_assignment_lhs] = STATE(1920), - [sym_augmented_assignment_expression] = STATE(1105), - [sym_ternary_expression] = STATE(1105), - [sym_binary_expression] = STATE(1105), - [sym_unary_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_sequence_expression] = STATE(3102), - [sym_string] = STATE(1101), - [sym_template_string] = STATE(1101), - [sym_regex] = STATE(1101), - [sym_meta_property] = STATE(1101), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(755), - [sym_type_assertion] = STATE(1105), - [sym_as_expression] = STATE(1105), - [sym_internal_module] = STATE(1105), - [sym__rest_identifier] = STATE(2643), - [sym_rest_identifier] = STATE(2571), - [sym_optional_identifier] = STATE(2571), - [sym__tuple_type_identifier] = STATE(2571), - [sym_labeled_tuple_type_member] = STATE(2637), - [sym__tuple_type_member] = STATE(2637), - [sym_type_arguments] = STATE(361), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2497), - [sym_identifier] = ACTIONS(1141), + [111] = { + [sym_import] = STATE(1151), + [sym_parenthesized_expression] = STATE(759), + [sym__expression] = STATE(1453), + [sym_yield_expression] = STATE(1144), + [sym_object] = STATE(1257), + [sym_array] = STATE(1254), + [sym_class] = STATE(1151), + [sym_function] = STATE(1151), + [sym_generator_function] = STATE(1151), + [sym_arrow_function] = STATE(1151), + [sym__call_signature] = STATE(3082), + [sym_call_expression] = STATE(1151), + [sym_new_expression] = STATE(1144), + [sym_await_expression] = STATE(1144), + [sym_member_expression] = STATE(759), + [sym_subscript_expression] = STATE(759), + [sym_assignment_expression] = STATE(1144), + [sym__augmented_assignment_lhs] = STATE(1924), + [sym_augmented_assignment_expression] = STATE(1144), + [sym_ternary_expression] = STATE(1144), + [sym_binary_expression] = STATE(1144), + [sym_unary_expression] = STATE(1144), + [sym_update_expression] = STATE(1144), + [sym_sequence_expression] = STATE(3106), + [sym_string] = STATE(1151), + [sym_template_string] = STATE(1151), + [sym_regex] = STATE(1151), + [sym_meta_property] = STATE(1151), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(754), + [sym_type_assertion] = STATE(1144), + [sym_as_expression] = STATE(1144), + [sym_internal_module] = STATE(1144), + [sym__rest_identifier] = STATE(2779), + [sym_rest_identifier] = STATE(2503), + [sym_optional_identifier] = STATE(2503), + [sym__tuple_type_identifier] = STATE(2503), + [sym_labeled_tuple_type_member] = STATE(2636), + [sym__tuple_type_member] = STATE(2636), + [sym_type_arguments] = STATE(326), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2580), + [sym_identifier] = ACTIONS(1131), [anon_sym_export] = ACTIONS(501), [anon_sym_namespace] = ACTIONS(507), [anon_sym_LBRACE] = ACTIONS(509), @@ -22855,7 +23007,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(443), [anon_sym_yield] = ACTIONS(445), [anon_sym_LBRACK] = ACTIONS(517), - [anon_sym_RBRACK] = ACTIONS(1169), + [anon_sym_RBRACK] = ACTIONS(1175), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(449), [anon_sym_class] = ACTIONS(451), @@ -22897,51 +23049,51 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(501), [sym_readonly] = ACTIONS(501), }, - [111] = { - [sym_import] = STATE(1101), - [sym_parenthesized_expression] = STATE(739), - [sym__expression] = STATE(1415), - [sym_yield_expression] = STATE(1105), - [sym_object] = STATE(1297), - [sym_array] = STATE(1296), - [sym_class] = STATE(1101), - [sym_function] = STATE(1101), - [sym_generator_function] = STATE(1101), - [sym_arrow_function] = STATE(1101), - [sym__call_signature] = STATE(3116), - [sym_call_expression] = STATE(1101), - [sym_new_expression] = STATE(1105), - [sym_await_expression] = STATE(1105), - [sym_member_expression] = STATE(739), - [sym_subscript_expression] = STATE(739), - [sym_assignment_expression] = STATE(1105), - [sym__augmented_assignment_lhs] = STATE(1920), - [sym_augmented_assignment_expression] = STATE(1105), - [sym_ternary_expression] = STATE(1105), - [sym_binary_expression] = STATE(1105), - [sym_unary_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_sequence_expression] = STATE(3136), - [sym_string] = STATE(1101), - [sym_template_string] = STATE(1101), - [sym_regex] = STATE(1101), - [sym_meta_property] = STATE(1101), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(755), - [sym_type_assertion] = STATE(1105), - [sym_as_expression] = STATE(1105), - [sym_internal_module] = STATE(1105), - [sym__rest_identifier] = STATE(2643), - [sym_rest_identifier] = STATE(2571), - [sym_optional_identifier] = STATE(2571), - [sym__tuple_type_identifier] = STATE(2571), - [sym_labeled_tuple_type_member] = STATE(2637), - [sym__tuple_type_member] = STATE(2637), - [sym_type_arguments] = STATE(361), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2497), - [sym_identifier] = ACTIONS(1141), + [112] = { + [sym_import] = STATE(1151), + [sym_parenthesized_expression] = STATE(759), + [sym__expression] = STATE(1341), + [sym_yield_expression] = STATE(1144), + [sym_object] = STATE(1257), + [sym_array] = STATE(1254), + [sym_class] = STATE(1151), + [sym_function] = STATE(1151), + [sym_generator_function] = STATE(1151), + [sym_arrow_function] = STATE(1151), + [sym__call_signature] = STATE(3082), + [sym_call_expression] = STATE(1151), + [sym_new_expression] = STATE(1144), + [sym_await_expression] = STATE(1144), + [sym_member_expression] = STATE(759), + [sym_subscript_expression] = STATE(759), + [sym_assignment_expression] = STATE(1144), + [sym__augmented_assignment_lhs] = STATE(1924), + [sym_augmented_assignment_expression] = STATE(1144), + [sym_ternary_expression] = STATE(1144), + [sym_binary_expression] = STATE(1144), + [sym_unary_expression] = STATE(1144), + [sym_update_expression] = STATE(1144), + [sym_sequence_expression] = STATE(3054), + [sym_string] = STATE(1151), + [sym_template_string] = STATE(1151), + [sym_regex] = STATE(1151), + [sym_meta_property] = STATE(1151), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(754), + [sym_type_assertion] = STATE(1144), + [sym_as_expression] = STATE(1144), + [sym_internal_module] = STATE(1144), + [sym__rest_identifier] = STATE(2779), + [sym_rest_identifier] = STATE(2503), + [sym_optional_identifier] = STATE(2503), + [sym__tuple_type_identifier] = STATE(2503), + [sym_labeled_tuple_type_member] = STATE(2636), + [sym__tuple_type_member] = STATE(2636), + [sym_type_arguments] = STATE(326), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2580), + [sym_identifier] = ACTIONS(1131), [anon_sym_export] = ACTIONS(501), [anon_sym_namespace] = ACTIONS(507), [anon_sym_LBRACE] = ACTIONS(509), @@ -22953,7 +23105,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(443), [anon_sym_yield] = ACTIONS(445), [anon_sym_LBRACK] = ACTIONS(517), - [anon_sym_RBRACK] = ACTIONS(1169), + [anon_sym_RBRACK] = ACTIONS(1175), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(449), [anon_sym_class] = ACTIONS(451), @@ -22995,263 +23147,67 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(501), [sym_readonly] = ACTIONS(501), }, - [112] = { - [sym_import] = STATE(1498), - [sym_expression_statement] = STATE(149), - [sym_variable_declaration] = STATE(149), - [sym_lexical_declaration] = STATE(149), - [sym_empty_statement] = STATE(149), - [sym_parenthesized_expression] = STATE(779), - [sym__expression] = STATE(1265), - [sym_yield_expression] = STATE(1518), - [sym_object] = STATE(1470), - [sym_array] = STATE(1315), - [sym_class] = STATE(1498), - [sym_function] = STATE(1498), - [sym_generator_function] = STATE(1498), - [sym_arrow_function] = STATE(1498), - [sym__call_signature] = STATE(3145), - [sym_call_expression] = STATE(1498), - [sym_new_expression] = STATE(1518), - [sym_await_expression] = STATE(1518), - [sym_member_expression] = STATE(779), - [sym_subscript_expression] = STATE(779), - [sym_assignment_expression] = STATE(1518), - [sym__augmented_assignment_lhs] = STATE(1925), - [sym_augmented_assignment_expression] = STATE(1518), - [sym_ternary_expression] = STATE(1518), - [sym_binary_expression] = STATE(1518), - [sym_unary_expression] = STATE(1518), - [sym_update_expression] = STATE(1518), - [sym_sequence_expression] = STATE(2844), - [sym_string] = STATE(1498), - [sym_template_string] = STATE(1498), - [sym_regex] = STATE(1498), - [sym_meta_property] = STATE(1498), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(776), - [sym_type_assertion] = STATE(1518), - [sym_as_expression] = STATE(1518), - [sym_internal_module] = STATE(1518), - [sym_type_arguments] = STATE(349), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2554), - [sym_identifier] = ACTIONS(1171), - [anon_sym_export] = ACTIONS(1173), - [anon_sym_namespace] = ACTIONS(1175), - [anon_sym_LBRACE] = ACTIONS(595), - [anon_sym_type] = ACTIONS(1173), - [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(597), - [anon_sym_var] = ACTIONS(1177), - [anon_sym_let] = ACTIONS(1179), - [anon_sym_const] = ACTIONS(1179), - [anon_sym_BANG] = ACTIONS(29), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(39), - [anon_sym_SEMI] = ACTIONS(59), - [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(601), - [anon_sym_async] = ACTIONS(1181), - [anon_sym_function] = ACTIONS(605), - [anon_sym_new] = ACTIONS(75), - [anon_sym_PLUS] = ACTIONS(77), - [anon_sym_DASH] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(29), - [anon_sym_void] = ACTIONS(19), - [anon_sym_delete] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(85), - [sym_number] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(1173), - [anon_sym_get] = ACTIONS(1173), - [anon_sym_set] = ACTIONS(1173), - [anon_sym_declare] = ACTIONS(1173), - [anon_sym_public] = ACTIONS(1173), - [anon_sym_private] = ACTIONS(1173), - [anon_sym_protected] = ACTIONS(1173), - [anon_sym_module] = ACTIONS(1173), - [anon_sym_any] = ACTIONS(1173), - [anon_sym_number] = ACTIONS(1173), - [anon_sym_boolean] = ACTIONS(1173), - [anon_sym_string] = ACTIONS(1173), - [anon_sym_symbol] = ACTIONS(1173), - [sym_readonly] = ACTIONS(1173), - }, [113] = { - [sym_import] = STATE(1498), - [sym_expression_statement] = STATE(150), - [sym_variable_declaration] = STATE(150), - [sym_lexical_declaration] = STATE(150), - [sym_empty_statement] = STATE(150), - [sym_parenthesized_expression] = STATE(779), - [sym__expression] = STATE(1265), - [sym_yield_expression] = STATE(1518), - [sym_object] = STATE(1470), - [sym_array] = STATE(1315), - [sym_class] = STATE(1498), - [sym_function] = STATE(1498), - [sym_generator_function] = STATE(1498), - [sym_arrow_function] = STATE(1498), - [sym__call_signature] = STATE(3145), - [sym_call_expression] = STATE(1498), - [sym_new_expression] = STATE(1518), - [sym_await_expression] = STATE(1518), - [sym_member_expression] = STATE(779), - [sym_subscript_expression] = STATE(779), - [sym_assignment_expression] = STATE(1518), - [sym__augmented_assignment_lhs] = STATE(1925), - [sym_augmented_assignment_expression] = STATE(1518), - [sym_ternary_expression] = STATE(1518), - [sym_binary_expression] = STATE(1518), - [sym_unary_expression] = STATE(1518), - [sym_update_expression] = STATE(1518), - [sym_sequence_expression] = STATE(2844), - [sym_string] = STATE(1498), - [sym_template_string] = STATE(1498), - [sym_regex] = STATE(1498), - [sym_meta_property] = STATE(1498), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(776), - [sym_type_assertion] = STATE(1518), - [sym_as_expression] = STATE(1518), - [sym_internal_module] = STATE(1518), - [sym_type_arguments] = STATE(349), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2554), - [sym_identifier] = ACTIONS(1171), - [anon_sym_export] = ACTIONS(1173), - [anon_sym_namespace] = ACTIONS(1175), - [anon_sym_LBRACE] = ACTIONS(595), - [anon_sym_type] = ACTIONS(1173), - [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(597), - [anon_sym_var] = ACTIONS(1177), - [anon_sym_let] = ACTIONS(1179), - [anon_sym_const] = ACTIONS(1179), - [anon_sym_BANG] = ACTIONS(29), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(39), - [anon_sym_SEMI] = ACTIONS(59), - [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(601), - [anon_sym_async] = ACTIONS(1181), - [anon_sym_function] = ACTIONS(605), - [anon_sym_new] = ACTIONS(75), - [anon_sym_PLUS] = ACTIONS(77), - [anon_sym_DASH] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(29), - [anon_sym_void] = ACTIONS(19), - [anon_sym_delete] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(85), - [sym_number] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(1173), - [anon_sym_get] = ACTIONS(1173), - [anon_sym_set] = ACTIONS(1173), - [anon_sym_declare] = ACTIONS(1173), - [anon_sym_public] = ACTIONS(1173), - [anon_sym_private] = ACTIONS(1173), - [anon_sym_protected] = ACTIONS(1173), - [anon_sym_module] = ACTIONS(1173), - [anon_sym_any] = ACTIONS(1173), - [anon_sym_number] = ACTIONS(1173), - [anon_sym_boolean] = ACTIONS(1173), - [anon_sym_string] = ACTIONS(1173), - [anon_sym_symbol] = ACTIONS(1173), - [sym_readonly] = ACTIONS(1173), - }, - [114] = { - [sym_import] = STATE(1101), - [sym_parenthesized_expression] = STATE(739), - [sym__expression] = STATE(1319), - [sym_yield_expression] = STATE(1105), - [sym_object] = STATE(1297), - [sym_array] = STATE(1296), - [sym_class] = STATE(1101), - [sym_function] = STATE(1101), - [sym_generator_function] = STATE(1101), - [sym_arrow_function] = STATE(1101), - [sym__call_signature] = STATE(3116), - [sym_call_expression] = STATE(1101), - [sym_new_expression] = STATE(1105), - [sym_await_expression] = STATE(1105), - [sym_member_expression] = STATE(739), - [sym_subscript_expression] = STATE(739), - [sym_assignment_expression] = STATE(1105), - [sym__augmented_assignment_lhs] = STATE(1920), - [sym_augmented_assignment_expression] = STATE(1105), - [sym_ternary_expression] = STATE(1105), - [sym_binary_expression] = STATE(1105), - [sym_unary_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_sequence_expression] = STATE(3102), - [sym_string] = STATE(1101), - [sym_template_string] = STATE(1101), - [sym_regex] = STATE(1101), - [sym_meta_property] = STATE(1101), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(755), - [sym_type_assertion] = STATE(1105), - [sym_as_expression] = STATE(1105), - [sym_internal_module] = STATE(1105), - [sym__rest_identifier] = STATE(2643), - [sym_rest_identifier] = STATE(2571), - [sym_optional_identifier] = STATE(2571), - [sym__tuple_type_identifier] = STATE(2571), - [sym_labeled_tuple_type_member] = STATE(2609), - [sym__tuple_type_member] = STATE(2609), - [sym_type_arguments] = STATE(361), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2497), - [sym_identifier] = ACTIONS(1141), - [anon_sym_export] = ACTIONS(501), - [anon_sym_namespace] = ACTIONS(507), + [sym_import] = STATE(1151), + [sym_parenthesized_expression] = STATE(759), + [sym__expression] = STATE(1177), + [sym_yield_expression] = STATE(1144), + [sym_object] = STATE(1485), + [sym_array] = STATE(1486), + [sym_class] = STATE(1151), + [sym_function] = STATE(1151), + [sym_generator_function] = STATE(1151), + [sym_arrow_function] = STATE(1151), + [sym__call_signature] = STATE(3082), + [sym_call_expression] = STATE(1151), + [sym_new_expression] = STATE(1144), + [sym_await_expression] = STATE(1144), + [sym_member_expression] = STATE(759), + [sym_subscript_expression] = STATE(759), + [sym_assignment_expression] = STATE(1144), + [sym__augmented_assignment_lhs] = STATE(1924), + [sym_augmented_assignment_expression] = STATE(1144), + [sym_ternary_expression] = STATE(1144), + [sym_binary_expression] = STATE(1144), + [sym_unary_expression] = STATE(1144), + [sym_update_expression] = STATE(1144), + [sym_sequence_expression] = STATE(3169), + [sym_string] = STATE(1151), + [sym_template_string] = STATE(1151), + [sym_regex] = STATE(1151), + [sym_meta_property] = STATE(1151), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_rest_parameter] = STATE(2622), + [sym_non_null_expression] = STATE(754), + [sym_type_assertion] = STATE(1144), + [sym_as_expression] = STATE(1144), + [sym_internal_module] = STATE(1144), + [sym_accessibility_modifier] = STATE(1910), + [sym_required_parameter] = STATE(2622), + [sym_optional_parameter] = STATE(2622), + [sym__parameter_name] = STATE(2103), + [sym__rest_identifier] = STATE(2595), + [sym_type_arguments] = STATE(326), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(1765), + [sym_identifier] = ACTIONS(1177), + [anon_sym_export] = ACTIONS(425), + [anon_sym_namespace] = ACTIONS(429), [anon_sym_LBRACE] = ACTIONS(509), - [anon_sym_type] = ACTIONS(501), + [anon_sym_type] = ACTIONS(425), [anon_sym_typeof] = ACTIONS(471), [anon_sym_import] = ACTIONS(435), [anon_sym_BANG] = ACTIONS(437), [anon_sym_LPAREN] = ACTIONS(515), + [anon_sym_RPAREN] = ACTIONS(441), [anon_sym_await] = ACTIONS(443), [anon_sym_yield] = ACTIONS(445), [anon_sym_LBRACK] = ACTIONS(517), - [anon_sym_RBRACK] = ACTIONS(1183), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(449), [anon_sym_class] = ACTIONS(451), - [anon_sym_async] = ACTIONS(521), + [anon_sym_async] = ACTIONS(453), [anon_sym_function] = ACTIONS(455), [anon_sym_new] = ACTIONS(523), [anon_sym_DOT_DOT_DOT] = ACTIONS(459), @@ -23267,73 +23223,73 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(479), [sym_number] = ACTIONS(527), - [sym_this] = ACTIONS(485), + [sym_this] = ACTIONS(1179), [sym_super] = ACTIONS(485), [sym_true] = ACTIONS(485), [sym_false] = ACTIONS(485), [sym_null] = ACTIONS(485), [sym_undefined] = ACTIONS(485), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(501), - [anon_sym_get] = ACTIONS(501), - [anon_sym_set] = ACTIONS(501), - [anon_sym_declare] = ACTIONS(501), - [anon_sym_public] = ACTIONS(501), - [anon_sym_private] = ACTIONS(501), - [anon_sym_protected] = ACTIONS(501), - [anon_sym_module] = ACTIONS(501), - [anon_sym_any] = ACTIONS(501), - [anon_sym_number] = ACTIONS(501), - [anon_sym_boolean] = ACTIONS(501), - [anon_sym_string] = ACTIONS(501), - [anon_sym_symbol] = ACTIONS(501), - [sym_readonly] = ACTIONS(501), + [anon_sym_static] = ACTIONS(425), + [anon_sym_get] = ACTIONS(425), + [anon_sym_set] = ACTIONS(425), + [anon_sym_declare] = ACTIONS(425), + [anon_sym_public] = ACTIONS(489), + [anon_sym_private] = ACTIONS(489), + [anon_sym_protected] = ACTIONS(489), + [anon_sym_module] = ACTIONS(425), + [anon_sym_any] = ACTIONS(425), + [anon_sym_number] = ACTIONS(425), + [anon_sym_boolean] = ACTIONS(425), + [anon_sym_string] = ACTIONS(425), + [anon_sym_symbol] = ACTIONS(425), + [sym_readonly] = ACTIONS(1181), }, - [115] = { - [sym_import] = STATE(1101), - [sym_parenthesized_expression] = STATE(739), - [sym__expression] = STATE(1327), - [sym_yield_expression] = STATE(1105), - [sym_object] = STATE(1297), - [sym_array] = STATE(1296), - [sym_class] = STATE(1101), - [sym_function] = STATE(1101), - [sym_generator_function] = STATE(1101), - [sym_arrow_function] = STATE(1101), - [sym__call_signature] = STATE(3116), - [sym_call_expression] = STATE(1101), - [sym_new_expression] = STATE(1105), - [sym_await_expression] = STATE(1105), - [sym_member_expression] = STATE(739), - [sym_subscript_expression] = STATE(739), - [sym_assignment_expression] = STATE(1105), - [sym__augmented_assignment_lhs] = STATE(1920), - [sym_augmented_assignment_expression] = STATE(1105), - [sym_ternary_expression] = STATE(1105), - [sym_binary_expression] = STATE(1105), - [sym_unary_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_sequence_expression] = STATE(3100), - [sym_string] = STATE(1101), - [sym_template_string] = STATE(1101), - [sym_regex] = STATE(1101), - [sym_meta_property] = STATE(1101), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(755), - [sym_type_assertion] = STATE(1105), - [sym_as_expression] = STATE(1105), - [sym_internal_module] = STATE(1105), - [sym__rest_identifier] = STATE(2643), - [sym_rest_identifier] = STATE(2571), - [sym_optional_identifier] = STATE(2571), - [sym__tuple_type_identifier] = STATE(2571), - [sym_labeled_tuple_type_member] = STATE(2637), - [sym__tuple_type_member] = STATE(2637), - [sym_type_arguments] = STATE(361), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2497), - [sym_identifier] = ACTIONS(1141), + [114] = { + [sym_import] = STATE(1151), + [sym_parenthesized_expression] = STATE(759), + [sym__expression] = STATE(1341), + [sym_yield_expression] = STATE(1144), + [sym_object] = STATE(1257), + [sym_array] = STATE(1254), + [sym_class] = STATE(1151), + [sym_function] = STATE(1151), + [sym_generator_function] = STATE(1151), + [sym_arrow_function] = STATE(1151), + [sym__call_signature] = STATE(3082), + [sym_call_expression] = STATE(1151), + [sym_new_expression] = STATE(1144), + [sym_await_expression] = STATE(1144), + [sym_member_expression] = STATE(759), + [sym_subscript_expression] = STATE(759), + [sym_assignment_expression] = STATE(1144), + [sym__augmented_assignment_lhs] = STATE(1924), + [sym_augmented_assignment_expression] = STATE(1144), + [sym_ternary_expression] = STATE(1144), + [sym_binary_expression] = STATE(1144), + [sym_unary_expression] = STATE(1144), + [sym_update_expression] = STATE(1144), + [sym_sequence_expression] = STATE(3054), + [sym_string] = STATE(1151), + [sym_template_string] = STATE(1151), + [sym_regex] = STATE(1151), + [sym_meta_property] = STATE(1151), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(754), + [sym_type_assertion] = STATE(1144), + [sym_as_expression] = STATE(1144), + [sym_internal_module] = STATE(1144), + [sym__rest_identifier] = STATE(2779), + [sym_rest_identifier] = STATE(2503), + [sym_optional_identifier] = STATE(2503), + [sym__tuple_type_identifier] = STATE(2503), + [sym_labeled_tuple_type_member] = STATE(2623), + [sym__tuple_type_member] = STATE(2623), + [sym_type_arguments] = STATE(326), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2580), + [sym_identifier] = ACTIONS(1131), [anon_sym_export] = ACTIONS(501), [anon_sym_namespace] = ACTIONS(507), [anon_sym_LBRACE] = ACTIONS(509), @@ -23345,7 +23301,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(443), [anon_sym_yield] = ACTIONS(445), [anon_sym_LBRACK] = ACTIONS(517), - [anon_sym_RBRACK] = ACTIONS(1169), + [anon_sym_RBRACK] = ACTIONS(1183), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(449), [anon_sym_class] = ACTIONS(451), @@ -23387,51 +23343,149 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(501), [sym_readonly] = ACTIONS(501), }, - [116] = { - [sym_import] = STATE(1101), - [sym_parenthesized_expression] = STATE(739), - [sym__expression] = STATE(1202), - [sym_yield_expression] = STATE(1105), - [sym_object] = STATE(1598), - [sym_array] = STATE(1491), - [sym_class] = STATE(1101), - [sym_function] = STATE(1101), - [sym_generator_function] = STATE(1101), - [sym_arrow_function] = STATE(1101), - [sym__call_signature] = STATE(3116), - [sym_call_expression] = STATE(1101), - [sym_new_expression] = STATE(1105), - [sym_await_expression] = STATE(1105), - [sym_member_expression] = STATE(739), - [sym_subscript_expression] = STATE(739), - [sym_assignment_expression] = STATE(1105), - [sym__augmented_assignment_lhs] = STATE(1920), - [sym_augmented_assignment_expression] = STATE(1105), - [sym_ternary_expression] = STATE(1105), - [sym_binary_expression] = STATE(1105), - [sym_unary_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_sequence_expression] = STATE(3014), - [sym_string] = STATE(1101), - [sym_template_string] = STATE(1101), - [sym_regex] = STATE(1101), - [sym_meta_property] = STATE(1101), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_rest_parameter] = STATE(2686), - [sym_non_null_expression] = STATE(755), - [sym_type_assertion] = STATE(1105), - [sym_as_expression] = STATE(1105), - [sym_internal_module] = STATE(1105), - [sym_accessibility_modifier] = STATE(1906), - [sym_required_parameter] = STATE(2686), - [sym_optional_parameter] = STATE(2686), - [sym__parameter_name] = STATE(2094), - [sym__rest_identifier] = STATE(2534), - [sym_type_arguments] = STATE(361), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(1764), + [115] = { + [sym_import] = STATE(1523), + [sym_expression_statement] = STATE(150), + [sym_variable_declaration] = STATE(150), + [sym_lexical_declaration] = STATE(150), + [sym_empty_statement] = STATE(150), + [sym_parenthesized_expression] = STATE(794), + [sym__expression] = STATE(1211), + [sym_yield_expression] = STATE(1567), + [sym_object] = STATE(1464), + [sym_array] = STATE(1450), + [sym_class] = STATE(1523), + [sym_function] = STATE(1523), + [sym_generator_function] = STATE(1523), + [sym_arrow_function] = STATE(1523), + [sym__call_signature] = STATE(3196), + [sym_call_expression] = STATE(1523), + [sym_new_expression] = STATE(1567), + [sym_await_expression] = STATE(1567), + [sym_member_expression] = STATE(794), + [sym_subscript_expression] = STATE(794), + [sym_assignment_expression] = STATE(1567), + [sym__augmented_assignment_lhs] = STATE(1928), + [sym_augmented_assignment_expression] = STATE(1567), + [sym_ternary_expression] = STATE(1567), + [sym_binary_expression] = STATE(1567), + [sym_unary_expression] = STATE(1567), + [sym_update_expression] = STATE(1567), + [sym_sequence_expression] = STATE(2826), + [sym_string] = STATE(1523), + [sym_template_string] = STATE(1523), + [sym_regex] = STATE(1523), + [sym_meta_property] = STATE(1523), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(788), + [sym_type_assertion] = STATE(1567), + [sym_as_expression] = STATE(1567), + [sym_internal_module] = STATE(1567), + [sym_type_arguments] = STATE(292), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2575), [sym_identifier] = ACTIONS(1163), + [anon_sym_export] = ACTIONS(1165), + [anon_sym_namespace] = ACTIONS(1167), + [anon_sym_LBRACE] = ACTIONS(571), + [anon_sym_type] = ACTIONS(1165), + [anon_sym_typeof] = ACTIONS(19), + [anon_sym_import] = ACTIONS(539), + [anon_sym_var] = ACTIONS(1169), + [anon_sym_let] = ACTIONS(1171), + [anon_sym_const] = ACTIONS(1171), + [anon_sym_BANG] = ACTIONS(29), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(39), + [anon_sym_SEMI] = ACTIONS(59), + [anon_sym_yield] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(545), + [anon_sym_async] = ACTIONS(1173), + [anon_sym_function] = ACTIONS(549), + [anon_sym_new] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(29), + [anon_sym_void] = ACTIONS(19), + [anon_sym_delete] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_DQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(85), + [sym_number] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(1165), + [anon_sym_get] = ACTIONS(1165), + [anon_sym_set] = ACTIONS(1165), + [anon_sym_declare] = ACTIONS(1165), + [anon_sym_public] = ACTIONS(1165), + [anon_sym_private] = ACTIONS(1165), + [anon_sym_protected] = ACTIONS(1165), + [anon_sym_module] = ACTIONS(1165), + [anon_sym_any] = ACTIONS(1165), + [anon_sym_number] = ACTIONS(1165), + [anon_sym_boolean] = ACTIONS(1165), + [anon_sym_string] = ACTIONS(1165), + [anon_sym_symbol] = ACTIONS(1165), + [sym_readonly] = ACTIONS(1165), + }, + [116] = { + [sym_import] = STATE(1151), + [sym_parenthesized_expression] = STATE(759), + [sym__expression] = STATE(1125), + [sym_yield_expression] = STATE(1144), + [sym_object] = STATE(1485), + [sym_array] = STATE(1486), + [sym_class] = STATE(1151), + [sym_function] = STATE(1151), + [sym_generator_function] = STATE(1151), + [sym_arrow_function] = STATE(1151), + [sym__call_signature] = STATE(3082), + [sym_call_expression] = STATE(1151), + [sym_new_expression] = STATE(1144), + [sym_await_expression] = STATE(1144), + [sym_member_expression] = STATE(759), + [sym_subscript_expression] = STATE(759), + [sym_assignment_expression] = STATE(1144), + [sym__augmented_assignment_lhs] = STATE(1924), + [sym_augmented_assignment_expression] = STATE(1144), + [sym_ternary_expression] = STATE(1144), + [sym_binary_expression] = STATE(1144), + [sym_unary_expression] = STATE(1144), + [sym_update_expression] = STATE(1144), + [sym_sequence_expression] = STATE(3063), + [sym_string] = STATE(1151), + [sym_template_string] = STATE(1151), + [sym_regex] = STATE(1151), + [sym_meta_property] = STATE(1151), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_rest_parameter] = STATE(2622), + [sym_non_null_expression] = STATE(754), + [sym_type_assertion] = STATE(1144), + [sym_as_expression] = STATE(1144), + [sym_internal_module] = STATE(1144), + [sym_accessibility_modifier] = STATE(1910), + [sym_required_parameter] = STATE(2622), + [sym_optional_parameter] = STATE(2622), + [sym__parameter_name] = STATE(2103), + [sym__rest_identifier] = STATE(2595), + [sym_type_arguments] = STATE(326), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(1765), + [sym_identifier] = ACTIONS(1177), [anon_sym_export] = ACTIONS(425), [anon_sym_namespace] = ACTIONS(429), [anon_sym_LBRACE] = ACTIONS(509), @@ -23463,7 +23517,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(479), [sym_number] = ACTIONS(527), - [sym_this] = ACTIONS(1165), + [sym_this] = ACTIONS(1179), [sym_super] = ACTIONS(485), [sym_true] = ACTIONS(485), [sym_false] = ACTIONS(485), @@ -23483,53 +23537,53 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_boolean] = ACTIONS(425), [anon_sym_string] = ACTIONS(425), [anon_sym_symbol] = ACTIONS(425), - [sym_readonly] = ACTIONS(1167), + [sym_readonly] = ACTIONS(1181), }, [117] = { - [sym_import] = STATE(1101), - [sym_parenthesized_expression] = STATE(739), - [sym__expression] = STATE(1163), - [sym_yield_expression] = STATE(1105), - [sym_object] = STATE(1598), - [sym_array] = STATE(1491), - [sym_class] = STATE(1101), - [sym_function] = STATE(1101), - [sym_generator_function] = STATE(1101), - [sym_arrow_function] = STATE(1101), - [sym__call_signature] = STATE(3116), - [sym_call_expression] = STATE(1101), - [sym_new_expression] = STATE(1105), - [sym_await_expression] = STATE(1105), - [sym_member_expression] = STATE(739), - [sym_subscript_expression] = STATE(739), - [sym_assignment_expression] = STATE(1105), - [sym__augmented_assignment_lhs] = STATE(1920), - [sym_augmented_assignment_expression] = STATE(1105), - [sym_ternary_expression] = STATE(1105), - [sym_binary_expression] = STATE(1105), - [sym_unary_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_sequence_expression] = STATE(3000), - [sym_string] = STATE(1101), - [sym_template_string] = STATE(1101), - [sym_regex] = STATE(1101), - [sym_meta_property] = STATE(1101), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_rest_parameter] = STATE(2686), - [sym_non_null_expression] = STATE(755), - [sym_type_assertion] = STATE(1105), - [sym_as_expression] = STATE(1105), - [sym_internal_module] = STATE(1105), - [sym_accessibility_modifier] = STATE(1906), - [sym_required_parameter] = STATE(2686), - [sym_optional_parameter] = STATE(2686), - [sym__parameter_name] = STATE(2094), - [sym__rest_identifier] = STATE(2534), - [sym_type_arguments] = STATE(361), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(1764), - [sym_identifier] = ACTIONS(1163), + [sym_import] = STATE(1151), + [sym_parenthesized_expression] = STATE(759), + [sym__expression] = STATE(1101), + [sym_yield_expression] = STATE(1144), + [sym_object] = STATE(1485), + [sym_array] = STATE(1486), + [sym_class] = STATE(1151), + [sym_function] = STATE(1151), + [sym_generator_function] = STATE(1151), + [sym_arrow_function] = STATE(1151), + [sym__call_signature] = STATE(3082), + [sym_call_expression] = STATE(1151), + [sym_new_expression] = STATE(1144), + [sym_await_expression] = STATE(1144), + [sym_member_expression] = STATE(759), + [sym_subscript_expression] = STATE(759), + [sym_assignment_expression] = STATE(1144), + [sym__augmented_assignment_lhs] = STATE(1924), + [sym_augmented_assignment_expression] = STATE(1144), + [sym_ternary_expression] = STATE(1144), + [sym_binary_expression] = STATE(1144), + [sym_unary_expression] = STATE(1144), + [sym_update_expression] = STATE(1144), + [sym_sequence_expression] = STATE(3143), + [sym_string] = STATE(1151), + [sym_template_string] = STATE(1151), + [sym_regex] = STATE(1151), + [sym_meta_property] = STATE(1151), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_rest_parameter] = STATE(2622), + [sym_non_null_expression] = STATE(754), + [sym_type_assertion] = STATE(1144), + [sym_as_expression] = STATE(1144), + [sym_internal_module] = STATE(1144), + [sym_accessibility_modifier] = STATE(1910), + [sym_required_parameter] = STATE(2622), + [sym_optional_parameter] = STATE(2622), + [sym__parameter_name] = STATE(2103), + [sym__rest_identifier] = STATE(2595), + [sym_type_arguments] = STATE(326), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(1765), + [sym_identifier] = ACTIONS(1177), [anon_sym_export] = ACTIONS(425), [anon_sym_namespace] = ACTIONS(429), [anon_sym_LBRACE] = ACTIONS(509), @@ -23561,7 +23615,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(479), [sym_number] = ACTIONS(527), - [sym_this] = ACTIONS(1165), + [sym_this] = ACTIONS(1179), [sym_super] = ACTIONS(485), [sym_true] = ACTIONS(485), [sym_false] = ACTIONS(485), @@ -23581,45 +23635,45 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_boolean] = ACTIONS(425), [anon_sym_string] = ACTIONS(425), [anon_sym_symbol] = ACTIONS(425), - [sym_readonly] = ACTIONS(1167), + [sym_readonly] = ACTIONS(1181), }, [118] = { - [sym_import] = STATE(1101), - [sym_parenthesized_expression] = STATE(739), - [sym__expression] = STATE(1085), - [sym_yield_expression] = STATE(1105), - [sym_object] = STATE(1297), - [sym_array] = STATE(1296), - [sym_class] = STATE(1101), - [sym_function] = STATE(1101), - [sym_generator_function] = STATE(1101), - [sym_arrow_function] = STATE(1101), - [sym__call_signature] = STATE(3116), - [sym_call_expression] = STATE(1101), - [sym_new_expression] = STATE(1105), - [sym_await_expression] = STATE(1105), - [sym_member_expression] = STATE(739), - [sym_subscript_expression] = STATE(739), - [sym_assignment_expression] = STATE(1105), - [sym__augmented_assignment_lhs] = STATE(1920), - [sym_augmented_assignment_expression] = STATE(1105), - [sym_ternary_expression] = STATE(1105), - [sym_binary_expression] = STATE(1105), - [sym_unary_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_string] = STATE(1101), - [sym_template_string] = STATE(1101), - [sym_regex] = STATE(1101), - [sym_meta_property] = STATE(1101), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(755), - [sym_type_assertion] = STATE(1105), - [sym_as_expression] = STATE(1105), - [sym_internal_module] = STATE(1105), - [sym_type_arguments] = STATE(361), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2497), + [sym_import] = STATE(1151), + [sym_parenthesized_expression] = STATE(759), + [sym__expression] = STATE(1064), + [sym_yield_expression] = STATE(1144), + [sym_object] = STATE(1257), + [sym_array] = STATE(1254), + [sym_class] = STATE(1151), + [sym_function] = STATE(1151), + [sym_generator_function] = STATE(1151), + [sym_arrow_function] = STATE(1151), + [sym__call_signature] = STATE(3082), + [sym_call_expression] = STATE(1151), + [sym_new_expression] = STATE(1144), + [sym_await_expression] = STATE(1144), + [sym_member_expression] = STATE(759), + [sym_subscript_expression] = STATE(759), + [sym_assignment_expression] = STATE(1144), + [sym__augmented_assignment_lhs] = STATE(1924), + [sym_augmented_assignment_expression] = STATE(1144), + [sym_ternary_expression] = STATE(1144), + [sym_binary_expression] = STATE(1144), + [sym_unary_expression] = STATE(1144), + [sym_update_expression] = STATE(1144), + [sym_string] = STATE(1151), + [sym_template_string] = STATE(1151), + [sym_regex] = STATE(1151), + [sym_meta_property] = STATE(1151), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(754), + [sym_type_assertion] = STATE(1144), + [sym_as_expression] = STATE(1144), + [sym_internal_module] = STATE(1144), + [sym_type_arguments] = STATE(326), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2580), [sym_identifier] = ACTIONS(499), [anon_sym_export] = ACTIONS(501), [anon_sym_namespace] = ACTIONS(507), @@ -23681,25 +23735,25 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__automatic_semicolon] = ACTIONS(1185), }, [119] = { - [sym_export_clause] = STATE(2575), - [sym__declaration] = STATE(563), - [sym_variable_declaration] = STATE(598), - [sym_lexical_declaration] = STATE(598), - [sym_class_declaration] = STATE(598), - [sym_function_declaration] = STATE(598), - [sym_generator_function_declaration] = STATE(598), - [sym_decorator] = STATE(1905), - [sym_function_signature] = STATE(598), - [sym_ambient_declaration] = STATE(598), - [sym_abstract_class_declaration] = STATE(598), - [sym_module] = STATE(598), - [sym_internal_module] = STATE(561), - [sym_import_alias] = STATE(598), - [sym_interface_declaration] = STATE(598), - [sym_enum_declaration] = STATE(598), - [sym_type_alias_declaration] = STATE(598), - [aux_sym_export_statement_repeat1] = STATE(2572), - [aux_sym_object_repeat1] = STATE(2739), + [sym_export_clause] = STATE(2550), + [sym__declaration] = STATE(559), + [sym_variable_declaration] = STATE(579), + [sym_lexical_declaration] = STATE(579), + [sym_class_declaration] = STATE(579), + [sym_function_declaration] = STATE(579), + [sym_generator_function_declaration] = STATE(579), + [sym_decorator] = STATE(1890), + [sym_function_signature] = STATE(579), + [sym_ambient_declaration] = STATE(579), + [sym_abstract_class_declaration] = STATE(579), + [sym_module] = STATE(579), + [sym_internal_module] = STATE(569), + [sym_import_alias] = STATE(579), + [sym_interface_declaration] = STATE(579), + [sym_enum_declaration] = STATE(579), + [sym_type_alias_declaration] = STATE(579), + [aux_sym_export_statement_repeat1] = STATE(2424), + [aux_sym_object_repeat1] = STATE(2641), [anon_sym_STAR] = ACTIONS(1189), [anon_sym_default] = ACTIONS(1191), [anon_sym_EQ] = ACTIONS(1193), @@ -23726,8 +23780,8 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(1226), [anon_sym_async] = ACTIONS(1228), [anon_sym_function] = ACTIONS(1230), - [anon_sym_EQ_GT] = ACTIONS(1009), - [anon_sym_QMARK_DOT] = ACTIONS(1011), + [anon_sym_EQ_GT] = ACTIONS(1019), + [anon_sym_QMARK_DOT] = ACTIONS(1021), [anon_sym_PLUS_EQ] = ACTIONS(831), [anon_sym_DASH_EQ] = ACTIONS(831), [anon_sym_STAR_EQ] = ACTIONS(831), @@ -23777,25 +23831,25 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__automatic_semicolon] = ACTIONS(841), }, [120] = { - [sym_export_clause] = STATE(2575), - [sym__declaration] = STATE(563), - [sym_variable_declaration] = STATE(598), - [sym_lexical_declaration] = STATE(598), - [sym_class_declaration] = STATE(598), - [sym_function_declaration] = STATE(598), - [sym_generator_function_declaration] = STATE(598), - [sym_decorator] = STATE(1905), - [sym_function_signature] = STATE(598), - [sym_ambient_declaration] = STATE(598), - [sym_abstract_class_declaration] = STATE(598), - [sym_module] = STATE(598), - [sym_internal_module] = STATE(561), - [sym_import_alias] = STATE(598), - [sym_interface_declaration] = STATE(598), - [sym_enum_declaration] = STATE(598), - [sym_type_alias_declaration] = STATE(598), - [aux_sym_export_statement_repeat1] = STATE(2572), - [aux_sym_object_repeat1] = STATE(2645), + [sym_export_clause] = STATE(2550), + [sym__declaration] = STATE(559), + [sym_variable_declaration] = STATE(579), + [sym_lexical_declaration] = STATE(579), + [sym_class_declaration] = STATE(579), + [sym_function_declaration] = STATE(579), + [sym_generator_function_declaration] = STATE(579), + [sym_decorator] = STATE(1890), + [sym_function_signature] = STATE(579), + [sym_ambient_declaration] = STATE(579), + [sym_abstract_class_declaration] = STATE(579), + [sym_module] = STATE(579), + [sym_internal_module] = STATE(569), + [sym_import_alias] = STATE(579), + [sym_interface_declaration] = STATE(579), + [sym_enum_declaration] = STATE(579), + [sym_type_alias_declaration] = STATE(579), + [aux_sym_export_statement_repeat1] = STATE(2424), + [aux_sym_object_repeat1] = STATE(2651), [anon_sym_STAR] = ACTIONS(1189), [anon_sym_default] = ACTIONS(1191), [anon_sym_EQ] = ACTIONS(1193), @@ -23822,8 +23876,8 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(1226), [anon_sym_async] = ACTIONS(1228), [anon_sym_function] = ACTIONS(1230), - [anon_sym_EQ_GT] = ACTIONS(1009), - [anon_sym_QMARK_DOT] = ACTIONS(1011), + [anon_sym_EQ_GT] = ACTIONS(1019), + [anon_sym_QMARK_DOT] = ACTIONS(1021), [anon_sym_PLUS_EQ] = ACTIONS(831), [anon_sym_DASH_EQ] = ACTIONS(831), [anon_sym_STAR_EQ] = ACTIONS(831), @@ -23873,25 +23927,25 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__automatic_semicolon] = ACTIONS(841), }, [121] = { - [sym_export_clause] = STATE(2575), - [sym__declaration] = STATE(563), - [sym_variable_declaration] = STATE(598), - [sym_lexical_declaration] = STATE(598), - [sym_class_declaration] = STATE(598), - [sym_function_declaration] = STATE(598), - [sym_generator_function_declaration] = STATE(598), - [sym_decorator] = STATE(1905), - [sym_function_signature] = STATE(598), - [sym_ambient_declaration] = STATE(598), - [sym_abstract_class_declaration] = STATE(598), - [sym_module] = STATE(598), - [sym_internal_module] = STATE(561), - [sym_import_alias] = STATE(598), - [sym_interface_declaration] = STATE(598), - [sym_enum_declaration] = STATE(598), - [sym_type_alias_declaration] = STATE(598), - [aux_sym_export_statement_repeat1] = STATE(2572), - [aux_sym_object_repeat1] = STATE(2772), + [sym_export_clause] = STATE(2550), + [sym__declaration] = STATE(559), + [sym_variable_declaration] = STATE(579), + [sym_lexical_declaration] = STATE(579), + [sym_class_declaration] = STATE(579), + [sym_function_declaration] = STATE(579), + [sym_generator_function_declaration] = STATE(579), + [sym_decorator] = STATE(1890), + [sym_function_signature] = STATE(579), + [sym_ambient_declaration] = STATE(579), + [sym_abstract_class_declaration] = STATE(579), + [sym_module] = STATE(579), + [sym_internal_module] = STATE(569), + [sym_import_alias] = STATE(579), + [sym_interface_declaration] = STATE(579), + [sym_enum_declaration] = STATE(579), + [sym_type_alias_declaration] = STATE(579), + [aux_sym_export_statement_repeat1] = STATE(2424), + [aux_sym_object_repeat1] = STATE(2757), [anon_sym_STAR] = ACTIONS(1189), [anon_sym_default] = ACTIONS(1191), [anon_sym_EQ] = ACTIONS(1193), @@ -23918,8 +23972,8 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(1226), [anon_sym_async] = ACTIONS(1228), [anon_sym_function] = ACTIONS(1230), - [anon_sym_EQ_GT] = ACTIONS(1009), - [anon_sym_QMARK_DOT] = ACTIONS(1011), + [anon_sym_EQ_GT] = ACTIONS(1019), + [anon_sym_QMARK_DOT] = ACTIONS(1021), [anon_sym_PLUS_EQ] = ACTIONS(831), [anon_sym_DASH_EQ] = ACTIONS(831), [anon_sym_STAR_EQ] = ACTIONS(831), @@ -23969,66 +24023,65 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__automatic_semicolon] = ACTIONS(841), }, [122] = { - [sym_import] = STATE(1101), - [sym_parenthesized_expression] = STATE(739), - [sym__expression] = STATE(1268), - [sym_yield_expression] = STATE(1105), - [sym_object] = STATE(1297), - [sym_array] = STATE(1296), - [sym_class] = STATE(1101), - [sym_function] = STATE(1101), - [sym_generator_function] = STATE(1101), - [sym_arrow_function] = STATE(1101), - [sym__call_signature] = STATE(3116), - [sym_call_expression] = STATE(1101), - [sym_new_expression] = STATE(1105), - [sym_await_expression] = STATE(1105), - [sym_member_expression] = STATE(739), - [sym_subscript_expression] = STATE(739), - [sym_assignment_expression] = STATE(1105), - [sym__augmented_assignment_lhs] = STATE(1920), - [sym_augmented_assignment_expression] = STATE(1105), - [sym_spread_element] = STATE(2661), - [sym_ternary_expression] = STATE(1105), - [sym_binary_expression] = STATE(1105), - [sym_unary_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_sequence_expression] = STATE(3102), - [sym_string] = STATE(1101), - [sym_template_string] = STATE(1101), - [sym_regex] = STATE(1101), - [sym_meta_property] = STATE(1101), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(755), - [sym_type_assertion] = STATE(1105), - [sym_as_expression] = STATE(1105), - [sym_internal_module] = STATE(1105), - [sym_type_arguments] = STATE(361), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2497), - [aux_sym_array_repeat1] = STATE(2662), + [sym_import] = STATE(1151), + [sym_parenthesized_expression] = STATE(759), + [sym__expression] = STATE(1064), + [sym_yield_expression] = STATE(1144), + [sym_object] = STATE(1257), + [sym_array] = STATE(1254), + [sym_class] = STATE(1151), + [sym_function] = STATE(1151), + [sym_generator_function] = STATE(1151), + [sym_arrow_function] = STATE(1151), + [sym__call_signature] = STATE(3082), + [sym_call_expression] = STATE(1151), + [sym_new_expression] = STATE(1144), + [sym_await_expression] = STATE(1144), + [sym_member_expression] = STATE(759), + [sym_subscript_expression] = STATE(759), + [sym_assignment_expression] = STATE(1144), + [sym__augmented_assignment_lhs] = STATE(1924), + [sym_augmented_assignment_expression] = STATE(1144), + [sym_ternary_expression] = STATE(1144), + [sym_binary_expression] = STATE(1144), + [sym_unary_expression] = STATE(1144), + [sym_update_expression] = STATE(1144), + [sym_string] = STATE(1151), + [sym_template_string] = STATE(1151), + [sym_regex] = STATE(1151), + [sym_meta_property] = STATE(1151), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(754), + [sym_type_assertion] = STATE(1144), + [sym_as_expression] = STATE(1144), + [sym_internal_module] = STATE(1144), + [sym_type_arguments] = STATE(326), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2580), [sym_identifier] = ACTIONS(499), [anon_sym_export] = ACTIONS(501), [anon_sym_namespace] = ACTIONS(507), [anon_sym_LBRACE] = ACTIONS(509), - [anon_sym_COMMA] = ACTIONS(1143), + [anon_sym_COMMA] = ACTIONS(1185), [anon_sym_type] = ACTIONS(501), [anon_sym_typeof] = ACTIONS(471), [anon_sym_import] = ACTIONS(435), [anon_sym_BANG] = ACTIONS(437), [anon_sym_LPAREN] = ACTIONS(515), + [anon_sym_RPAREN] = ACTIONS(1185), [anon_sym_await] = ACTIONS(443), [anon_sym_yield] = ACTIONS(445), [anon_sym_LBRACK] = ACTIONS(517), - [anon_sym_RBRACK] = ACTIONS(1246), [anon_sym_LT] = ACTIONS(65), + [anon_sym_GT] = ACTIONS(1185), [anon_sym_SLASH] = ACTIONS(449), [anon_sym_class] = ACTIONS(451), [anon_sym_async] = ACTIONS(521), [anon_sym_function] = ACTIONS(455), [anon_sym_new] = ACTIONS(523), - [anon_sym_DOT_DOT_DOT] = ACTIONS(123), + [anon_sym_AMP] = ACTIONS(1185), + [anon_sym_PIPE] = ACTIONS(1185), [anon_sym_PLUS] = ACTIONS(525), [anon_sym_DASH] = ACTIONS(525), [anon_sym_TILDE] = ACTIONS(437), @@ -24061,68 +24114,70 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_boolean] = ACTIONS(501), [anon_sym_string] = ACTIONS(501), [anon_sym_symbol] = ACTIONS(501), + [anon_sym_extends] = ACTIONS(1187), [sym_readonly] = ACTIONS(501), }, [123] = { - [sym_import] = STATE(1101), - [sym_parenthesized_expression] = STATE(739), - [sym__expression] = STATE(1085), - [sym_yield_expression] = STATE(1105), - [sym_object] = STATE(1297), - [sym_array] = STATE(1296), - [sym_class] = STATE(1101), - [sym_function] = STATE(1101), - [sym_generator_function] = STATE(1101), - [sym_arrow_function] = STATE(1101), - [sym__call_signature] = STATE(3116), - [sym_call_expression] = STATE(1101), - [sym_new_expression] = STATE(1105), - [sym_await_expression] = STATE(1105), - [sym_member_expression] = STATE(739), - [sym_subscript_expression] = STATE(739), - [sym_assignment_expression] = STATE(1105), - [sym__augmented_assignment_lhs] = STATE(1920), - [sym_augmented_assignment_expression] = STATE(1105), - [sym_ternary_expression] = STATE(1105), - [sym_binary_expression] = STATE(1105), - [sym_unary_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_string] = STATE(1101), - [sym_template_string] = STATE(1101), - [sym_regex] = STATE(1101), - [sym_meta_property] = STATE(1101), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(755), - [sym_type_assertion] = STATE(1105), - [sym_as_expression] = STATE(1105), - [sym_internal_module] = STATE(1105), - [sym_type_arguments] = STATE(361), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2497), - [sym_identifier] = ACTIONS(499), - [anon_sym_export] = ACTIONS(501), - [anon_sym_namespace] = ACTIONS(507), + [sym_import] = STATE(1151), + [sym_parenthesized_expression] = STATE(759), + [sym__expression] = STATE(1222), + [sym_yield_expression] = STATE(1144), + [sym_object] = STATE(1257), + [sym_array] = STATE(1254), + [sym_class] = STATE(1151), + [sym_function] = STATE(1151), + [sym_generator_function] = STATE(1151), + [sym_arrow_function] = STATE(1151), + [sym__call_signature] = STATE(3082), + [sym_call_expression] = STATE(1151), + [sym_new_expression] = STATE(1144), + [sym_await_expression] = STATE(1144), + [sym_member_expression] = STATE(759), + [sym_subscript_expression] = STATE(759), + [sym_assignment_expression] = STATE(1144), + [sym__augmented_assignment_lhs] = STATE(1924), + [sym_augmented_assignment_expression] = STATE(1144), + [sym_spread_element] = STATE(2679), + [sym_ternary_expression] = STATE(1144), + [sym_binary_expression] = STATE(1144), + [sym_unary_expression] = STATE(1144), + [sym_update_expression] = STATE(1144), + [sym_string] = STATE(1151), + [sym_template_string] = STATE(1151), + [sym_regex] = STATE(1151), + [sym_meta_property] = STATE(1151), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(754), + [sym_type_assertion] = STATE(1144), + [sym_as_expression] = STATE(1144), + [sym_internal_module] = STATE(1144), + [sym_mapped_type_clause] = STATE(3014), + [sym_type_arguments] = STATE(326), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2580), + [aux_sym_array_repeat1] = STATE(2680), + [sym_identifier] = ACTIONS(1246), + [anon_sym_export] = ACTIONS(1248), + [anon_sym_namespace] = ACTIONS(1250), [anon_sym_LBRACE] = ACTIONS(509), - [anon_sym_COMMA] = ACTIONS(1185), - [anon_sym_type] = ACTIONS(501), + [anon_sym_COMMA] = ACTIONS(1133), + [anon_sym_type] = ACTIONS(1248), [anon_sym_typeof] = ACTIONS(471), [anon_sym_import] = ACTIONS(435), [anon_sym_BANG] = ACTIONS(437), [anon_sym_LPAREN] = ACTIONS(515), - [anon_sym_RPAREN] = ACTIONS(1185), [anon_sym_await] = ACTIONS(443), [anon_sym_yield] = ACTIONS(445), [anon_sym_LBRACK] = ACTIONS(517), + [anon_sym_RBRACK] = ACTIONS(1252), [anon_sym_LT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(1185), [anon_sym_SLASH] = ACTIONS(449), [anon_sym_class] = ACTIONS(451), - [anon_sym_async] = ACTIONS(521), + [anon_sym_async] = ACTIONS(1254), [anon_sym_function] = ACTIONS(455), [anon_sym_new] = ACTIONS(523), - [anon_sym_AMP] = ACTIONS(1185), - [anon_sym_PIPE] = ACTIONS(1185), + [anon_sym_DOT_DOT_DOT] = ACTIONS(123), [anon_sym_PLUS] = ACTIONS(525), [anon_sym_DASH] = ACTIONS(525), [anon_sym_TILDE] = ACTIONS(437), @@ -24142,68 +24197,67 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(485), [sym_undefined] = ACTIONS(485), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(501), - [anon_sym_get] = ACTIONS(501), - [anon_sym_set] = ACTIONS(501), - [anon_sym_declare] = ACTIONS(501), - [anon_sym_public] = ACTIONS(501), - [anon_sym_private] = ACTIONS(501), - [anon_sym_protected] = ACTIONS(501), - [anon_sym_module] = ACTIONS(501), - [anon_sym_any] = ACTIONS(501), - [anon_sym_number] = ACTIONS(501), - [anon_sym_boolean] = ACTIONS(501), - [anon_sym_string] = ACTIONS(501), - [anon_sym_symbol] = ACTIONS(501), - [anon_sym_extends] = ACTIONS(1187), - [sym_readonly] = ACTIONS(501), + [anon_sym_static] = ACTIONS(1248), + [anon_sym_get] = ACTIONS(1248), + [anon_sym_set] = ACTIONS(1248), + [anon_sym_declare] = ACTIONS(1248), + [anon_sym_public] = ACTIONS(1248), + [anon_sym_private] = ACTIONS(1248), + [anon_sym_protected] = ACTIONS(1248), + [anon_sym_module] = ACTIONS(1248), + [anon_sym_any] = ACTIONS(1248), + [anon_sym_number] = ACTIONS(1248), + [anon_sym_boolean] = ACTIONS(1248), + [anon_sym_string] = ACTIONS(1248), + [anon_sym_symbol] = ACTIONS(1248), + [sym_readonly] = ACTIONS(1248), }, [124] = { - [sym_import] = STATE(1101), - [sym_parenthesized_expression] = STATE(739), - [sym__expression] = STATE(1216), - [sym_yield_expression] = STATE(1105), - [sym_object] = STATE(1297), - [sym_array] = STATE(1296), - [sym_class] = STATE(1101), - [sym_function] = STATE(1101), - [sym_generator_function] = STATE(1101), - [sym_arrow_function] = STATE(1101), - [sym__call_signature] = STATE(3116), - [sym_call_expression] = STATE(1101), - [sym_new_expression] = STATE(1105), - [sym_await_expression] = STATE(1105), - [sym_member_expression] = STATE(739), - [sym_subscript_expression] = STATE(739), - [sym_assignment_expression] = STATE(1105), - [sym__augmented_assignment_lhs] = STATE(1920), - [sym_augmented_assignment_expression] = STATE(1105), - [sym_spread_element] = STATE(2661), - [sym_ternary_expression] = STATE(1105), - [sym_binary_expression] = STATE(1105), - [sym_unary_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_string] = STATE(1101), - [sym_template_string] = STATE(1101), - [sym_regex] = STATE(1101), - [sym_meta_property] = STATE(1101), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(755), - [sym_type_assertion] = STATE(1105), - [sym_as_expression] = STATE(1105), - [sym_internal_module] = STATE(1105), - [sym_mapped_type_clause] = STATE(3044), - [sym_type_arguments] = STATE(361), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2497), - [aux_sym_array_repeat1] = STATE(2662), - [sym_identifier] = ACTIONS(1248), - [anon_sym_export] = ACTIONS(1250), - [anon_sym_namespace] = ACTIONS(1252), + [sym_import] = STATE(1151), + [sym_parenthesized_expression] = STATE(759), + [sym__expression] = STATE(1243), + [sym_yield_expression] = STATE(1144), + [sym_object] = STATE(1257), + [sym_array] = STATE(1254), + [sym_class] = STATE(1151), + [sym_function] = STATE(1151), + [sym_generator_function] = STATE(1151), + [sym_arrow_function] = STATE(1151), + [sym__call_signature] = STATE(3082), + [sym_call_expression] = STATE(1151), + [sym_new_expression] = STATE(1144), + [sym_await_expression] = STATE(1144), + [sym_member_expression] = STATE(759), + [sym_subscript_expression] = STATE(759), + [sym_assignment_expression] = STATE(1144), + [sym__augmented_assignment_lhs] = STATE(1924), + [sym_augmented_assignment_expression] = STATE(1144), + [sym_spread_element] = STATE(2679), + [sym_ternary_expression] = STATE(1144), + [sym_binary_expression] = STATE(1144), + [sym_unary_expression] = STATE(1144), + [sym_update_expression] = STATE(1144), + [sym_sequence_expression] = STATE(3054), + [sym_string] = STATE(1151), + [sym_template_string] = STATE(1151), + [sym_regex] = STATE(1151), + [sym_meta_property] = STATE(1151), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(754), + [sym_type_assertion] = STATE(1144), + [sym_as_expression] = STATE(1144), + [sym_internal_module] = STATE(1144), + [sym_type_arguments] = STATE(326), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2580), + [aux_sym_array_repeat1] = STATE(2680), + [sym_identifier] = ACTIONS(499), + [anon_sym_export] = ACTIONS(501), + [anon_sym_namespace] = ACTIONS(507), [anon_sym_LBRACE] = ACTIONS(509), - [anon_sym_COMMA] = ACTIONS(1143), - [anon_sym_type] = ACTIONS(1250), + [anon_sym_COMMA] = ACTIONS(1133), + [anon_sym_type] = ACTIONS(501), [anon_sym_typeof] = ACTIONS(471), [anon_sym_import] = ACTIONS(435), [anon_sym_BANG] = ACTIONS(437), @@ -24211,11 +24265,11 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(443), [anon_sym_yield] = ACTIONS(445), [anon_sym_LBRACK] = ACTIONS(517), - [anon_sym_RBRACK] = ACTIONS(1246), + [anon_sym_RBRACK] = ACTIONS(1252), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(449), [anon_sym_class] = ACTIONS(451), - [anon_sym_async] = ACTIONS(1254), + [anon_sym_async] = ACTIONS(521), [anon_sym_function] = ACTIONS(455), [anon_sym_new] = ACTIONS(523), [anon_sym_DOT_DOT_DOT] = ACTIONS(123), @@ -24238,66 +24292,66 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(485), [sym_undefined] = ACTIONS(485), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(1250), - [anon_sym_get] = ACTIONS(1250), - [anon_sym_set] = ACTIONS(1250), - [anon_sym_declare] = ACTIONS(1250), - [anon_sym_public] = ACTIONS(1250), - [anon_sym_private] = ACTIONS(1250), - [anon_sym_protected] = ACTIONS(1250), - [anon_sym_module] = ACTIONS(1250), - [anon_sym_any] = ACTIONS(1250), - [anon_sym_number] = ACTIONS(1250), - [anon_sym_boolean] = ACTIONS(1250), - [anon_sym_string] = ACTIONS(1250), - [anon_sym_symbol] = ACTIONS(1250), - [sym_readonly] = ACTIONS(1250), + [anon_sym_static] = ACTIONS(501), + [anon_sym_get] = ACTIONS(501), + [anon_sym_set] = ACTIONS(501), + [anon_sym_declare] = ACTIONS(501), + [anon_sym_public] = ACTIONS(501), + [anon_sym_private] = ACTIONS(501), + [anon_sym_protected] = ACTIONS(501), + [anon_sym_module] = ACTIONS(501), + [anon_sym_any] = ACTIONS(501), + [anon_sym_number] = ACTIONS(501), + [anon_sym_boolean] = ACTIONS(501), + [anon_sym_string] = ACTIONS(501), + [anon_sym_symbol] = ACTIONS(501), + [sym_readonly] = ACTIONS(501), }, [125] = { - [sym_import] = STATE(1101), - [sym_parenthesized_expression] = STATE(739), - [sym__expression] = STATE(1252), - [sym_yield_expression] = STATE(1105), - [sym_object] = STATE(1297), - [sym_array] = STATE(1296), - [sym_class] = STATE(1101), - [sym_function] = STATE(1101), - [sym_generator_function] = STATE(1101), - [sym_arrow_function] = STATE(1101), - [sym__call_signature] = STATE(3116), - [sym_call_expression] = STATE(1101), - [sym_new_expression] = STATE(1105), - [sym_await_expression] = STATE(1105), - [sym_member_expression] = STATE(739), - [sym_subscript_expression] = STATE(739), - [sym_assignment_expression] = STATE(1105), - [sym__augmented_assignment_lhs] = STATE(1920), - [sym_augmented_assignment_expression] = STATE(1105), - [sym_spread_element] = STATE(2661), - [sym_ternary_expression] = STATE(1105), - [sym_binary_expression] = STATE(1105), - [sym_unary_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_sequence_expression] = STATE(3102), - [sym_string] = STATE(1101), - [sym_template_string] = STATE(1101), - [sym_regex] = STATE(1101), - [sym_meta_property] = STATE(1101), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(755), - [sym_type_assertion] = STATE(1105), - [sym_as_expression] = STATE(1105), - [sym_internal_module] = STATE(1105), - [sym_type_arguments] = STATE(361), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2497), - [aux_sym_array_repeat1] = STATE(2662), + [sym_import] = STATE(1151), + [sym_parenthesized_expression] = STATE(759), + [sym__expression] = STATE(1280), + [sym_yield_expression] = STATE(1144), + [sym_object] = STATE(1257), + [sym_array] = STATE(1254), + [sym_class] = STATE(1151), + [sym_function] = STATE(1151), + [sym_generator_function] = STATE(1151), + [sym_arrow_function] = STATE(1151), + [sym__call_signature] = STATE(3082), + [sym_call_expression] = STATE(1151), + [sym_new_expression] = STATE(1144), + [sym_await_expression] = STATE(1144), + [sym_member_expression] = STATE(759), + [sym_subscript_expression] = STATE(759), + [sym_assignment_expression] = STATE(1144), + [sym__augmented_assignment_lhs] = STATE(1924), + [sym_augmented_assignment_expression] = STATE(1144), + [sym_spread_element] = STATE(2679), + [sym_ternary_expression] = STATE(1144), + [sym_binary_expression] = STATE(1144), + [sym_unary_expression] = STATE(1144), + [sym_update_expression] = STATE(1144), + [sym_sequence_expression] = STATE(3054), + [sym_string] = STATE(1151), + [sym_template_string] = STATE(1151), + [sym_regex] = STATE(1151), + [sym_meta_property] = STATE(1151), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(754), + [sym_type_assertion] = STATE(1144), + [sym_as_expression] = STATE(1144), + [sym_internal_module] = STATE(1144), + [sym_type_arguments] = STATE(326), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2580), + [aux_sym_array_repeat1] = STATE(2680), [sym_identifier] = ACTIONS(499), [anon_sym_export] = ACTIONS(501), [anon_sym_namespace] = ACTIONS(507), [anon_sym_LBRACE] = ACTIONS(509), - [anon_sym_COMMA] = ACTIONS(1143), + [anon_sym_COMMA] = ACTIONS(1133), [anon_sym_type] = ACTIONS(501), [anon_sym_typeof] = ACTIONS(471), [anon_sym_import] = ACTIONS(435), @@ -24306,7 +24360,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(443), [anon_sym_yield] = ACTIONS(445), [anon_sym_LBRACK] = ACTIONS(517), - [anon_sym_RBRACK] = ACTIONS(1246), + [anon_sym_RBRACK] = ACTIONS(1252), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(449), [anon_sym_class] = ACTIONS(451), @@ -24349,49 +24403,49 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_readonly] = ACTIONS(501), }, [126] = { - [sym_import] = STATE(1101), - [sym_parenthesized_expression] = STATE(739), - [sym__expression] = STATE(1303), - [sym_yield_expression] = STATE(1105), - [sym_object] = STATE(1297), - [sym_array] = STATE(1296), - [sym_class] = STATE(1101), - [sym_function] = STATE(1101), - [sym_generator_function] = STATE(1101), - [sym_arrow_function] = STATE(1101), - [sym__call_signature] = STATE(3116), - [sym_call_expression] = STATE(1101), - [sym_new_expression] = STATE(1105), - [sym_await_expression] = STATE(1105), - [sym_member_expression] = STATE(739), - [sym_subscript_expression] = STATE(739), - [sym_assignment_expression] = STATE(1105), - [sym__augmented_assignment_lhs] = STATE(1920), - [sym_augmented_assignment_expression] = STATE(1105), - [sym_spread_element] = STATE(2661), - [sym_ternary_expression] = STATE(1105), - [sym_binary_expression] = STATE(1105), - [sym_unary_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_string] = STATE(1101), - [sym_template_string] = STATE(1101), - [sym_regex] = STATE(1101), - [sym_meta_property] = STATE(1101), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(755), - [sym_type_assertion] = STATE(1105), - [sym_as_expression] = STATE(1105), - [sym_internal_module] = STATE(1105), - [sym_type_arguments] = STATE(361), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2497), - [aux_sym_array_repeat1] = STATE(2662), + [sym_import] = STATE(1151), + [sym_parenthesized_expression] = STATE(759), + [sym__expression] = STATE(1321), + [sym_yield_expression] = STATE(1144), + [sym_object] = STATE(1257), + [sym_array] = STATE(1254), + [sym_class] = STATE(1151), + [sym_function] = STATE(1151), + [sym_generator_function] = STATE(1151), + [sym_arrow_function] = STATE(1151), + [sym__call_signature] = STATE(3082), + [sym_call_expression] = STATE(1151), + [sym_new_expression] = STATE(1144), + [sym_await_expression] = STATE(1144), + [sym_member_expression] = STATE(759), + [sym_subscript_expression] = STATE(759), + [sym_assignment_expression] = STATE(1144), + [sym__augmented_assignment_lhs] = STATE(1924), + [sym_augmented_assignment_expression] = STATE(1144), + [sym_spread_element] = STATE(2667), + [sym_ternary_expression] = STATE(1144), + [sym_binary_expression] = STATE(1144), + [sym_unary_expression] = STATE(1144), + [sym_update_expression] = STATE(1144), + [sym_sequence_expression] = STATE(2552), + [sym_string] = STATE(1151), + [sym_template_string] = STATE(1151), + [sym_regex] = STATE(1151), + [sym_meta_property] = STATE(1151), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(754), + [sym_type_assertion] = STATE(1144), + [sym_as_expression] = STATE(1144), + [sym_internal_module] = STATE(1144), + [sym_type_arguments] = STATE(326), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2580), [sym_identifier] = ACTIONS(499), [anon_sym_export] = ACTIONS(501), [anon_sym_namespace] = ACTIONS(507), [anon_sym_LBRACE] = ACTIONS(509), - [anon_sym_COMMA] = ACTIONS(1143), + [anon_sym_COMMA] = ACTIONS(1256), [anon_sym_type] = ACTIONS(501), [anon_sym_typeof] = ACTIONS(471), [anon_sym_import] = ACTIONS(435), @@ -24400,7 +24454,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(443), [anon_sym_yield] = ACTIONS(445), [anon_sym_LBRACK] = ACTIONS(517), - [anon_sym_RBRACK] = ACTIONS(1246), + [anon_sym_RBRACK] = ACTIONS(1256), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(449), [anon_sym_class] = ACTIONS(451), @@ -24443,239 +24497,50 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_readonly] = ACTIONS(501), }, [127] = { - [sym_import] = STATE(1498), - [sym_parenthesized_expression] = STATE(764), - [sym__expression] = STATE(1177), - [sym_yield_expression] = STATE(1518), - [sym_object] = STATE(1435), - [sym_array] = STATE(1433), - [sym_class] = STATE(1498), - [sym_function] = STATE(1498), - [sym_generator_function] = STATE(1498), - [sym_arrow_function] = STATE(1498), - [sym__call_signature] = STATE(3145), - [sym_call_expression] = STATE(1498), - [sym_new_expression] = STATE(1518), - [sym_await_expression] = STATE(1518), - [sym_member_expression] = STATE(764), - [sym_subscript_expression] = STATE(764), - [sym_assignment_expression] = STATE(1518), - [sym__augmented_assignment_lhs] = STATE(1925), - [sym_augmented_assignment_expression] = STATE(1518), - [sym_ternary_expression] = STATE(1518), - [sym_binary_expression] = STATE(1518), - [sym_unary_expression] = STATE(1518), - [sym_update_expression] = STATE(1518), - [sym_string] = STATE(1498), - [sym_template_string] = STATE(1498), - [sym_regex] = STATE(1498), - [sym_meta_property] = STATE(1498), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(772), - [sym_type_assertion] = STATE(1518), - [sym_as_expression] = STATE(1518), - [sym_internal_module] = STATE(1518), - [sym_type_arguments] = STATE(349), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2554), - [sym_identifier] = ACTIONS(587), - [anon_sym_export] = ACTIONS(589), - [anon_sym_namespace] = ACTIONS(593), - [anon_sym_LBRACE] = ACTIONS(595), - [anon_sym_COMMA] = ACTIONS(1185), - [anon_sym_type] = ACTIONS(589), - [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(597), - [anon_sym_BANG] = ACTIONS(29), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(39), - [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(1185), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(601), - [anon_sym_async] = ACTIONS(603), - [anon_sym_function] = ACTIONS(605), - [anon_sym_new] = ACTIONS(75), - [anon_sym_AMP] = ACTIONS(1185), - [anon_sym_PIPE] = ACTIONS(1185), - [anon_sym_PLUS] = ACTIONS(77), - [anon_sym_DASH] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(29), - [anon_sym_void] = ACTIONS(19), - [anon_sym_delete] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(85), - [sym_number] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(589), - [anon_sym_get] = ACTIONS(589), - [anon_sym_set] = ACTIONS(589), - [anon_sym_declare] = ACTIONS(589), - [anon_sym_public] = ACTIONS(589), - [anon_sym_private] = ACTIONS(589), - [anon_sym_protected] = ACTIONS(589), - [anon_sym_module] = ACTIONS(589), - [anon_sym_any] = ACTIONS(589), - [anon_sym_number] = ACTIONS(589), - [anon_sym_boolean] = ACTIONS(589), - [anon_sym_string] = ACTIONS(589), - [anon_sym_symbol] = ACTIONS(589), - [anon_sym_extends] = ACTIONS(1187), - [sym_readonly] = ACTIONS(589), - }, - [128] = { - [sym_export_clause] = STATE(2575), - [sym__declaration] = STATE(563), - [sym_variable_declaration] = STATE(598), - [sym_lexical_declaration] = STATE(598), - [sym_class_declaration] = STATE(598), - [sym_function_declaration] = STATE(598), - [sym_generator_function_declaration] = STATE(598), - [sym_decorator] = STATE(1905), - [sym_function_signature] = STATE(598), - [sym_ambient_declaration] = STATE(598), - [sym_abstract_class_declaration] = STATE(598), - [sym_module] = STATE(598), - [sym_internal_module] = STATE(561), - [sym_import_alias] = STATE(598), - [sym_interface_declaration] = STATE(598), - [sym_enum_declaration] = STATE(598), - [sym_type_alias_declaration] = STATE(598), - [aux_sym_export_statement_repeat1] = STATE(2572), - [anon_sym_STAR] = ACTIONS(1189), - [anon_sym_default] = ACTIONS(1191), - [anon_sym_EQ] = ACTIONS(1256), - [anon_sym_as] = ACTIONS(1195), - [anon_sym_namespace] = ACTIONS(1197), - [anon_sym_LBRACE] = ACTIONS(1199), - [anon_sym_COMMA] = ACTIONS(841), - [anon_sym_type] = ACTIONS(1203), - [anon_sym_import] = ACTIONS(1205), - [anon_sym_var] = ACTIONS(1207), - [anon_sym_let] = ACTIONS(1209), - [anon_sym_const] = ACTIONS(1211), - [anon_sym_BANG] = ACTIONS(808), - [anon_sym_LPAREN] = ACTIONS(841), - [anon_sym_in] = ACTIONS(808), - [anon_sym_SEMI] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(1258), - [anon_sym_LBRACK] = ACTIONS(1219), - [anon_sym_LT] = ACTIONS(808), - [anon_sym_GT] = ACTIONS(808), - [anon_sym_SLASH] = ACTIONS(808), - [anon_sym_DOT] = ACTIONS(1224), - [anon_sym_class] = ACTIONS(1226), - [anon_sym_async] = ACTIONS(1228), - [anon_sym_function] = ACTIONS(1230), - [anon_sym_EQ_GT] = ACTIONS(1009), - [anon_sym_QMARK_DOT] = ACTIONS(1011), - [anon_sym_PLUS_EQ] = ACTIONS(831), - [anon_sym_DASH_EQ] = ACTIONS(831), - [anon_sym_STAR_EQ] = ACTIONS(831), - [anon_sym_SLASH_EQ] = ACTIONS(831), - [anon_sym_PERCENT_EQ] = ACTIONS(831), - [anon_sym_CARET_EQ] = ACTIONS(831), - [anon_sym_AMP_EQ] = ACTIONS(831), - [anon_sym_PIPE_EQ] = ACTIONS(831), - [anon_sym_GT_GT_EQ] = ACTIONS(831), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(831), - [anon_sym_LT_LT_EQ] = ACTIONS(831), - [anon_sym_STAR_STAR_EQ] = ACTIONS(831), - [anon_sym_AMP_AMP_EQ] = ACTIONS(831), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(831), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(831), - [anon_sym_QMARK] = ACTIONS(808), - [anon_sym_AMP_AMP] = ACTIONS(808), - [anon_sym_PIPE_PIPE] = ACTIONS(808), - [anon_sym_GT_GT] = ACTIONS(808), - [anon_sym_GT_GT_GT] = ACTIONS(808), - [anon_sym_LT_LT] = ACTIONS(808), - [anon_sym_AMP] = ACTIONS(808), - [anon_sym_CARET] = ACTIONS(808), - [anon_sym_PIPE] = ACTIONS(808), - [anon_sym_PLUS] = ACTIONS(808), - [anon_sym_DASH] = ACTIONS(808), - [anon_sym_PERCENT] = ACTIONS(808), - [anon_sym_STAR_STAR] = ACTIONS(808), - [anon_sym_LT_EQ] = ACTIONS(841), - [anon_sym_EQ_EQ] = ACTIONS(808), - [anon_sym_EQ_EQ_EQ] = ACTIONS(841), - [anon_sym_BANG_EQ] = ACTIONS(808), - [anon_sym_BANG_EQ_EQ] = ACTIONS(841), - [anon_sym_GT_EQ] = ACTIONS(841), - [anon_sym_QMARK_QMARK] = ACTIONS(808), - [anon_sym_instanceof] = ACTIONS(841), - [anon_sym_PLUS_PLUS] = ACTIONS(841), - [anon_sym_DASH_DASH] = ACTIONS(841), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(841), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_abstract] = ACTIONS(1232), - [anon_sym_declare] = ACTIONS(1260), - [anon_sym_module] = ACTIONS(1236), - [anon_sym_interface] = ACTIONS(1238), - [anon_sym_enum] = ACTIONS(1240), - [sym__automatic_semicolon] = ACTIONS(841), - }, - [129] = { - [sym_export_clause] = STATE(2575), - [sym__declaration] = STATE(563), - [sym_variable_declaration] = STATE(598), - [sym_lexical_declaration] = STATE(598), - [sym_class_declaration] = STATE(598), - [sym_function_declaration] = STATE(598), - [sym_generator_function_declaration] = STATE(598), - [sym_decorator] = STATE(1905), - [sym_function_signature] = STATE(598), - [sym_ambient_declaration] = STATE(598), - [sym_abstract_class_declaration] = STATE(598), - [sym_module] = STATE(598), - [sym_internal_module] = STATE(561), - [sym_import_alias] = STATE(598), - [sym_interface_declaration] = STATE(598), - [sym_enum_declaration] = STATE(598), - [sym_type_alias_declaration] = STATE(598), - [aux_sym_export_statement_repeat1] = STATE(2572), - [anon_sym_STAR] = ACTIONS(1189), - [anon_sym_default] = ACTIONS(1191), - [anon_sym_EQ] = ACTIONS(1256), - [anon_sym_as] = ACTIONS(1195), + [sym__declaration] = STATE(551), + [sym_variable_declaration] = STATE(579), + [sym_lexical_declaration] = STATE(579), + [sym_class_declaration] = STATE(579), + [sym_function_declaration] = STATE(579), + [sym_generator_function_declaration] = STATE(579), + [sym_decorator] = STATE(1890), + [sym_function_signature] = STATE(579), + [sym_ambient_declaration] = STATE(579), + [sym_abstract_class_declaration] = STATE(579), + [sym_module] = STATE(579), + [sym_internal_module] = STATE(569), + [sym_import_alias] = STATE(579), + [sym_interface_declaration] = STATE(579), + [sym_enum_declaration] = STATE(579), + [sym_type_alias_declaration] = STATE(579), + [aux_sym_export_statement_repeat1] = STATE(2424), + [aux_sym_object_repeat1] = STATE(2641), + [anon_sym_STAR] = ACTIONS(808), + [anon_sym_EQ] = ACTIONS(1258), + [anon_sym_as] = ACTIONS(808), [anon_sym_namespace] = ACTIONS(1197), - [anon_sym_LBRACE] = ACTIONS(1199), [anon_sym_COMMA] = ACTIONS(841), + [anon_sym_RBRACE] = ACTIONS(1201), [anon_sym_type] = ACTIONS(1203), [anon_sym_import] = ACTIONS(1205), [anon_sym_var] = ACTIONS(1207), [anon_sym_let] = ACTIONS(1209), [anon_sym_const] = ACTIONS(1211), [anon_sym_BANG] = ACTIONS(808), - [anon_sym_LPAREN] = ACTIONS(841), + [anon_sym_LPAREN] = ACTIONS(1213), [anon_sym_in] = ACTIONS(808), [anon_sym_SEMI] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(1262), + [anon_sym_COLON] = ACTIONS(1216), [anon_sym_LBRACK] = ACTIONS(1219), - [anon_sym_LT] = ACTIONS(808), + [anon_sym_LT] = ACTIONS(1221), [anon_sym_GT] = ACTIONS(808), [anon_sym_SLASH] = ACTIONS(808), [anon_sym_DOT] = ACTIONS(1224), [anon_sym_class] = ACTIONS(1226), [anon_sym_async] = ACTIONS(1228), [anon_sym_function] = ACTIONS(1230), - [anon_sym_EQ_GT] = ACTIONS(1009), - [anon_sym_QMARK_DOT] = ACTIONS(1011), + [anon_sym_EQ_GT] = ACTIONS(1019), + [anon_sym_QMARK_DOT] = ACTIONS(1021), [anon_sym_PLUS_EQ] = ACTIONS(831), [anon_sym_DASH_EQ] = ACTIONS(831), [anon_sym_STAR_EQ] = ACTIONS(831), @@ -24691,7 +24556,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP_EQ] = ACTIONS(831), [anon_sym_PIPE_PIPE_EQ] = ACTIONS(831), [anon_sym_QMARK_QMARK_EQ] = ACTIONS(831), - [anon_sym_QMARK] = ACTIONS(808), + [anon_sym_QMARK] = ACTIONS(1221), [anon_sym_AMP_AMP] = ACTIONS(808), [anon_sym_PIPE_PIPE] = ACTIONS(808), [anon_sym_GT_GT] = ACTIONS(808), @@ -24719,149 +24584,56 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT] = ACTIONS(91), [anon_sym_abstract] = ACTIONS(1232), [anon_sym_declare] = ACTIONS(1234), - [anon_sym_module] = ACTIONS(1236), + [anon_sym_module] = ACTIONS(1260), + [anon_sym_global] = ACTIONS(1262), [anon_sym_interface] = ACTIONS(1238), [anon_sym_enum] = ACTIONS(1240), [sym__automatic_semicolon] = ACTIONS(841), }, - [130] = { - [sym_import] = STATE(1101), - [sym_parenthesized_expression] = STATE(921), - [sym__expression] = STATE(1298), - [sym_yield_expression] = STATE(1105), - [sym_object] = STATE(1531), - [sym_array] = STATE(1536), - [sym_class] = STATE(1101), - [sym_function] = STATE(1101), - [sym_generator_function] = STATE(1101), - [sym_arrow_function] = STATE(1101), - [sym__call_signature] = STATE(3170), - [sym_call_expression] = STATE(1101), - [sym_new_expression] = STATE(1105), - [sym_await_expression] = STATE(1105), - [sym_member_expression] = STATE(921), - [sym_subscript_expression] = STATE(921), - [sym_assignment_expression] = STATE(1105), - [sym__augmented_assignment_lhs] = STATE(1917), - [sym_augmented_assignment_expression] = STATE(1105), - [sym_ternary_expression] = STATE(1105), - [sym_binary_expression] = STATE(1105), - [sym_unary_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_string] = STATE(1101), - [sym_template_string] = STATE(1101), - [sym_regex] = STATE(1101), - [sym_meta_property] = STATE(1101), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(882), - [sym_type_assertion] = STATE(1105), - [sym_as_expression] = STATE(1105), - [sym_internal_module] = STATE(1105), - [sym_type_arguments] = STATE(355), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2497), - [sym_identifier] = ACTIONS(897), - [anon_sym_export] = ACTIONS(751), - [anon_sym_namespace] = ACTIONS(753), - [anon_sym_LBRACE] = ACTIONS(509), - [anon_sym_COMMA] = ACTIONS(1185), - [anon_sym_type] = ACTIONS(751), - [anon_sym_typeof] = ACTIONS(775), - [anon_sym_import] = ACTIONS(435), - [anon_sym_BANG] = ACTIONS(757), - [anon_sym_LPAREN] = ACTIONS(515), - [anon_sym_await] = ACTIONS(759), - [anon_sym_yield] = ACTIONS(761), - [anon_sym_LBRACK] = ACTIONS(517), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(1185), - [anon_sym_SLASH] = ACTIONS(765), - [anon_sym_class] = ACTIONS(451), - [anon_sym_async] = ACTIONS(767), - [anon_sym_function] = ACTIONS(455), - [anon_sym_new] = ACTIONS(903), - [anon_sym_AMP] = ACTIONS(1185), - [anon_sym_PIPE] = ACTIONS(1185), - [anon_sym_PLUS] = ACTIONS(905), - [anon_sym_DASH] = ACTIONS(905), - [anon_sym_TILDE] = ACTIONS(757), - [anon_sym_void] = ACTIONS(775), - [anon_sym_delete] = ACTIONS(775), - [anon_sym_PLUS_PLUS] = ACTIONS(777), - [anon_sym_DASH_DASH] = ACTIONS(777), - [anon_sym_DQUOTE] = ACTIONS(475), - [anon_sym_SQUOTE] = ACTIONS(477), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(479), - [sym_number] = ACTIONS(527), - [sym_this] = ACTIONS(485), - [sym_super] = ACTIONS(485), - [sym_true] = ACTIONS(485), - [sym_false] = ACTIONS(485), - [sym_null] = ACTIONS(485), - [sym_undefined] = ACTIONS(485), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(751), - [anon_sym_get] = ACTIONS(751), - [anon_sym_set] = ACTIONS(751), - [anon_sym_declare] = ACTIONS(751), - [anon_sym_public] = ACTIONS(751), - [anon_sym_private] = ACTIONS(751), - [anon_sym_protected] = ACTIONS(751), - [anon_sym_module] = ACTIONS(751), - [anon_sym_any] = ACTIONS(751), - [anon_sym_number] = ACTIONS(751), - [anon_sym_boolean] = ACTIONS(751), - [anon_sym_string] = ACTIONS(751), - [anon_sym_symbol] = ACTIONS(751), - [anon_sym_extends] = ACTIONS(1187), - [sym_readonly] = ACTIONS(751), - }, - [131] = { - [sym_import] = STATE(1101), - [sym_parenthesized_expression] = STATE(739), - [sym__expression] = STATE(1207), - [sym_yield_expression] = STATE(1105), - [sym_object] = STATE(1297), - [sym_array] = STATE(1296), - [sym_class] = STATE(1101), - [sym_function] = STATE(1101), - [sym_generator_function] = STATE(1101), - [sym_arrow_function] = STATE(1101), - [sym__call_signature] = STATE(3116), - [sym_call_expression] = STATE(1101), - [sym_new_expression] = STATE(1105), - [sym_await_expression] = STATE(1105), - [sym_member_expression] = STATE(739), - [sym_subscript_expression] = STATE(739), - [sym_assignment_expression] = STATE(1105), - [sym__augmented_assignment_lhs] = STATE(1920), - [sym_augmented_assignment_expression] = STATE(1105), - [sym_spread_element] = STATE(2622), - [sym_ternary_expression] = STATE(1105), - [sym_binary_expression] = STATE(1105), - [sym_unary_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_string] = STATE(1101), - [sym_template_string] = STATE(1101), - [sym_regex] = STATE(1101), - [sym_meta_property] = STATE(1101), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(755), - [sym_type_assertion] = STATE(1105), - [sym_as_expression] = STATE(1105), - [sym_internal_module] = STATE(1105), - [sym_type_arguments] = STATE(361), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2497), - [aux_sym_array_repeat1] = STATE(2625), + [128] = { + [sym_import] = STATE(1151), + [sym_parenthesized_expression] = STATE(759), + [sym__expression] = STATE(1270), + [sym_yield_expression] = STATE(1144), + [sym_object] = STATE(1257), + [sym_array] = STATE(1254), + [sym_class] = STATE(1151), + [sym_function] = STATE(1151), + [sym_generator_function] = STATE(1151), + [sym_arrow_function] = STATE(1151), + [sym__call_signature] = STATE(3082), + [sym_call_expression] = STATE(1151), + [sym_new_expression] = STATE(1144), + [sym_await_expression] = STATE(1144), + [sym_member_expression] = STATE(759), + [sym_subscript_expression] = STATE(759), + [sym_assignment_expression] = STATE(1144), + [sym__augmented_assignment_lhs] = STATE(1924), + [sym_augmented_assignment_expression] = STATE(1144), + [sym_spread_element] = STATE(2769), + [sym_ternary_expression] = STATE(1144), + [sym_binary_expression] = STATE(1144), + [sym_unary_expression] = STATE(1144), + [sym_update_expression] = STATE(1144), + [sym_string] = STATE(1151), + [sym_template_string] = STATE(1151), + [sym_regex] = STATE(1151), + [sym_meta_property] = STATE(1151), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(754), + [sym_type_assertion] = STATE(1144), + [sym_as_expression] = STATE(1144), + [sym_internal_module] = STATE(1144), + [sym_type_arguments] = STATE(326), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2580), + [aux_sym_array_repeat1] = STATE(2767), [sym_identifier] = ACTIONS(499), [anon_sym_export] = ACTIONS(501), [anon_sym_namespace] = ACTIONS(507), [anon_sym_LBRACE] = ACTIONS(509), - [anon_sym_COMMA] = ACTIONS(1143), + [anon_sym_COMMA] = ACTIONS(1133), [anon_sym_type] = ACTIONS(501), [anon_sym_typeof] = ACTIONS(471), [anon_sym_import] = ACTIONS(435), @@ -24912,59 +24684,153 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(501), [sym_readonly] = ACTIONS(501), }, - [132] = { - [sym_import] = STATE(1101), - [sym_parenthesized_expression] = STATE(739), - [sym__expression] = STATE(1304), - [sym_yield_expression] = STATE(1105), - [sym_object] = STATE(1297), - [sym_array] = STATE(1296), - [sym_class] = STATE(1101), - [sym_function] = STATE(1101), - [sym_generator_function] = STATE(1101), - [sym_arrow_function] = STATE(1101), - [sym__call_signature] = STATE(3116), - [sym_call_expression] = STATE(1101), - [sym_new_expression] = STATE(1105), - [sym_await_expression] = STATE(1105), - [sym_member_expression] = STATE(739), - [sym_subscript_expression] = STATE(739), - [sym_assignment_expression] = STATE(1105), - [sym__augmented_assignment_lhs] = STATE(1920), - [sym_augmented_assignment_expression] = STATE(1105), - [sym_spread_element] = STATE(2720), - [sym_ternary_expression] = STATE(1105), - [sym_binary_expression] = STATE(1105), - [sym_unary_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_string] = STATE(1101), - [sym_template_string] = STATE(1101), - [sym_regex] = STATE(1101), - [sym_meta_property] = STATE(1101), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(755), - [sym_type_assertion] = STATE(1105), - [sym_as_expression] = STATE(1105), - [sym_internal_module] = STATE(1105), - [sym_type_arguments] = STATE(361), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2497), - [aux_sym_array_repeat1] = STATE(2721), + [129] = { + [sym_import] = STATE(1523), + [sym_parenthesized_expression] = STATE(955), + [sym__expression] = STATE(1362), + [sym_yield_expression] = STATE(1567), + [sym_object] = STATE(1636), + [sym_array] = STATE(1643), + [sym_class] = STATE(1523), + [sym_function] = STATE(1523), + [sym_generator_function] = STATE(1523), + [sym_arrow_function] = STATE(1523), + [sym__call_signature] = STATE(3078), + [sym_call_expression] = STATE(1523), + [sym_new_expression] = STATE(1567), + [sym_await_expression] = STATE(1567), + [sym_member_expression] = STATE(955), + [sym_subscript_expression] = STATE(955), + [sym_assignment_expression] = STATE(1567), + [sym__augmented_assignment_lhs] = STATE(1929), + [sym_augmented_assignment_expression] = STATE(1567), + [sym_ternary_expression] = STATE(1567), + [sym_binary_expression] = STATE(1567), + [sym_unary_expression] = STATE(1567), + [sym_update_expression] = STATE(1567), + [sym_string] = STATE(1523), + [sym_template_string] = STATE(1523), + [sym_regex] = STATE(1523), + [sym_meta_property] = STATE(1523), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(953), + [sym_type_assertion] = STATE(1567), + [sym_as_expression] = STATE(1567), + [sym_internal_module] = STATE(1567), + [sym_type_arguments] = STATE(384), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2575), + [sym_identifier] = ACTIONS(887), + [anon_sym_export] = ACTIONS(635), + [anon_sym_namespace] = ACTIONS(637), + [anon_sym_LBRACE] = ACTIONS(571), + [anon_sym_COMMA] = ACTIONS(1185), + [anon_sym_type] = ACTIONS(635), + [anon_sym_typeof] = ACTIONS(657), + [anon_sym_import] = ACTIONS(539), + [anon_sym_BANG] = ACTIONS(641), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(643), + [anon_sym_yield] = ACTIONS(645), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_GT] = ACTIONS(1185), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(545), + [anon_sym_async] = ACTIONS(649), + [anon_sym_function] = ACTIONS(549), + [anon_sym_new] = ACTIONS(893), + [anon_sym_AMP] = ACTIONS(1185), + [anon_sym_PIPE] = ACTIONS(1185), + [anon_sym_PLUS] = ACTIONS(895), + [anon_sym_DASH] = ACTIONS(895), + [anon_sym_TILDE] = ACTIONS(641), + [anon_sym_void] = ACTIONS(657), + [anon_sym_delete] = ACTIONS(657), + [anon_sym_PLUS_PLUS] = ACTIONS(659), + [anon_sym_DASH_DASH] = ACTIONS(659), + [anon_sym_DQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(85), + [sym_number] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(635), + [anon_sym_get] = ACTIONS(635), + [anon_sym_set] = ACTIONS(635), + [anon_sym_declare] = ACTIONS(635), + [anon_sym_public] = ACTIONS(635), + [anon_sym_private] = ACTIONS(635), + [anon_sym_protected] = ACTIONS(635), + [anon_sym_module] = ACTIONS(635), + [anon_sym_any] = ACTIONS(635), + [anon_sym_number] = ACTIONS(635), + [anon_sym_boolean] = ACTIONS(635), + [anon_sym_string] = ACTIONS(635), + [anon_sym_symbol] = ACTIONS(635), + [anon_sym_extends] = ACTIONS(1187), + [sym_readonly] = ACTIONS(635), + }, + [130] = { + [sym_import] = STATE(1151), + [sym_parenthesized_expression] = STATE(759), + [sym__expression] = STATE(1295), + [sym_yield_expression] = STATE(1144), + [sym_object] = STATE(1257), + [sym_array] = STATE(1254), + [sym_class] = STATE(1151), + [sym_function] = STATE(1151), + [sym_generator_function] = STATE(1151), + [sym_arrow_function] = STATE(1151), + [sym__call_signature] = STATE(3082), + [sym_call_expression] = STATE(1151), + [sym_new_expression] = STATE(1144), + [sym_await_expression] = STATE(1144), + [sym_member_expression] = STATE(759), + [sym_subscript_expression] = STATE(759), + [sym_assignment_expression] = STATE(1144), + [sym__augmented_assignment_lhs] = STATE(1924), + [sym_augmented_assignment_expression] = STATE(1144), + [sym_spread_element] = STATE(2714), + [sym_ternary_expression] = STATE(1144), + [sym_binary_expression] = STATE(1144), + [sym_unary_expression] = STATE(1144), + [sym_update_expression] = STATE(1144), + [sym_string] = STATE(1151), + [sym_template_string] = STATE(1151), + [sym_regex] = STATE(1151), + [sym_meta_property] = STATE(1151), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(754), + [sym_type_assertion] = STATE(1144), + [sym_as_expression] = STATE(1144), + [sym_internal_module] = STATE(1144), + [sym_type_arguments] = STATE(326), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2580), + [aux_sym_array_repeat1] = STATE(2715), [sym_identifier] = ACTIONS(499), [anon_sym_export] = ACTIONS(501), [anon_sym_namespace] = ACTIONS(507), [anon_sym_LBRACE] = ACTIONS(509), - [anon_sym_COMMA] = ACTIONS(1143), + [anon_sym_COMMA] = ACTIONS(1133), [anon_sym_type] = ACTIONS(501), [anon_sym_typeof] = ACTIONS(471), [anon_sym_import] = ACTIONS(435), [anon_sym_BANG] = ACTIONS(437), [anon_sym_LPAREN] = ACTIONS(515), + [anon_sym_RPAREN] = ACTIONS(1266), [anon_sym_await] = ACTIONS(443), [anon_sym_yield] = ACTIONS(445), [anon_sym_LBRACK] = ACTIONS(517), - [anon_sym_RBRACK] = ACTIONS(1266), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(449), [anon_sym_class] = ACTIONS(451), @@ -25006,50 +24872,50 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(501), [sym_readonly] = ACTIONS(501), }, - [133] = { - [sym_import] = STATE(1101), - [sym_parenthesized_expression] = STATE(739), - [sym__expression] = STATE(1407), - [sym_yield_expression] = STATE(1105), - [sym_object] = STATE(1297), - [sym_array] = STATE(1296), - [sym_class] = STATE(1101), - [sym_function] = STATE(1101), - [sym_generator_function] = STATE(1101), - [sym_arrow_function] = STATE(1101), - [sym__call_signature] = STATE(3116), - [sym_call_expression] = STATE(1101), - [sym_new_expression] = STATE(1105), - [sym_await_expression] = STATE(1105), - [sym_member_expression] = STATE(739), - [sym_subscript_expression] = STATE(739), - [sym_assignment_expression] = STATE(1105), - [sym__augmented_assignment_lhs] = STATE(1920), - [sym_augmented_assignment_expression] = STATE(1105), - [sym_spread_element] = STATE(2602), - [sym_ternary_expression] = STATE(1105), - [sym_binary_expression] = STATE(1105), - [sym_unary_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_sequence_expression] = STATE(2507), - [sym_string] = STATE(1101), - [sym_template_string] = STATE(1101), - [sym_regex] = STATE(1101), - [sym_meta_property] = STATE(1101), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(755), - [sym_type_assertion] = STATE(1105), - [sym_as_expression] = STATE(1105), - [sym_internal_module] = STATE(1105), - [sym_type_arguments] = STATE(361), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2497), + [131] = { + [sym_import] = STATE(1151), + [sym_parenthesized_expression] = STATE(759), + [sym__expression] = STATE(1297), + [sym_yield_expression] = STATE(1144), + [sym_object] = STATE(1257), + [sym_array] = STATE(1254), + [sym_class] = STATE(1151), + [sym_function] = STATE(1151), + [sym_generator_function] = STATE(1151), + [sym_arrow_function] = STATE(1151), + [sym__call_signature] = STATE(3082), + [sym_call_expression] = STATE(1151), + [sym_new_expression] = STATE(1144), + [sym_await_expression] = STATE(1144), + [sym_member_expression] = STATE(759), + [sym_subscript_expression] = STATE(759), + [sym_assignment_expression] = STATE(1144), + [sym__augmented_assignment_lhs] = STATE(1924), + [sym_augmented_assignment_expression] = STATE(1144), + [sym_spread_element] = STATE(2679), + [sym_ternary_expression] = STATE(1144), + [sym_binary_expression] = STATE(1144), + [sym_unary_expression] = STATE(1144), + [sym_update_expression] = STATE(1144), + [sym_string] = STATE(1151), + [sym_template_string] = STATE(1151), + [sym_regex] = STATE(1151), + [sym_meta_property] = STATE(1151), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(754), + [sym_type_assertion] = STATE(1144), + [sym_as_expression] = STATE(1144), + [sym_internal_module] = STATE(1144), + [sym_type_arguments] = STATE(326), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2580), + [aux_sym_array_repeat1] = STATE(2680), [sym_identifier] = ACTIONS(499), [anon_sym_export] = ACTIONS(501), [anon_sym_namespace] = ACTIONS(507), [anon_sym_LBRACE] = ACTIONS(509), - [anon_sym_COMMA] = ACTIONS(1268), + [anon_sym_COMMA] = ACTIONS(1133), [anon_sym_type] = ACTIONS(501), [anon_sym_typeof] = ACTIONS(471), [anon_sym_import] = ACTIONS(435), @@ -25058,7 +24924,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(443), [anon_sym_yield] = ACTIONS(445), [anon_sym_LBRACK] = ACTIONS(517), - [anon_sym_RBRACK] = ACTIONS(1268), + [anon_sym_RBRACK] = ACTIONS(1252), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(449), [anon_sym_class] = ACTIONS(451), @@ -25100,50 +24966,50 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(501), [sym_readonly] = ACTIONS(501), }, - [134] = { - [sym_import] = STATE(1101), - [sym_parenthesized_expression] = STATE(739), - [sym__expression] = STATE(1213), - [sym_yield_expression] = STATE(1105), - [sym_object] = STATE(1297), - [sym_array] = STATE(1296), - [sym_class] = STATE(1101), - [sym_function] = STATE(1101), - [sym_generator_function] = STATE(1101), - [sym_arrow_function] = STATE(1101), - [sym__call_signature] = STATE(3116), - [sym_call_expression] = STATE(1101), - [sym_new_expression] = STATE(1105), - [sym_await_expression] = STATE(1105), - [sym_member_expression] = STATE(739), - [sym_subscript_expression] = STATE(739), - [sym_assignment_expression] = STATE(1105), - [sym__augmented_assignment_lhs] = STATE(1920), - [sym_augmented_assignment_expression] = STATE(1105), - [sym_spread_element] = STATE(2692), - [sym_ternary_expression] = STATE(1105), - [sym_binary_expression] = STATE(1105), - [sym_unary_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_string] = STATE(1101), - [sym_template_string] = STATE(1101), - [sym_regex] = STATE(1101), - [sym_meta_property] = STATE(1101), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(755), - [sym_type_assertion] = STATE(1105), - [sym_as_expression] = STATE(1105), - [sym_internal_module] = STATE(1105), - [sym_type_arguments] = STATE(361), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2497), - [aux_sym_array_repeat1] = STATE(2690), + [132] = { + [sym_import] = STATE(1151), + [sym_parenthesized_expression] = STATE(759), + [sym__expression] = STATE(1288), + [sym_yield_expression] = STATE(1144), + [sym_object] = STATE(1257), + [sym_array] = STATE(1254), + [sym_class] = STATE(1151), + [sym_function] = STATE(1151), + [sym_generator_function] = STATE(1151), + [sym_arrow_function] = STATE(1151), + [sym__call_signature] = STATE(3082), + [sym_call_expression] = STATE(1151), + [sym_new_expression] = STATE(1144), + [sym_await_expression] = STATE(1144), + [sym_member_expression] = STATE(759), + [sym_subscript_expression] = STATE(759), + [sym_assignment_expression] = STATE(1144), + [sym__augmented_assignment_lhs] = STATE(1924), + [sym_augmented_assignment_expression] = STATE(1144), + [sym_spread_element] = STATE(2679), + [sym_ternary_expression] = STATE(1144), + [sym_binary_expression] = STATE(1144), + [sym_unary_expression] = STATE(1144), + [sym_update_expression] = STATE(1144), + [sym_string] = STATE(1151), + [sym_template_string] = STATE(1151), + [sym_regex] = STATE(1151), + [sym_meta_property] = STATE(1151), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(754), + [sym_type_assertion] = STATE(1144), + [sym_as_expression] = STATE(1144), + [sym_internal_module] = STATE(1144), + [sym_type_arguments] = STATE(326), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2580), + [aux_sym_array_repeat1] = STATE(2680), [sym_identifier] = ACTIONS(499), [anon_sym_export] = ACTIONS(501), [anon_sym_namespace] = ACTIONS(507), [anon_sym_LBRACE] = ACTIONS(509), - [anon_sym_COMMA] = ACTIONS(1143), + [anon_sym_COMMA] = ACTIONS(1133), [anon_sym_type] = ACTIONS(501), [anon_sym_typeof] = ACTIONS(471), [anon_sym_import] = ACTIONS(435), @@ -25152,7 +25018,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(443), [anon_sym_yield] = ACTIONS(445), [anon_sym_LBRACK] = ACTIONS(517), - [anon_sym_RBRACK] = ACTIONS(1270), + [anon_sym_RBRACK] = ACTIONS(1252), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(449), [anon_sym_class] = ACTIONS(451), @@ -25194,59 +25060,59 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(501), [sym_readonly] = ACTIONS(501), }, - [135] = { - [sym_import] = STATE(1101), - [sym_parenthesized_expression] = STATE(739), - [sym__expression] = STATE(1257), - [sym_yield_expression] = STATE(1105), - [sym_object] = STATE(1297), - [sym_array] = STATE(1296), - [sym_class] = STATE(1101), - [sym_function] = STATE(1101), - [sym_generator_function] = STATE(1101), - [sym_arrow_function] = STATE(1101), - [sym__call_signature] = STATE(3116), - [sym_call_expression] = STATE(1101), - [sym_new_expression] = STATE(1105), - [sym_await_expression] = STATE(1105), - [sym_member_expression] = STATE(739), - [sym_subscript_expression] = STATE(739), - [sym_assignment_expression] = STATE(1105), - [sym__augmented_assignment_lhs] = STATE(1920), - [sym_augmented_assignment_expression] = STATE(1105), - [sym_spread_element] = STATE(2724), - [sym_ternary_expression] = STATE(1105), - [sym_binary_expression] = STATE(1105), - [sym_unary_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_string] = STATE(1101), - [sym_template_string] = STATE(1101), - [sym_regex] = STATE(1101), - [sym_meta_property] = STATE(1101), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(755), - [sym_type_assertion] = STATE(1105), - [sym_as_expression] = STATE(1105), - [sym_internal_module] = STATE(1105), - [sym_type_arguments] = STATE(361), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2497), - [aux_sym_array_repeat1] = STATE(2725), + [133] = { + [sym_import] = STATE(1151), + [sym_parenthesized_expression] = STATE(759), + [sym__expression] = STATE(1221), + [sym_yield_expression] = STATE(1144), + [sym_object] = STATE(1257), + [sym_array] = STATE(1254), + [sym_class] = STATE(1151), + [sym_function] = STATE(1151), + [sym_generator_function] = STATE(1151), + [sym_arrow_function] = STATE(1151), + [sym__call_signature] = STATE(3082), + [sym_call_expression] = STATE(1151), + [sym_new_expression] = STATE(1144), + [sym_await_expression] = STATE(1144), + [sym_member_expression] = STATE(759), + [sym_subscript_expression] = STATE(759), + [sym_assignment_expression] = STATE(1144), + [sym__augmented_assignment_lhs] = STATE(1924), + [sym_augmented_assignment_expression] = STATE(1144), + [sym_spread_element] = STATE(2625), + [sym_ternary_expression] = STATE(1144), + [sym_binary_expression] = STATE(1144), + [sym_unary_expression] = STATE(1144), + [sym_update_expression] = STATE(1144), + [sym_string] = STATE(1151), + [sym_template_string] = STATE(1151), + [sym_regex] = STATE(1151), + [sym_meta_property] = STATE(1151), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(754), + [sym_type_assertion] = STATE(1144), + [sym_as_expression] = STATE(1144), + [sym_internal_module] = STATE(1144), + [sym_type_arguments] = STATE(326), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2580), + [aux_sym_array_repeat1] = STATE(2626), [sym_identifier] = ACTIONS(499), [anon_sym_export] = ACTIONS(501), [anon_sym_namespace] = ACTIONS(507), [anon_sym_LBRACE] = ACTIONS(509), - [anon_sym_COMMA] = ACTIONS(1143), + [anon_sym_COMMA] = ACTIONS(1133), [anon_sym_type] = ACTIONS(501), [anon_sym_typeof] = ACTIONS(471), [anon_sym_import] = ACTIONS(435), [anon_sym_BANG] = ACTIONS(437), [anon_sym_LPAREN] = ACTIONS(515), + [anon_sym_RPAREN] = ACTIONS(1268), [anon_sym_await] = ACTIONS(443), [anon_sym_yield] = ACTIONS(445), [anon_sym_LBRACK] = ACTIONS(517), - [anon_sym_RBRACK] = ACTIONS(1272), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(449), [anon_sym_class] = ACTIONS(451), @@ -25288,167 +25154,166 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(501), [sym_readonly] = ACTIONS(501), }, - [136] = { - [sym_import] = STATE(1682), - [sym_parenthesized_expression] = STATE(828), - [sym__expression] = STATE(1209), - [sym_yield_expression] = STATE(1680), - [sym_object] = STATE(1586), - [sym_array] = STATE(1585), - [sym_class] = STATE(1682), - [sym_function] = STATE(1682), - [sym_generator_function] = STATE(1682), - [sym_arrow_function] = STATE(1682), - [sym__call_signature] = STATE(3105), - [sym_call_expression] = STATE(1682), - [sym_new_expression] = STATE(1680), - [sym_await_expression] = STATE(1680), - [sym_member_expression] = STATE(828), - [sym_subscript_expression] = STATE(828), - [sym_assignment_expression] = STATE(1680), - [sym__augmented_assignment_lhs] = STATE(1918), - [sym_augmented_assignment_expression] = STATE(1680), - [sym_ternary_expression] = STATE(1680), - [sym_binary_expression] = STATE(1680), - [sym_unary_expression] = STATE(1680), - [sym_update_expression] = STATE(1680), - [sym_string] = STATE(1682), - [sym_template_string] = STATE(1682), - [sym_regex] = STATE(1682), - [sym_meta_property] = STATE(1682), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(827), - [sym_type_assertion] = STATE(1680), - [sym_as_expression] = STATE(1680), - [sym_internal_module] = STATE(1680), - [sym_type_arguments] = STATE(256), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2529), - [sym_identifier] = ACTIONS(879), - [anon_sym_export] = ACTIONS(531), - [anon_sym_namespace] = ACTIONS(533), - [anon_sym_LBRACE] = ACTIONS(1274), + [134] = { + [sym_import] = STATE(1690), + [sym_parenthesized_expression] = STATE(834), + [sym__expression] = STATE(1229), + [sym_yield_expression] = STATE(1687), + [sym_object] = STATE(1538), + [sym_array] = STATE(1543), + [sym_class] = STATE(1690), + [sym_function] = STATE(1690), + [sym_generator_function] = STATE(1690), + [sym_arrow_function] = STATE(1690), + [sym__call_signature] = STATE(3133), + [sym_call_expression] = STATE(1690), + [sym_new_expression] = STATE(1687), + [sym_await_expression] = STATE(1687), + [sym_member_expression] = STATE(834), + [sym_subscript_expression] = STATE(834), + [sym_assignment_expression] = STATE(1687), + [sym__augmented_assignment_lhs] = STATE(1921), + [sym_augmented_assignment_expression] = STATE(1687), + [sym_ternary_expression] = STATE(1687), + [sym_binary_expression] = STATE(1687), + [sym_unary_expression] = STATE(1687), + [sym_update_expression] = STATE(1687), + [sym_string] = STATE(1690), + [sym_template_string] = STATE(1690), + [sym_regex] = STATE(1690), + [sym_meta_property] = STATE(1690), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(846), + [sym_type_assertion] = STATE(1687), + [sym_as_expression] = STATE(1687), + [sym_internal_module] = STATE(1687), + [sym_type_arguments] = STATE(301), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2545), + [sym_identifier] = ACTIONS(869), + [anon_sym_export] = ACTIONS(673), + [anon_sym_namespace] = ACTIONS(675), + [anon_sym_LBRACE] = ACTIONS(1270), [anon_sym_COMMA] = ACTIONS(1185), - [anon_sym_type] = ACTIONS(531), - [anon_sym_typeof] = ACTIONS(565), - [anon_sym_import] = ACTIONS(539), - [anon_sym_BANG] = ACTIONS(541), - [anon_sym_LPAREN] = ACTIONS(887), - [anon_sym_await] = ACTIONS(545), - [anon_sym_yield] = ACTIONS(547), - [anon_sym_LBRACK] = ACTIONS(889), + [anon_sym_type] = ACTIONS(673), + [anon_sym_typeof] = ACTIONS(707), + [anon_sym_import] = ACTIONS(681), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_await] = ACTIONS(687), + [anon_sym_yield] = ACTIONS(689), + [anon_sym_LBRACK] = ACTIONS(879), [anon_sym_LT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(1185), - [anon_sym_SLASH] = ACTIONS(551), - [anon_sym_class] = ACTIONS(553), - [anon_sym_async] = ACTIONS(555), - [anon_sym_function] = ACTIONS(557), - [anon_sym_new] = ACTIONS(891), + [anon_sym_SLASH] = ACTIONS(693), + [anon_sym_class] = ACTIONS(695), + [anon_sym_async] = ACTIONS(697), + [anon_sym_function] = ACTIONS(699), + [anon_sym_new] = ACTIONS(881), [anon_sym_AMP] = ACTIONS(1185), [anon_sym_PIPE] = ACTIONS(1185), - [anon_sym_PLUS] = ACTIONS(893), - [anon_sym_DASH] = ACTIONS(893), - [anon_sym_TILDE] = ACTIONS(541), - [anon_sym_void] = ACTIONS(565), - [anon_sym_delete] = ACTIONS(565), - [anon_sym_PLUS_PLUS] = ACTIONS(567), - [anon_sym_DASH_DASH] = ACTIONS(567), - [anon_sym_DQUOTE] = ACTIONS(569), - [anon_sym_SQUOTE] = ACTIONS(571), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(573), - [sym_number] = ACTIONS(895), - [sym_this] = ACTIONS(579), - [sym_super] = ACTIONS(579), - [sym_true] = ACTIONS(579), - [sym_false] = ACTIONS(579), - [sym_null] = ACTIONS(579), - [sym_undefined] = ACTIONS(579), + [anon_sym_PLUS] = ACTIONS(883), + [anon_sym_DASH] = ACTIONS(883), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_void] = ACTIONS(707), + [anon_sym_delete] = ACTIONS(707), + [anon_sym_PLUS_PLUS] = ACTIONS(709), + [anon_sym_DASH_DASH] = ACTIONS(709), + [anon_sym_DQUOTE] = ACTIONS(711), + [anon_sym_SQUOTE] = ACTIONS(713), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(715), + [sym_number] = ACTIONS(885), + [sym_this] = ACTIONS(721), + [sym_super] = ACTIONS(721), + [sym_true] = ACTIONS(721), + [sym_false] = ACTIONS(721), + [sym_null] = ACTIONS(721), + [sym_undefined] = ACTIONS(721), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(531), - [anon_sym_get] = ACTIONS(531), - [anon_sym_set] = ACTIONS(531), - [anon_sym_declare] = ACTIONS(531), - [anon_sym_public] = ACTIONS(531), - [anon_sym_private] = ACTIONS(531), - [anon_sym_protected] = ACTIONS(531), - [anon_sym_module] = ACTIONS(531), - [anon_sym_any] = ACTIONS(531), - [anon_sym_number] = ACTIONS(531), - [anon_sym_boolean] = ACTIONS(531), - [anon_sym_string] = ACTIONS(531), - [anon_sym_symbol] = ACTIONS(531), + [anon_sym_static] = ACTIONS(673), + [anon_sym_get] = ACTIONS(673), + [anon_sym_set] = ACTIONS(673), + [anon_sym_declare] = ACTIONS(673), + [anon_sym_public] = ACTIONS(673), + [anon_sym_private] = ACTIONS(673), + [anon_sym_protected] = ACTIONS(673), + [anon_sym_module] = ACTIONS(673), + [anon_sym_any] = ACTIONS(673), + [anon_sym_number] = ACTIONS(673), + [anon_sym_boolean] = ACTIONS(673), + [anon_sym_string] = ACTIONS(673), + [anon_sym_symbol] = ACTIONS(673), [anon_sym_extends] = ACTIONS(1187), - [sym_readonly] = ACTIONS(531), + [sym_readonly] = ACTIONS(673), }, - [137] = { - [sym_import] = STATE(1101), - [sym_parenthesized_expression] = STATE(739), - [sym__expression] = STATE(1246), - [sym_yield_expression] = STATE(1105), - [sym_object] = STATE(1297), - [sym_array] = STATE(1296), - [sym_class] = STATE(1101), - [sym_function] = STATE(1101), - [sym_generator_function] = STATE(1101), - [sym_arrow_function] = STATE(1101), - [sym__call_signature] = STATE(3116), - [sym_call_expression] = STATE(1101), - [sym_new_expression] = STATE(1105), - [sym_await_expression] = STATE(1105), - [sym_member_expression] = STATE(739), - [sym_subscript_expression] = STATE(739), - [sym_assignment_expression] = STATE(1105), - [sym__augmented_assignment_lhs] = STATE(1920), - [sym_augmented_assignment_expression] = STATE(1105), - [sym_spread_element] = STATE(2696), - [sym_ternary_expression] = STATE(1105), - [sym_binary_expression] = STATE(1105), - [sym_unary_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_string] = STATE(1101), - [sym_template_string] = STATE(1101), - [sym_regex] = STATE(1101), - [sym_meta_property] = STATE(1101), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(755), - [sym_type_assertion] = STATE(1105), - [sym_as_expression] = STATE(1105), - [sym_internal_module] = STATE(1105), - [sym_type_arguments] = STATE(361), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2497), - [aux_sym_array_repeat1] = STATE(2697), - [sym_identifier] = ACTIONS(499), - [anon_sym_export] = ACTIONS(501), - [anon_sym_namespace] = ACTIONS(507), + [135] = { + [sym_import] = STATE(1151), + [sym_parenthesized_expression] = STATE(956), + [sym__expression] = STATE(1377), + [sym_yield_expression] = STATE(1144), + [sym_object] = STATE(1653), + [sym_array] = STATE(1660), + [sym_class] = STATE(1151), + [sym_function] = STATE(1151), + [sym_generator_function] = STATE(1151), + [sym_arrow_function] = STATE(1151), + [sym__call_signature] = STATE(3024), + [sym_call_expression] = STATE(1151), + [sym_new_expression] = STATE(1144), + [sym_await_expression] = STATE(1144), + [sym_member_expression] = STATE(956), + [sym_subscript_expression] = STATE(956), + [sym_assignment_expression] = STATE(1144), + [sym__augmented_assignment_lhs] = STATE(1925), + [sym_augmented_assignment_expression] = STATE(1144), + [sym_ternary_expression] = STATE(1144), + [sym_binary_expression] = STATE(1144), + [sym_unary_expression] = STATE(1144), + [sym_update_expression] = STATE(1144), + [sym_string] = STATE(1151), + [sym_template_string] = STATE(1151), + [sym_regex] = STATE(1151), + [sym_meta_property] = STATE(1151), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(950), + [sym_type_assertion] = STATE(1144), + [sym_as_expression] = STATE(1144), + [sym_internal_module] = STATE(1144), + [sym_type_arguments] = STATE(395), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2580), + [sym_identifier] = ACTIONS(897), + [anon_sym_export] = ACTIONS(577), + [anon_sym_namespace] = ACTIONS(579), [anon_sym_LBRACE] = ACTIONS(509), - [anon_sym_COMMA] = ACTIONS(1143), - [anon_sym_type] = ACTIONS(501), - [anon_sym_typeof] = ACTIONS(471), + [anon_sym_COMMA] = ACTIONS(1185), + [anon_sym_type] = ACTIONS(577), + [anon_sym_typeof] = ACTIONS(601), [anon_sym_import] = ACTIONS(435), - [anon_sym_BANG] = ACTIONS(437), + [anon_sym_BANG] = ACTIONS(585), [anon_sym_LPAREN] = ACTIONS(515), - [anon_sym_RPAREN] = ACTIONS(1276), - [anon_sym_await] = ACTIONS(443), - [anon_sym_yield] = ACTIONS(445), + [anon_sym_await] = ACTIONS(587), + [anon_sym_yield] = ACTIONS(589), [anon_sym_LBRACK] = ACTIONS(517), [anon_sym_LT] = ACTIONS(65), + [anon_sym_GT] = ACTIONS(1185), [anon_sym_SLASH] = ACTIONS(449), [anon_sym_class] = ACTIONS(451), - [anon_sym_async] = ACTIONS(521), + [anon_sym_async] = ACTIONS(593), [anon_sym_function] = ACTIONS(455), - [anon_sym_new] = ACTIONS(523), - [anon_sym_DOT_DOT_DOT] = ACTIONS(123), - [anon_sym_PLUS] = ACTIONS(525), - [anon_sym_DASH] = ACTIONS(525), - [anon_sym_TILDE] = ACTIONS(437), - [anon_sym_void] = ACTIONS(471), - [anon_sym_delete] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(473), - [anon_sym_DASH_DASH] = ACTIONS(473), + [anon_sym_new] = ACTIONS(903), + [anon_sym_AMP] = ACTIONS(1185), + [anon_sym_PIPE] = ACTIONS(1185), + [anon_sym_PLUS] = ACTIONS(905), + [anon_sym_DASH] = ACTIONS(905), + [anon_sym_TILDE] = ACTIONS(585), + [anon_sym_void] = ACTIONS(601), + [anon_sym_delete] = ACTIONS(601), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(603), [anon_sym_DQUOTE] = ACTIONS(475), [anon_sym_SQUOTE] = ACTIONS(477), [sym_comment] = ACTIONS(3), @@ -25461,71 +25326,260 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(485), [sym_undefined] = ACTIONS(485), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(501), - [anon_sym_get] = ACTIONS(501), - [anon_sym_set] = ACTIONS(501), - [anon_sym_declare] = ACTIONS(501), - [anon_sym_public] = ACTIONS(501), - [anon_sym_private] = ACTIONS(501), - [anon_sym_protected] = ACTIONS(501), - [anon_sym_module] = ACTIONS(501), - [anon_sym_any] = ACTIONS(501), - [anon_sym_number] = ACTIONS(501), - [anon_sym_boolean] = ACTIONS(501), - [anon_sym_string] = ACTIONS(501), - [anon_sym_symbol] = ACTIONS(501), - [sym_readonly] = ACTIONS(501), + [anon_sym_static] = ACTIONS(577), + [anon_sym_get] = ACTIONS(577), + [anon_sym_set] = ACTIONS(577), + [anon_sym_declare] = ACTIONS(577), + [anon_sym_public] = ACTIONS(577), + [anon_sym_private] = ACTIONS(577), + [anon_sym_protected] = ACTIONS(577), + [anon_sym_module] = ACTIONS(577), + [anon_sym_any] = ACTIONS(577), + [anon_sym_number] = ACTIONS(577), + [anon_sym_boolean] = ACTIONS(577), + [anon_sym_string] = ACTIONS(577), + [anon_sym_symbol] = ACTIONS(577), + [anon_sym_extends] = ACTIONS(1187), + [sym_readonly] = ACTIONS(577), + }, + [136] = { + [sym_export_clause] = STATE(2550), + [sym__declaration] = STATE(559), + [sym_variable_declaration] = STATE(579), + [sym_lexical_declaration] = STATE(579), + [sym_class_declaration] = STATE(579), + [sym_function_declaration] = STATE(579), + [sym_generator_function_declaration] = STATE(579), + [sym_decorator] = STATE(1890), + [sym_function_signature] = STATE(579), + [sym_ambient_declaration] = STATE(579), + [sym_abstract_class_declaration] = STATE(579), + [sym_module] = STATE(579), + [sym_internal_module] = STATE(569), + [sym_import_alias] = STATE(579), + [sym_interface_declaration] = STATE(579), + [sym_enum_declaration] = STATE(579), + [sym_type_alias_declaration] = STATE(579), + [aux_sym_export_statement_repeat1] = STATE(2424), + [anon_sym_STAR] = ACTIONS(1189), + [anon_sym_default] = ACTIONS(1191), + [anon_sym_EQ] = ACTIONS(1272), + [anon_sym_as] = ACTIONS(1195), + [anon_sym_namespace] = ACTIONS(1197), + [anon_sym_LBRACE] = ACTIONS(1199), + [anon_sym_COMMA] = ACTIONS(841), + [anon_sym_type] = ACTIONS(1203), + [anon_sym_import] = ACTIONS(1205), + [anon_sym_var] = ACTIONS(1207), + [anon_sym_let] = ACTIONS(1209), + [anon_sym_const] = ACTIONS(1211), + [anon_sym_BANG] = ACTIONS(808), + [anon_sym_LPAREN] = ACTIONS(841), + [anon_sym_in] = ACTIONS(808), + [anon_sym_SEMI] = ACTIONS(841), + [anon_sym_COLON] = ACTIONS(1274), + [anon_sym_LBRACK] = ACTIONS(1219), + [anon_sym_LT] = ACTIONS(808), + [anon_sym_GT] = ACTIONS(808), + [anon_sym_SLASH] = ACTIONS(808), + [anon_sym_DOT] = ACTIONS(1224), + [anon_sym_class] = ACTIONS(1226), + [anon_sym_async] = ACTIONS(1228), + [anon_sym_function] = ACTIONS(1230), + [anon_sym_EQ_GT] = ACTIONS(1019), + [anon_sym_QMARK_DOT] = ACTIONS(1021), + [anon_sym_PLUS_EQ] = ACTIONS(831), + [anon_sym_DASH_EQ] = ACTIONS(831), + [anon_sym_STAR_EQ] = ACTIONS(831), + [anon_sym_SLASH_EQ] = ACTIONS(831), + [anon_sym_PERCENT_EQ] = ACTIONS(831), + [anon_sym_CARET_EQ] = ACTIONS(831), + [anon_sym_AMP_EQ] = ACTIONS(831), + [anon_sym_PIPE_EQ] = ACTIONS(831), + [anon_sym_GT_GT_EQ] = ACTIONS(831), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(831), + [anon_sym_LT_LT_EQ] = ACTIONS(831), + [anon_sym_STAR_STAR_EQ] = ACTIONS(831), + [anon_sym_AMP_AMP_EQ] = ACTIONS(831), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(831), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(831), + [anon_sym_QMARK] = ACTIONS(808), + [anon_sym_AMP_AMP] = ACTIONS(808), + [anon_sym_PIPE_PIPE] = ACTIONS(808), + [anon_sym_GT_GT] = ACTIONS(808), + [anon_sym_GT_GT_GT] = ACTIONS(808), + [anon_sym_LT_LT] = ACTIONS(808), + [anon_sym_AMP] = ACTIONS(808), + [anon_sym_CARET] = ACTIONS(808), + [anon_sym_PIPE] = ACTIONS(808), + [anon_sym_PLUS] = ACTIONS(808), + [anon_sym_DASH] = ACTIONS(808), + [anon_sym_PERCENT] = ACTIONS(808), + [anon_sym_STAR_STAR] = ACTIONS(808), + [anon_sym_LT_EQ] = ACTIONS(841), + [anon_sym_EQ_EQ] = ACTIONS(808), + [anon_sym_EQ_EQ_EQ] = ACTIONS(841), + [anon_sym_BANG_EQ] = ACTIONS(808), + [anon_sym_BANG_EQ_EQ] = ACTIONS(841), + [anon_sym_GT_EQ] = ACTIONS(841), + [anon_sym_QMARK_QMARK] = ACTIONS(808), + [anon_sym_instanceof] = ACTIONS(841), + [anon_sym_PLUS_PLUS] = ACTIONS(841), + [anon_sym_DASH_DASH] = ACTIONS(841), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(841), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_abstract] = ACTIONS(1232), + [anon_sym_declare] = ACTIONS(1234), + [anon_sym_module] = ACTIONS(1236), + [anon_sym_interface] = ACTIONS(1238), + [anon_sym_enum] = ACTIONS(1240), + [sym__automatic_semicolon] = ACTIONS(841), + }, + [137] = { + [sym__declaration] = STATE(551), + [sym_variable_declaration] = STATE(579), + [sym_lexical_declaration] = STATE(579), + [sym_class_declaration] = STATE(579), + [sym_function_declaration] = STATE(579), + [sym_generator_function_declaration] = STATE(579), + [sym_decorator] = STATE(1890), + [sym_function_signature] = STATE(579), + [sym_ambient_declaration] = STATE(579), + [sym_abstract_class_declaration] = STATE(579), + [sym_module] = STATE(579), + [sym_internal_module] = STATE(569), + [sym_import_alias] = STATE(579), + [sym_interface_declaration] = STATE(579), + [sym_enum_declaration] = STATE(579), + [sym_type_alias_declaration] = STATE(579), + [aux_sym_export_statement_repeat1] = STATE(2424), + [aux_sym_object_repeat1] = STATE(2651), + [anon_sym_STAR] = ACTIONS(808), + [anon_sym_EQ] = ACTIONS(1258), + [anon_sym_as] = ACTIONS(808), + [anon_sym_namespace] = ACTIONS(1197), + [anon_sym_COMMA] = ACTIONS(841), + [anon_sym_RBRACE] = ACTIONS(1242), + [anon_sym_type] = ACTIONS(1203), + [anon_sym_import] = ACTIONS(1205), + [anon_sym_var] = ACTIONS(1207), + [anon_sym_let] = ACTIONS(1209), + [anon_sym_const] = ACTIONS(1211), + [anon_sym_BANG] = ACTIONS(808), + [anon_sym_LPAREN] = ACTIONS(1213), + [anon_sym_in] = ACTIONS(808), + [anon_sym_SEMI] = ACTIONS(841), + [anon_sym_COLON] = ACTIONS(1216), + [anon_sym_LBRACK] = ACTIONS(1219), + [anon_sym_LT] = ACTIONS(1221), + [anon_sym_GT] = ACTIONS(808), + [anon_sym_SLASH] = ACTIONS(808), + [anon_sym_DOT] = ACTIONS(1224), + [anon_sym_class] = ACTIONS(1226), + [anon_sym_async] = ACTIONS(1228), + [anon_sym_function] = ACTIONS(1230), + [anon_sym_EQ_GT] = ACTIONS(1019), + [anon_sym_QMARK_DOT] = ACTIONS(1021), + [anon_sym_PLUS_EQ] = ACTIONS(831), + [anon_sym_DASH_EQ] = ACTIONS(831), + [anon_sym_STAR_EQ] = ACTIONS(831), + [anon_sym_SLASH_EQ] = ACTIONS(831), + [anon_sym_PERCENT_EQ] = ACTIONS(831), + [anon_sym_CARET_EQ] = ACTIONS(831), + [anon_sym_AMP_EQ] = ACTIONS(831), + [anon_sym_PIPE_EQ] = ACTIONS(831), + [anon_sym_GT_GT_EQ] = ACTIONS(831), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(831), + [anon_sym_LT_LT_EQ] = ACTIONS(831), + [anon_sym_STAR_STAR_EQ] = ACTIONS(831), + [anon_sym_AMP_AMP_EQ] = ACTIONS(831), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(831), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(831), + [anon_sym_QMARK] = ACTIONS(1221), + [anon_sym_AMP_AMP] = ACTIONS(808), + [anon_sym_PIPE_PIPE] = ACTIONS(808), + [anon_sym_GT_GT] = ACTIONS(808), + [anon_sym_GT_GT_GT] = ACTIONS(808), + [anon_sym_LT_LT] = ACTIONS(808), + [anon_sym_AMP] = ACTIONS(808), + [anon_sym_CARET] = ACTIONS(808), + [anon_sym_PIPE] = ACTIONS(808), + [anon_sym_PLUS] = ACTIONS(808), + [anon_sym_DASH] = ACTIONS(808), + [anon_sym_PERCENT] = ACTIONS(808), + [anon_sym_STAR_STAR] = ACTIONS(808), + [anon_sym_LT_EQ] = ACTIONS(841), + [anon_sym_EQ_EQ] = ACTIONS(808), + [anon_sym_EQ_EQ_EQ] = ACTIONS(841), + [anon_sym_BANG_EQ] = ACTIONS(808), + [anon_sym_BANG_EQ_EQ] = ACTIONS(841), + [anon_sym_GT_EQ] = ACTIONS(841), + [anon_sym_QMARK_QMARK] = ACTIONS(808), + [anon_sym_instanceof] = ACTIONS(841), + [anon_sym_PLUS_PLUS] = ACTIONS(841), + [anon_sym_DASH_DASH] = ACTIONS(841), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(841), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_abstract] = ACTIONS(1232), + [anon_sym_declare] = ACTIONS(1234), + [anon_sym_module] = ACTIONS(1260), + [anon_sym_global] = ACTIONS(1262), + [anon_sym_interface] = ACTIONS(1238), + [anon_sym_enum] = ACTIONS(1240), + [sym__automatic_semicolon] = ACTIONS(841), }, [138] = { - [sym_import] = STATE(1101), - [sym_parenthesized_expression] = STATE(739), - [sym__expression] = STATE(1288), - [sym_yield_expression] = STATE(1105), - [sym_object] = STATE(1297), - [sym_array] = STATE(1296), - [sym_class] = STATE(1101), - [sym_function] = STATE(1101), - [sym_generator_function] = STATE(1101), - [sym_arrow_function] = STATE(1101), - [sym__call_signature] = STATE(3116), - [sym_call_expression] = STATE(1101), - [sym_new_expression] = STATE(1105), - [sym_await_expression] = STATE(1105), - [sym_member_expression] = STATE(739), - [sym_subscript_expression] = STATE(739), - [sym_assignment_expression] = STATE(1105), - [sym__augmented_assignment_lhs] = STATE(1920), - [sym_augmented_assignment_expression] = STATE(1105), - [sym_spread_element] = STATE(2711), - [sym_ternary_expression] = STATE(1105), - [sym_binary_expression] = STATE(1105), - [sym_unary_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_string] = STATE(1101), - [sym_template_string] = STATE(1101), - [sym_regex] = STATE(1101), - [sym_meta_property] = STATE(1101), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(755), - [sym_type_assertion] = STATE(1105), - [sym_as_expression] = STATE(1105), - [sym_internal_module] = STATE(1105), - [sym_type_arguments] = STATE(361), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2497), - [aux_sym_array_repeat1] = STATE(2712), + [sym_import] = STATE(1151), + [sym_parenthesized_expression] = STATE(759), + [sym__expression] = STATE(1227), + [sym_yield_expression] = STATE(1144), + [sym_object] = STATE(1257), + [sym_array] = STATE(1254), + [sym_class] = STATE(1151), + [sym_function] = STATE(1151), + [sym_generator_function] = STATE(1151), + [sym_arrow_function] = STATE(1151), + [sym__call_signature] = STATE(3082), + [sym_call_expression] = STATE(1151), + [sym_new_expression] = STATE(1144), + [sym_await_expression] = STATE(1144), + [sym_member_expression] = STATE(759), + [sym_subscript_expression] = STATE(759), + [sym_assignment_expression] = STATE(1144), + [sym__augmented_assignment_lhs] = STATE(1924), + [sym_augmented_assignment_expression] = STATE(1144), + [sym_spread_element] = STATE(2643), + [sym_ternary_expression] = STATE(1144), + [sym_binary_expression] = STATE(1144), + [sym_unary_expression] = STATE(1144), + [sym_update_expression] = STATE(1144), + [sym_string] = STATE(1151), + [sym_template_string] = STATE(1151), + [sym_regex] = STATE(1151), + [sym_meta_property] = STATE(1151), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(754), + [sym_type_assertion] = STATE(1144), + [sym_as_expression] = STATE(1144), + [sym_internal_module] = STATE(1144), + [sym_type_arguments] = STATE(326), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2580), + [aux_sym_array_repeat1] = STATE(2642), [sym_identifier] = ACTIONS(499), [anon_sym_export] = ACTIONS(501), [anon_sym_namespace] = ACTIONS(507), [anon_sym_LBRACE] = ACTIONS(509), - [anon_sym_COMMA] = ACTIONS(1143), + [anon_sym_COMMA] = ACTIONS(1133), [anon_sym_type] = ACTIONS(501), [anon_sym_typeof] = ACTIONS(471), [anon_sym_import] = ACTIONS(435), [anon_sym_BANG] = ACTIONS(437), [anon_sym_LPAREN] = ACTIONS(515), - [anon_sym_RPAREN] = ACTIONS(1278), + [anon_sym_RPAREN] = ACTIONS(1276), [anon_sym_await] = ACTIONS(443), [anon_sym_yield] = ACTIONS(445), [anon_sym_LBRACK] = ACTIONS(517), @@ -25571,49 +25625,49 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_readonly] = ACTIONS(501), }, [139] = { - [sym_import] = STATE(1101), - [sym_parenthesized_expression] = STATE(739), - [sym__expression] = STATE(1239), - [sym_yield_expression] = STATE(1105), - [sym_object] = STATE(1297), - [sym_array] = STATE(1296), - [sym_class] = STATE(1101), - [sym_function] = STATE(1101), - [sym_generator_function] = STATE(1101), - [sym_arrow_function] = STATE(1101), - [sym__call_signature] = STATE(3116), - [sym_call_expression] = STATE(1101), - [sym_new_expression] = STATE(1105), - [sym_await_expression] = STATE(1105), - [sym_member_expression] = STATE(739), - [sym_subscript_expression] = STATE(739), - [sym_assignment_expression] = STATE(1105), - [sym__augmented_assignment_lhs] = STATE(1920), - [sym_augmented_assignment_expression] = STATE(1105), - [sym_spread_element] = STATE(2661), - [sym_ternary_expression] = STATE(1105), - [sym_binary_expression] = STATE(1105), - [sym_unary_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_string] = STATE(1101), - [sym_template_string] = STATE(1101), - [sym_regex] = STATE(1101), - [sym_meta_property] = STATE(1101), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(755), - [sym_type_assertion] = STATE(1105), - [sym_as_expression] = STATE(1105), - [sym_internal_module] = STATE(1105), - [sym_type_arguments] = STATE(361), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2497), - [aux_sym_array_repeat1] = STATE(2662), + [sym_import] = STATE(1151), + [sym_parenthesized_expression] = STATE(759), + [sym__expression] = STATE(1281), + [sym_yield_expression] = STATE(1144), + [sym_object] = STATE(1257), + [sym_array] = STATE(1254), + [sym_class] = STATE(1151), + [sym_function] = STATE(1151), + [sym_generator_function] = STATE(1151), + [sym_arrow_function] = STATE(1151), + [sym__call_signature] = STATE(3082), + [sym_call_expression] = STATE(1151), + [sym_new_expression] = STATE(1144), + [sym_await_expression] = STATE(1144), + [sym_member_expression] = STATE(759), + [sym_subscript_expression] = STATE(759), + [sym_assignment_expression] = STATE(1144), + [sym__augmented_assignment_lhs] = STATE(1924), + [sym_augmented_assignment_expression] = STATE(1144), + [sym_spread_element] = STATE(2742), + [sym_ternary_expression] = STATE(1144), + [sym_binary_expression] = STATE(1144), + [sym_unary_expression] = STATE(1144), + [sym_update_expression] = STATE(1144), + [sym_string] = STATE(1151), + [sym_template_string] = STATE(1151), + [sym_regex] = STATE(1151), + [sym_meta_property] = STATE(1151), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(754), + [sym_type_assertion] = STATE(1144), + [sym_as_expression] = STATE(1144), + [sym_internal_module] = STATE(1144), + [sym_type_arguments] = STATE(326), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2580), + [aux_sym_array_repeat1] = STATE(2743), [sym_identifier] = ACTIONS(499), [anon_sym_export] = ACTIONS(501), [anon_sym_namespace] = ACTIONS(507), [anon_sym_LBRACE] = ACTIONS(509), - [anon_sym_COMMA] = ACTIONS(1143), + [anon_sym_COMMA] = ACTIONS(1133), [anon_sym_type] = ACTIONS(501), [anon_sym_typeof] = ACTIONS(471), [anon_sym_import] = ACTIONS(435), @@ -25622,7 +25676,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(443), [anon_sym_yield] = ACTIONS(445), [anon_sym_LBRACK] = ACTIONS(517), - [anon_sym_RBRACK] = ACTIONS(1246), + [anon_sym_RBRACK] = ACTIONS(1278), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(449), [anon_sym_class] = ACTIONS(451), @@ -25665,143 +25719,49 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_readonly] = ACTIONS(501), }, [140] = { - [sym_import] = STATE(1498), - [sym_parenthesized_expression] = STATE(952), - [sym__expression] = STATE(1425), - [sym_yield_expression] = STATE(1518), - [sym_object] = STATE(1677), - [sym_array] = STATE(1671), - [sym_class] = STATE(1498), - [sym_function] = STATE(1498), - [sym_generator_function] = STATE(1498), - [sym_arrow_function] = STATE(1498), - [sym__call_signature] = STATE(3059), - [sym_call_expression] = STATE(1498), - [sym_new_expression] = STATE(1518), - [sym_await_expression] = STATE(1518), - [sym_member_expression] = STATE(952), - [sym_subscript_expression] = STATE(952), - [sym_assignment_expression] = STATE(1518), - [sym__augmented_assignment_lhs] = STATE(1919), - [sym_augmented_assignment_expression] = STATE(1518), - [sym_ternary_expression] = STATE(1518), - [sym_binary_expression] = STATE(1518), - [sym_unary_expression] = STATE(1518), - [sym_update_expression] = STATE(1518), - [sym_string] = STATE(1498), - [sym_template_string] = STATE(1498), - [sym_regex] = STATE(1498), - [sym_meta_property] = STATE(1498), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(946), - [sym_type_assertion] = STATE(1518), - [sym_as_expression] = STATE(1518), - [sym_internal_module] = STATE(1518), - [sym_type_arguments] = STATE(263), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2554), - [sym_identifier] = ACTIONS(869), - [anon_sym_export] = ACTIONS(675), - [anon_sym_namespace] = ACTIONS(677), - [anon_sym_LBRACE] = ACTIONS(595), - [anon_sym_COMMA] = ACTIONS(1185), - [anon_sym_type] = ACTIONS(675), - [anon_sym_typeof] = ACTIONS(697), - [anon_sym_import] = ACTIONS(597), - [anon_sym_BANG] = ACTIONS(681), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(683), - [anon_sym_yield] = ACTIONS(685), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(1185), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(601), - [anon_sym_async] = ACTIONS(689), - [anon_sym_function] = ACTIONS(605), - [anon_sym_new] = ACTIONS(875), - [anon_sym_AMP] = ACTIONS(1185), - [anon_sym_PIPE] = ACTIONS(1185), - [anon_sym_PLUS] = ACTIONS(877), - [anon_sym_DASH] = ACTIONS(877), - [anon_sym_TILDE] = ACTIONS(681), - [anon_sym_void] = ACTIONS(697), - [anon_sym_delete] = ACTIONS(697), - [anon_sym_PLUS_PLUS] = ACTIONS(699), - [anon_sym_DASH_DASH] = ACTIONS(699), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(85), - [sym_number] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(675), - [anon_sym_get] = ACTIONS(675), - [anon_sym_set] = ACTIONS(675), - [anon_sym_declare] = ACTIONS(675), - [anon_sym_public] = ACTIONS(675), - [anon_sym_private] = ACTIONS(675), - [anon_sym_protected] = ACTIONS(675), - [anon_sym_module] = ACTIONS(675), - [anon_sym_any] = ACTIONS(675), - [anon_sym_number] = ACTIONS(675), - [anon_sym_boolean] = ACTIONS(675), - [anon_sym_string] = ACTIONS(675), - [anon_sym_symbol] = ACTIONS(675), - [anon_sym_extends] = ACTIONS(1187), - [sym_readonly] = ACTIONS(675), - }, - [141] = { - [sym_import] = STATE(1101), - [sym_parenthesized_expression] = STATE(739), - [sym__expression] = STATE(1279), - [sym_yield_expression] = STATE(1105), - [sym_object] = STATE(1297), - [sym_array] = STATE(1296), - [sym_class] = STATE(1101), - [sym_function] = STATE(1101), - [sym_generator_function] = STATE(1101), - [sym_arrow_function] = STATE(1101), - [sym__call_signature] = STATE(3116), - [sym_call_expression] = STATE(1101), - [sym_new_expression] = STATE(1105), - [sym_await_expression] = STATE(1105), - [sym_member_expression] = STATE(739), - [sym_subscript_expression] = STATE(739), - [sym_assignment_expression] = STATE(1105), - [sym__augmented_assignment_lhs] = STATE(1920), - [sym_augmented_assignment_expression] = STATE(1105), - [sym_spread_element] = STATE(2720), - [sym_ternary_expression] = STATE(1105), - [sym_binary_expression] = STATE(1105), - [sym_unary_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_string] = STATE(1101), - [sym_template_string] = STATE(1101), - [sym_regex] = STATE(1101), - [sym_meta_property] = STATE(1101), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(755), - [sym_type_assertion] = STATE(1105), - [sym_as_expression] = STATE(1105), - [sym_internal_module] = STATE(1105), - [sym_type_arguments] = STATE(361), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2497), - [aux_sym_array_repeat1] = STATE(2721), + [sym_import] = STATE(1151), + [sym_parenthesized_expression] = STATE(759), + [sym__expression] = STATE(1276), + [sym_yield_expression] = STATE(1144), + [sym_object] = STATE(1257), + [sym_array] = STATE(1254), + [sym_class] = STATE(1151), + [sym_function] = STATE(1151), + [sym_generator_function] = STATE(1151), + [sym_arrow_function] = STATE(1151), + [sym__call_signature] = STATE(3082), + [sym_call_expression] = STATE(1151), + [sym_new_expression] = STATE(1144), + [sym_await_expression] = STATE(1144), + [sym_member_expression] = STATE(759), + [sym_subscript_expression] = STATE(759), + [sym_assignment_expression] = STATE(1144), + [sym__augmented_assignment_lhs] = STATE(1924), + [sym_augmented_assignment_expression] = STATE(1144), + [sym_spread_element] = STATE(2678), + [sym_ternary_expression] = STATE(1144), + [sym_binary_expression] = STATE(1144), + [sym_unary_expression] = STATE(1144), + [sym_update_expression] = STATE(1144), + [sym_string] = STATE(1151), + [sym_template_string] = STATE(1151), + [sym_regex] = STATE(1151), + [sym_meta_property] = STATE(1151), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(754), + [sym_type_assertion] = STATE(1144), + [sym_as_expression] = STATE(1144), + [sym_internal_module] = STATE(1144), + [sym_type_arguments] = STATE(326), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2580), + [aux_sym_array_repeat1] = STATE(2691), [sym_identifier] = ACTIONS(499), [anon_sym_export] = ACTIONS(501), [anon_sym_namespace] = ACTIONS(507), [anon_sym_LBRACE] = ACTIONS(509), - [anon_sym_COMMA] = ACTIONS(1143), + [anon_sym_COMMA] = ACTIONS(1133), [anon_sym_type] = ACTIONS(501), [anon_sym_typeof] = ACTIONS(471), [anon_sym_import] = ACTIONS(435), @@ -25810,7 +25770,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(443), [anon_sym_yield] = ACTIONS(445), [anon_sym_LBRACK] = ACTIONS(517), - [anon_sym_RBRACK] = ACTIONS(1266), + [anon_sym_RBRACK] = ACTIONS(1280), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(449), [anon_sym_class] = ACTIONS(451), @@ -25852,59 +25812,59 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(501), [sym_readonly] = ACTIONS(501), }, - [142] = { - [sym_import] = STATE(1101), - [sym_parenthesized_expression] = STATE(739), - [sym__expression] = STATE(1223), - [sym_yield_expression] = STATE(1105), - [sym_object] = STATE(1297), - [sym_array] = STATE(1296), - [sym_class] = STATE(1101), - [sym_function] = STATE(1101), - [sym_generator_function] = STATE(1101), - [sym_arrow_function] = STATE(1101), - [sym__call_signature] = STATE(3116), - [sym_call_expression] = STATE(1101), - [sym_new_expression] = STATE(1105), - [sym_await_expression] = STATE(1105), - [sym_member_expression] = STATE(739), - [sym_subscript_expression] = STATE(739), - [sym_assignment_expression] = STATE(1105), - [sym__augmented_assignment_lhs] = STATE(1920), - [sym_augmented_assignment_expression] = STATE(1105), - [sym_spread_element] = STATE(2620), - [sym_ternary_expression] = STATE(1105), - [sym_binary_expression] = STATE(1105), - [sym_unary_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_string] = STATE(1101), - [sym_template_string] = STATE(1101), - [sym_regex] = STATE(1101), - [sym_meta_property] = STATE(1101), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(755), - [sym_type_assertion] = STATE(1105), - [sym_as_expression] = STATE(1105), - [sym_internal_module] = STATE(1105), - [sym_type_arguments] = STATE(361), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2497), - [aux_sym_array_repeat1] = STATE(2621), + [141] = { + [sym_import] = STATE(1151), + [sym_parenthesized_expression] = STATE(759), + [sym__expression] = STATE(1283), + [sym_yield_expression] = STATE(1144), + [sym_object] = STATE(1257), + [sym_array] = STATE(1254), + [sym_class] = STATE(1151), + [sym_function] = STATE(1151), + [sym_generator_function] = STATE(1151), + [sym_arrow_function] = STATE(1151), + [sym__call_signature] = STATE(3082), + [sym_call_expression] = STATE(1151), + [sym_new_expression] = STATE(1144), + [sym_await_expression] = STATE(1144), + [sym_member_expression] = STATE(759), + [sym_subscript_expression] = STATE(759), + [sym_assignment_expression] = STATE(1144), + [sym__augmented_assignment_lhs] = STATE(1924), + [sym_augmented_assignment_expression] = STATE(1144), + [sym_spread_element] = STATE(2687), + [sym_ternary_expression] = STATE(1144), + [sym_binary_expression] = STATE(1144), + [sym_unary_expression] = STATE(1144), + [sym_update_expression] = STATE(1144), + [sym_string] = STATE(1151), + [sym_template_string] = STATE(1151), + [sym_regex] = STATE(1151), + [sym_meta_property] = STATE(1151), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(754), + [sym_type_assertion] = STATE(1144), + [sym_as_expression] = STATE(1144), + [sym_internal_module] = STATE(1144), + [sym_type_arguments] = STATE(326), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2580), + [aux_sym_array_repeat1] = STATE(2683), [sym_identifier] = ACTIONS(499), [anon_sym_export] = ACTIONS(501), [anon_sym_namespace] = ACTIONS(507), [anon_sym_LBRACE] = ACTIONS(509), - [anon_sym_COMMA] = ACTIONS(1143), + [anon_sym_COMMA] = ACTIONS(1133), [anon_sym_type] = ACTIONS(501), [anon_sym_typeof] = ACTIONS(471), [anon_sym_import] = ACTIONS(435), [anon_sym_BANG] = ACTIONS(437), [anon_sym_LPAREN] = ACTIONS(515), - [anon_sym_RPAREN] = ACTIONS(1280), [anon_sym_await] = ACTIONS(443), [anon_sym_yield] = ACTIONS(445), [anon_sym_LBRACK] = ACTIONS(517), + [anon_sym_RBRACK] = ACTIONS(1282), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(449), [anon_sym_class] = ACTIONS(451), @@ -25946,51 +25906,52 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(501), [sym_readonly] = ACTIONS(501), }, - [143] = { - [sym__declaration] = STATE(549), - [sym_variable_declaration] = STATE(598), - [sym_lexical_declaration] = STATE(598), - [sym_class_declaration] = STATE(598), - [sym_function_declaration] = STATE(598), - [sym_generator_function_declaration] = STATE(598), - [sym_decorator] = STATE(1905), - [sym_function_signature] = STATE(598), - [sym_ambient_declaration] = STATE(598), - [sym_abstract_class_declaration] = STATE(598), - [sym_module] = STATE(598), - [sym_internal_module] = STATE(561), - [sym_import_alias] = STATE(598), - [sym_interface_declaration] = STATE(598), - [sym_enum_declaration] = STATE(598), - [sym_type_alias_declaration] = STATE(598), - [aux_sym_export_statement_repeat1] = STATE(2572), - [aux_sym_object_repeat1] = STATE(2739), - [anon_sym_STAR] = ACTIONS(808), - [anon_sym_EQ] = ACTIONS(1282), - [anon_sym_as] = ACTIONS(808), + [142] = { + [sym_export_clause] = STATE(2550), + [sym__declaration] = STATE(559), + [sym_variable_declaration] = STATE(579), + [sym_lexical_declaration] = STATE(579), + [sym_class_declaration] = STATE(579), + [sym_function_declaration] = STATE(579), + [sym_generator_function_declaration] = STATE(579), + [sym_decorator] = STATE(1890), + [sym_function_signature] = STATE(579), + [sym_ambient_declaration] = STATE(579), + [sym_abstract_class_declaration] = STATE(579), + [sym_module] = STATE(579), + [sym_internal_module] = STATE(569), + [sym_import_alias] = STATE(579), + [sym_interface_declaration] = STATE(579), + [sym_enum_declaration] = STATE(579), + [sym_type_alias_declaration] = STATE(579), + [aux_sym_export_statement_repeat1] = STATE(2424), + [anon_sym_STAR] = ACTIONS(1189), + [anon_sym_default] = ACTIONS(1191), + [anon_sym_EQ] = ACTIONS(1272), + [anon_sym_as] = ACTIONS(1195), [anon_sym_namespace] = ACTIONS(1197), + [anon_sym_LBRACE] = ACTIONS(1199), [anon_sym_COMMA] = ACTIONS(841), - [anon_sym_RBRACE] = ACTIONS(1201), [anon_sym_type] = ACTIONS(1203), [anon_sym_import] = ACTIONS(1205), [anon_sym_var] = ACTIONS(1207), [anon_sym_let] = ACTIONS(1209), [anon_sym_const] = ACTIONS(1211), [anon_sym_BANG] = ACTIONS(808), - [anon_sym_LPAREN] = ACTIONS(1213), + [anon_sym_LPAREN] = ACTIONS(841), [anon_sym_in] = ACTIONS(808), [anon_sym_SEMI] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(1216), + [anon_sym_COLON] = ACTIONS(1284), [anon_sym_LBRACK] = ACTIONS(1219), - [anon_sym_LT] = ACTIONS(1221), + [anon_sym_LT] = ACTIONS(808), [anon_sym_GT] = ACTIONS(808), [anon_sym_SLASH] = ACTIONS(808), [anon_sym_DOT] = ACTIONS(1224), [anon_sym_class] = ACTIONS(1226), [anon_sym_async] = ACTIONS(1228), [anon_sym_function] = ACTIONS(1230), - [anon_sym_EQ_GT] = ACTIONS(1009), - [anon_sym_QMARK_DOT] = ACTIONS(1011), + [anon_sym_EQ_GT] = ACTIONS(1019), + [anon_sym_QMARK_DOT] = ACTIONS(1021), [anon_sym_PLUS_EQ] = ACTIONS(831), [anon_sym_DASH_EQ] = ACTIONS(831), [anon_sym_STAR_EQ] = ACTIONS(831), @@ -26006,7 +25967,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP_EQ] = ACTIONS(831), [anon_sym_PIPE_PIPE_EQ] = ACTIONS(831), [anon_sym_QMARK_QMARK_EQ] = ACTIONS(831), - [anon_sym_QMARK] = ACTIONS(1221), + [anon_sym_QMARK] = ACTIONS(808), [anon_sym_AMP_AMP] = ACTIONS(808), [anon_sym_PIPE_PIPE] = ACTIONS(808), [anon_sym_GT_GT] = ACTIONS(808), @@ -26033,79 +25994,172 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(841), [anon_sym_AT] = ACTIONS(91), [anon_sym_abstract] = ACTIONS(1232), - [anon_sym_declare] = ACTIONS(1234), - [anon_sym_module] = ACTIONS(1284), - [anon_sym_global] = ACTIONS(1286), + [anon_sym_declare] = ACTIONS(1286), + [anon_sym_module] = ACTIONS(1236), [anon_sym_interface] = ACTIONS(1238), [anon_sym_enum] = ACTIONS(1240), [sym__automatic_semicolon] = ACTIONS(841), }, + [143] = { + [sym_import] = STATE(1523), + [sym_parenthesized_expression] = STATE(768), + [sym__expression] = STATE(1141), + [sym_yield_expression] = STATE(1567), + [sym_object] = STATE(1357), + [sym_array] = STATE(1360), + [sym_class] = STATE(1523), + [sym_function] = STATE(1523), + [sym_generator_function] = STATE(1523), + [sym_arrow_function] = STATE(1523), + [sym__call_signature] = STATE(3196), + [sym_call_expression] = STATE(1523), + [sym_new_expression] = STATE(1567), + [sym_await_expression] = STATE(1567), + [sym_member_expression] = STATE(768), + [sym_subscript_expression] = STATE(768), + [sym_assignment_expression] = STATE(1567), + [sym__augmented_assignment_lhs] = STATE(1928), + [sym_augmented_assignment_expression] = STATE(1567), + [sym_ternary_expression] = STATE(1567), + [sym_binary_expression] = STATE(1567), + [sym_unary_expression] = STATE(1567), + [sym_update_expression] = STATE(1567), + [sym_string] = STATE(1523), + [sym_template_string] = STATE(1523), + [sym_regex] = STATE(1523), + [sym_meta_property] = STATE(1523), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(774), + [sym_type_assertion] = STATE(1567), + [sym_as_expression] = STATE(1567), + [sym_internal_module] = STATE(1567), + [sym_type_arguments] = STATE(292), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2575), + [sym_identifier] = ACTIONS(567), + [anon_sym_export] = ACTIONS(531), + [anon_sym_namespace] = ACTIONS(533), + [anon_sym_LBRACE] = ACTIONS(571), + [anon_sym_COMMA] = ACTIONS(1185), + [anon_sym_type] = ACTIONS(531), + [anon_sym_typeof] = ACTIONS(19), + [anon_sym_import] = ACTIONS(539), + [anon_sym_BANG] = ACTIONS(29), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(39), + [anon_sym_yield] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_GT] = ACTIONS(1185), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(545), + [anon_sym_async] = ACTIONS(547), + [anon_sym_function] = ACTIONS(549), + [anon_sym_new] = ACTIONS(75), + [anon_sym_AMP] = ACTIONS(1185), + [anon_sym_PIPE] = ACTIONS(1185), + [anon_sym_PLUS] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(29), + [anon_sym_void] = ACTIONS(19), + [anon_sym_delete] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_DQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(85), + [sym_number] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(531), + [anon_sym_get] = ACTIONS(531), + [anon_sym_set] = ACTIONS(531), + [anon_sym_declare] = ACTIONS(531), + [anon_sym_public] = ACTIONS(531), + [anon_sym_private] = ACTIONS(531), + [anon_sym_protected] = ACTIONS(531), + [anon_sym_module] = ACTIONS(531), + [anon_sym_any] = ACTIONS(531), + [anon_sym_number] = ACTIONS(531), + [anon_sym_boolean] = ACTIONS(531), + [anon_sym_string] = ACTIONS(531), + [anon_sym_symbol] = ACTIONS(531), + [anon_sym_extends] = ACTIONS(1187), + [sym_readonly] = ACTIONS(531), + }, [144] = { - [sym_import] = STATE(1101), - [sym_parenthesized_expression] = STATE(948), - [sym__expression] = STATE(1342), - [sym_yield_expression] = STATE(1105), - [sym_object] = STATE(1654), - [sym_array] = STATE(1640), - [sym_class] = STATE(1101), - [sym_function] = STATE(1101), - [sym_generator_function] = STATE(1101), - [sym_arrow_function] = STATE(1101), - [sym__call_signature] = STATE(3002), - [sym_call_expression] = STATE(1101), - [sym_new_expression] = STATE(1105), - [sym_await_expression] = STATE(1105), - [sym_member_expression] = STATE(948), - [sym_subscript_expression] = STATE(948), - [sym_assignment_expression] = STATE(1105), - [sym__augmented_assignment_lhs] = STATE(1921), - [sym_augmented_assignment_expression] = STATE(1105), - [sym_ternary_expression] = STATE(1105), - [sym_binary_expression] = STATE(1105), - [sym_unary_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_string] = STATE(1101), - [sym_template_string] = STATE(1101), - [sym_regex] = STATE(1101), - [sym_meta_property] = STATE(1101), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(949), - [sym_type_assertion] = STATE(1105), - [sym_as_expression] = STATE(1105), - [sym_internal_module] = STATE(1105), - [sym_type_arguments] = STATE(324), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2497), + [sym_import] = STATE(1151), + [sym_parenthesized_expression] = STATE(837), + [sym__expression] = STATE(1215), + [sym_yield_expression] = STATE(1144), + [sym_object] = STATE(1495), + [sym_array] = STATE(1493), + [sym_class] = STATE(1151), + [sym_function] = STATE(1151), + [sym_generator_function] = STATE(1151), + [sym_arrow_function] = STATE(1151), + [sym__call_signature] = STATE(3190), + [sym_call_expression] = STATE(1151), + [sym_new_expression] = STATE(1144), + [sym_await_expression] = STATE(1144), + [sym_member_expression] = STATE(837), + [sym_subscript_expression] = STATE(837), + [sym_assignment_expression] = STATE(1144), + [sym__augmented_assignment_lhs] = STATE(1927), + [sym_augmented_assignment_expression] = STATE(1144), + [sym_ternary_expression] = STATE(1144), + [sym_binary_expression] = STATE(1144), + [sym_unary_expression] = STATE(1144), + [sym_update_expression] = STATE(1144), + [sym_string] = STATE(1151), + [sym_template_string] = STATE(1151), + [sym_regex] = STATE(1151), + [sym_meta_property] = STATE(1151), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(845), + [sym_type_assertion] = STATE(1144), + [sym_as_expression] = STATE(1144), + [sym_internal_module] = STATE(1144), + [sym_type_arguments] = STATE(357), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2580), [sym_identifier] = ACTIONS(859), - [anon_sym_export] = ACTIONS(635), - [anon_sym_namespace] = ACTIONS(637), + [anon_sym_export] = ACTIONS(769), + [anon_sym_namespace] = ACTIONS(771), [anon_sym_LBRACE] = ACTIONS(509), [anon_sym_COMMA] = ACTIONS(1185), - [anon_sym_type] = ACTIONS(635), - [anon_sym_typeof] = ACTIONS(659), + [anon_sym_type] = ACTIONS(769), + [anon_sym_typeof] = ACTIONS(791), [anon_sym_import] = ACTIONS(435), - [anon_sym_BANG] = ACTIONS(643), + [anon_sym_BANG] = ACTIONS(775), [anon_sym_LPAREN] = ACTIONS(515), - [anon_sym_await] = ACTIONS(645), - [anon_sym_yield] = ACTIONS(647), + [anon_sym_await] = ACTIONS(777), + [anon_sym_yield] = ACTIONS(779), [anon_sym_LBRACK] = ACTIONS(517), [anon_sym_LT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(1185), - [anon_sym_SLASH] = ACTIONS(449), + [anon_sym_SLASH] = ACTIONS(781), [anon_sym_class] = ACTIONS(451), - [anon_sym_async] = ACTIONS(651), + [anon_sym_async] = ACTIONS(783), [anon_sym_function] = ACTIONS(455), [anon_sym_new] = ACTIONS(865), [anon_sym_AMP] = ACTIONS(1185), [anon_sym_PIPE] = ACTIONS(1185), [anon_sym_PLUS] = ACTIONS(867), [anon_sym_DASH] = ACTIONS(867), - [anon_sym_TILDE] = ACTIONS(643), - [anon_sym_void] = ACTIONS(659), - [anon_sym_delete] = ACTIONS(659), - [anon_sym_PLUS_PLUS] = ACTIONS(661), - [anon_sym_DASH_DASH] = ACTIONS(661), + [anon_sym_TILDE] = ACTIONS(775), + [anon_sym_void] = ACTIONS(791), + [anon_sym_delete] = ACTIONS(791), + [anon_sym_PLUS_PLUS] = ACTIONS(793), + [anon_sym_DASH_DASH] = ACTIONS(793), [anon_sym_DQUOTE] = ACTIONS(475), [anon_sym_SQUOTE] = ACTIONS(477), [sym_comment] = ACTIONS(3), @@ -26118,169 +26172,75 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(485), [sym_undefined] = ACTIONS(485), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(635), - [anon_sym_get] = ACTIONS(635), - [anon_sym_set] = ACTIONS(635), - [anon_sym_declare] = ACTIONS(635), - [anon_sym_public] = ACTIONS(635), - [anon_sym_private] = ACTIONS(635), - [anon_sym_protected] = ACTIONS(635), - [anon_sym_module] = ACTIONS(635), - [anon_sym_any] = ACTIONS(635), - [anon_sym_number] = ACTIONS(635), - [anon_sym_boolean] = ACTIONS(635), - [anon_sym_string] = ACTIONS(635), - [anon_sym_symbol] = ACTIONS(635), + [anon_sym_static] = ACTIONS(769), + [anon_sym_get] = ACTIONS(769), + [anon_sym_set] = ACTIONS(769), + [anon_sym_declare] = ACTIONS(769), + [anon_sym_public] = ACTIONS(769), + [anon_sym_private] = ACTIONS(769), + [anon_sym_protected] = ACTIONS(769), + [anon_sym_module] = ACTIONS(769), + [anon_sym_any] = ACTIONS(769), + [anon_sym_number] = ACTIONS(769), + [anon_sym_boolean] = ACTIONS(769), + [anon_sym_string] = ACTIONS(769), + [anon_sym_symbol] = ACTIONS(769), [anon_sym_extends] = ACTIONS(1187), - [sym_readonly] = ACTIONS(635), + [sym_readonly] = ACTIONS(769), }, [145] = { - [sym__declaration] = STATE(549), - [sym_variable_declaration] = STATE(598), - [sym_lexical_declaration] = STATE(598), - [sym_class_declaration] = STATE(598), - [sym_function_declaration] = STATE(598), - [sym_generator_function_declaration] = STATE(598), - [sym_decorator] = STATE(1905), - [sym_function_signature] = STATE(598), - [sym_ambient_declaration] = STATE(598), - [sym_abstract_class_declaration] = STATE(598), - [sym_module] = STATE(598), - [sym_internal_module] = STATE(561), - [sym_import_alias] = STATE(598), - [sym_interface_declaration] = STATE(598), - [sym_enum_declaration] = STATE(598), - [sym_type_alias_declaration] = STATE(598), - [aux_sym_export_statement_repeat1] = STATE(2572), - [aux_sym_object_repeat1] = STATE(2772), - [anon_sym_STAR] = ACTIONS(808), - [anon_sym_EQ] = ACTIONS(1282), - [anon_sym_as] = ACTIONS(808), - [anon_sym_namespace] = ACTIONS(1197), - [anon_sym_COMMA] = ACTIONS(841), - [anon_sym_RBRACE] = ACTIONS(1244), - [anon_sym_type] = ACTIONS(1203), - [anon_sym_import] = ACTIONS(1205), - [anon_sym_var] = ACTIONS(1207), - [anon_sym_let] = ACTIONS(1209), - [anon_sym_const] = ACTIONS(1211), - [anon_sym_BANG] = ACTIONS(808), - [anon_sym_LPAREN] = ACTIONS(1213), - [anon_sym_in] = ACTIONS(808), - [anon_sym_SEMI] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(1216), - [anon_sym_LBRACK] = ACTIONS(1219), - [anon_sym_LT] = ACTIONS(1221), - [anon_sym_GT] = ACTIONS(808), - [anon_sym_SLASH] = ACTIONS(808), - [anon_sym_DOT] = ACTIONS(1224), - [anon_sym_class] = ACTIONS(1226), - [anon_sym_async] = ACTIONS(1228), - [anon_sym_function] = ACTIONS(1230), - [anon_sym_EQ_GT] = ACTIONS(1009), - [anon_sym_QMARK_DOT] = ACTIONS(1011), - [anon_sym_PLUS_EQ] = ACTIONS(831), - [anon_sym_DASH_EQ] = ACTIONS(831), - [anon_sym_STAR_EQ] = ACTIONS(831), - [anon_sym_SLASH_EQ] = ACTIONS(831), - [anon_sym_PERCENT_EQ] = ACTIONS(831), - [anon_sym_CARET_EQ] = ACTIONS(831), - [anon_sym_AMP_EQ] = ACTIONS(831), - [anon_sym_PIPE_EQ] = ACTIONS(831), - [anon_sym_GT_GT_EQ] = ACTIONS(831), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(831), - [anon_sym_LT_LT_EQ] = ACTIONS(831), - [anon_sym_STAR_STAR_EQ] = ACTIONS(831), - [anon_sym_AMP_AMP_EQ] = ACTIONS(831), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(831), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(831), - [anon_sym_QMARK] = ACTIONS(1221), - [anon_sym_AMP_AMP] = ACTIONS(808), - [anon_sym_PIPE_PIPE] = ACTIONS(808), - [anon_sym_GT_GT] = ACTIONS(808), - [anon_sym_GT_GT_GT] = ACTIONS(808), - [anon_sym_LT_LT] = ACTIONS(808), - [anon_sym_AMP] = ACTIONS(808), - [anon_sym_CARET] = ACTIONS(808), - [anon_sym_PIPE] = ACTIONS(808), - [anon_sym_PLUS] = ACTIONS(808), - [anon_sym_DASH] = ACTIONS(808), - [anon_sym_PERCENT] = ACTIONS(808), - [anon_sym_STAR_STAR] = ACTIONS(808), - [anon_sym_LT_EQ] = ACTIONS(841), - [anon_sym_EQ_EQ] = ACTIONS(808), - [anon_sym_EQ_EQ_EQ] = ACTIONS(841), - [anon_sym_BANG_EQ] = ACTIONS(808), - [anon_sym_BANG_EQ_EQ] = ACTIONS(841), - [anon_sym_GT_EQ] = ACTIONS(841), - [anon_sym_QMARK_QMARK] = ACTIONS(808), - [anon_sym_instanceof] = ACTIONS(841), - [anon_sym_PLUS_PLUS] = ACTIONS(841), - [anon_sym_DASH_DASH] = ACTIONS(841), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(841), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_abstract] = ACTIONS(1232), - [anon_sym_declare] = ACTIONS(1234), - [anon_sym_module] = ACTIONS(1284), - [anon_sym_global] = ACTIONS(1286), - [anon_sym_interface] = ACTIONS(1238), - [anon_sym_enum] = ACTIONS(1240), - [sym__automatic_semicolon] = ACTIONS(841), - }, - [146] = { - [sym_import] = STATE(1101), - [sym_parenthesized_expression] = STATE(739), - [sym__expression] = STATE(1206), - [sym_yield_expression] = STATE(1105), - [sym_object] = STATE(1297), - [sym_array] = STATE(1296), - [sym_class] = STATE(1101), - [sym_function] = STATE(1101), - [sym_generator_function] = STATE(1101), - [sym_arrow_function] = STATE(1101), - [sym__call_signature] = STATE(3116), - [sym_call_expression] = STATE(1101), - [sym_new_expression] = STATE(1105), - [sym_await_expression] = STATE(1105), - [sym_member_expression] = STATE(739), - [sym_subscript_expression] = STATE(739), - [sym_assignment_expression] = STATE(1105), - [sym__augmented_assignment_lhs] = STATE(1920), - [sym_augmented_assignment_expression] = STATE(1105), - [sym_spread_element] = STATE(2602), - [sym_ternary_expression] = STATE(1105), - [sym_binary_expression] = STATE(1105), - [sym_unary_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_string] = STATE(1101), - [sym_template_string] = STATE(1101), - [sym_regex] = STATE(1101), - [sym_meta_property] = STATE(1101), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(755), - [sym_type_assertion] = STATE(1105), - [sym_as_expression] = STATE(1105), - [sym_internal_module] = STATE(1105), - [sym_type_arguments] = STATE(361), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2497), + [sym_import] = STATE(1151), + [sym_parenthesized_expression] = STATE(759), + [sym__expression] = STATE(1268), + [sym_yield_expression] = STATE(1144), + [sym_object] = STATE(1257), + [sym_array] = STATE(1254), + [sym_class] = STATE(1151), + [sym_function] = STATE(1151), + [sym_generator_function] = STATE(1151), + [sym_arrow_function] = STATE(1151), + [sym__call_signature] = STATE(3082), + [sym_call_expression] = STATE(1151), + [sym_new_expression] = STATE(1144), + [sym_await_expression] = STATE(1144), + [sym_member_expression] = STATE(759), + [sym_subscript_expression] = STATE(759), + [sym_assignment_expression] = STATE(1144), + [sym__augmented_assignment_lhs] = STATE(1924), + [sym_augmented_assignment_expression] = STATE(1144), + [sym_spread_element] = STATE(2678), + [sym_ternary_expression] = STATE(1144), + [sym_binary_expression] = STATE(1144), + [sym_unary_expression] = STATE(1144), + [sym_update_expression] = STATE(1144), + [sym_string] = STATE(1151), + [sym_template_string] = STATE(1151), + [sym_regex] = STATE(1151), + [sym_meta_property] = STATE(1151), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(754), + [sym_type_assertion] = STATE(1144), + [sym_as_expression] = STATE(1144), + [sym_internal_module] = STATE(1144), + [sym_type_arguments] = STATE(326), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2580), + [aux_sym_array_repeat1] = STATE(2691), [sym_identifier] = ACTIONS(499), [anon_sym_export] = ACTIONS(501), [anon_sym_namespace] = ACTIONS(507), [anon_sym_LBRACE] = ACTIONS(509), - [anon_sym_COMMA] = ACTIONS(1268), + [anon_sym_COMMA] = ACTIONS(1133), [anon_sym_type] = ACTIONS(501), [anon_sym_typeof] = ACTIONS(471), [anon_sym_import] = ACTIONS(435), [anon_sym_BANG] = ACTIONS(437), [anon_sym_LPAREN] = ACTIONS(515), - [anon_sym_RPAREN] = ACTIONS(1268), [anon_sym_await] = ACTIONS(443), [anon_sym_yield] = ACTIONS(445), [anon_sym_LBRACK] = ACTIONS(517), - [anon_sym_RBRACK] = ACTIONS(1268), + [anon_sym_RBRACK] = ACTIONS(1280), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(449), [anon_sym_class] = ACTIONS(451), @@ -26322,50 +26282,50 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(501), [sym_readonly] = ACTIONS(501), }, - [147] = { - [sym_import] = STATE(1101), - [sym_parenthesized_expression] = STATE(739), - [sym__expression] = STATE(1289), - [sym_yield_expression] = STATE(1105), - [sym_object] = STATE(1297), - [sym_array] = STATE(1296), - [sym_class] = STATE(1101), - [sym_function] = STATE(1101), - [sym_generator_function] = STATE(1101), - [sym_arrow_function] = STATE(1101), - [sym__call_signature] = STATE(3116), - [sym_call_expression] = STATE(1101), - [sym_new_expression] = STATE(1105), - [sym_await_expression] = STATE(1105), - [sym_member_expression] = STATE(739), - [sym_subscript_expression] = STATE(739), - [sym_assignment_expression] = STATE(1105), - [sym__augmented_assignment_lhs] = STATE(1920), - [sym_augmented_assignment_expression] = STATE(1105), - [sym_spread_element] = STATE(2713), - [sym_ternary_expression] = STATE(1105), - [sym_binary_expression] = STATE(1105), - [sym_unary_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_string] = STATE(1101), - [sym_template_string] = STATE(1101), - [sym_regex] = STATE(1101), - [sym_meta_property] = STATE(1101), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(755), - [sym_type_assertion] = STATE(1105), - [sym_as_expression] = STATE(1105), - [sym_internal_module] = STATE(1105), - [sym_type_arguments] = STATE(361), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2497), - [aux_sym_array_repeat1] = STATE(2715), + [146] = { + [sym_import] = STATE(1151), + [sym_parenthesized_expression] = STATE(759), + [sym__expression] = STATE(1311), + [sym_yield_expression] = STATE(1144), + [sym_object] = STATE(1257), + [sym_array] = STATE(1254), + [sym_class] = STATE(1151), + [sym_function] = STATE(1151), + [sym_generator_function] = STATE(1151), + [sym_arrow_function] = STATE(1151), + [sym__call_signature] = STATE(3082), + [sym_call_expression] = STATE(1151), + [sym_new_expression] = STATE(1144), + [sym_await_expression] = STATE(1144), + [sym_member_expression] = STATE(759), + [sym_subscript_expression] = STATE(759), + [sym_assignment_expression] = STATE(1144), + [sym__augmented_assignment_lhs] = STATE(1924), + [sym_augmented_assignment_expression] = STATE(1144), + [sym_spread_element] = STATE(2644), + [sym_ternary_expression] = STATE(1144), + [sym_binary_expression] = STATE(1144), + [sym_unary_expression] = STATE(1144), + [sym_update_expression] = STATE(1144), + [sym_string] = STATE(1151), + [sym_template_string] = STATE(1151), + [sym_regex] = STATE(1151), + [sym_meta_property] = STATE(1151), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(754), + [sym_type_assertion] = STATE(1144), + [sym_as_expression] = STATE(1144), + [sym_internal_module] = STATE(1144), + [sym_type_arguments] = STATE(326), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2580), + [aux_sym_array_repeat1] = STATE(2648), [sym_identifier] = ACTIONS(499), [anon_sym_export] = ACTIONS(501), [anon_sym_namespace] = ACTIONS(507), [anon_sym_LBRACE] = ACTIONS(509), - [anon_sym_COMMA] = ACTIONS(1143), + [anon_sym_COMMA] = ACTIONS(1133), [anon_sym_type] = ACTIONS(501), [anon_sym_typeof] = ACTIONS(471), [anon_sym_import] = ACTIONS(435), @@ -26416,31 +26376,31 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(501), [sym_readonly] = ACTIONS(501), }, - [148] = { - [sym__declaration] = STATE(549), - [sym_variable_declaration] = STATE(598), - [sym_lexical_declaration] = STATE(598), - [sym_class_declaration] = STATE(598), - [sym_function_declaration] = STATE(598), - [sym_generator_function_declaration] = STATE(598), - [sym_decorator] = STATE(1905), - [sym_function_signature] = STATE(598), - [sym_ambient_declaration] = STATE(598), - [sym_abstract_class_declaration] = STATE(598), - [sym_module] = STATE(598), - [sym_internal_module] = STATE(561), - [sym_import_alias] = STATE(598), - [sym_interface_declaration] = STATE(598), - [sym_enum_declaration] = STATE(598), - [sym_type_alias_declaration] = STATE(598), - [aux_sym_export_statement_repeat1] = STATE(2572), - [aux_sym_object_repeat1] = STATE(2645), + [147] = { + [sym__declaration] = STATE(551), + [sym_variable_declaration] = STATE(579), + [sym_lexical_declaration] = STATE(579), + [sym_class_declaration] = STATE(579), + [sym_function_declaration] = STATE(579), + [sym_generator_function_declaration] = STATE(579), + [sym_decorator] = STATE(1890), + [sym_function_signature] = STATE(579), + [sym_ambient_declaration] = STATE(579), + [sym_abstract_class_declaration] = STATE(579), + [sym_module] = STATE(579), + [sym_internal_module] = STATE(569), + [sym_import_alias] = STATE(579), + [sym_interface_declaration] = STATE(579), + [sym_enum_declaration] = STATE(579), + [sym_type_alias_declaration] = STATE(579), + [aux_sym_export_statement_repeat1] = STATE(2424), + [aux_sym_object_repeat1] = STATE(2757), [anon_sym_STAR] = ACTIONS(808), - [anon_sym_EQ] = ACTIONS(1282), + [anon_sym_EQ] = ACTIONS(1258), [anon_sym_as] = ACTIONS(808), [anon_sym_namespace] = ACTIONS(1197), [anon_sym_COMMA] = ACTIONS(841), - [anon_sym_RBRACE] = ACTIONS(1242), + [anon_sym_RBRACE] = ACTIONS(1244), [anon_sym_type] = ACTIONS(1203), [anon_sym_import] = ACTIONS(1205), [anon_sym_var] = ACTIONS(1207), @@ -26459,8 +26419,8 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(1226), [anon_sym_async] = ACTIONS(1228), [anon_sym_function] = ACTIONS(1230), - [anon_sym_EQ_GT] = ACTIONS(1009), - [anon_sym_QMARK_DOT] = ACTIONS(1011), + [anon_sym_EQ_GT] = ACTIONS(1019), + [anon_sym_QMARK_DOT] = ACTIONS(1021), [anon_sym_PLUS_EQ] = ACTIONS(831), [anon_sym_DASH_EQ] = ACTIONS(831), [anon_sym_STAR_EQ] = ACTIONS(831), @@ -26504,59 +26464,153 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT] = ACTIONS(91), [anon_sym_abstract] = ACTIONS(1232), [anon_sym_declare] = ACTIONS(1234), - [anon_sym_module] = ACTIONS(1284), - [anon_sym_global] = ACTIONS(1286), + [anon_sym_module] = ACTIONS(1260), + [anon_sym_global] = ACTIONS(1262), [anon_sym_interface] = ACTIONS(1238), [anon_sym_enum] = ACTIONS(1240), [sym__automatic_semicolon] = ACTIONS(841), }, + [148] = { + [sym_import] = STATE(1151), + [sym_parenthesized_expression] = STATE(759), + [sym__expression] = STATE(1272), + [sym_yield_expression] = STATE(1144), + [sym_object] = STATE(1257), + [sym_array] = STATE(1254), + [sym_class] = STATE(1151), + [sym_function] = STATE(1151), + [sym_generator_function] = STATE(1151), + [sym_arrow_function] = STATE(1151), + [sym__call_signature] = STATE(3082), + [sym_call_expression] = STATE(1151), + [sym_new_expression] = STATE(1144), + [sym_await_expression] = STATE(1144), + [sym_member_expression] = STATE(759), + [sym_subscript_expression] = STATE(759), + [sym_assignment_expression] = STATE(1144), + [sym__augmented_assignment_lhs] = STATE(1924), + [sym_augmented_assignment_expression] = STATE(1144), + [sym_spread_element] = STATE(2667), + [sym_ternary_expression] = STATE(1144), + [sym_binary_expression] = STATE(1144), + [sym_unary_expression] = STATE(1144), + [sym_update_expression] = STATE(1144), + [sym_string] = STATE(1151), + [sym_template_string] = STATE(1151), + [sym_regex] = STATE(1151), + [sym_meta_property] = STATE(1151), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(754), + [sym_type_assertion] = STATE(1144), + [sym_as_expression] = STATE(1144), + [sym_internal_module] = STATE(1144), + [sym_type_arguments] = STATE(326), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2580), + [sym_identifier] = ACTIONS(499), + [anon_sym_export] = ACTIONS(501), + [anon_sym_namespace] = ACTIONS(507), + [anon_sym_LBRACE] = ACTIONS(509), + [anon_sym_COMMA] = ACTIONS(1256), + [anon_sym_type] = ACTIONS(501), + [anon_sym_typeof] = ACTIONS(471), + [anon_sym_import] = ACTIONS(435), + [anon_sym_BANG] = ACTIONS(437), + [anon_sym_LPAREN] = ACTIONS(515), + [anon_sym_RPAREN] = ACTIONS(1256), + [anon_sym_await] = ACTIONS(443), + [anon_sym_yield] = ACTIONS(445), + [anon_sym_LBRACK] = ACTIONS(517), + [anon_sym_RBRACK] = ACTIONS(1256), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(449), + [anon_sym_class] = ACTIONS(451), + [anon_sym_async] = ACTIONS(521), + [anon_sym_function] = ACTIONS(455), + [anon_sym_new] = ACTIONS(523), + [anon_sym_DOT_DOT_DOT] = ACTIONS(123), + [anon_sym_PLUS] = ACTIONS(525), + [anon_sym_DASH] = ACTIONS(525), + [anon_sym_TILDE] = ACTIONS(437), + [anon_sym_void] = ACTIONS(471), + [anon_sym_delete] = ACTIONS(471), + [anon_sym_PLUS_PLUS] = ACTIONS(473), + [anon_sym_DASH_DASH] = ACTIONS(473), + [anon_sym_DQUOTE] = ACTIONS(475), + [anon_sym_SQUOTE] = ACTIONS(477), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(479), + [sym_number] = ACTIONS(527), + [sym_this] = ACTIONS(485), + [sym_super] = ACTIONS(485), + [sym_true] = ACTIONS(485), + [sym_false] = ACTIONS(485), + [sym_null] = ACTIONS(485), + [sym_undefined] = ACTIONS(485), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(501), + [anon_sym_get] = ACTIONS(501), + [anon_sym_set] = ACTIONS(501), + [anon_sym_declare] = ACTIONS(501), + [anon_sym_public] = ACTIONS(501), + [anon_sym_private] = ACTIONS(501), + [anon_sym_protected] = ACTIONS(501), + [anon_sym_module] = ACTIONS(501), + [anon_sym_any] = ACTIONS(501), + [anon_sym_number] = ACTIONS(501), + [anon_sym_boolean] = ACTIONS(501), + [anon_sym_string] = ACTIONS(501), + [anon_sym_symbol] = ACTIONS(501), + [sym_readonly] = ACTIONS(501), + }, [149] = { - [sym_import] = STATE(1498), + [sym_import] = STATE(1523), [sym_expression_statement] = STATE(168), [sym_empty_statement] = STATE(168), - [sym_parenthesized_expression] = STATE(764), - [sym__expression] = STATE(1265), - [sym_yield_expression] = STATE(1518), - [sym_object] = STATE(1435), - [sym_array] = STATE(1433), - [sym_class] = STATE(1498), - [sym_function] = STATE(1498), - [sym_generator_function] = STATE(1498), - [sym_arrow_function] = STATE(1498), - [sym__call_signature] = STATE(3145), - [sym_call_expression] = STATE(1498), - [sym_new_expression] = STATE(1518), - [sym_await_expression] = STATE(1518), - [sym_member_expression] = STATE(764), - [sym_subscript_expression] = STATE(764), - [sym_assignment_expression] = STATE(1518), - [sym__augmented_assignment_lhs] = STATE(1925), - [sym_augmented_assignment_expression] = STATE(1518), - [sym_ternary_expression] = STATE(1518), - [sym_binary_expression] = STATE(1518), - [sym_unary_expression] = STATE(1518), - [sym_update_expression] = STATE(1518), - [sym_sequence_expression] = STATE(2844), - [sym_string] = STATE(1498), - [sym_template_string] = STATE(1498), - [sym_regex] = STATE(1498), - [sym_meta_property] = STATE(1498), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(772), - [sym_type_assertion] = STATE(1518), - [sym_as_expression] = STATE(1518), - [sym_internal_module] = STATE(1518), - [sym_type_arguments] = STATE(349), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2554), - [sym_identifier] = ACTIONS(587), - [anon_sym_export] = ACTIONS(589), - [anon_sym_namespace] = ACTIONS(593), - [anon_sym_LBRACE] = ACTIONS(595), - [anon_sym_type] = ACTIONS(589), + [sym_parenthesized_expression] = STATE(768), + [sym__expression] = STATE(1211), + [sym_yield_expression] = STATE(1567), + [sym_object] = STATE(1357), + [sym_array] = STATE(1360), + [sym_class] = STATE(1523), + [sym_function] = STATE(1523), + [sym_generator_function] = STATE(1523), + [sym_arrow_function] = STATE(1523), + [sym__call_signature] = STATE(3196), + [sym_call_expression] = STATE(1523), + [sym_new_expression] = STATE(1567), + [sym_await_expression] = STATE(1567), + [sym_member_expression] = STATE(768), + [sym_subscript_expression] = STATE(768), + [sym_assignment_expression] = STATE(1567), + [sym__augmented_assignment_lhs] = STATE(1928), + [sym_augmented_assignment_expression] = STATE(1567), + [sym_ternary_expression] = STATE(1567), + [sym_binary_expression] = STATE(1567), + [sym_unary_expression] = STATE(1567), + [sym_update_expression] = STATE(1567), + [sym_sequence_expression] = STATE(2826), + [sym_string] = STATE(1523), + [sym_template_string] = STATE(1523), + [sym_regex] = STATE(1523), + [sym_meta_property] = STATE(1523), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(774), + [sym_type_assertion] = STATE(1567), + [sym_as_expression] = STATE(1567), + [sym_internal_module] = STATE(1567), + [sym_type_arguments] = STATE(292), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2575), + [sym_identifier] = ACTIONS(567), + [anon_sym_export] = ACTIONS(531), + [anon_sym_namespace] = ACTIONS(533), + [anon_sym_LBRACE] = ACTIONS(571), + [anon_sym_type] = ACTIONS(531), [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(597), + [anon_sym_import] = ACTIONS(539), [anon_sym_BANG] = ACTIONS(29), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_await] = ACTIONS(39), @@ -26565,9 +26619,9 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(601), - [anon_sym_async] = ACTIONS(603), - [anon_sym_function] = ACTIONS(605), + [anon_sym_class] = ACTIONS(545), + [anon_sym_async] = ACTIONS(547), + [anon_sym_function] = ACTIONS(549), [anon_sym_new] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(77), [anon_sym_DASH] = ACTIONS(77), @@ -26588,68 +26642,68 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(589), - [anon_sym_get] = ACTIONS(589), - [anon_sym_set] = ACTIONS(589), - [anon_sym_declare] = ACTIONS(589), - [anon_sym_public] = ACTIONS(589), - [anon_sym_private] = ACTIONS(589), - [anon_sym_protected] = ACTIONS(589), - [anon_sym_module] = ACTIONS(589), - [anon_sym_any] = ACTIONS(589), - [anon_sym_number] = ACTIONS(589), - [anon_sym_boolean] = ACTIONS(589), - [anon_sym_string] = ACTIONS(589), - [anon_sym_symbol] = ACTIONS(589), - [sym_readonly] = ACTIONS(589), + [anon_sym_static] = ACTIONS(531), + [anon_sym_get] = ACTIONS(531), + [anon_sym_set] = ACTIONS(531), + [anon_sym_declare] = ACTIONS(531), + [anon_sym_public] = ACTIONS(531), + [anon_sym_private] = ACTIONS(531), + [anon_sym_protected] = ACTIONS(531), + [anon_sym_module] = ACTIONS(531), + [anon_sym_any] = ACTIONS(531), + [anon_sym_number] = ACTIONS(531), + [anon_sym_boolean] = ACTIONS(531), + [anon_sym_string] = ACTIONS(531), + [anon_sym_symbol] = ACTIONS(531), + [sym_readonly] = ACTIONS(531), }, [150] = { - [sym_import] = STATE(1498), + [sym_import] = STATE(1523), [sym_expression_statement] = STATE(167), [sym_empty_statement] = STATE(167), - [sym_parenthesized_expression] = STATE(764), - [sym__expression] = STATE(1265), - [sym_yield_expression] = STATE(1518), - [sym_object] = STATE(1435), - [sym_array] = STATE(1433), - [sym_class] = STATE(1498), - [sym_function] = STATE(1498), - [sym_generator_function] = STATE(1498), - [sym_arrow_function] = STATE(1498), - [sym__call_signature] = STATE(3145), - [sym_call_expression] = STATE(1498), - [sym_new_expression] = STATE(1518), - [sym_await_expression] = STATE(1518), - [sym_member_expression] = STATE(764), - [sym_subscript_expression] = STATE(764), - [sym_assignment_expression] = STATE(1518), - [sym__augmented_assignment_lhs] = STATE(1925), - [sym_augmented_assignment_expression] = STATE(1518), - [sym_ternary_expression] = STATE(1518), - [sym_binary_expression] = STATE(1518), - [sym_unary_expression] = STATE(1518), - [sym_update_expression] = STATE(1518), - [sym_sequence_expression] = STATE(2844), - [sym_string] = STATE(1498), - [sym_template_string] = STATE(1498), - [sym_regex] = STATE(1498), - [sym_meta_property] = STATE(1498), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(772), - [sym_type_assertion] = STATE(1518), - [sym_as_expression] = STATE(1518), - [sym_internal_module] = STATE(1518), - [sym_type_arguments] = STATE(349), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2554), - [sym_identifier] = ACTIONS(587), - [anon_sym_export] = ACTIONS(589), - [anon_sym_namespace] = ACTIONS(593), - [anon_sym_LBRACE] = ACTIONS(595), - [anon_sym_type] = ACTIONS(589), + [sym_parenthesized_expression] = STATE(768), + [sym__expression] = STATE(1211), + [sym_yield_expression] = STATE(1567), + [sym_object] = STATE(1357), + [sym_array] = STATE(1360), + [sym_class] = STATE(1523), + [sym_function] = STATE(1523), + [sym_generator_function] = STATE(1523), + [sym_arrow_function] = STATE(1523), + [sym__call_signature] = STATE(3196), + [sym_call_expression] = STATE(1523), + [sym_new_expression] = STATE(1567), + [sym_await_expression] = STATE(1567), + [sym_member_expression] = STATE(768), + [sym_subscript_expression] = STATE(768), + [sym_assignment_expression] = STATE(1567), + [sym__augmented_assignment_lhs] = STATE(1928), + [sym_augmented_assignment_expression] = STATE(1567), + [sym_ternary_expression] = STATE(1567), + [sym_binary_expression] = STATE(1567), + [sym_unary_expression] = STATE(1567), + [sym_update_expression] = STATE(1567), + [sym_sequence_expression] = STATE(2826), + [sym_string] = STATE(1523), + [sym_template_string] = STATE(1523), + [sym_regex] = STATE(1523), + [sym_meta_property] = STATE(1523), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(774), + [sym_type_assertion] = STATE(1567), + [sym_as_expression] = STATE(1567), + [sym_internal_module] = STATE(1567), + [sym_type_arguments] = STATE(292), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2575), + [sym_identifier] = ACTIONS(567), + [anon_sym_export] = ACTIONS(531), + [anon_sym_namespace] = ACTIONS(533), + [anon_sym_LBRACE] = ACTIONS(571), + [anon_sym_type] = ACTIONS(531), [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(597), + [anon_sym_import] = ACTIONS(539), [anon_sym_BANG] = ACTIONS(29), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_await] = ACTIONS(39), @@ -26658,9 +26712,9 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(601), - [anon_sym_async] = ACTIONS(603), - [anon_sym_function] = ACTIONS(605), + [anon_sym_class] = ACTIONS(545), + [anon_sym_async] = ACTIONS(547), + [anon_sym_function] = ACTIONS(549), [anon_sym_new] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(77), [anon_sym_DASH] = ACTIONS(77), @@ -26681,98 +26735,6 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(589), - [anon_sym_get] = ACTIONS(589), - [anon_sym_set] = ACTIONS(589), - [anon_sym_declare] = ACTIONS(589), - [anon_sym_public] = ACTIONS(589), - [anon_sym_private] = ACTIONS(589), - [anon_sym_protected] = ACTIONS(589), - [anon_sym_module] = ACTIONS(589), - [anon_sym_any] = ACTIONS(589), - [anon_sym_number] = ACTIONS(589), - [anon_sym_boolean] = ACTIONS(589), - [anon_sym_string] = ACTIONS(589), - [anon_sym_symbol] = ACTIONS(589), - [sym_readonly] = ACTIONS(589), - }, - [151] = { - [sym_import] = STATE(1682), - [sym_parenthesized_expression] = STATE(828), - [sym__expression] = STATE(1137), - [sym_yield_expression] = STATE(1680), - [sym_object] = STATE(1586), - [sym_array] = STATE(1585), - [sym_nested_identifier] = STATE(3036), - [sym_class] = STATE(1682), - [sym_function] = STATE(1682), - [sym_generator_function] = STATE(1682), - [sym_arrow_function] = STATE(1682), - [sym__call_signature] = STATE(3105), - [sym_call_expression] = STATE(1682), - [sym_new_expression] = STATE(1680), - [sym_await_expression] = STATE(1680), - [sym_member_expression] = STATE(828), - [sym_subscript_expression] = STATE(828), - [sym_assignment_expression] = STATE(1680), - [sym__augmented_assignment_lhs] = STATE(1918), - [sym_augmented_assignment_expression] = STATE(1680), - [sym_ternary_expression] = STATE(1680), - [sym_binary_expression] = STATE(1680), - [sym_unary_expression] = STATE(1680), - [sym_update_expression] = STATE(1680), - [sym_string] = STATE(1682), - [sym_template_string] = STATE(1682), - [sym_regex] = STATE(1682), - [sym_meta_property] = STATE(1682), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(827), - [sym_type_assertion] = STATE(1680), - [sym_as_expression] = STATE(1680), - [sym_internal_module] = STATE(1680), - [sym_nested_type_identifier] = STATE(2227), - [sym_generic_type] = STATE(2492), - [sym_type_arguments] = STATE(256), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2529), - [sym_identifier] = ACTIONS(1290), - [anon_sym_export] = ACTIONS(531), - [anon_sym_namespace] = ACTIONS(533), - [anon_sym_LBRACE] = ACTIONS(1274), - [anon_sym_type] = ACTIONS(531), - [anon_sym_typeof] = ACTIONS(565), - [anon_sym_import] = ACTIONS(539), - [anon_sym_BANG] = ACTIONS(541), - [anon_sym_LPAREN] = ACTIONS(887), - [anon_sym_await] = ACTIONS(545), - [anon_sym_yield] = ACTIONS(547), - [anon_sym_LBRACK] = ACTIONS(889), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(551), - [anon_sym_class] = ACTIONS(553), - [anon_sym_async] = ACTIONS(555), - [anon_sym_function] = ACTIONS(557), - [anon_sym_new] = ACTIONS(891), - [anon_sym_PLUS] = ACTIONS(893), - [anon_sym_DASH] = ACTIONS(893), - [anon_sym_TILDE] = ACTIONS(541), - [anon_sym_void] = ACTIONS(565), - [anon_sym_delete] = ACTIONS(565), - [anon_sym_PLUS_PLUS] = ACTIONS(567), - [anon_sym_DASH_DASH] = ACTIONS(567), - [anon_sym_DQUOTE] = ACTIONS(569), - [anon_sym_SQUOTE] = ACTIONS(571), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(573), - [sym_number] = ACTIONS(895), - [sym_this] = ACTIONS(579), - [sym_super] = ACTIONS(579), - [sym_true] = ACTIONS(579), - [sym_false] = ACTIONS(579), - [sym_null] = ACTIONS(579), - [sym_undefined] = ACTIONS(579), - [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(531), [anon_sym_get] = ACTIONS(531), [anon_sym_set] = ACTIONS(531), @@ -26788,71 +26750,71 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(531), [sym_readonly] = ACTIONS(531), }, - [152] = { - [sym_import] = STATE(1101), - [sym_parenthesized_expression] = STATE(953), - [sym__expression] = STATE(1683), - [sym_yield_expression] = STATE(1105), - [sym_object] = STATE(1719), - [sym_array] = STATE(1715), - [sym_class] = STATE(1101), - [sym_function] = STATE(1101), - [sym_generator_function] = STATE(1101), - [sym_arrow_function] = STATE(1101), - [sym__call_signature] = STATE(3002), - [sym_call_expression] = STATE(1101), - [sym_new_expression] = STATE(1105), - [sym_await_expression] = STATE(1105), - [sym_member_expression] = STATE(953), - [sym_subscript_expression] = STATE(953), - [sym_assignment_expression] = STATE(1105), - [sym__augmented_assignment_lhs] = STATE(1921), - [sym_augmented_assignment_expression] = STATE(1105), - [sym_ternary_expression] = STATE(1105), - [sym_binary_expression] = STATE(1105), - [sym_unary_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_string] = STATE(1101), - [sym_template_string] = STATE(1101), - [sym_regex] = STATE(1101), - [sym_meta_property] = STATE(1101), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(954), - [sym_type_assertion] = STATE(1105), - [sym_as_expression] = STATE(1105), - [sym_internal_module] = STATE(1105), - [sym_type_arguments] = STATE(324), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2497), - [sym_identifier] = ACTIONS(1292), - [anon_sym_export] = ACTIONS(1294), - [anon_sym_namespace] = ACTIONS(1296), + [151] = { + [sym_import] = STATE(1151), + [sym_parenthesized_expression] = STATE(759), + [sym__expression] = STATE(1064), + [sym_yield_expression] = STATE(1144), + [sym_object] = STATE(1257), + [sym_array] = STATE(1254), + [sym_nested_identifier] = STATE(1919), + [sym_class] = STATE(1151), + [sym_function] = STATE(1151), + [sym_generator_function] = STATE(1151), + [sym_arrow_function] = STATE(1151), + [sym__call_signature] = STATE(3082), + [sym_call_expression] = STATE(1151), + [sym_new_expression] = STATE(1144), + [sym_await_expression] = STATE(1144), + [sym_member_expression] = STATE(759), + [sym_subscript_expression] = STATE(759), + [sym_assignment_expression] = STATE(1144), + [sym__augmented_assignment_lhs] = STATE(1924), + [sym_augmented_assignment_expression] = STATE(1144), + [sym_ternary_expression] = STATE(1144), + [sym_binary_expression] = STATE(1144), + [sym_unary_expression] = STATE(1144), + [sym_update_expression] = STATE(1144), + [sym_string] = STATE(1151), + [sym_template_string] = STATE(1151), + [sym_regex] = STATE(1151), + [sym_meta_property] = STATE(1151), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(754), + [sym_type_assertion] = STATE(1144), + [sym_as_expression] = STATE(1144), + [sym_internal_module] = STATE(1144), + [sym_nested_type_identifier] = STATE(2816), + [sym_generic_type] = STATE(421), + [sym_type_arguments] = STATE(326), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2580), + [sym_identifier] = ACTIONS(1290), + [anon_sym_export] = ACTIONS(501), + [anon_sym_namespace] = ACTIONS(507), [anon_sym_LBRACE] = ACTIONS(509), - [anon_sym_type] = ACTIONS(1294), - [anon_sym_typeof] = ACTIONS(659), + [anon_sym_type] = ACTIONS(501), + [anon_sym_typeof] = ACTIONS(471), [anon_sym_import] = ACTIONS(435), - [anon_sym_var] = ACTIONS(1298), - [anon_sym_let] = ACTIONS(1298), - [anon_sym_const] = ACTIONS(1298), - [anon_sym_BANG] = ACTIONS(643), + [anon_sym_BANG] = ACTIONS(437), [anon_sym_LPAREN] = ACTIONS(515), - [anon_sym_await] = ACTIONS(645), - [anon_sym_yield] = ACTIONS(647), + [anon_sym_await] = ACTIONS(443), + [anon_sym_yield] = ACTIONS(445), [anon_sym_LBRACK] = ACTIONS(517), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(449), [anon_sym_class] = ACTIONS(451), - [anon_sym_async] = ACTIONS(1300), + [anon_sym_async] = ACTIONS(521), [anon_sym_function] = ACTIONS(455), - [anon_sym_new] = ACTIONS(865), - [anon_sym_PLUS] = ACTIONS(867), - [anon_sym_DASH] = ACTIONS(867), - [anon_sym_TILDE] = ACTIONS(643), - [anon_sym_void] = ACTIONS(659), - [anon_sym_delete] = ACTIONS(659), - [anon_sym_PLUS_PLUS] = ACTIONS(661), - [anon_sym_DASH_DASH] = ACTIONS(661), + [anon_sym_new] = ACTIONS(523), + [anon_sym_PLUS] = ACTIONS(525), + [anon_sym_DASH] = ACTIONS(525), + [anon_sym_TILDE] = ACTIONS(437), + [anon_sym_void] = ACTIONS(471), + [anon_sym_delete] = ACTIONS(471), + [anon_sym_PLUS_PLUS] = ACTIONS(473), + [anon_sym_DASH_DASH] = ACTIONS(473), [anon_sym_DQUOTE] = ACTIONS(475), [anon_sym_SQUOTE] = ACTIONS(477), [sym_comment] = ACTIONS(3), @@ -26865,86 +26827,86 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(485), [sym_undefined] = ACTIONS(485), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(1294), - [anon_sym_get] = ACTIONS(1294), - [anon_sym_set] = ACTIONS(1294), - [anon_sym_declare] = ACTIONS(1294), - [anon_sym_public] = ACTIONS(1294), - [anon_sym_private] = ACTIONS(1294), - [anon_sym_protected] = ACTIONS(1294), - [anon_sym_module] = ACTIONS(1294), - [anon_sym_any] = ACTIONS(1294), - [anon_sym_number] = ACTIONS(1294), - [anon_sym_boolean] = ACTIONS(1294), - [anon_sym_string] = ACTIONS(1294), - [anon_sym_symbol] = ACTIONS(1294), - [sym_readonly] = ACTIONS(1294), + [anon_sym_static] = ACTIONS(501), + [anon_sym_get] = ACTIONS(501), + [anon_sym_set] = ACTIONS(501), + [anon_sym_declare] = ACTIONS(501), + [anon_sym_public] = ACTIONS(501), + [anon_sym_private] = ACTIONS(501), + [anon_sym_protected] = ACTIONS(501), + [anon_sym_module] = ACTIONS(501), + [anon_sym_any] = ACTIONS(501), + [anon_sym_number] = ACTIONS(501), + [anon_sym_boolean] = ACTIONS(501), + [anon_sym_string] = ACTIONS(501), + [anon_sym_symbol] = ACTIONS(501), + [sym_readonly] = ACTIONS(501), }, - [153] = { - [sym_import] = STATE(1101), - [sym_parenthesized_expression] = STATE(921), - [sym__expression] = STATE(1292), - [sym_yield_expression] = STATE(1105), - [sym_object] = STATE(1531), - [sym_array] = STATE(1536), - [sym_nested_identifier] = STATE(2999), - [sym_class] = STATE(1101), - [sym_function] = STATE(1101), - [sym_generator_function] = STATE(1101), - [sym_arrow_function] = STATE(1101), - [sym__call_signature] = STATE(3170), - [sym_call_expression] = STATE(1101), - [sym_new_expression] = STATE(1105), - [sym_await_expression] = STATE(1105), - [sym_member_expression] = STATE(921), - [sym_subscript_expression] = STATE(921), - [sym_assignment_expression] = STATE(1105), - [sym__augmented_assignment_lhs] = STATE(1917), - [sym_augmented_assignment_expression] = STATE(1105), - [sym_ternary_expression] = STATE(1105), - [sym_binary_expression] = STATE(1105), - [sym_unary_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_string] = STATE(1101), - [sym_template_string] = STATE(1101), - [sym_regex] = STATE(1101), - [sym_meta_property] = STATE(1101), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(882), - [sym_type_assertion] = STATE(1105), - [sym_as_expression] = STATE(1105), - [sym_internal_module] = STATE(1105), - [sym_nested_type_identifier] = STATE(2262), - [sym_generic_type] = STATE(2619), - [sym_type_arguments] = STATE(355), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2497), - [sym_identifier] = ACTIONS(1302), - [anon_sym_export] = ACTIONS(751), - [anon_sym_namespace] = ACTIONS(753), + [152] = { + [sym_import] = STATE(1151), + [sym_parenthesized_expression] = STATE(956), + [sym__expression] = STATE(1377), + [sym_yield_expression] = STATE(1144), + [sym_object] = STATE(1653), + [sym_array] = STATE(1660), + [sym_nested_identifier] = STATE(1919), + [sym_class] = STATE(1151), + [sym_function] = STATE(1151), + [sym_generator_function] = STATE(1151), + [sym_arrow_function] = STATE(1151), + [sym__call_signature] = STATE(3024), + [sym_call_expression] = STATE(1151), + [sym_new_expression] = STATE(1144), + [sym_await_expression] = STATE(1144), + [sym_member_expression] = STATE(956), + [sym_subscript_expression] = STATE(956), + [sym_assignment_expression] = STATE(1144), + [sym__augmented_assignment_lhs] = STATE(1925), + [sym_augmented_assignment_expression] = STATE(1144), + [sym_ternary_expression] = STATE(1144), + [sym_binary_expression] = STATE(1144), + [sym_unary_expression] = STATE(1144), + [sym_update_expression] = STATE(1144), + [sym_string] = STATE(1151), + [sym_template_string] = STATE(1151), + [sym_regex] = STATE(1151), + [sym_meta_property] = STATE(1151), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(950), + [sym_type_assertion] = STATE(1144), + [sym_as_expression] = STATE(1144), + [sym_internal_module] = STATE(1144), + [sym_nested_type_identifier] = STATE(2816), + [sym_generic_type] = STATE(421), + [sym_type_arguments] = STATE(395), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2580), + [sym_identifier] = ACTIONS(1292), + [anon_sym_export] = ACTIONS(577), + [anon_sym_namespace] = ACTIONS(579), [anon_sym_LBRACE] = ACTIONS(509), - [anon_sym_type] = ACTIONS(751), - [anon_sym_typeof] = ACTIONS(775), + [anon_sym_type] = ACTIONS(577), + [anon_sym_typeof] = ACTIONS(601), [anon_sym_import] = ACTIONS(435), - [anon_sym_BANG] = ACTIONS(757), + [anon_sym_BANG] = ACTIONS(585), [anon_sym_LPAREN] = ACTIONS(515), - [anon_sym_await] = ACTIONS(759), - [anon_sym_yield] = ACTIONS(761), + [anon_sym_await] = ACTIONS(587), + [anon_sym_yield] = ACTIONS(589), [anon_sym_LBRACK] = ACTIONS(517), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(765), + [anon_sym_SLASH] = ACTIONS(449), [anon_sym_class] = ACTIONS(451), - [anon_sym_async] = ACTIONS(767), + [anon_sym_async] = ACTIONS(593), [anon_sym_function] = ACTIONS(455), [anon_sym_new] = ACTIONS(903), [anon_sym_PLUS] = ACTIONS(905), [anon_sym_DASH] = ACTIONS(905), - [anon_sym_TILDE] = ACTIONS(757), - [anon_sym_void] = ACTIONS(775), - [anon_sym_delete] = ACTIONS(775), - [anon_sym_PLUS_PLUS] = ACTIONS(777), - [anon_sym_DASH_DASH] = ACTIONS(777), + [anon_sym_TILDE] = ACTIONS(585), + [anon_sym_void] = ACTIONS(601), + [anon_sym_delete] = ACTIONS(601), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(603), [anon_sym_DQUOTE] = ACTIONS(475), [anon_sym_SQUOTE] = ACTIONS(477), [sym_comment] = ACTIONS(3), @@ -26957,170 +26919,169 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(485), [sym_undefined] = ACTIONS(485), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(751), - [anon_sym_get] = ACTIONS(751), - [anon_sym_set] = ACTIONS(751), - [anon_sym_declare] = ACTIONS(751), - [anon_sym_public] = ACTIONS(751), - [anon_sym_private] = ACTIONS(751), - [anon_sym_protected] = ACTIONS(751), - [anon_sym_module] = ACTIONS(751), - [anon_sym_any] = ACTIONS(751), - [anon_sym_number] = ACTIONS(751), - [anon_sym_boolean] = ACTIONS(751), - [anon_sym_string] = ACTIONS(751), - [anon_sym_symbol] = ACTIONS(751), - [sym_readonly] = ACTIONS(751), + [anon_sym_static] = ACTIONS(577), + [anon_sym_get] = ACTIONS(577), + [anon_sym_set] = ACTIONS(577), + [anon_sym_declare] = ACTIONS(577), + [anon_sym_public] = ACTIONS(577), + [anon_sym_private] = ACTIONS(577), + [anon_sym_protected] = ACTIONS(577), + [anon_sym_module] = ACTIONS(577), + [anon_sym_any] = ACTIONS(577), + [anon_sym_number] = ACTIONS(577), + [anon_sym_boolean] = ACTIONS(577), + [anon_sym_string] = ACTIONS(577), + [anon_sym_symbol] = ACTIONS(577), + [sym_readonly] = ACTIONS(577), }, - [154] = { - [sym_import] = STATE(1101), - [sym_parenthesized_expression] = STATE(921), - [sym__expression] = STATE(1100), - [sym_yield_expression] = STATE(1105), - [sym_object] = STATE(1531), - [sym_array] = STATE(1536), - [sym_nested_identifier] = STATE(2999), - [sym_class] = STATE(1101), - [sym_function] = STATE(1101), - [sym_generator_function] = STATE(1101), - [sym_arrow_function] = STATE(1101), - [sym__call_signature] = STATE(3170), - [sym_call_expression] = STATE(1101), - [sym_new_expression] = STATE(1105), - [sym_await_expression] = STATE(1105), - [sym_member_expression] = STATE(921), - [sym_subscript_expression] = STATE(921), - [sym_assignment_expression] = STATE(1105), - [sym__augmented_assignment_lhs] = STATE(1917), - [sym_augmented_assignment_expression] = STATE(1105), - [sym_ternary_expression] = STATE(1105), - [sym_binary_expression] = STATE(1105), - [sym_unary_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_string] = STATE(1101), - [sym_template_string] = STATE(1101), - [sym_regex] = STATE(1101), - [sym_meta_property] = STATE(1101), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(882), - [sym_type_assertion] = STATE(1105), - [sym_as_expression] = STATE(1105), - [sym_internal_module] = STATE(1105), - [sym_nested_type_identifier] = STATE(2214), - [sym_generic_type] = STATE(2559), - [sym_type_arguments] = STATE(355), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2497), - [sym_identifier] = ACTIONS(1304), - [anon_sym_export] = ACTIONS(751), - [anon_sym_namespace] = ACTIONS(753), - [anon_sym_LBRACE] = ACTIONS(509), - [anon_sym_type] = ACTIONS(751), - [anon_sym_typeof] = ACTIONS(775), - [anon_sym_import] = ACTIONS(435), - [anon_sym_BANG] = ACTIONS(757), - [anon_sym_LPAREN] = ACTIONS(515), - [anon_sym_await] = ACTIONS(759), - [anon_sym_yield] = ACTIONS(761), - [anon_sym_LBRACK] = ACTIONS(517), + [153] = { + [sym_import] = STATE(1690), + [sym_parenthesized_expression] = STATE(834), + [sym__expression] = STATE(1152), + [sym_yield_expression] = STATE(1687), + [sym_object] = STATE(1538), + [sym_array] = STATE(1543), + [sym_nested_identifier] = STATE(3055), + [sym_class] = STATE(1690), + [sym_function] = STATE(1690), + [sym_generator_function] = STATE(1690), + [sym_arrow_function] = STATE(1690), + [sym__call_signature] = STATE(3133), + [sym_call_expression] = STATE(1690), + [sym_new_expression] = STATE(1687), + [sym_await_expression] = STATE(1687), + [sym_member_expression] = STATE(834), + [sym_subscript_expression] = STATE(834), + [sym_assignment_expression] = STATE(1687), + [sym__augmented_assignment_lhs] = STATE(1921), + [sym_augmented_assignment_expression] = STATE(1687), + [sym_ternary_expression] = STATE(1687), + [sym_binary_expression] = STATE(1687), + [sym_unary_expression] = STATE(1687), + [sym_update_expression] = STATE(1687), + [sym_string] = STATE(1690), + [sym_template_string] = STATE(1690), + [sym_regex] = STATE(1690), + [sym_meta_property] = STATE(1690), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(846), + [sym_type_assertion] = STATE(1687), + [sym_as_expression] = STATE(1687), + [sym_internal_module] = STATE(1687), + [sym_nested_type_identifier] = STATE(2199), + [sym_generic_type] = STATE(2546), + [sym_type_arguments] = STATE(301), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2545), + [sym_identifier] = ACTIONS(1294), + [anon_sym_export] = ACTIONS(673), + [anon_sym_namespace] = ACTIONS(675), + [anon_sym_LBRACE] = ACTIONS(1270), + [anon_sym_type] = ACTIONS(673), + [anon_sym_typeof] = ACTIONS(707), + [anon_sym_import] = ACTIONS(681), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_await] = ACTIONS(687), + [anon_sym_yield] = ACTIONS(689), + [anon_sym_LBRACK] = ACTIONS(879), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(765), - [anon_sym_class] = ACTIONS(451), - [anon_sym_async] = ACTIONS(767), - [anon_sym_function] = ACTIONS(455), - [anon_sym_new] = ACTIONS(903), - [anon_sym_PLUS] = ACTIONS(905), - [anon_sym_DASH] = ACTIONS(905), - [anon_sym_TILDE] = ACTIONS(757), - [anon_sym_void] = ACTIONS(775), - [anon_sym_delete] = ACTIONS(775), - [anon_sym_PLUS_PLUS] = ACTIONS(777), - [anon_sym_DASH_DASH] = ACTIONS(777), - [anon_sym_DQUOTE] = ACTIONS(475), - [anon_sym_SQUOTE] = ACTIONS(477), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(479), - [sym_number] = ACTIONS(527), - [sym_this] = ACTIONS(485), - [sym_super] = ACTIONS(485), - [sym_true] = ACTIONS(485), - [sym_false] = ACTIONS(485), - [sym_null] = ACTIONS(485), - [sym_undefined] = ACTIONS(485), + [anon_sym_SLASH] = ACTIONS(693), + [anon_sym_class] = ACTIONS(695), + [anon_sym_async] = ACTIONS(697), + [anon_sym_function] = ACTIONS(699), + [anon_sym_new] = ACTIONS(881), + [anon_sym_PLUS] = ACTIONS(883), + [anon_sym_DASH] = ACTIONS(883), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_void] = ACTIONS(707), + [anon_sym_delete] = ACTIONS(707), + [anon_sym_PLUS_PLUS] = ACTIONS(709), + [anon_sym_DASH_DASH] = ACTIONS(709), + [anon_sym_DQUOTE] = ACTIONS(711), + [anon_sym_SQUOTE] = ACTIONS(713), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(715), + [sym_number] = ACTIONS(885), + [sym_this] = ACTIONS(721), + [sym_super] = ACTIONS(721), + [sym_true] = ACTIONS(721), + [sym_false] = ACTIONS(721), + [sym_null] = ACTIONS(721), + [sym_undefined] = ACTIONS(721), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(751), - [anon_sym_get] = ACTIONS(751), - [anon_sym_set] = ACTIONS(751), - [anon_sym_declare] = ACTIONS(751), - [anon_sym_public] = ACTIONS(751), - [anon_sym_private] = ACTIONS(751), - [anon_sym_protected] = ACTIONS(751), - [anon_sym_module] = ACTIONS(751), - [anon_sym_any] = ACTIONS(751), - [anon_sym_number] = ACTIONS(751), - [anon_sym_boolean] = ACTIONS(751), - [anon_sym_string] = ACTIONS(751), - [anon_sym_symbol] = ACTIONS(751), - [sym_readonly] = ACTIONS(751), + [anon_sym_static] = ACTIONS(673), + [anon_sym_get] = ACTIONS(673), + [anon_sym_set] = ACTIONS(673), + [anon_sym_declare] = ACTIONS(673), + [anon_sym_public] = ACTIONS(673), + [anon_sym_private] = ACTIONS(673), + [anon_sym_protected] = ACTIONS(673), + [anon_sym_module] = ACTIONS(673), + [anon_sym_any] = ACTIONS(673), + [anon_sym_number] = ACTIONS(673), + [anon_sym_boolean] = ACTIONS(673), + [anon_sym_string] = ACTIONS(673), + [anon_sym_symbol] = ACTIONS(673), + [sym_readonly] = ACTIONS(673), }, - [155] = { - [sym_import] = STATE(1498), - [sym_parenthesized_expression] = STATE(764), - [sym__expression] = STATE(1177), - [sym_yield_expression] = STATE(1518), - [sym_object] = STATE(1435), - [sym_array] = STATE(1433), - [sym_nested_identifier] = STATE(1914), - [sym_class] = STATE(1498), - [sym_function] = STATE(1498), - [sym_generator_function] = STATE(1498), - [sym_arrow_function] = STATE(1498), - [sym__call_signature] = STATE(3145), - [sym_call_expression] = STATE(1498), - [sym_new_expression] = STATE(1518), - [sym_await_expression] = STATE(1518), - [sym_member_expression] = STATE(764), - [sym_subscript_expression] = STATE(764), - [sym_assignment_expression] = STATE(1518), - [sym__augmented_assignment_lhs] = STATE(1925), - [sym_augmented_assignment_expression] = STATE(1518), - [sym_ternary_expression] = STATE(1518), - [sym_binary_expression] = STATE(1518), - [sym_unary_expression] = STATE(1518), - [sym_update_expression] = STATE(1518), - [sym_string] = STATE(1498), - [sym_template_string] = STATE(1498), - [sym_regex] = STATE(1498), - [sym_meta_property] = STATE(1498), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(772), - [sym_type_assertion] = STATE(1518), - [sym_as_expression] = STATE(1518), - [sym_internal_module] = STATE(1518), - [sym_nested_type_identifier] = STATE(2940), - [sym_generic_type] = STATE(441), - [sym_type_arguments] = STATE(349), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2554), - [sym_identifier] = ACTIONS(1306), - [anon_sym_export] = ACTIONS(589), - [anon_sym_namespace] = ACTIONS(593), - [anon_sym_LBRACE] = ACTIONS(595), - [anon_sym_type] = ACTIONS(589), + [154] = { + [sym_import] = STATE(1523), + [sym_parenthesized_expression] = STATE(768), + [sym__expression] = STATE(1294), + [sym_yield_expression] = STATE(1567), + [sym_object] = STATE(1357), + [sym_array] = STATE(1360), + [sym_class] = STATE(1523), + [sym_function] = STATE(1523), + [sym_generator_function] = STATE(1523), + [sym_arrow_function] = STATE(1523), + [sym__call_signature] = STATE(3196), + [sym_call_expression] = STATE(1523), + [sym_new_expression] = STATE(1567), + [sym_await_expression] = STATE(1567), + [sym_member_expression] = STATE(768), + [sym_subscript_expression] = STATE(768), + [sym_assignment_expression] = STATE(1567), + [sym__augmented_assignment_lhs] = STATE(1928), + [sym_augmented_assignment_expression] = STATE(1567), + [sym_ternary_expression] = STATE(1567), + [sym_binary_expression] = STATE(1567), + [sym_unary_expression] = STATE(1567), + [sym_update_expression] = STATE(1567), + [sym_sequence_expression] = STATE(2863), + [sym_string] = STATE(1523), + [sym_template_string] = STATE(1523), + [sym_regex] = STATE(1523), + [sym_meta_property] = STATE(1523), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(774), + [sym_type_assertion] = STATE(1567), + [sym_as_expression] = STATE(1567), + [sym_internal_module] = STATE(1567), + [sym_type_arguments] = STATE(292), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2575), + [sym_identifier] = ACTIONS(567), + [anon_sym_export] = ACTIONS(531), + [anon_sym_namespace] = ACTIONS(533), + [anon_sym_LBRACE] = ACTIONS(571), + [anon_sym_type] = ACTIONS(531), [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(597), + [anon_sym_import] = ACTIONS(539), [anon_sym_BANG] = ACTIONS(29), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_await] = ACTIONS(39), + [anon_sym_SEMI] = ACTIONS(1296), [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(601), - [anon_sym_async] = ACTIONS(603), - [anon_sym_function] = ACTIONS(605), + [anon_sym_class] = ACTIONS(545), + [anon_sym_async] = ACTIONS(547), + [anon_sym_function] = ACTIONS(549), [anon_sym_new] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(77), [anon_sym_DASH] = ACTIONS(77), @@ -27141,98 +27102,6 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(589), - [anon_sym_get] = ACTIONS(589), - [anon_sym_set] = ACTIONS(589), - [anon_sym_declare] = ACTIONS(589), - [anon_sym_public] = ACTIONS(589), - [anon_sym_private] = ACTIONS(589), - [anon_sym_protected] = ACTIONS(589), - [anon_sym_module] = ACTIONS(589), - [anon_sym_any] = ACTIONS(589), - [anon_sym_number] = ACTIONS(589), - [anon_sym_boolean] = ACTIONS(589), - [anon_sym_string] = ACTIONS(589), - [anon_sym_symbol] = ACTIONS(589), - [sym_readonly] = ACTIONS(589), - }, - [156] = { - [sym_import] = STATE(1682), - [sym_parenthesized_expression] = STATE(828), - [sym__expression] = STATE(1218), - [sym_yield_expression] = STATE(1680), - [sym_object] = STATE(1586), - [sym_array] = STATE(1585), - [sym_nested_identifier] = STATE(3036), - [sym_class] = STATE(1682), - [sym_function] = STATE(1682), - [sym_generator_function] = STATE(1682), - [sym_arrow_function] = STATE(1682), - [sym__call_signature] = STATE(3105), - [sym_call_expression] = STATE(1682), - [sym_new_expression] = STATE(1680), - [sym_await_expression] = STATE(1680), - [sym_member_expression] = STATE(828), - [sym_subscript_expression] = STATE(828), - [sym_assignment_expression] = STATE(1680), - [sym__augmented_assignment_lhs] = STATE(1918), - [sym_augmented_assignment_expression] = STATE(1680), - [sym_ternary_expression] = STATE(1680), - [sym_binary_expression] = STATE(1680), - [sym_unary_expression] = STATE(1680), - [sym_update_expression] = STATE(1680), - [sym_string] = STATE(1682), - [sym_template_string] = STATE(1682), - [sym_regex] = STATE(1682), - [sym_meta_property] = STATE(1682), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(827), - [sym_type_assertion] = STATE(1680), - [sym_as_expression] = STATE(1680), - [sym_internal_module] = STATE(1680), - [sym_nested_type_identifier] = STATE(2271), - [sym_generic_type] = STATE(2606), - [sym_type_arguments] = STATE(256), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2529), - [sym_identifier] = ACTIONS(1308), - [anon_sym_export] = ACTIONS(531), - [anon_sym_namespace] = ACTIONS(533), - [anon_sym_LBRACE] = ACTIONS(1274), - [anon_sym_type] = ACTIONS(531), - [anon_sym_typeof] = ACTIONS(565), - [anon_sym_import] = ACTIONS(539), - [anon_sym_BANG] = ACTIONS(541), - [anon_sym_LPAREN] = ACTIONS(887), - [anon_sym_await] = ACTIONS(545), - [anon_sym_yield] = ACTIONS(547), - [anon_sym_LBRACK] = ACTIONS(889), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(551), - [anon_sym_class] = ACTIONS(553), - [anon_sym_async] = ACTIONS(555), - [anon_sym_function] = ACTIONS(557), - [anon_sym_new] = ACTIONS(891), - [anon_sym_PLUS] = ACTIONS(893), - [anon_sym_DASH] = ACTIONS(893), - [anon_sym_TILDE] = ACTIONS(541), - [anon_sym_void] = ACTIONS(565), - [anon_sym_delete] = ACTIONS(565), - [anon_sym_PLUS_PLUS] = ACTIONS(567), - [anon_sym_DASH_DASH] = ACTIONS(567), - [anon_sym_DQUOTE] = ACTIONS(569), - [anon_sym_SQUOTE] = ACTIONS(571), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(573), - [sym_number] = ACTIONS(895), - [sym_this] = ACTIONS(579), - [sym_super] = ACTIONS(579), - [sym_true] = ACTIONS(579), - [sym_false] = ACTIONS(579), - [sym_null] = ACTIONS(579), - [sym_undefined] = ACTIONS(579), - [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(531), [anon_sym_get] = ACTIONS(531), [anon_sym_set] = ACTIONS(531), @@ -27247,27 +27116,120 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(531), [anon_sym_symbol] = ACTIONS(531), [sym_readonly] = ACTIONS(531), + [sym__automatic_semicolon] = ACTIONS(1296), }, - [157] = { - [sym__declaration] = STATE(549), - [sym_variable_declaration] = STATE(598), - [sym_lexical_declaration] = STATE(598), - [sym_class_declaration] = STATE(598), - [sym_function_declaration] = STATE(598), - [sym_generator_function_declaration] = STATE(598), - [sym_decorator] = STATE(1905), - [sym_function_signature] = STATE(598), - [sym_ambient_declaration] = STATE(598), - [sym_abstract_class_declaration] = STATE(598), - [sym_module] = STATE(598), - [sym_internal_module] = STATE(561), - [sym_import_alias] = STATE(598), - [sym_interface_declaration] = STATE(598), - [sym_enum_declaration] = STATE(598), - [sym_type_alias_declaration] = STATE(598), - [aux_sym_export_statement_repeat1] = STATE(2572), + [155] = { + [sym_import] = STATE(1690), + [sym_parenthesized_expression] = STATE(834), + [sym__expression] = STATE(1229), + [sym_yield_expression] = STATE(1687), + [sym_object] = STATE(1538), + [sym_array] = STATE(1543), + [sym_nested_identifier] = STATE(1919), + [sym_class] = STATE(1690), + [sym_function] = STATE(1690), + [sym_generator_function] = STATE(1690), + [sym_arrow_function] = STATE(1690), + [sym__call_signature] = STATE(3133), + [sym_call_expression] = STATE(1690), + [sym_new_expression] = STATE(1687), + [sym_await_expression] = STATE(1687), + [sym_member_expression] = STATE(834), + [sym_subscript_expression] = STATE(834), + [sym_assignment_expression] = STATE(1687), + [sym__augmented_assignment_lhs] = STATE(1921), + [sym_augmented_assignment_expression] = STATE(1687), + [sym_ternary_expression] = STATE(1687), + [sym_binary_expression] = STATE(1687), + [sym_unary_expression] = STATE(1687), + [sym_update_expression] = STATE(1687), + [sym_string] = STATE(1690), + [sym_template_string] = STATE(1690), + [sym_regex] = STATE(1690), + [sym_meta_property] = STATE(1690), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(846), + [sym_type_assertion] = STATE(1687), + [sym_as_expression] = STATE(1687), + [sym_internal_module] = STATE(1687), + [sym_nested_type_identifier] = STATE(2816), + [sym_generic_type] = STATE(421), + [sym_type_arguments] = STATE(301), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2545), + [sym_identifier] = ACTIONS(1298), + [anon_sym_export] = ACTIONS(673), + [anon_sym_namespace] = ACTIONS(675), + [anon_sym_LBRACE] = ACTIONS(1270), + [anon_sym_type] = ACTIONS(673), + [anon_sym_typeof] = ACTIONS(707), + [anon_sym_import] = ACTIONS(681), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_await] = ACTIONS(687), + [anon_sym_yield] = ACTIONS(689), + [anon_sym_LBRACK] = ACTIONS(879), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(693), + [anon_sym_class] = ACTIONS(695), + [anon_sym_async] = ACTIONS(697), + [anon_sym_function] = ACTIONS(699), + [anon_sym_new] = ACTIONS(881), + [anon_sym_PLUS] = ACTIONS(883), + [anon_sym_DASH] = ACTIONS(883), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_void] = ACTIONS(707), + [anon_sym_delete] = ACTIONS(707), + [anon_sym_PLUS_PLUS] = ACTIONS(709), + [anon_sym_DASH_DASH] = ACTIONS(709), + [anon_sym_DQUOTE] = ACTIONS(711), + [anon_sym_SQUOTE] = ACTIONS(713), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(715), + [sym_number] = ACTIONS(885), + [sym_this] = ACTIONS(721), + [sym_super] = ACTIONS(721), + [sym_true] = ACTIONS(721), + [sym_false] = ACTIONS(721), + [sym_null] = ACTIONS(721), + [sym_undefined] = ACTIONS(721), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(673), + [anon_sym_get] = ACTIONS(673), + [anon_sym_set] = ACTIONS(673), + [anon_sym_declare] = ACTIONS(673), + [anon_sym_public] = ACTIONS(673), + [anon_sym_private] = ACTIONS(673), + [anon_sym_protected] = ACTIONS(673), + [anon_sym_module] = ACTIONS(673), + [anon_sym_any] = ACTIONS(673), + [anon_sym_number] = ACTIONS(673), + [anon_sym_boolean] = ACTIONS(673), + [anon_sym_string] = ACTIONS(673), + [anon_sym_symbol] = ACTIONS(673), + [sym_readonly] = ACTIONS(673), + }, + [156] = { + [sym__declaration] = STATE(551), + [sym_variable_declaration] = STATE(579), + [sym_lexical_declaration] = STATE(579), + [sym_class_declaration] = STATE(579), + [sym_function_declaration] = STATE(579), + [sym_generator_function_declaration] = STATE(579), + [sym_decorator] = STATE(1890), + [sym_function_signature] = STATE(579), + [sym_ambient_declaration] = STATE(579), + [sym_abstract_class_declaration] = STATE(579), + [sym_module] = STATE(579), + [sym_internal_module] = STATE(569), + [sym_import_alias] = STATE(579), + [sym_interface_declaration] = STATE(579), + [sym_enum_declaration] = STATE(579), + [sym_type_alias_declaration] = STATE(579), + [aux_sym_export_statement_repeat1] = STATE(2424), [anon_sym_STAR] = ACTIONS(808), - [anon_sym_EQ] = ACTIONS(1003), + [anon_sym_EQ] = ACTIONS(1013), [anon_sym_as] = ACTIONS(808), [anon_sym_namespace] = ACTIONS(1197), [anon_sym_COMMA] = ACTIONS(841), @@ -27280,7 +27242,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(841), [anon_sym_in] = ACTIONS(808), [anon_sym_SEMI] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(1258), + [anon_sym_COLON] = ACTIONS(1274), [anon_sym_LBRACK] = ACTIONS(1219), [anon_sym_LT] = ACTIONS(808), [anon_sym_GT] = ACTIONS(808), @@ -27289,8 +27251,8 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(1226), [anon_sym_async] = ACTIONS(1228), [anon_sym_function] = ACTIONS(1230), - [anon_sym_EQ_GT] = ACTIONS(1009), - [anon_sym_QMARK_DOT] = ACTIONS(1011), + [anon_sym_EQ_GT] = ACTIONS(1019), + [anon_sym_QMARK_DOT] = ACTIONS(1021), [anon_sym_PLUS_EQ] = ACTIONS(831), [anon_sym_DASH_EQ] = ACTIONS(831), [anon_sym_STAR_EQ] = ACTIONS(831), @@ -27333,78 +27295,78 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(841), [anon_sym_AT] = ACTIONS(91), [anon_sym_abstract] = ACTIONS(1232), - [anon_sym_declare] = ACTIONS(1260), - [anon_sym_module] = ACTIONS(1310), - [anon_sym_global] = ACTIONS(1286), + [anon_sym_declare] = ACTIONS(1234), + [anon_sym_module] = ACTIONS(1260), + [anon_sym_global] = ACTIONS(1262), [anon_sym_interface] = ACTIONS(1238), [anon_sym_enum] = ACTIONS(1240), [sym__automatic_semicolon] = ACTIONS(841), }, - [158] = { - [sym_import] = STATE(1101), - [sym_parenthesized_expression] = STATE(921), - [sym__expression] = STATE(1298), - [sym_yield_expression] = STATE(1105), - [sym_object] = STATE(1531), - [sym_array] = STATE(1536), - [sym_nested_identifier] = STATE(1914), - [sym_class] = STATE(1101), - [sym_function] = STATE(1101), - [sym_generator_function] = STATE(1101), - [sym_arrow_function] = STATE(1101), - [sym__call_signature] = STATE(3170), - [sym_call_expression] = STATE(1101), - [sym_new_expression] = STATE(1105), - [sym_await_expression] = STATE(1105), - [sym_member_expression] = STATE(921), - [sym_subscript_expression] = STATE(921), - [sym_assignment_expression] = STATE(1105), - [sym__augmented_assignment_lhs] = STATE(1917), - [sym_augmented_assignment_expression] = STATE(1105), - [sym_ternary_expression] = STATE(1105), - [sym_binary_expression] = STATE(1105), - [sym_unary_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_string] = STATE(1101), - [sym_template_string] = STATE(1101), - [sym_regex] = STATE(1101), - [sym_meta_property] = STATE(1101), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(882), - [sym_type_assertion] = STATE(1105), - [sym_as_expression] = STATE(1105), - [sym_internal_module] = STATE(1105), - [sym_nested_type_identifier] = STATE(2940), - [sym_generic_type] = STATE(441), - [sym_type_arguments] = STATE(355), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2497), - [sym_identifier] = ACTIONS(1312), - [anon_sym_export] = ACTIONS(751), - [anon_sym_namespace] = ACTIONS(753), + [157] = { + [sym_import] = STATE(1151), + [sym_parenthesized_expression] = STATE(837), + [sym__expression] = STATE(1216), + [sym_yield_expression] = STATE(1144), + [sym_object] = STATE(1495), + [sym_array] = STATE(1493), + [sym_nested_identifier] = STATE(3123), + [sym_class] = STATE(1151), + [sym_function] = STATE(1151), + [sym_generator_function] = STATE(1151), + [sym_arrow_function] = STATE(1151), + [sym__call_signature] = STATE(3190), + [sym_call_expression] = STATE(1151), + [sym_new_expression] = STATE(1144), + [sym_await_expression] = STATE(1144), + [sym_member_expression] = STATE(837), + [sym_subscript_expression] = STATE(837), + [sym_assignment_expression] = STATE(1144), + [sym__augmented_assignment_lhs] = STATE(1927), + [sym_augmented_assignment_expression] = STATE(1144), + [sym_ternary_expression] = STATE(1144), + [sym_binary_expression] = STATE(1144), + [sym_unary_expression] = STATE(1144), + [sym_update_expression] = STATE(1144), + [sym_string] = STATE(1151), + [sym_template_string] = STATE(1151), + [sym_regex] = STATE(1151), + [sym_meta_property] = STATE(1151), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(845), + [sym_type_assertion] = STATE(1144), + [sym_as_expression] = STATE(1144), + [sym_internal_module] = STATE(1144), + [sym_nested_type_identifier] = STATE(2377), + [sym_generic_type] = STATE(2659), + [sym_type_arguments] = STATE(357), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2580), + [sym_identifier] = ACTIONS(1300), + [anon_sym_export] = ACTIONS(769), + [anon_sym_namespace] = ACTIONS(771), [anon_sym_LBRACE] = ACTIONS(509), - [anon_sym_type] = ACTIONS(751), - [anon_sym_typeof] = ACTIONS(775), + [anon_sym_type] = ACTIONS(769), + [anon_sym_typeof] = ACTIONS(791), [anon_sym_import] = ACTIONS(435), - [anon_sym_BANG] = ACTIONS(757), + [anon_sym_BANG] = ACTIONS(775), [anon_sym_LPAREN] = ACTIONS(515), - [anon_sym_await] = ACTIONS(759), - [anon_sym_yield] = ACTIONS(761), + [anon_sym_await] = ACTIONS(777), + [anon_sym_yield] = ACTIONS(779), [anon_sym_LBRACK] = ACTIONS(517), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(765), + [anon_sym_SLASH] = ACTIONS(781), [anon_sym_class] = ACTIONS(451), - [anon_sym_async] = ACTIONS(767), + [anon_sym_async] = ACTIONS(783), [anon_sym_function] = ACTIONS(455), - [anon_sym_new] = ACTIONS(903), - [anon_sym_PLUS] = ACTIONS(905), - [anon_sym_DASH] = ACTIONS(905), - [anon_sym_TILDE] = ACTIONS(757), - [anon_sym_void] = ACTIONS(775), - [anon_sym_delete] = ACTIONS(775), - [anon_sym_PLUS_PLUS] = ACTIONS(777), - [anon_sym_DASH_DASH] = ACTIONS(777), + [anon_sym_new] = ACTIONS(865), + [anon_sym_PLUS] = ACTIONS(867), + [anon_sym_DASH] = ACTIONS(867), + [anon_sym_TILDE] = ACTIONS(775), + [anon_sym_void] = ACTIONS(791), + [anon_sym_delete] = ACTIONS(791), + [anon_sym_PLUS_PLUS] = ACTIONS(793), + [anon_sym_DASH_DASH] = ACTIONS(793), [anon_sym_DQUOTE] = ACTIONS(475), [anon_sym_SQUOTE] = ACTIONS(477), [sym_comment] = ACTIONS(3), @@ -27417,86 +27379,178 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(485), [sym_undefined] = ACTIONS(485), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(751), - [anon_sym_get] = ACTIONS(751), - [anon_sym_set] = ACTIONS(751), - [anon_sym_declare] = ACTIONS(751), - [anon_sym_public] = ACTIONS(751), - [anon_sym_private] = ACTIONS(751), - [anon_sym_protected] = ACTIONS(751), - [anon_sym_module] = ACTIONS(751), - [anon_sym_any] = ACTIONS(751), - [anon_sym_number] = ACTIONS(751), - [anon_sym_boolean] = ACTIONS(751), - [anon_sym_string] = ACTIONS(751), - [anon_sym_symbol] = ACTIONS(751), - [sym_readonly] = ACTIONS(751), + [anon_sym_static] = ACTIONS(769), + [anon_sym_get] = ACTIONS(769), + [anon_sym_set] = ACTIONS(769), + [anon_sym_declare] = ACTIONS(769), + [anon_sym_public] = ACTIONS(769), + [anon_sym_private] = ACTIONS(769), + [anon_sym_protected] = ACTIONS(769), + [anon_sym_module] = ACTIONS(769), + [anon_sym_any] = ACTIONS(769), + [anon_sym_number] = ACTIONS(769), + [anon_sym_boolean] = ACTIONS(769), + [anon_sym_string] = ACTIONS(769), + [anon_sym_symbol] = ACTIONS(769), + [sym_readonly] = ACTIONS(769), }, - [159] = { - [sym_import] = STATE(1101), - [sym_parenthesized_expression] = STATE(948), - [sym__expression] = STATE(1342), - [sym_yield_expression] = STATE(1105), - [sym_object] = STATE(1654), - [sym_array] = STATE(1640), - [sym_nested_identifier] = STATE(1914), - [sym_class] = STATE(1101), - [sym_function] = STATE(1101), - [sym_generator_function] = STATE(1101), - [sym_arrow_function] = STATE(1101), - [sym__call_signature] = STATE(3002), - [sym_call_expression] = STATE(1101), - [sym_new_expression] = STATE(1105), - [sym_await_expression] = STATE(1105), - [sym_member_expression] = STATE(948), - [sym_subscript_expression] = STATE(948), - [sym_assignment_expression] = STATE(1105), + [158] = { + [sym_import] = STATE(1690), + [sym_parenthesized_expression] = STATE(834), + [sym__expression] = STATE(1228), + [sym_yield_expression] = STATE(1687), + [sym_object] = STATE(1538), + [sym_array] = STATE(1543), + [sym_nested_identifier] = STATE(3055), + [sym_class] = STATE(1690), + [sym_function] = STATE(1690), + [sym_generator_function] = STATE(1690), + [sym_arrow_function] = STATE(1690), + [sym__call_signature] = STATE(3133), + [sym_call_expression] = STATE(1690), + [sym_new_expression] = STATE(1687), + [sym_await_expression] = STATE(1687), + [sym_member_expression] = STATE(834), + [sym_subscript_expression] = STATE(834), + [sym_assignment_expression] = STATE(1687), [sym__augmented_assignment_lhs] = STATE(1921), - [sym_augmented_assignment_expression] = STATE(1105), - [sym_ternary_expression] = STATE(1105), - [sym_binary_expression] = STATE(1105), - [sym_unary_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_string] = STATE(1101), - [sym_template_string] = STATE(1101), - [sym_regex] = STATE(1101), - [sym_meta_property] = STATE(1101), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(949), - [sym_type_assertion] = STATE(1105), - [sym_as_expression] = STATE(1105), - [sym_internal_module] = STATE(1105), - [sym_nested_type_identifier] = STATE(2940), - [sym_generic_type] = STATE(441), - [sym_type_arguments] = STATE(324), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2497), - [sym_identifier] = ACTIONS(1314), - [anon_sym_export] = ACTIONS(635), - [anon_sym_namespace] = ACTIONS(637), + [sym_augmented_assignment_expression] = STATE(1687), + [sym_ternary_expression] = STATE(1687), + [sym_binary_expression] = STATE(1687), + [sym_unary_expression] = STATE(1687), + [sym_update_expression] = STATE(1687), + [sym_string] = STATE(1690), + [sym_template_string] = STATE(1690), + [sym_regex] = STATE(1690), + [sym_meta_property] = STATE(1690), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(846), + [sym_type_assertion] = STATE(1687), + [sym_as_expression] = STATE(1687), + [sym_internal_module] = STATE(1687), + [sym_nested_type_identifier] = STATE(2324), + [sym_generic_type] = STATE(2698), + [sym_type_arguments] = STATE(301), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2545), + [sym_identifier] = ACTIONS(1302), + [anon_sym_export] = ACTIONS(673), + [anon_sym_namespace] = ACTIONS(675), + [anon_sym_LBRACE] = ACTIONS(1270), + [anon_sym_type] = ACTIONS(673), + [anon_sym_typeof] = ACTIONS(707), + [anon_sym_import] = ACTIONS(681), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_await] = ACTIONS(687), + [anon_sym_yield] = ACTIONS(689), + [anon_sym_LBRACK] = ACTIONS(879), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(693), + [anon_sym_class] = ACTIONS(695), + [anon_sym_async] = ACTIONS(697), + [anon_sym_function] = ACTIONS(699), + [anon_sym_new] = ACTIONS(881), + [anon_sym_PLUS] = ACTIONS(883), + [anon_sym_DASH] = ACTIONS(883), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_void] = ACTIONS(707), + [anon_sym_delete] = ACTIONS(707), + [anon_sym_PLUS_PLUS] = ACTIONS(709), + [anon_sym_DASH_DASH] = ACTIONS(709), + [anon_sym_DQUOTE] = ACTIONS(711), + [anon_sym_SQUOTE] = ACTIONS(713), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(715), + [sym_number] = ACTIONS(885), + [sym_this] = ACTIONS(721), + [sym_super] = ACTIONS(721), + [sym_true] = ACTIONS(721), + [sym_false] = ACTIONS(721), + [sym_null] = ACTIONS(721), + [sym_undefined] = ACTIONS(721), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(673), + [anon_sym_get] = ACTIONS(673), + [anon_sym_set] = ACTIONS(673), + [anon_sym_declare] = ACTIONS(673), + [anon_sym_public] = ACTIONS(673), + [anon_sym_private] = ACTIONS(673), + [anon_sym_protected] = ACTIONS(673), + [anon_sym_module] = ACTIONS(673), + [anon_sym_any] = ACTIONS(673), + [anon_sym_number] = ACTIONS(673), + [anon_sym_boolean] = ACTIONS(673), + [anon_sym_string] = ACTIONS(673), + [anon_sym_symbol] = ACTIONS(673), + [sym_readonly] = ACTIONS(673), + }, + [159] = { + [sym_import] = STATE(1151), + [sym_parenthesized_expression] = STATE(837), + [sym__expression] = STATE(1215), + [sym_yield_expression] = STATE(1144), + [sym_object] = STATE(1495), + [sym_array] = STATE(1493), + [sym_nested_identifier] = STATE(1919), + [sym_class] = STATE(1151), + [sym_function] = STATE(1151), + [sym_generator_function] = STATE(1151), + [sym_arrow_function] = STATE(1151), + [sym__call_signature] = STATE(3190), + [sym_call_expression] = STATE(1151), + [sym_new_expression] = STATE(1144), + [sym_await_expression] = STATE(1144), + [sym_member_expression] = STATE(837), + [sym_subscript_expression] = STATE(837), + [sym_assignment_expression] = STATE(1144), + [sym__augmented_assignment_lhs] = STATE(1927), + [sym_augmented_assignment_expression] = STATE(1144), + [sym_ternary_expression] = STATE(1144), + [sym_binary_expression] = STATE(1144), + [sym_unary_expression] = STATE(1144), + [sym_update_expression] = STATE(1144), + [sym_string] = STATE(1151), + [sym_template_string] = STATE(1151), + [sym_regex] = STATE(1151), + [sym_meta_property] = STATE(1151), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(845), + [sym_type_assertion] = STATE(1144), + [sym_as_expression] = STATE(1144), + [sym_internal_module] = STATE(1144), + [sym_nested_type_identifier] = STATE(2816), + [sym_generic_type] = STATE(421), + [sym_type_arguments] = STATE(357), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2580), + [sym_identifier] = ACTIONS(1304), + [anon_sym_export] = ACTIONS(769), + [anon_sym_namespace] = ACTIONS(771), [anon_sym_LBRACE] = ACTIONS(509), - [anon_sym_type] = ACTIONS(635), - [anon_sym_typeof] = ACTIONS(659), + [anon_sym_type] = ACTIONS(769), + [anon_sym_typeof] = ACTIONS(791), [anon_sym_import] = ACTIONS(435), - [anon_sym_BANG] = ACTIONS(643), + [anon_sym_BANG] = ACTIONS(775), [anon_sym_LPAREN] = ACTIONS(515), - [anon_sym_await] = ACTIONS(645), - [anon_sym_yield] = ACTIONS(647), + [anon_sym_await] = ACTIONS(777), + [anon_sym_yield] = ACTIONS(779), [anon_sym_LBRACK] = ACTIONS(517), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(449), + [anon_sym_SLASH] = ACTIONS(781), [anon_sym_class] = ACTIONS(451), - [anon_sym_async] = ACTIONS(651), + [anon_sym_async] = ACTIONS(783), [anon_sym_function] = ACTIONS(455), [anon_sym_new] = ACTIONS(865), [anon_sym_PLUS] = ACTIONS(867), [anon_sym_DASH] = ACTIONS(867), - [anon_sym_TILDE] = ACTIONS(643), - [anon_sym_void] = ACTIONS(659), - [anon_sym_delete] = ACTIONS(659), - [anon_sym_PLUS_PLUS] = ACTIONS(661), - [anon_sym_DASH_DASH] = ACTIONS(661), + [anon_sym_TILDE] = ACTIONS(775), + [anon_sym_void] = ACTIONS(791), + [anon_sym_delete] = ACTIONS(791), + [anon_sym_PLUS_PLUS] = ACTIONS(793), + [anon_sym_DASH_DASH] = ACTIONS(793), [anon_sym_DQUOTE] = ACTIONS(475), [anon_sym_SQUOTE] = ACTIONS(477), [sym_comment] = ACTIONS(3), @@ -27509,41 +27563,133 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(485), [sym_undefined] = ACTIONS(485), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(635), - [anon_sym_get] = ACTIONS(635), - [anon_sym_set] = ACTIONS(635), - [anon_sym_declare] = ACTIONS(635), - [anon_sym_public] = ACTIONS(635), - [anon_sym_private] = ACTIONS(635), - [anon_sym_protected] = ACTIONS(635), - [anon_sym_module] = ACTIONS(635), - [anon_sym_any] = ACTIONS(635), - [anon_sym_number] = ACTIONS(635), - [anon_sym_boolean] = ACTIONS(635), - [anon_sym_string] = ACTIONS(635), - [anon_sym_symbol] = ACTIONS(635), - [sym_readonly] = ACTIONS(635), + [anon_sym_static] = ACTIONS(769), + [anon_sym_get] = ACTIONS(769), + [anon_sym_set] = ACTIONS(769), + [anon_sym_declare] = ACTIONS(769), + [anon_sym_public] = ACTIONS(769), + [anon_sym_private] = ACTIONS(769), + [anon_sym_protected] = ACTIONS(769), + [anon_sym_module] = ACTIONS(769), + [anon_sym_any] = ACTIONS(769), + [anon_sym_number] = ACTIONS(769), + [anon_sym_boolean] = ACTIONS(769), + [anon_sym_string] = ACTIONS(769), + [anon_sym_symbol] = ACTIONS(769), + [sym_readonly] = ACTIONS(769), }, [160] = { - [sym__declaration] = STATE(549), - [sym_variable_declaration] = STATE(598), - [sym_lexical_declaration] = STATE(598), - [sym_class_declaration] = STATE(598), - [sym_function_declaration] = STATE(598), - [sym_generator_function_declaration] = STATE(598), - [sym_decorator] = STATE(1905), - [sym_function_signature] = STATE(598), - [sym_ambient_declaration] = STATE(598), - [sym_abstract_class_declaration] = STATE(598), - [sym_module] = STATE(598), - [sym_internal_module] = STATE(561), - [sym_import_alias] = STATE(598), - [sym_interface_declaration] = STATE(598), - [sym_enum_declaration] = STATE(598), - [sym_type_alias_declaration] = STATE(598), - [aux_sym_export_statement_repeat1] = STATE(2572), + [sym_import] = STATE(1523), + [sym_parenthesized_expression] = STATE(768), + [sym__expression] = STATE(1141), + [sym_yield_expression] = STATE(1567), + [sym_object] = STATE(1357), + [sym_array] = STATE(1360), + [sym_nested_identifier] = STATE(1919), + [sym_class] = STATE(1523), + [sym_function] = STATE(1523), + [sym_generator_function] = STATE(1523), + [sym_arrow_function] = STATE(1523), + [sym__call_signature] = STATE(3196), + [sym_call_expression] = STATE(1523), + [sym_new_expression] = STATE(1567), + [sym_await_expression] = STATE(1567), + [sym_member_expression] = STATE(768), + [sym_subscript_expression] = STATE(768), + [sym_assignment_expression] = STATE(1567), + [sym__augmented_assignment_lhs] = STATE(1928), + [sym_augmented_assignment_expression] = STATE(1567), + [sym_ternary_expression] = STATE(1567), + [sym_binary_expression] = STATE(1567), + [sym_unary_expression] = STATE(1567), + [sym_update_expression] = STATE(1567), + [sym_string] = STATE(1523), + [sym_template_string] = STATE(1523), + [sym_regex] = STATE(1523), + [sym_meta_property] = STATE(1523), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(774), + [sym_type_assertion] = STATE(1567), + [sym_as_expression] = STATE(1567), + [sym_internal_module] = STATE(1567), + [sym_nested_type_identifier] = STATE(2816), + [sym_generic_type] = STATE(421), + [sym_type_arguments] = STATE(292), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2575), + [sym_identifier] = ACTIONS(1306), + [anon_sym_export] = ACTIONS(531), + [anon_sym_namespace] = ACTIONS(533), + [anon_sym_LBRACE] = ACTIONS(571), + [anon_sym_type] = ACTIONS(531), + [anon_sym_typeof] = ACTIONS(19), + [anon_sym_import] = ACTIONS(539), + [anon_sym_BANG] = ACTIONS(29), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(39), + [anon_sym_yield] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(545), + [anon_sym_async] = ACTIONS(547), + [anon_sym_function] = ACTIONS(549), + [anon_sym_new] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(29), + [anon_sym_void] = ACTIONS(19), + [anon_sym_delete] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_DQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(85), + [sym_number] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(531), + [anon_sym_get] = ACTIONS(531), + [anon_sym_set] = ACTIONS(531), + [anon_sym_declare] = ACTIONS(531), + [anon_sym_public] = ACTIONS(531), + [anon_sym_private] = ACTIONS(531), + [anon_sym_protected] = ACTIONS(531), + [anon_sym_module] = ACTIONS(531), + [anon_sym_any] = ACTIONS(531), + [anon_sym_number] = ACTIONS(531), + [anon_sym_boolean] = ACTIONS(531), + [anon_sym_string] = ACTIONS(531), + [anon_sym_symbol] = ACTIONS(531), + [sym_readonly] = ACTIONS(531), + }, + [161] = { + [sym__declaration] = STATE(551), + [sym_variable_declaration] = STATE(579), + [sym_lexical_declaration] = STATE(579), + [sym_class_declaration] = STATE(579), + [sym_function_declaration] = STATE(579), + [sym_generator_function_declaration] = STATE(579), + [sym_decorator] = STATE(1890), + [sym_function_signature] = STATE(579), + [sym_ambient_declaration] = STATE(579), + [sym_abstract_class_declaration] = STATE(579), + [sym_module] = STATE(579), + [sym_internal_module] = STATE(569), + [sym_import_alias] = STATE(579), + [sym_interface_declaration] = STATE(579), + [sym_enum_declaration] = STATE(579), + [sym_type_alias_declaration] = STATE(579), + [aux_sym_export_statement_repeat1] = STATE(2424), [anon_sym_STAR] = ACTIONS(808), - [anon_sym_EQ] = ACTIONS(1003), + [anon_sym_EQ] = ACTIONS(1013), [anon_sym_as] = ACTIONS(808), [anon_sym_namespace] = ACTIONS(1197), [anon_sym_COMMA] = ACTIONS(841), @@ -27556,7 +27702,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(841), [anon_sym_in] = ACTIONS(808), [anon_sym_SEMI] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(1262), + [anon_sym_COLON] = ACTIONS(1284), [anon_sym_LBRACK] = ACTIONS(1219), [anon_sym_LT] = ACTIONS(808), [anon_sym_GT] = ACTIONS(808), @@ -27565,8 +27711,8 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(1226), [anon_sym_async] = ACTIONS(1228), [anon_sym_function] = ACTIONS(1230), - [anon_sym_EQ_GT] = ACTIONS(1009), - [anon_sym_QMARK_DOT] = ACTIONS(1011), + [anon_sym_EQ_GT] = ACTIONS(1019), + [anon_sym_QMARK_DOT] = ACTIONS(1021), [anon_sym_PLUS_EQ] = ACTIONS(831), [anon_sym_DASH_EQ] = ACTIONS(831), [anon_sym_STAR_EQ] = ACTIONS(831), @@ -27609,146 +27755,54 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(841), [anon_sym_AT] = ACTIONS(91), [anon_sym_abstract] = ACTIONS(1232), - [anon_sym_declare] = ACTIONS(1234), - [anon_sym_module] = ACTIONS(1284), - [anon_sym_global] = ACTIONS(1286), + [anon_sym_declare] = ACTIONS(1286), + [anon_sym_module] = ACTIONS(1308), + [anon_sym_global] = ACTIONS(1262), [anon_sym_interface] = ACTIONS(1238), [anon_sym_enum] = ACTIONS(1240), [sym__automatic_semicolon] = ACTIONS(841), }, - [161] = { - [sym_import] = STATE(1498), - [sym_parenthesized_expression] = STATE(764), - [sym__expression] = STATE(1305), - [sym_yield_expression] = STATE(1518), - [sym_object] = STATE(1435), - [sym_array] = STATE(1433), - [sym_class] = STATE(1498), - [sym_function] = STATE(1498), - [sym_generator_function] = STATE(1498), - [sym_arrow_function] = STATE(1498), - [sym__call_signature] = STATE(3145), - [sym_call_expression] = STATE(1498), - [sym_new_expression] = STATE(1518), - [sym_await_expression] = STATE(1518), - [sym_member_expression] = STATE(764), - [sym_subscript_expression] = STATE(764), - [sym_assignment_expression] = STATE(1518), - [sym__augmented_assignment_lhs] = STATE(1925), - [sym_augmented_assignment_expression] = STATE(1518), - [sym_ternary_expression] = STATE(1518), - [sym_binary_expression] = STATE(1518), - [sym_unary_expression] = STATE(1518), - [sym_update_expression] = STATE(1518), - [sym_sequence_expression] = STATE(2978), - [sym_string] = STATE(1498), - [sym_template_string] = STATE(1498), - [sym_regex] = STATE(1498), - [sym_meta_property] = STATE(1498), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(772), - [sym_type_assertion] = STATE(1518), - [sym_as_expression] = STATE(1518), - [sym_internal_module] = STATE(1518), - [sym_type_arguments] = STATE(349), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2554), - [sym_identifier] = ACTIONS(587), - [anon_sym_export] = ACTIONS(589), - [anon_sym_namespace] = ACTIONS(593), - [anon_sym_LBRACE] = ACTIONS(595), - [anon_sym_type] = ACTIONS(589), - [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(597), - [anon_sym_BANG] = ACTIONS(29), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(39), - [anon_sym_SEMI] = ACTIONS(1316), - [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(601), - [anon_sym_async] = ACTIONS(603), - [anon_sym_function] = ACTIONS(605), - [anon_sym_new] = ACTIONS(75), - [anon_sym_PLUS] = ACTIONS(77), - [anon_sym_DASH] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(29), - [anon_sym_void] = ACTIONS(19), - [anon_sym_delete] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(85), - [sym_number] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(589), - [anon_sym_get] = ACTIONS(589), - [anon_sym_set] = ACTIONS(589), - [anon_sym_declare] = ACTIONS(589), - [anon_sym_public] = ACTIONS(589), - [anon_sym_private] = ACTIONS(589), - [anon_sym_protected] = ACTIONS(589), - [anon_sym_module] = ACTIONS(589), - [anon_sym_any] = ACTIONS(589), - [anon_sym_number] = ACTIONS(589), - [anon_sym_boolean] = ACTIONS(589), - [anon_sym_string] = ACTIONS(589), - [anon_sym_symbol] = ACTIONS(589), - [sym_readonly] = ACTIONS(589), - [sym__automatic_semicolon] = ACTIONS(1316), - }, [162] = { - [sym_import] = STATE(1101), - [sym_parenthesized_expression] = STATE(739), - [sym__expression] = STATE(1085), - [sym_yield_expression] = STATE(1105), - [sym_object] = STATE(1297), - [sym_array] = STATE(1296), - [sym_nested_identifier] = STATE(1914), - [sym_class] = STATE(1101), - [sym_function] = STATE(1101), - [sym_generator_function] = STATE(1101), - [sym_arrow_function] = STATE(1101), - [sym__call_signature] = STATE(3116), - [sym_call_expression] = STATE(1101), - [sym_new_expression] = STATE(1105), - [sym_await_expression] = STATE(1105), - [sym_member_expression] = STATE(739), - [sym_subscript_expression] = STATE(739), - [sym_assignment_expression] = STATE(1105), - [sym__augmented_assignment_lhs] = STATE(1920), - [sym_augmented_assignment_expression] = STATE(1105), - [sym_ternary_expression] = STATE(1105), - [sym_binary_expression] = STATE(1105), - [sym_unary_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_string] = STATE(1101), - [sym_template_string] = STATE(1101), - [sym_regex] = STATE(1101), - [sym_meta_property] = STATE(1101), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(755), - [sym_type_assertion] = STATE(1105), - [sym_as_expression] = STATE(1105), - [sym_internal_module] = STATE(1105), - [sym_nested_type_identifier] = STATE(2940), - [sym_generic_type] = STATE(441), - [sym_type_arguments] = STATE(361), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2497), - [sym_identifier] = ACTIONS(1318), + [sym_import] = STATE(1151), + [sym_parenthesized_expression] = STATE(759), + [sym__expression] = STATE(1064), + [sym_yield_expression] = STATE(1144), + [sym_object] = STATE(1257), + [sym_array] = STATE(1254), + [sym_nested_identifier] = STATE(1960), + [sym_class] = STATE(1151), + [sym_function] = STATE(1151), + [sym_generator_function] = STATE(1151), + [sym_arrow_function] = STATE(1151), + [sym__call_signature] = STATE(3082), + [sym_call_expression] = STATE(1151), + [sym_new_expression] = STATE(1144), + [sym_await_expression] = STATE(1144), + [sym_member_expression] = STATE(759), + [sym_subscript_expression] = STATE(759), + [sym_assignment_expression] = STATE(1144), + [sym__augmented_assignment_lhs] = STATE(1924), + [sym_augmented_assignment_expression] = STATE(1144), + [sym_ternary_expression] = STATE(1144), + [sym_binary_expression] = STATE(1144), + [sym_unary_expression] = STATE(1144), + [sym_update_expression] = STATE(1144), + [sym_string] = STATE(1151), + [sym_template_string] = STATE(1151), + [sym_regex] = STATE(1151), + [sym_meta_property] = STATE(1151), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(754), + [sym_type_assertion] = STATE(1144), + [sym_as_expression] = STATE(1144), + [sym_internal_module] = STATE(1144), + [sym_nested_type_identifier] = STATE(2909), + [sym_generic_type] = STATE(2006), + [sym_type_arguments] = STATE(326), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2580), + [sym_identifier] = ACTIONS(1310), [anon_sym_export] = ACTIONS(501), [anon_sym_namespace] = ACTIONS(507), [anon_sym_LBRACE] = ACTIONS(509), @@ -27801,138 +27855,46 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_readonly] = ACTIONS(501), }, [163] = { - [sym_import] = STATE(1682), - [sym_parenthesized_expression] = STATE(828), - [sym__expression] = STATE(1209), - [sym_yield_expression] = STATE(1680), - [sym_object] = STATE(1586), - [sym_array] = STATE(1585), - [sym_nested_identifier] = STATE(1914), - [sym_class] = STATE(1682), - [sym_function] = STATE(1682), - [sym_generator_function] = STATE(1682), - [sym_arrow_function] = STATE(1682), - [sym__call_signature] = STATE(3105), - [sym_call_expression] = STATE(1682), - [sym_new_expression] = STATE(1680), - [sym_await_expression] = STATE(1680), - [sym_member_expression] = STATE(828), - [sym_subscript_expression] = STATE(828), - [sym_assignment_expression] = STATE(1680), - [sym__augmented_assignment_lhs] = STATE(1918), - [sym_augmented_assignment_expression] = STATE(1680), - [sym_ternary_expression] = STATE(1680), - [sym_binary_expression] = STATE(1680), - [sym_unary_expression] = STATE(1680), - [sym_update_expression] = STATE(1680), - [sym_string] = STATE(1682), - [sym_template_string] = STATE(1682), - [sym_regex] = STATE(1682), - [sym_meta_property] = STATE(1682), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(827), - [sym_type_assertion] = STATE(1680), - [sym_as_expression] = STATE(1680), - [sym_internal_module] = STATE(1680), - [sym_nested_type_identifier] = STATE(2940), - [sym_generic_type] = STATE(441), - [sym_type_arguments] = STATE(256), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2529), - [sym_identifier] = ACTIONS(1320), - [anon_sym_export] = ACTIONS(531), - [anon_sym_namespace] = ACTIONS(533), - [anon_sym_LBRACE] = ACTIONS(1274), - [anon_sym_type] = ACTIONS(531), - [anon_sym_typeof] = ACTIONS(565), - [anon_sym_import] = ACTIONS(539), - [anon_sym_BANG] = ACTIONS(541), - [anon_sym_LPAREN] = ACTIONS(887), - [anon_sym_await] = ACTIONS(545), - [anon_sym_yield] = ACTIONS(547), - [anon_sym_LBRACK] = ACTIONS(889), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(551), - [anon_sym_class] = ACTIONS(553), - [anon_sym_async] = ACTIONS(555), - [anon_sym_function] = ACTIONS(557), - [anon_sym_new] = ACTIONS(891), - [anon_sym_PLUS] = ACTIONS(893), - [anon_sym_DASH] = ACTIONS(893), - [anon_sym_TILDE] = ACTIONS(541), - [anon_sym_void] = ACTIONS(565), - [anon_sym_delete] = ACTIONS(565), - [anon_sym_PLUS_PLUS] = ACTIONS(567), - [anon_sym_DASH_DASH] = ACTIONS(567), - [anon_sym_DQUOTE] = ACTIONS(569), - [anon_sym_SQUOTE] = ACTIONS(571), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(573), - [sym_number] = ACTIONS(895), - [sym_this] = ACTIONS(579), - [sym_super] = ACTIONS(579), - [sym_true] = ACTIONS(579), - [sym_false] = ACTIONS(579), - [sym_null] = ACTIONS(579), - [sym_undefined] = ACTIONS(579), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(531), - [anon_sym_get] = ACTIONS(531), - [anon_sym_set] = ACTIONS(531), - [anon_sym_declare] = ACTIONS(531), - [anon_sym_public] = ACTIONS(531), - [anon_sym_private] = ACTIONS(531), - [anon_sym_protected] = ACTIONS(531), - [anon_sym_module] = ACTIONS(531), - [anon_sym_any] = ACTIONS(531), - [anon_sym_number] = ACTIONS(531), - [anon_sym_boolean] = ACTIONS(531), - [anon_sym_string] = ACTIONS(531), - [anon_sym_symbol] = ACTIONS(531), - [sym_readonly] = ACTIONS(531), - }, - [164] = { - [sym_import] = STATE(1101), - [sym_parenthesized_expression] = STATE(739), - [sym__expression] = STATE(1085), - [sym_yield_expression] = STATE(1105), - [sym_object] = STATE(1297), - [sym_array] = STATE(1296), - [sym_nested_identifier] = STATE(1960), - [sym_class] = STATE(1101), - [sym_function] = STATE(1101), - [sym_generator_function] = STATE(1101), - [sym_arrow_function] = STATE(1101), - [sym__call_signature] = STATE(3116), - [sym_call_expression] = STATE(1101), - [sym_new_expression] = STATE(1105), - [sym_await_expression] = STATE(1105), - [sym_member_expression] = STATE(739), - [sym_subscript_expression] = STATE(739), - [sym_assignment_expression] = STATE(1105), - [sym__augmented_assignment_lhs] = STATE(1920), - [sym_augmented_assignment_expression] = STATE(1105), - [sym_ternary_expression] = STATE(1105), - [sym_binary_expression] = STATE(1105), - [sym_unary_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_string] = STATE(1101), - [sym_template_string] = STATE(1101), - [sym_regex] = STATE(1101), - [sym_meta_property] = STATE(1101), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(755), - [sym_type_assertion] = STATE(1105), - [sym_as_expression] = STATE(1105), - [sym_internal_module] = STATE(1105), - [sym_nested_type_identifier] = STATE(2783), - [sym_generic_type] = STATE(1973), - [sym_type_arguments] = STATE(361), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2497), - [sym_identifier] = ACTIONS(1322), + [sym_import] = STATE(1151), + [sym_parenthesized_expression] = STATE(759), + [sym__expression] = STATE(1064), + [sym_yield_expression] = STATE(1144), + [sym_object] = STATE(1257), + [sym_array] = STATE(1254), + [sym_nested_identifier] = STATE(1919), + [sym_class] = STATE(1151), + [sym_function] = STATE(1151), + [sym_generator_function] = STATE(1151), + [sym_arrow_function] = STATE(1151), + [sym__call_signature] = STATE(3082), + [sym_call_expression] = STATE(1151), + [sym_new_expression] = STATE(1144), + [sym_await_expression] = STATE(1144), + [sym_member_expression] = STATE(759), + [sym_subscript_expression] = STATE(759), + [sym_assignment_expression] = STATE(1144), + [sym__augmented_assignment_lhs] = STATE(1924), + [sym_augmented_assignment_expression] = STATE(1144), + [sym_ternary_expression] = STATE(1144), + [sym_binary_expression] = STATE(1144), + [sym_unary_expression] = STATE(1144), + [sym_update_expression] = STATE(1144), + [sym_string] = STATE(1151), + [sym_template_string] = STATE(1151), + [sym_regex] = STATE(1151), + [sym_meta_property] = STATE(1151), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(754), + [sym_type_assertion] = STATE(1144), + [sym_as_expression] = STATE(1144), + [sym_internal_module] = STATE(1144), + [sym_nested_type_identifier] = STATE(2816), + [sym_generic_type] = STATE(421), + [sym_type_arguments] = STATE(326), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2580), + [sym_identifier] = ACTIONS(1312), [anon_sym_export] = ACTIONS(501), [anon_sym_namespace] = ACTIONS(507), [anon_sym_LBRACE] = ACTIONS(509), @@ -27984,71 +27946,255 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(501), [sym_readonly] = ACTIONS(501), }, + [164] = { + [sym_import] = STATE(1151), + [sym_parenthesized_expression] = STATE(958), + [sym__expression] = STATE(1661), + [sym_yield_expression] = STATE(1144), + [sym_object] = STATE(1718), + [sym_array] = STATE(1716), + [sym_class] = STATE(1151), + [sym_function] = STATE(1151), + [sym_generator_function] = STATE(1151), + [sym_arrow_function] = STATE(1151), + [sym__call_signature] = STATE(3024), + [sym_call_expression] = STATE(1151), + [sym_new_expression] = STATE(1144), + [sym_await_expression] = STATE(1144), + [sym_member_expression] = STATE(958), + [sym_subscript_expression] = STATE(958), + [sym_assignment_expression] = STATE(1144), + [sym__augmented_assignment_lhs] = STATE(1925), + [sym_augmented_assignment_expression] = STATE(1144), + [sym_ternary_expression] = STATE(1144), + [sym_binary_expression] = STATE(1144), + [sym_unary_expression] = STATE(1144), + [sym_update_expression] = STATE(1144), + [sym_string] = STATE(1151), + [sym_template_string] = STATE(1151), + [sym_regex] = STATE(1151), + [sym_meta_property] = STATE(1151), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(959), + [sym_type_assertion] = STATE(1144), + [sym_as_expression] = STATE(1144), + [sym_internal_module] = STATE(1144), + [sym_type_arguments] = STATE(395), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2580), + [sym_identifier] = ACTIONS(1314), + [anon_sym_export] = ACTIONS(1316), + [anon_sym_namespace] = ACTIONS(1318), + [anon_sym_LBRACE] = ACTIONS(509), + [anon_sym_type] = ACTIONS(1316), + [anon_sym_typeof] = ACTIONS(601), + [anon_sym_import] = ACTIONS(435), + [anon_sym_var] = ACTIONS(1320), + [anon_sym_let] = ACTIONS(1320), + [anon_sym_const] = ACTIONS(1320), + [anon_sym_BANG] = ACTIONS(585), + [anon_sym_LPAREN] = ACTIONS(515), + [anon_sym_await] = ACTIONS(587), + [anon_sym_yield] = ACTIONS(589), + [anon_sym_LBRACK] = ACTIONS(517), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(449), + [anon_sym_class] = ACTIONS(451), + [anon_sym_async] = ACTIONS(1322), + [anon_sym_function] = ACTIONS(455), + [anon_sym_new] = ACTIONS(903), + [anon_sym_PLUS] = ACTIONS(905), + [anon_sym_DASH] = ACTIONS(905), + [anon_sym_TILDE] = ACTIONS(585), + [anon_sym_void] = ACTIONS(601), + [anon_sym_delete] = ACTIONS(601), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_DQUOTE] = ACTIONS(475), + [anon_sym_SQUOTE] = ACTIONS(477), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(479), + [sym_number] = ACTIONS(527), + [sym_this] = ACTIONS(485), + [sym_super] = ACTIONS(485), + [sym_true] = ACTIONS(485), + [sym_false] = ACTIONS(485), + [sym_null] = ACTIONS(485), + [sym_undefined] = ACTIONS(485), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(1316), + [anon_sym_get] = ACTIONS(1316), + [anon_sym_set] = ACTIONS(1316), + [anon_sym_declare] = ACTIONS(1316), + [anon_sym_public] = ACTIONS(1316), + [anon_sym_private] = ACTIONS(1316), + [anon_sym_protected] = ACTIONS(1316), + [anon_sym_module] = ACTIONS(1316), + [anon_sym_any] = ACTIONS(1316), + [anon_sym_number] = ACTIONS(1316), + [anon_sym_boolean] = ACTIONS(1316), + [anon_sym_string] = ACTIONS(1316), + [anon_sym_symbol] = ACTIONS(1316), + [sym_readonly] = ACTIONS(1316), + }, [165] = { - [sym_import] = STATE(1498), - [sym_parenthesized_expression] = STATE(952), - [sym__expression] = STATE(1425), - [sym_yield_expression] = STATE(1518), - [sym_object] = STATE(1677), - [sym_array] = STATE(1671), - [sym_nested_identifier] = STATE(1914), - [sym_class] = STATE(1498), - [sym_function] = STATE(1498), - [sym_generator_function] = STATE(1498), - [sym_arrow_function] = STATE(1498), - [sym__call_signature] = STATE(3059), - [sym_call_expression] = STATE(1498), - [sym_new_expression] = STATE(1518), - [sym_await_expression] = STATE(1518), - [sym_member_expression] = STATE(952), - [sym_subscript_expression] = STATE(952), - [sym_assignment_expression] = STATE(1518), - [sym__augmented_assignment_lhs] = STATE(1919), - [sym_augmented_assignment_expression] = STATE(1518), - [sym_ternary_expression] = STATE(1518), - [sym_binary_expression] = STATE(1518), - [sym_unary_expression] = STATE(1518), - [sym_update_expression] = STATE(1518), - [sym_string] = STATE(1498), - [sym_template_string] = STATE(1498), - [sym_regex] = STATE(1498), - [sym_meta_property] = STATE(1498), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(946), - [sym_type_assertion] = STATE(1518), - [sym_as_expression] = STATE(1518), - [sym_internal_module] = STATE(1518), - [sym_nested_type_identifier] = STATE(2940), - [sym_generic_type] = STATE(441), - [sym_type_arguments] = STATE(263), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2554), + [sym_import] = STATE(1151), + [sym_parenthesized_expression] = STATE(837), + [sym__expression] = STATE(1174), + [sym_yield_expression] = STATE(1144), + [sym_object] = STATE(1495), + [sym_array] = STATE(1493), + [sym_nested_identifier] = STATE(3123), + [sym_class] = STATE(1151), + [sym_function] = STATE(1151), + [sym_generator_function] = STATE(1151), + [sym_arrow_function] = STATE(1151), + [sym__call_signature] = STATE(3190), + [sym_call_expression] = STATE(1151), + [sym_new_expression] = STATE(1144), + [sym_await_expression] = STATE(1144), + [sym_member_expression] = STATE(837), + [sym_subscript_expression] = STATE(837), + [sym_assignment_expression] = STATE(1144), + [sym__augmented_assignment_lhs] = STATE(1927), + [sym_augmented_assignment_expression] = STATE(1144), + [sym_ternary_expression] = STATE(1144), + [sym_binary_expression] = STATE(1144), + [sym_unary_expression] = STATE(1144), + [sym_update_expression] = STATE(1144), + [sym_string] = STATE(1151), + [sym_template_string] = STATE(1151), + [sym_regex] = STATE(1151), + [sym_meta_property] = STATE(1151), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(845), + [sym_type_assertion] = STATE(1144), + [sym_as_expression] = STATE(1144), + [sym_internal_module] = STATE(1144), + [sym_nested_type_identifier] = STATE(2172), + [sym_generic_type] = STATE(2551), + [sym_type_arguments] = STATE(357), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2580), [sym_identifier] = ACTIONS(1324), - [anon_sym_export] = ACTIONS(675), - [anon_sym_namespace] = ACTIONS(677), - [anon_sym_LBRACE] = ACTIONS(595), - [anon_sym_type] = ACTIONS(675), - [anon_sym_typeof] = ACTIONS(697), - [anon_sym_import] = ACTIONS(597), - [anon_sym_BANG] = ACTIONS(681), + [anon_sym_export] = ACTIONS(769), + [anon_sym_namespace] = ACTIONS(771), + [anon_sym_LBRACE] = ACTIONS(509), + [anon_sym_type] = ACTIONS(769), + [anon_sym_typeof] = ACTIONS(791), + [anon_sym_import] = ACTIONS(435), + [anon_sym_BANG] = ACTIONS(775), + [anon_sym_LPAREN] = ACTIONS(515), + [anon_sym_await] = ACTIONS(777), + [anon_sym_yield] = ACTIONS(779), + [anon_sym_LBRACK] = ACTIONS(517), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(781), + [anon_sym_class] = ACTIONS(451), + [anon_sym_async] = ACTIONS(783), + [anon_sym_function] = ACTIONS(455), + [anon_sym_new] = ACTIONS(865), + [anon_sym_PLUS] = ACTIONS(867), + [anon_sym_DASH] = ACTIONS(867), + [anon_sym_TILDE] = ACTIONS(775), + [anon_sym_void] = ACTIONS(791), + [anon_sym_delete] = ACTIONS(791), + [anon_sym_PLUS_PLUS] = ACTIONS(793), + [anon_sym_DASH_DASH] = ACTIONS(793), + [anon_sym_DQUOTE] = ACTIONS(475), + [anon_sym_SQUOTE] = ACTIONS(477), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(479), + [sym_number] = ACTIONS(527), + [sym_this] = ACTIONS(485), + [sym_super] = ACTIONS(485), + [sym_true] = ACTIONS(485), + [sym_false] = ACTIONS(485), + [sym_null] = ACTIONS(485), + [sym_undefined] = ACTIONS(485), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(769), + [anon_sym_get] = ACTIONS(769), + [anon_sym_set] = ACTIONS(769), + [anon_sym_declare] = ACTIONS(769), + [anon_sym_public] = ACTIONS(769), + [anon_sym_private] = ACTIONS(769), + [anon_sym_protected] = ACTIONS(769), + [anon_sym_module] = ACTIONS(769), + [anon_sym_any] = ACTIONS(769), + [anon_sym_number] = ACTIONS(769), + [anon_sym_boolean] = ACTIONS(769), + [anon_sym_string] = ACTIONS(769), + [anon_sym_symbol] = ACTIONS(769), + [sym_readonly] = ACTIONS(769), + }, + [166] = { + [sym_import] = STATE(1523), + [sym_parenthesized_expression] = STATE(955), + [sym__expression] = STATE(1362), + [sym_yield_expression] = STATE(1567), + [sym_object] = STATE(1636), + [sym_array] = STATE(1643), + [sym_nested_identifier] = STATE(1919), + [sym_class] = STATE(1523), + [sym_function] = STATE(1523), + [sym_generator_function] = STATE(1523), + [sym_arrow_function] = STATE(1523), + [sym__call_signature] = STATE(3078), + [sym_call_expression] = STATE(1523), + [sym_new_expression] = STATE(1567), + [sym_await_expression] = STATE(1567), + [sym_member_expression] = STATE(955), + [sym_subscript_expression] = STATE(955), + [sym_assignment_expression] = STATE(1567), + [sym__augmented_assignment_lhs] = STATE(1929), + [sym_augmented_assignment_expression] = STATE(1567), + [sym_ternary_expression] = STATE(1567), + [sym_binary_expression] = STATE(1567), + [sym_unary_expression] = STATE(1567), + [sym_update_expression] = STATE(1567), + [sym_string] = STATE(1523), + [sym_template_string] = STATE(1523), + [sym_regex] = STATE(1523), + [sym_meta_property] = STATE(1523), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(953), + [sym_type_assertion] = STATE(1567), + [sym_as_expression] = STATE(1567), + [sym_internal_module] = STATE(1567), + [sym_nested_type_identifier] = STATE(2816), + [sym_generic_type] = STATE(421), + [sym_type_arguments] = STATE(384), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2575), + [sym_identifier] = ACTIONS(1326), + [anon_sym_export] = ACTIONS(635), + [anon_sym_namespace] = ACTIONS(637), + [anon_sym_LBRACE] = ACTIONS(571), + [anon_sym_type] = ACTIONS(635), + [anon_sym_typeof] = ACTIONS(657), + [anon_sym_import] = ACTIONS(539), + [anon_sym_BANG] = ACTIONS(641), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(683), - [anon_sym_yield] = ACTIONS(685), + [anon_sym_await] = ACTIONS(643), + [anon_sym_yield] = ACTIONS(645), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(601), - [anon_sym_async] = ACTIONS(689), - [anon_sym_function] = ACTIONS(605), - [anon_sym_new] = ACTIONS(875), - [anon_sym_PLUS] = ACTIONS(877), - [anon_sym_DASH] = ACTIONS(877), - [anon_sym_TILDE] = ACTIONS(681), - [anon_sym_void] = ACTIONS(697), - [anon_sym_delete] = ACTIONS(697), - [anon_sym_PLUS_PLUS] = ACTIONS(699), - [anon_sym_DASH_DASH] = ACTIONS(699), + [anon_sym_class] = ACTIONS(545), + [anon_sym_async] = ACTIONS(649), + [anon_sym_function] = ACTIONS(549), + [anon_sym_new] = ACTIONS(893), + [anon_sym_PLUS] = ACTIONS(895), + [anon_sym_DASH] = ACTIONS(895), + [anon_sym_TILDE] = ACTIONS(641), + [anon_sym_void] = ACTIONS(657), + [anon_sym_delete] = ACTIONS(657), + [anon_sym_PLUS_PLUS] = ACTIONS(659), + [anon_sym_DASH_DASH] = ACTIONS(659), [anon_sym_DQUOTE] = ACTIONS(81), [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), @@ -28061,62 +28207,60 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(675), - [anon_sym_get] = ACTIONS(675), - [anon_sym_set] = ACTIONS(675), - [anon_sym_declare] = ACTIONS(675), - [anon_sym_public] = ACTIONS(675), - [anon_sym_private] = ACTIONS(675), - [anon_sym_protected] = ACTIONS(675), - [anon_sym_module] = ACTIONS(675), - [anon_sym_any] = ACTIONS(675), - [anon_sym_number] = ACTIONS(675), - [anon_sym_boolean] = ACTIONS(675), - [anon_sym_string] = ACTIONS(675), - [anon_sym_symbol] = ACTIONS(675), - [sym_readonly] = ACTIONS(675), + [anon_sym_static] = ACTIONS(635), + [anon_sym_get] = ACTIONS(635), + [anon_sym_set] = ACTIONS(635), + [anon_sym_declare] = ACTIONS(635), + [anon_sym_public] = ACTIONS(635), + [anon_sym_private] = ACTIONS(635), + [anon_sym_protected] = ACTIONS(635), + [anon_sym_module] = ACTIONS(635), + [anon_sym_any] = ACTIONS(635), + [anon_sym_number] = ACTIONS(635), + [anon_sym_boolean] = ACTIONS(635), + [anon_sym_string] = ACTIONS(635), + [anon_sym_symbol] = ACTIONS(635), + [sym_readonly] = ACTIONS(635), }, - [166] = { - [sym_import] = STATE(1101), - [sym_parenthesized_expression] = STATE(739), - [sym__expression] = STATE(1085), - [sym_yield_expression] = STATE(1105), - [sym_object] = STATE(1297), - [sym_array] = STATE(1296), - [sym_nested_identifier] = STATE(1914), - [sym_class] = STATE(1101), - [sym_function] = STATE(1101), - [sym_generator_function] = STATE(1101), - [sym_arrow_function] = STATE(1101), - [sym__call_signature] = STATE(3116), - [sym_call_expression] = STATE(1101), - [sym_new_expression] = STATE(1105), - [sym_await_expression] = STATE(1105), - [sym_member_expression] = STATE(739), - [sym_subscript_expression] = STATE(739), - [sym_assignment_expression] = STATE(1105), - [sym__augmented_assignment_lhs] = STATE(1920), - [sym_augmented_assignment_expression] = STATE(1105), - [sym_ternary_expression] = STATE(1105), - [sym_binary_expression] = STATE(1105), - [sym_unary_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_string] = STATE(1101), - [sym_template_string] = STATE(1101), - [sym_regex] = STATE(1101), - [sym_meta_property] = STATE(1101), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(755), - [sym_type_assertion] = STATE(1105), - [sym_as_expression] = STATE(1105), - [sym_internal_module] = STATE(1105), - [sym_nested_type_identifier] = STATE(2940), - [sym_generic_type] = STATE(441), - [sym_type_arguments] = STATE(361), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2497), - [sym_identifier] = ACTIONS(1326), + [167] = { + [sym_import] = STATE(1151), + [sym_parenthesized_expression] = STATE(759), + [sym__expression] = STATE(1476), + [sym_yield_expression] = STATE(1144), + [sym_object] = STATE(1257), + [sym_array] = STATE(1254), + [sym_class] = STATE(1151), + [sym_function] = STATE(1151), + [sym_generator_function] = STATE(1151), + [sym_arrow_function] = STATE(1151), + [sym__call_signature] = STATE(3082), + [sym_call_expression] = STATE(1151), + [sym_new_expression] = STATE(1144), + [sym_await_expression] = STATE(1144), + [sym_member_expression] = STATE(759), + [sym_subscript_expression] = STATE(759), + [sym_assignment_expression] = STATE(1144), + [sym__augmented_assignment_lhs] = STATE(1924), + [sym_augmented_assignment_expression] = STATE(1144), + [sym_ternary_expression] = STATE(1144), + [sym_binary_expression] = STATE(1144), + [sym_unary_expression] = STATE(1144), + [sym_update_expression] = STATE(1144), + [sym_sequence_expression] = STATE(3058), + [sym_string] = STATE(1151), + [sym_template_string] = STATE(1151), + [sym_regex] = STATE(1151), + [sym_meta_property] = STATE(1151), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(754), + [sym_type_assertion] = STATE(1144), + [sym_as_expression] = STATE(1144), + [sym_internal_module] = STATE(1144), + [sym_type_arguments] = STATE(326), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2580), + [sym_identifier] = ACTIONS(499), [anon_sym_export] = ACTIONS(501), [anon_sym_namespace] = ACTIONS(507), [anon_sym_LBRACE] = ACTIONS(509), @@ -28125,6 +28269,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_import] = ACTIONS(435), [anon_sym_BANG] = ACTIONS(437), [anon_sym_LPAREN] = ACTIONS(515), + [anon_sym_RPAREN] = ACTIONS(1328), [anon_sym_await] = ACTIONS(443), [anon_sym_yield] = ACTIONS(445), [anon_sym_LBRACK] = ACTIONS(517), @@ -28168,44 +28313,44 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(501), [sym_readonly] = ACTIONS(501), }, - [167] = { - [sym_import] = STATE(1101), - [sym_parenthesized_expression] = STATE(739), - [sym__expression] = STATE(1379), - [sym_yield_expression] = STATE(1105), - [sym_object] = STATE(1297), - [sym_array] = STATE(1296), - [sym_class] = STATE(1101), - [sym_function] = STATE(1101), - [sym_generator_function] = STATE(1101), - [sym_arrow_function] = STATE(1101), - [sym__call_signature] = STATE(3116), - [sym_call_expression] = STATE(1101), - [sym_new_expression] = STATE(1105), - [sym_await_expression] = STATE(1105), - [sym_member_expression] = STATE(739), - [sym_subscript_expression] = STATE(739), - [sym_assignment_expression] = STATE(1105), - [sym__augmented_assignment_lhs] = STATE(1920), - [sym_augmented_assignment_expression] = STATE(1105), - [sym_ternary_expression] = STATE(1105), - [sym_binary_expression] = STATE(1105), - [sym_unary_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_sequence_expression] = STATE(3096), - [sym_string] = STATE(1101), - [sym_template_string] = STATE(1101), - [sym_regex] = STATE(1101), - [sym_meta_property] = STATE(1101), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(755), - [sym_type_assertion] = STATE(1105), - [sym_as_expression] = STATE(1105), - [sym_internal_module] = STATE(1105), - [sym_type_arguments] = STATE(361), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2497), + [168] = { + [sym_import] = STATE(1151), + [sym_parenthesized_expression] = STATE(759), + [sym__expression] = STATE(1363), + [sym_yield_expression] = STATE(1144), + [sym_object] = STATE(1257), + [sym_array] = STATE(1254), + [sym_class] = STATE(1151), + [sym_function] = STATE(1151), + [sym_generator_function] = STATE(1151), + [sym_arrow_function] = STATE(1151), + [sym__call_signature] = STATE(3082), + [sym_call_expression] = STATE(1151), + [sym_new_expression] = STATE(1144), + [sym_await_expression] = STATE(1144), + [sym_member_expression] = STATE(759), + [sym_subscript_expression] = STATE(759), + [sym_assignment_expression] = STATE(1144), + [sym__augmented_assignment_lhs] = STATE(1924), + [sym_augmented_assignment_expression] = STATE(1144), + [sym_ternary_expression] = STATE(1144), + [sym_binary_expression] = STATE(1144), + [sym_unary_expression] = STATE(1144), + [sym_update_expression] = STATE(1144), + [sym_sequence_expression] = STATE(3142), + [sym_string] = STATE(1151), + [sym_template_string] = STATE(1151), + [sym_regex] = STATE(1151), + [sym_meta_property] = STATE(1151), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(754), + [sym_type_assertion] = STATE(1144), + [sym_as_expression] = STATE(1144), + [sym_internal_module] = STATE(1144), + [sym_type_arguments] = STATE(326), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2580), [sym_identifier] = ACTIONS(499), [anon_sym_export] = ACTIONS(501), [anon_sym_namespace] = ACTIONS(507), @@ -28215,7 +28360,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_import] = ACTIONS(435), [anon_sym_BANG] = ACTIONS(437), [anon_sym_LPAREN] = ACTIONS(515), - [anon_sym_RPAREN] = ACTIONS(1328), + [anon_sym_RPAREN] = ACTIONS(1330), [anon_sym_await] = ACTIONS(443), [anon_sym_yield] = ACTIONS(445), [anon_sym_LBRACK] = ACTIONS(517), @@ -28259,54 +28404,323 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(501), [sym_readonly] = ACTIONS(501), }, - [168] = { - [sym_import] = STATE(1101), - [sym_parenthesized_expression] = STATE(739), - [sym__expression] = STATE(1348), - [sym_yield_expression] = STATE(1105), - [sym_object] = STATE(1297), - [sym_array] = STATE(1296), - [sym_class] = STATE(1101), - [sym_function] = STATE(1101), - [sym_generator_function] = STATE(1101), - [sym_arrow_function] = STATE(1101), - [sym__call_signature] = STATE(3116), - [sym_call_expression] = STATE(1101), - [sym_new_expression] = STATE(1105), - [sym_await_expression] = STATE(1105), - [sym_member_expression] = STATE(739), - [sym_subscript_expression] = STATE(739), - [sym_assignment_expression] = STATE(1105), - [sym__augmented_assignment_lhs] = STATE(1920), - [sym_augmented_assignment_expression] = STATE(1105), - [sym_ternary_expression] = STATE(1105), - [sym_binary_expression] = STATE(1105), - [sym_unary_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_sequence_expression] = STATE(3070), - [sym_string] = STATE(1101), - [sym_template_string] = STATE(1101), - [sym_regex] = STATE(1101), - [sym_meta_property] = STATE(1101), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(755), - [sym_type_assertion] = STATE(1105), - [sym_as_expression] = STATE(1105), - [sym_internal_module] = STATE(1105), - [sym_type_arguments] = STATE(361), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2497), + [169] = { + [sym_import] = STATE(1523), + [sym_statement_block] = STATE(1594), + [sym_parenthesized_expression] = STATE(768), + [sym__expression] = STATE(1187), + [sym_yield_expression] = STATE(1567), + [sym_object] = STATE(1357), + [sym_array] = STATE(1360), + [sym_class] = STATE(1523), + [sym_function] = STATE(1523), + [sym_generator_function] = STATE(1523), + [sym_arrow_function] = STATE(1523), + [sym__call_signature] = STATE(3196), + [sym_call_expression] = STATE(1523), + [sym_new_expression] = STATE(1567), + [sym_await_expression] = STATE(1567), + [sym_member_expression] = STATE(768), + [sym_subscript_expression] = STATE(768), + [sym_assignment_expression] = STATE(1567), + [sym__augmented_assignment_lhs] = STATE(1928), + [sym_augmented_assignment_expression] = STATE(1567), + [sym_ternary_expression] = STATE(1567), + [sym_binary_expression] = STATE(1567), + [sym_unary_expression] = STATE(1567), + [sym_update_expression] = STATE(1567), + [sym_string] = STATE(1523), + [sym_template_string] = STATE(1523), + [sym_regex] = STATE(1523), + [sym_meta_property] = STATE(1523), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(774), + [sym_type_assertion] = STATE(1567), + [sym_as_expression] = STATE(1567), + [sym_internal_module] = STATE(1567), + [sym_type_arguments] = STATE(292), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2575), + [sym_identifier] = ACTIONS(567), + [anon_sym_export] = ACTIONS(531), + [anon_sym_namespace] = ACTIONS(533), + [anon_sym_LBRACE] = ACTIONS(1332), + [anon_sym_type] = ACTIONS(531), + [anon_sym_typeof] = ACTIONS(19), + [anon_sym_import] = ACTIONS(539), + [anon_sym_BANG] = ACTIONS(29), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(39), + [anon_sym_yield] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(545), + [anon_sym_async] = ACTIONS(547), + [anon_sym_function] = ACTIONS(549), + [anon_sym_new] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(29), + [anon_sym_void] = ACTIONS(19), + [anon_sym_delete] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_DQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(85), + [sym_number] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(531), + [anon_sym_get] = ACTIONS(531), + [anon_sym_set] = ACTIONS(531), + [anon_sym_declare] = ACTIONS(531), + [anon_sym_public] = ACTIONS(531), + [anon_sym_private] = ACTIONS(531), + [anon_sym_protected] = ACTIONS(531), + [anon_sym_module] = ACTIONS(531), + [anon_sym_any] = ACTIONS(531), + [anon_sym_number] = ACTIONS(531), + [anon_sym_boolean] = ACTIONS(531), + [anon_sym_string] = ACTIONS(531), + [anon_sym_symbol] = ACTIONS(531), + [sym_readonly] = ACTIONS(531), + }, + [170] = { + [sym_import] = STATE(1523), + [sym_statement_block] = STATE(1484), + [sym_parenthesized_expression] = STATE(955), + [sym__expression] = STATE(1346), + [sym_yield_expression] = STATE(1567), + [sym_object] = STATE(1636), + [sym_array] = STATE(1643), + [sym_class] = STATE(1523), + [sym_function] = STATE(1523), + [sym_generator_function] = STATE(1523), + [sym_arrow_function] = STATE(1523), + [sym__call_signature] = STATE(3078), + [sym_call_expression] = STATE(1523), + [sym_new_expression] = STATE(1567), + [sym_await_expression] = STATE(1567), + [sym_member_expression] = STATE(955), + [sym_subscript_expression] = STATE(955), + [sym_assignment_expression] = STATE(1567), + [sym__augmented_assignment_lhs] = STATE(1929), + [sym_augmented_assignment_expression] = STATE(1567), + [sym_ternary_expression] = STATE(1567), + [sym_binary_expression] = STATE(1567), + [sym_unary_expression] = STATE(1567), + [sym_update_expression] = STATE(1567), + [sym_string] = STATE(1523), + [sym_template_string] = STATE(1523), + [sym_regex] = STATE(1523), + [sym_meta_property] = STATE(1523), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(953), + [sym_type_assertion] = STATE(1567), + [sym_as_expression] = STATE(1567), + [sym_internal_module] = STATE(1567), + [sym_type_arguments] = STATE(384), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2575), + [sym_identifier] = ACTIONS(887), + [anon_sym_export] = ACTIONS(635), + [anon_sym_namespace] = ACTIONS(637), + [anon_sym_LBRACE] = ACTIONS(1332), + [anon_sym_type] = ACTIONS(635), + [anon_sym_typeof] = ACTIONS(657), + [anon_sym_import] = ACTIONS(539), + [anon_sym_BANG] = ACTIONS(641), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(643), + [anon_sym_yield] = ACTIONS(645), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(545), + [anon_sym_async] = ACTIONS(649), + [anon_sym_function] = ACTIONS(549), + [anon_sym_new] = ACTIONS(893), + [anon_sym_PLUS] = ACTIONS(895), + [anon_sym_DASH] = ACTIONS(895), + [anon_sym_TILDE] = ACTIONS(641), + [anon_sym_void] = ACTIONS(657), + [anon_sym_delete] = ACTIONS(657), + [anon_sym_PLUS_PLUS] = ACTIONS(659), + [anon_sym_DASH_DASH] = ACTIONS(659), + [anon_sym_DQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(85), + [sym_number] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(635), + [anon_sym_get] = ACTIONS(635), + [anon_sym_set] = ACTIONS(635), + [anon_sym_declare] = ACTIONS(635), + [anon_sym_public] = ACTIONS(635), + [anon_sym_private] = ACTIONS(635), + [anon_sym_protected] = ACTIONS(635), + [anon_sym_module] = ACTIONS(635), + [anon_sym_any] = ACTIONS(635), + [anon_sym_number] = ACTIONS(635), + [anon_sym_boolean] = ACTIONS(635), + [anon_sym_string] = ACTIONS(635), + [anon_sym_symbol] = ACTIONS(635), + [sym_readonly] = ACTIONS(635), + }, + [171] = { + [sym_import] = STATE(1460), + [sym_parenthesized_expression] = STATE(731), + [sym__expression] = STATE(1708), + [sym_yield_expression] = STATE(1144), + [sym_object] = STATE(1251), + [sym_array] = STATE(1262), + [sym_class] = STATE(1460), + [sym_function] = STATE(1460), + [sym_generator_function] = STATE(1460), + [sym_arrow_function] = STATE(1460), + [sym__call_signature] = STATE(3133), + [sym_call_expression] = STATE(1460), + [sym_new_expression] = STATE(1144), + [sym_await_expression] = STATE(1144), + [sym_member_expression] = STATE(731), + [sym_subscript_expression] = STATE(731), + [sym_assignment_expression] = STATE(1144), + [sym__augmented_assignment_lhs] = STATE(1925), + [sym_augmented_assignment_expression] = STATE(1144), + [sym_ternary_expression] = STATE(1144), + [sym_binary_expression] = STATE(1144), + [sym_unary_expression] = STATE(1144), + [sym_update_expression] = STATE(1144), + [sym_string] = STATE(1460), + [sym_template_string] = STATE(1460), + [sym_regex] = STATE(1460), + [sym_meta_property] = STATE(1460), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(950), + [sym_type_assertion] = STATE(1144), + [sym_as_expression] = STATE(1144), + [sym_internal_module] = STATE(1144), + [sym_type_arguments] = STATE(395), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2545), + [sym_identifier] = ACTIONS(1334), + [anon_sym_export] = ACTIONS(1336), + [anon_sym_namespace] = ACTIONS(1338), + [anon_sym_LBRACE] = ACTIONS(1270), + [anon_sym_type] = ACTIONS(1336), + [anon_sym_typeof] = ACTIONS(601), + [anon_sym_import] = ACTIONS(681), + [anon_sym_BANG] = ACTIONS(585), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_await] = ACTIONS(587), + [anon_sym_yield] = ACTIONS(589), + [anon_sym_LBRACK] = ACTIONS(879), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(693), + [anon_sym_DOT] = ACTIONS(1340), + [anon_sym_class] = ACTIONS(695), + [anon_sym_async] = ACTIONS(1342), + [anon_sym_function] = ACTIONS(699), + [anon_sym_new] = ACTIONS(1344), + [anon_sym_PLUS] = ACTIONS(905), + [anon_sym_DASH] = ACTIONS(905), + [anon_sym_TILDE] = ACTIONS(585), + [anon_sym_void] = ACTIONS(601), + [anon_sym_delete] = ACTIONS(601), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_DQUOTE] = ACTIONS(711), + [anon_sym_SQUOTE] = ACTIONS(713), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(715), + [sym_number] = ACTIONS(1346), + [sym_this] = ACTIONS(1348), + [sym_super] = ACTIONS(1348), + [sym_true] = ACTIONS(1348), + [sym_false] = ACTIONS(1348), + [sym_null] = ACTIONS(1348), + [sym_undefined] = ACTIONS(1348), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(1336), + [anon_sym_get] = ACTIONS(1336), + [anon_sym_set] = ACTIONS(1336), + [anon_sym_declare] = ACTIONS(1336), + [anon_sym_public] = ACTIONS(1336), + [anon_sym_private] = ACTIONS(1336), + [anon_sym_protected] = ACTIONS(1336), + [anon_sym_module] = ACTIONS(1336), + [anon_sym_any] = ACTIONS(1336), + [anon_sym_number] = ACTIONS(1336), + [anon_sym_boolean] = ACTIONS(1336), + [anon_sym_string] = ACTIONS(1336), + [anon_sym_symbol] = ACTIONS(1336), + [sym_readonly] = ACTIONS(1336), + }, + [172] = { + [sym_import] = STATE(1151), + [sym_statement_block] = STATE(1123), + [sym_parenthesized_expression] = STATE(759), + [sym__expression] = STATE(1081), + [sym_yield_expression] = STATE(1144), + [sym_object] = STATE(1257), + [sym_array] = STATE(1254), + [sym_class] = STATE(1151), + [sym_function] = STATE(1151), + [sym_generator_function] = STATE(1151), + [sym_arrow_function] = STATE(1151), + [sym__call_signature] = STATE(3082), + [sym_call_expression] = STATE(1151), + [sym_new_expression] = STATE(1144), + [sym_await_expression] = STATE(1144), + [sym_member_expression] = STATE(759), + [sym_subscript_expression] = STATE(759), + [sym_assignment_expression] = STATE(1144), + [sym__augmented_assignment_lhs] = STATE(1924), + [sym_augmented_assignment_expression] = STATE(1144), + [sym_ternary_expression] = STATE(1144), + [sym_binary_expression] = STATE(1144), + [sym_unary_expression] = STATE(1144), + [sym_update_expression] = STATE(1144), + [sym_string] = STATE(1151), + [sym_template_string] = STATE(1151), + [sym_regex] = STATE(1151), + [sym_meta_property] = STATE(1151), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(754), + [sym_type_assertion] = STATE(1144), + [sym_as_expression] = STATE(1144), + [sym_internal_module] = STATE(1144), + [sym_type_arguments] = STATE(326), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2580), [sym_identifier] = ACTIONS(499), [anon_sym_export] = ACTIONS(501), [anon_sym_namespace] = ACTIONS(507), - [anon_sym_LBRACE] = ACTIONS(509), + [anon_sym_LBRACE] = ACTIONS(1350), [anon_sym_type] = ACTIONS(501), [anon_sym_typeof] = ACTIONS(471), [anon_sym_import] = ACTIONS(435), [anon_sym_BANG] = ACTIONS(437), [anon_sym_LPAREN] = ACTIONS(515), - [anon_sym_RPAREN] = ACTIONS(1330), [anon_sym_await] = ACTIONS(443), [anon_sym_yield] = ACTIONS(445), [anon_sym_LBRACK] = ACTIONS(517), @@ -28350,48 +28764,138 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(501), [sym_readonly] = ACTIONS(501), }, - [169] = { - [sym_import] = STATE(1101), - [sym_parenthesized_expression] = STATE(739), - [sym__expression] = STATE(1415), - [sym_yield_expression] = STATE(1105), - [sym_object] = STATE(1297), - [sym_array] = STATE(1296), - [sym_class] = STATE(1101), - [sym_function] = STATE(1101), - [sym_generator_function] = STATE(1101), - [sym_arrow_function] = STATE(1101), - [sym__call_signature] = STATE(3116), - [sym_call_expression] = STATE(1101), - [sym_new_expression] = STATE(1105), - [sym_await_expression] = STATE(1105), - [sym_member_expression] = STATE(739), - [sym_subscript_expression] = STATE(739), - [sym_assignment_expression] = STATE(1105), - [sym__augmented_assignment_lhs] = STATE(1920), - [sym_augmented_assignment_expression] = STATE(1105), - [sym_ternary_expression] = STATE(1105), - [sym_binary_expression] = STATE(1105), - [sym_unary_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_sequence_expression] = STATE(3136), - [sym_string] = STATE(1101), - [sym_template_string] = STATE(1101), - [sym_regex] = STATE(1101), - [sym_meta_property] = STATE(1101), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(755), - [sym_type_assertion] = STATE(1105), - [sym_as_expression] = STATE(1105), - [sym_internal_module] = STATE(1105), - [sym_type_arguments] = STATE(361), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2497), + [173] = { + [sym_import] = STATE(1265), + [sym_parenthesized_expression] = STATE(704), + [sym__expression] = STATE(1666), + [sym_yield_expression] = STATE(1144), + [sym_object] = STATE(1134), + [sym_array] = STATE(1131), + [sym_class] = STATE(1265), + [sym_function] = STATE(1265), + [sym_generator_function] = STATE(1265), + [sym_arrow_function] = STATE(1265), + [sym__call_signature] = STATE(3196), + [sym_call_expression] = STATE(1265), + [sym_new_expression] = STATE(1144), + [sym_await_expression] = STATE(1144), + [sym_member_expression] = STATE(704), + [sym_subscript_expression] = STATE(704), + [sym_assignment_expression] = STATE(1144), + [sym__augmented_assignment_lhs] = STATE(1925), + [sym_augmented_assignment_expression] = STATE(1144), + [sym_ternary_expression] = STATE(1144), + [sym_binary_expression] = STATE(1144), + [sym_unary_expression] = STATE(1144), + [sym_update_expression] = STATE(1144), + [sym_string] = STATE(1265), + [sym_template_string] = STATE(1265), + [sym_regex] = STATE(1265), + [sym_meta_property] = STATE(1265), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(950), + [sym_type_assertion] = STATE(1144), + [sym_as_expression] = STATE(1144), + [sym_internal_module] = STATE(1144), + [sym_type_arguments] = STATE(395), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2575), + [sym_identifier] = ACTIONS(1352), + [anon_sym_export] = ACTIONS(1354), + [anon_sym_namespace] = ACTIONS(1356), + [anon_sym_LBRACE] = ACTIONS(571), + [anon_sym_type] = ACTIONS(1354), + [anon_sym_typeof] = ACTIONS(601), + [anon_sym_import] = ACTIONS(539), + [anon_sym_BANG] = ACTIONS(585), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(587), + [anon_sym_yield] = ACTIONS(589), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(1358), + [anon_sym_class] = ACTIONS(545), + [anon_sym_async] = ACTIONS(1360), + [anon_sym_function] = ACTIONS(549), + [anon_sym_new] = ACTIONS(1362), + [anon_sym_PLUS] = ACTIONS(905), + [anon_sym_DASH] = ACTIONS(905), + [anon_sym_TILDE] = ACTIONS(585), + [anon_sym_void] = ACTIONS(601), + [anon_sym_delete] = ACTIONS(601), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_DQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(85), + [sym_number] = ACTIONS(1364), + [sym_this] = ACTIONS(1366), + [sym_super] = ACTIONS(1366), + [sym_true] = ACTIONS(1366), + [sym_false] = ACTIONS(1366), + [sym_null] = ACTIONS(1366), + [sym_undefined] = ACTIONS(1366), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(1354), + [anon_sym_get] = ACTIONS(1354), + [anon_sym_set] = ACTIONS(1354), + [anon_sym_declare] = ACTIONS(1354), + [anon_sym_public] = ACTIONS(1354), + [anon_sym_private] = ACTIONS(1354), + [anon_sym_protected] = ACTIONS(1354), + [anon_sym_module] = ACTIONS(1354), + [anon_sym_any] = ACTIONS(1354), + [anon_sym_number] = ACTIONS(1354), + [anon_sym_boolean] = ACTIONS(1354), + [anon_sym_string] = ACTIONS(1354), + [anon_sym_symbol] = ACTIONS(1354), + [sym_readonly] = ACTIONS(1354), + }, + [174] = { + [sym_import] = STATE(1151), + [sym_statement_block] = STATE(1167), + [sym_parenthesized_expression] = STATE(759), + [sym__expression] = STATE(1020), + [sym_yield_expression] = STATE(1144), + [sym_object] = STATE(1257), + [sym_array] = STATE(1254), + [sym_class] = STATE(1151), + [sym_function] = STATE(1151), + [sym_generator_function] = STATE(1151), + [sym_arrow_function] = STATE(1151), + [sym__call_signature] = STATE(3082), + [sym_call_expression] = STATE(1151), + [sym_new_expression] = STATE(1144), + [sym_await_expression] = STATE(1144), + [sym_member_expression] = STATE(759), + [sym_subscript_expression] = STATE(759), + [sym_assignment_expression] = STATE(1144), + [sym__augmented_assignment_lhs] = STATE(1924), + [sym_augmented_assignment_expression] = STATE(1144), + [sym_ternary_expression] = STATE(1144), + [sym_binary_expression] = STATE(1144), + [sym_unary_expression] = STATE(1144), + [sym_update_expression] = STATE(1144), + [sym_string] = STATE(1151), + [sym_template_string] = STATE(1151), + [sym_regex] = STATE(1151), + [sym_meta_property] = STATE(1151), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(754), + [sym_type_assertion] = STATE(1144), + [sym_as_expression] = STATE(1144), + [sym_internal_module] = STATE(1144), + [sym_type_arguments] = STATE(326), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2580), [sym_identifier] = ACTIONS(499), [anon_sym_export] = ACTIONS(501), [anon_sym_namespace] = ACTIONS(507), - [anon_sym_LBRACE] = ACTIONS(509), + [anon_sym_LBRACE] = ACTIONS(1350), [anon_sym_type] = ACTIONS(501), [anon_sym_typeof] = ACTIONS(471), [anon_sym_import] = ACTIONS(435), @@ -28440,134 +28944,134 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(501), [sym_readonly] = ACTIONS(501), }, - [170] = { - [sym_import] = STATE(1101), - [sym_statement_block] = STATE(1160), - [sym_parenthesized_expression] = STATE(921), - [sym__expression] = STATE(1250), - [sym_yield_expression] = STATE(1105), - [sym_object] = STATE(1531), - [sym_array] = STATE(1536), - [sym_class] = STATE(1101), - [sym_function] = STATE(1101), - [sym_generator_function] = STATE(1101), - [sym_arrow_function] = STATE(1101), - [sym__call_signature] = STATE(3170), - [sym_call_expression] = STATE(1101), - [sym_new_expression] = STATE(1105), - [sym_await_expression] = STATE(1105), - [sym_member_expression] = STATE(921), - [sym_subscript_expression] = STATE(921), - [sym_assignment_expression] = STATE(1105), - [sym__augmented_assignment_lhs] = STATE(1917), - [sym_augmented_assignment_expression] = STATE(1105), - [sym_ternary_expression] = STATE(1105), - [sym_binary_expression] = STATE(1105), - [sym_unary_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_string] = STATE(1101), - [sym_template_string] = STATE(1101), - [sym_regex] = STATE(1101), - [sym_meta_property] = STATE(1101), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(882), - [sym_type_assertion] = STATE(1105), - [sym_as_expression] = STATE(1105), - [sym_internal_module] = STATE(1105), - [sym_type_arguments] = STATE(355), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2497), - [sym_identifier] = ACTIONS(897), - [anon_sym_export] = ACTIONS(751), - [anon_sym_namespace] = ACTIONS(753), + [175] = { + [sym_import] = STATE(1523), + [sym_statement_block] = STATE(1599), + [sym_parenthesized_expression] = STATE(768), + [sym__expression] = STATE(1190), + [sym_yield_expression] = STATE(1567), + [sym_object] = STATE(1357), + [sym_array] = STATE(1360), + [sym_class] = STATE(1523), + [sym_function] = STATE(1523), + [sym_generator_function] = STATE(1523), + [sym_arrow_function] = STATE(1523), + [sym__call_signature] = STATE(3196), + [sym_call_expression] = STATE(1523), + [sym_new_expression] = STATE(1567), + [sym_await_expression] = STATE(1567), + [sym_member_expression] = STATE(768), + [sym_subscript_expression] = STATE(768), + [sym_assignment_expression] = STATE(1567), + [sym__augmented_assignment_lhs] = STATE(1928), + [sym_augmented_assignment_expression] = STATE(1567), + [sym_ternary_expression] = STATE(1567), + [sym_binary_expression] = STATE(1567), + [sym_unary_expression] = STATE(1567), + [sym_update_expression] = STATE(1567), + [sym_string] = STATE(1523), + [sym_template_string] = STATE(1523), + [sym_regex] = STATE(1523), + [sym_meta_property] = STATE(1523), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(774), + [sym_type_assertion] = STATE(1567), + [sym_as_expression] = STATE(1567), + [sym_internal_module] = STATE(1567), + [sym_type_arguments] = STATE(292), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2575), + [sym_identifier] = ACTIONS(567), + [anon_sym_export] = ACTIONS(531), + [anon_sym_namespace] = ACTIONS(533), [anon_sym_LBRACE] = ACTIONS(1332), - [anon_sym_type] = ACTIONS(751), - [anon_sym_typeof] = ACTIONS(775), - [anon_sym_import] = ACTIONS(435), - [anon_sym_BANG] = ACTIONS(757), - [anon_sym_LPAREN] = ACTIONS(515), - [anon_sym_await] = ACTIONS(759), - [anon_sym_yield] = ACTIONS(761), - [anon_sym_LBRACK] = ACTIONS(517), + [anon_sym_type] = ACTIONS(531), + [anon_sym_typeof] = ACTIONS(19), + [anon_sym_import] = ACTIONS(539), + [anon_sym_BANG] = ACTIONS(29), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(39), + [anon_sym_yield] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(765), - [anon_sym_class] = ACTIONS(451), - [anon_sym_async] = ACTIONS(767), - [anon_sym_function] = ACTIONS(455), - [anon_sym_new] = ACTIONS(903), - [anon_sym_PLUS] = ACTIONS(905), - [anon_sym_DASH] = ACTIONS(905), - [anon_sym_TILDE] = ACTIONS(757), - [anon_sym_void] = ACTIONS(775), - [anon_sym_delete] = ACTIONS(775), - [anon_sym_PLUS_PLUS] = ACTIONS(777), - [anon_sym_DASH_DASH] = ACTIONS(777), - [anon_sym_DQUOTE] = ACTIONS(475), - [anon_sym_SQUOTE] = ACTIONS(477), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(479), - [sym_number] = ACTIONS(527), - [sym_this] = ACTIONS(485), - [sym_super] = ACTIONS(485), - [sym_true] = ACTIONS(485), - [sym_false] = ACTIONS(485), - [sym_null] = ACTIONS(485), - [sym_undefined] = ACTIONS(485), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(545), + [anon_sym_async] = ACTIONS(547), + [anon_sym_function] = ACTIONS(549), + [anon_sym_new] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(29), + [anon_sym_void] = ACTIONS(19), + [anon_sym_delete] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_DQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(85), + [sym_number] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(751), - [anon_sym_get] = ACTIONS(751), - [anon_sym_set] = ACTIONS(751), - [anon_sym_declare] = ACTIONS(751), - [anon_sym_public] = ACTIONS(751), - [anon_sym_private] = ACTIONS(751), - [anon_sym_protected] = ACTIONS(751), - [anon_sym_module] = ACTIONS(751), - [anon_sym_any] = ACTIONS(751), - [anon_sym_number] = ACTIONS(751), - [anon_sym_boolean] = ACTIONS(751), - [anon_sym_string] = ACTIONS(751), - [anon_sym_symbol] = ACTIONS(751), - [sym_readonly] = ACTIONS(751), + [anon_sym_static] = ACTIONS(531), + [anon_sym_get] = ACTIONS(531), + [anon_sym_set] = ACTIONS(531), + [anon_sym_declare] = ACTIONS(531), + [anon_sym_public] = ACTIONS(531), + [anon_sym_private] = ACTIONS(531), + [anon_sym_protected] = ACTIONS(531), + [anon_sym_module] = ACTIONS(531), + [anon_sym_any] = ACTIONS(531), + [anon_sym_number] = ACTIONS(531), + [anon_sym_boolean] = ACTIONS(531), + [anon_sym_string] = ACTIONS(531), + [anon_sym_symbol] = ACTIONS(531), + [sym_readonly] = ACTIONS(531), }, - [171] = { - [sym_import] = STATE(1101), - [sym_parenthesized_expression] = STATE(739), - [sym__expression] = STATE(1326), - [sym_yield_expression] = STATE(1105), - [sym_object] = STATE(1297), - [sym_array] = STATE(1296), - [sym_class] = STATE(1101), - [sym_function] = STATE(1101), - [sym_generator_function] = STATE(1101), - [sym_arrow_function] = STATE(1101), - [sym__call_signature] = STATE(3116), - [sym_call_expression] = STATE(1101), - [sym_new_expression] = STATE(1105), - [sym_await_expression] = STATE(1105), - [sym_member_expression] = STATE(739), - [sym_subscript_expression] = STATE(739), - [sym_assignment_expression] = STATE(1105), - [sym__augmented_assignment_lhs] = STATE(1920), - [sym_augmented_assignment_expression] = STATE(1105), - [sym_ternary_expression] = STATE(1105), - [sym_binary_expression] = STATE(1105), - [sym_unary_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_sequence_expression] = STATE(3165), - [sym_string] = STATE(1101), - [sym_template_string] = STATE(1101), - [sym_regex] = STATE(1101), - [sym_meta_property] = STATE(1101), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(755), - [sym_type_assertion] = STATE(1105), - [sym_as_expression] = STATE(1105), - [sym_internal_module] = STATE(1105), - [sym_type_arguments] = STATE(361), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2497), + [176] = { + [sym_import] = STATE(1151), + [sym_parenthesized_expression] = STATE(759), + [sym__expression] = STATE(1029), + [sym_yield_expression] = STATE(1144), + [sym_object] = STATE(1257), + [sym_array] = STATE(1254), + [sym_class] = STATE(1151), + [sym_function] = STATE(1151), + [sym_generator_function] = STATE(1151), + [sym_arrow_function] = STATE(1151), + [sym__call_signature] = STATE(3082), + [sym_call_expression] = STATE(1151), + [sym_new_expression] = STATE(1144), + [sym_await_expression] = STATE(1144), + [sym_member_expression] = STATE(759), + [sym_subscript_expression] = STATE(759), + [sym_assignment_expression] = STATE(1144), + [sym__augmented_assignment_lhs] = STATE(1924), + [sym_augmented_assignment_expression] = STATE(1144), + [sym_ternary_expression] = STATE(1144), + [sym_binary_expression] = STATE(1144), + [sym_unary_expression] = STATE(1144), + [sym_update_expression] = STATE(1144), + [sym_sequence_expression] = STATE(2552), + [sym_string] = STATE(1151), + [sym_template_string] = STATE(1151), + [sym_regex] = STATE(1151), + [sym_meta_property] = STATE(1151), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(754), + [sym_type_assertion] = STATE(1144), + [sym_as_expression] = STATE(1144), + [sym_internal_module] = STATE(1144), + [sym_type_arguments] = STATE(326), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2580), [sym_identifier] = ACTIONS(499), [anon_sym_export] = ACTIONS(501), [anon_sym_namespace] = ACTIONS(507), @@ -28620,44 +29124,134 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(501), [sym_readonly] = ACTIONS(501), }, - [172] = { - [sym_import] = STATE(1101), - [sym_parenthesized_expression] = STATE(739), - [sym__expression] = STATE(1311), - [sym_yield_expression] = STATE(1105), - [sym_object] = STATE(1297), - [sym_array] = STATE(1296), - [sym_class] = STATE(1101), - [sym_function] = STATE(1101), - [sym_generator_function] = STATE(1101), - [sym_arrow_function] = STATE(1101), - [sym__call_signature] = STATE(3116), - [sym_call_expression] = STATE(1101), - [sym_new_expression] = STATE(1105), - [sym_await_expression] = STATE(1105), - [sym_member_expression] = STATE(739), - [sym_subscript_expression] = STATE(739), - [sym_assignment_expression] = STATE(1105), - [sym__augmented_assignment_lhs] = STATE(1920), - [sym_augmented_assignment_expression] = STATE(1105), - [sym_ternary_expression] = STATE(1105), - [sym_binary_expression] = STATE(1105), - [sym_unary_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_sequence_expression] = STATE(3190), - [sym_string] = STATE(1101), - [sym_template_string] = STATE(1101), - [sym_regex] = STATE(1101), - [sym_meta_property] = STATE(1101), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(755), - [sym_type_assertion] = STATE(1105), - [sym_as_expression] = STATE(1105), - [sym_internal_module] = STATE(1105), - [sym_type_arguments] = STATE(361), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2497), + [177] = { + [sym_import] = STATE(1523), + [sym_statement_block] = STATE(1598), + [sym_parenthesized_expression] = STATE(768), + [sym__expression] = STATE(1189), + [sym_yield_expression] = STATE(1567), + [sym_object] = STATE(1357), + [sym_array] = STATE(1360), + [sym_class] = STATE(1523), + [sym_function] = STATE(1523), + [sym_generator_function] = STATE(1523), + [sym_arrow_function] = STATE(1523), + [sym__call_signature] = STATE(3196), + [sym_call_expression] = STATE(1523), + [sym_new_expression] = STATE(1567), + [sym_await_expression] = STATE(1567), + [sym_member_expression] = STATE(768), + [sym_subscript_expression] = STATE(768), + [sym_assignment_expression] = STATE(1567), + [sym__augmented_assignment_lhs] = STATE(1928), + [sym_augmented_assignment_expression] = STATE(1567), + [sym_ternary_expression] = STATE(1567), + [sym_binary_expression] = STATE(1567), + [sym_unary_expression] = STATE(1567), + [sym_update_expression] = STATE(1567), + [sym_string] = STATE(1523), + [sym_template_string] = STATE(1523), + [sym_regex] = STATE(1523), + [sym_meta_property] = STATE(1523), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(774), + [sym_type_assertion] = STATE(1567), + [sym_as_expression] = STATE(1567), + [sym_internal_module] = STATE(1567), + [sym_type_arguments] = STATE(292), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2575), + [sym_identifier] = ACTIONS(567), + [anon_sym_export] = ACTIONS(531), + [anon_sym_namespace] = ACTIONS(533), + [anon_sym_LBRACE] = ACTIONS(1332), + [anon_sym_type] = ACTIONS(531), + [anon_sym_typeof] = ACTIONS(19), + [anon_sym_import] = ACTIONS(539), + [anon_sym_BANG] = ACTIONS(29), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(39), + [anon_sym_yield] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(545), + [anon_sym_async] = ACTIONS(547), + [anon_sym_function] = ACTIONS(549), + [anon_sym_new] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(29), + [anon_sym_void] = ACTIONS(19), + [anon_sym_delete] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_DQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(85), + [sym_number] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(531), + [anon_sym_get] = ACTIONS(531), + [anon_sym_set] = ACTIONS(531), + [anon_sym_declare] = ACTIONS(531), + [anon_sym_public] = ACTIONS(531), + [anon_sym_private] = ACTIONS(531), + [anon_sym_protected] = ACTIONS(531), + [anon_sym_module] = ACTIONS(531), + [anon_sym_any] = ACTIONS(531), + [anon_sym_number] = ACTIONS(531), + [anon_sym_boolean] = ACTIONS(531), + [anon_sym_string] = ACTIONS(531), + [anon_sym_symbol] = ACTIONS(531), + [sym_readonly] = ACTIONS(531), + }, + [178] = { + [sym_import] = STATE(1151), + [sym_parenthesized_expression] = STATE(759), + [sym__expression] = STATE(1426), + [sym_yield_expression] = STATE(1144), + [sym_object] = STATE(1257), + [sym_array] = STATE(1254), + [sym_class] = STATE(1151), + [sym_function] = STATE(1151), + [sym_generator_function] = STATE(1151), + [sym_arrow_function] = STATE(1151), + [sym__call_signature] = STATE(3082), + [sym_call_expression] = STATE(1151), + [sym_new_expression] = STATE(1144), + [sym_await_expression] = STATE(1144), + [sym_member_expression] = STATE(759), + [sym_subscript_expression] = STATE(759), + [sym_assignment_expression] = STATE(1144), + [sym__augmented_assignment_lhs] = STATE(1924), + [sym_augmented_assignment_expression] = STATE(1144), + [sym_ternary_expression] = STATE(1144), + [sym_binary_expression] = STATE(1144), + [sym_unary_expression] = STATE(1144), + [sym_update_expression] = STATE(1144), + [sym_sequence_expression] = STATE(3027), + [sym_string] = STATE(1151), + [sym_template_string] = STATE(1151), + [sym_regex] = STATE(1151), + [sym_meta_property] = STATE(1151), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(754), + [sym_type_assertion] = STATE(1144), + [sym_as_expression] = STATE(1144), + [sym_internal_module] = STATE(1144), + [sym_type_arguments] = STATE(326), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2580), [sym_identifier] = ACTIONS(499), [anon_sym_export] = ACTIONS(501), [anon_sym_namespace] = ACTIONS(507), @@ -28710,138 +29304,48 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(501), [sym_readonly] = ACTIONS(501), }, - [173] = { - [sym_import] = STATE(1008), - [sym_parenthesized_expression] = STATE(654), - [sym__expression] = STATE(1683), - [sym_yield_expression] = STATE(1105), - [sym_object] = STATE(986), - [sym_array] = STATE(985), - [sym_class] = STATE(1008), - [sym_function] = STATE(1008), - [sym_generator_function] = STATE(1008), - [sym_arrow_function] = STATE(1008), - [sym__call_signature] = STATE(3116), - [sym_call_expression] = STATE(1008), - [sym_new_expression] = STATE(1105), - [sym_await_expression] = STATE(1105), - [sym_member_expression] = STATE(654), - [sym_subscript_expression] = STATE(654), - [sym_assignment_expression] = STATE(1105), - [sym__augmented_assignment_lhs] = STATE(1921), - [sym_augmented_assignment_expression] = STATE(1105), - [sym_ternary_expression] = STATE(1105), - [sym_binary_expression] = STATE(1105), - [sym_unary_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_string] = STATE(1008), - [sym_template_string] = STATE(1008), - [sym_regex] = STATE(1008), - [sym_meta_property] = STATE(1008), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2467), - [sym_non_null_expression] = STATE(949), - [sym_type_assertion] = STATE(1105), - [sym_as_expression] = STATE(1105), - [sym_internal_module] = STATE(1105), - [sym_type_arguments] = STATE(324), - [sym_type_parameters] = STATE(2860), - [aux_sym_export_statement_repeat1] = STATE(2497), - [sym_identifier] = ACTIONS(1334), - [anon_sym_export] = ACTIONS(1336), - [anon_sym_namespace] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(509), - [anon_sym_type] = ACTIONS(1336), - [anon_sym_typeof] = ACTIONS(659), - [anon_sym_import] = ACTIONS(435), - [anon_sym_BANG] = ACTIONS(643), - [anon_sym_LPAREN] = ACTIONS(515), - [anon_sym_await] = ACTIONS(645), - [anon_sym_yield] = ACTIONS(647), - [anon_sym_LBRACK] = ACTIONS(517), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(449), - [anon_sym_DOT] = ACTIONS(1340), - [anon_sym_class] = ACTIONS(451), - [anon_sym_async] = ACTIONS(1342), - [anon_sym_function] = ACTIONS(455), - [anon_sym_new] = ACTIONS(865), - [anon_sym_PLUS] = ACTIONS(867), - [anon_sym_DASH] = ACTIONS(867), - [anon_sym_TILDE] = ACTIONS(643), - [anon_sym_void] = ACTIONS(659), - [anon_sym_delete] = ACTIONS(659), - [anon_sym_PLUS_PLUS] = ACTIONS(661), - [anon_sym_DASH_DASH] = ACTIONS(661), - [anon_sym_DQUOTE] = ACTIONS(475), - [anon_sym_SQUOTE] = ACTIONS(477), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(479), - [sym_number] = ACTIONS(1344), - [sym_this] = ACTIONS(1346), - [sym_super] = ACTIONS(1346), - [sym_true] = ACTIONS(1346), - [sym_false] = ACTIONS(1346), - [sym_null] = ACTIONS(1346), - [sym_undefined] = ACTIONS(1346), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(1336), - [anon_sym_get] = ACTIONS(1336), - [anon_sym_set] = ACTIONS(1336), - [anon_sym_declare] = ACTIONS(1336), - [anon_sym_public] = ACTIONS(1336), - [anon_sym_private] = ACTIONS(1336), - [anon_sym_protected] = ACTIONS(1336), - [anon_sym_module] = ACTIONS(1336), - [anon_sym_any] = ACTIONS(1336), - [anon_sym_number] = ACTIONS(1336), - [anon_sym_boolean] = ACTIONS(1336), - [anon_sym_string] = ACTIONS(1336), - [anon_sym_symbol] = ACTIONS(1336), - [sym_readonly] = ACTIONS(1336), - }, - [174] = { - [sym_import] = STATE(1101), - [sym_parenthesized_expression] = STATE(739), - [sym__expression] = STATE(1328), - [sym_yield_expression] = STATE(1105), - [sym_object] = STATE(1297), - [sym_array] = STATE(1296), - [sym_class] = STATE(1101), - [sym_function] = STATE(1101), - [sym_generator_function] = STATE(1101), - [sym_arrow_function] = STATE(1101), - [sym__call_signature] = STATE(3116), - [sym_call_expression] = STATE(1101), - [sym_new_expression] = STATE(1105), - [sym_await_expression] = STATE(1105), - [sym_member_expression] = STATE(739), - [sym_subscript_expression] = STATE(739), - [sym_assignment_expression] = STATE(1105), - [sym__augmented_assignment_lhs] = STATE(1920), - [sym_augmented_assignment_expression] = STATE(1105), - [sym_ternary_expression] = STATE(1105), - [sym_binary_expression] = STATE(1105), - [sym_unary_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_sequence_expression] = STATE(3201), - [sym_string] = STATE(1101), - [sym_template_string] = STATE(1101), - [sym_regex] = STATE(1101), - [sym_meta_property] = STATE(1101), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(755), - [sym_type_assertion] = STATE(1105), - [sym_as_expression] = STATE(1105), - [sym_internal_module] = STATE(1105), - [sym_type_arguments] = STATE(361), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2497), + [179] = { + [sym_import] = STATE(1151), + [sym_statement_block] = STATE(1176), + [sym_parenthesized_expression] = STATE(759), + [sym__expression] = STATE(1075), + [sym_yield_expression] = STATE(1144), + [sym_object] = STATE(1257), + [sym_array] = STATE(1254), + [sym_class] = STATE(1151), + [sym_function] = STATE(1151), + [sym_generator_function] = STATE(1151), + [sym_arrow_function] = STATE(1151), + [sym__call_signature] = STATE(3082), + [sym_call_expression] = STATE(1151), + [sym_new_expression] = STATE(1144), + [sym_await_expression] = STATE(1144), + [sym_member_expression] = STATE(759), + [sym_subscript_expression] = STATE(759), + [sym_assignment_expression] = STATE(1144), + [sym__augmented_assignment_lhs] = STATE(1924), + [sym_augmented_assignment_expression] = STATE(1144), + [sym_ternary_expression] = STATE(1144), + [sym_binary_expression] = STATE(1144), + [sym_unary_expression] = STATE(1144), + [sym_update_expression] = STATE(1144), + [sym_string] = STATE(1151), + [sym_template_string] = STATE(1151), + [sym_regex] = STATE(1151), + [sym_meta_property] = STATE(1151), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(754), + [sym_type_assertion] = STATE(1144), + [sym_as_expression] = STATE(1144), + [sym_internal_module] = STATE(1144), + [sym_type_arguments] = STATE(326), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2580), [sym_identifier] = ACTIONS(499), [anon_sym_export] = ACTIONS(501), [anon_sym_namespace] = ACTIONS(507), - [anon_sym_LBRACE] = ACTIONS(509), + [anon_sym_LBRACE] = ACTIONS(1350), [anon_sym_type] = ACTIONS(501), [anon_sym_typeof] = ACTIONS(471), [anon_sym_import] = ACTIONS(435), @@ -28890,138 +29394,678 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(501), [sym_readonly] = ACTIONS(501), }, - [175] = { - [sym_import] = STATE(1008), - [sym_parenthesized_expression] = STATE(654), - [sym__expression] = STATE(1683), - [sym_yield_expression] = STATE(1105), - [sym_object] = STATE(986), - [sym_array] = STATE(985), - [sym_class] = STATE(1008), - [sym_function] = STATE(1008), - [sym_generator_function] = STATE(1008), - [sym_arrow_function] = STATE(1008), - [sym__call_signature] = STATE(3002), - [sym_call_expression] = STATE(1008), - [sym_new_expression] = STATE(1105), - [sym_await_expression] = STATE(1105), - [sym_member_expression] = STATE(654), - [sym_subscript_expression] = STATE(654), - [sym_assignment_expression] = STATE(1105), + [180] = { + [sym_import] = STATE(1690), + [sym_statement_block] = STATE(1681), + [sym_parenthesized_expression] = STATE(834), + [sym__expression] = STATE(1306), + [sym_yield_expression] = STATE(1687), + [sym_object] = STATE(1538), + [sym_array] = STATE(1543), + [sym_class] = STATE(1690), + [sym_function] = STATE(1690), + [sym_generator_function] = STATE(1690), + [sym_arrow_function] = STATE(1690), + [sym__call_signature] = STATE(3133), + [sym_call_expression] = STATE(1690), + [sym_new_expression] = STATE(1687), + [sym_await_expression] = STATE(1687), + [sym_member_expression] = STATE(834), + [sym_subscript_expression] = STATE(834), + [sym_assignment_expression] = STATE(1687), [sym__augmented_assignment_lhs] = STATE(1921), - [sym_augmented_assignment_expression] = STATE(1105), - [sym_ternary_expression] = STATE(1105), - [sym_binary_expression] = STATE(1105), - [sym_unary_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_string] = STATE(1008), - [sym_template_string] = STATE(1008), - [sym_regex] = STATE(1008), - [sym_meta_property] = STATE(1008), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(949), - [sym_type_assertion] = STATE(1105), - [sym_as_expression] = STATE(1105), - [sym_internal_module] = STATE(1105), - [sym_type_arguments] = STATE(324), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2497), - [sym_identifier] = ACTIONS(1348), - [anon_sym_export] = ACTIONS(1350), - [anon_sym_namespace] = ACTIONS(1352), - [anon_sym_LBRACE] = ACTIONS(509), - [anon_sym_type] = ACTIONS(1350), - [anon_sym_typeof] = ACTIONS(659), + [sym_augmented_assignment_expression] = STATE(1687), + [sym_ternary_expression] = STATE(1687), + [sym_binary_expression] = STATE(1687), + [sym_unary_expression] = STATE(1687), + [sym_update_expression] = STATE(1687), + [sym_string] = STATE(1690), + [sym_template_string] = STATE(1690), + [sym_regex] = STATE(1690), + [sym_meta_property] = STATE(1690), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(846), + [sym_type_assertion] = STATE(1687), + [sym_as_expression] = STATE(1687), + [sym_internal_module] = STATE(1687), + [sym_type_arguments] = STATE(301), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2545), + [sym_identifier] = ACTIONS(869), + [anon_sym_export] = ACTIONS(673), + [anon_sym_namespace] = ACTIONS(675), + [anon_sym_LBRACE] = ACTIONS(1368), + [anon_sym_type] = ACTIONS(673), + [anon_sym_typeof] = ACTIONS(707), + [anon_sym_import] = ACTIONS(681), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_await] = ACTIONS(687), + [anon_sym_yield] = ACTIONS(689), + [anon_sym_LBRACK] = ACTIONS(879), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(693), + [anon_sym_class] = ACTIONS(695), + [anon_sym_async] = ACTIONS(697), + [anon_sym_function] = ACTIONS(699), + [anon_sym_new] = ACTIONS(881), + [anon_sym_PLUS] = ACTIONS(883), + [anon_sym_DASH] = ACTIONS(883), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_void] = ACTIONS(707), + [anon_sym_delete] = ACTIONS(707), + [anon_sym_PLUS_PLUS] = ACTIONS(709), + [anon_sym_DASH_DASH] = ACTIONS(709), + [anon_sym_DQUOTE] = ACTIONS(711), + [anon_sym_SQUOTE] = ACTIONS(713), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(715), + [sym_number] = ACTIONS(885), + [sym_this] = ACTIONS(721), + [sym_super] = ACTIONS(721), + [sym_true] = ACTIONS(721), + [sym_false] = ACTIONS(721), + [sym_null] = ACTIONS(721), + [sym_undefined] = ACTIONS(721), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(673), + [anon_sym_get] = ACTIONS(673), + [anon_sym_set] = ACTIONS(673), + [anon_sym_declare] = ACTIONS(673), + [anon_sym_public] = ACTIONS(673), + [anon_sym_private] = ACTIONS(673), + [anon_sym_protected] = ACTIONS(673), + [anon_sym_module] = ACTIONS(673), + [anon_sym_any] = ACTIONS(673), + [anon_sym_number] = ACTIONS(673), + [anon_sym_boolean] = ACTIONS(673), + [anon_sym_string] = ACTIONS(673), + [anon_sym_symbol] = ACTIONS(673), + [sym_readonly] = ACTIONS(673), + }, + [181] = { + [sym_import] = STATE(1151), + [sym_statement_block] = STATE(1167), + [sym_parenthesized_expression] = STATE(837), + [sym__expression] = STATE(1247), + [sym_yield_expression] = STATE(1144), + [sym_object] = STATE(1495), + [sym_array] = STATE(1493), + [sym_class] = STATE(1151), + [sym_function] = STATE(1151), + [sym_generator_function] = STATE(1151), + [sym_arrow_function] = STATE(1151), + [sym__call_signature] = STATE(3190), + [sym_call_expression] = STATE(1151), + [sym_new_expression] = STATE(1144), + [sym_await_expression] = STATE(1144), + [sym_member_expression] = STATE(837), + [sym_subscript_expression] = STATE(837), + [sym_assignment_expression] = STATE(1144), + [sym__augmented_assignment_lhs] = STATE(1927), + [sym_augmented_assignment_expression] = STATE(1144), + [sym_ternary_expression] = STATE(1144), + [sym_binary_expression] = STATE(1144), + [sym_unary_expression] = STATE(1144), + [sym_update_expression] = STATE(1144), + [sym_string] = STATE(1151), + [sym_template_string] = STATE(1151), + [sym_regex] = STATE(1151), + [sym_meta_property] = STATE(1151), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(845), + [sym_type_assertion] = STATE(1144), + [sym_as_expression] = STATE(1144), + [sym_internal_module] = STATE(1144), + [sym_type_arguments] = STATE(357), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2580), + [sym_identifier] = ACTIONS(859), + [anon_sym_export] = ACTIONS(769), + [anon_sym_namespace] = ACTIONS(771), + [anon_sym_LBRACE] = ACTIONS(1350), + [anon_sym_type] = ACTIONS(769), + [anon_sym_typeof] = ACTIONS(791), [anon_sym_import] = ACTIONS(435), - [anon_sym_BANG] = ACTIONS(643), + [anon_sym_BANG] = ACTIONS(775), [anon_sym_LPAREN] = ACTIONS(515), - [anon_sym_await] = ACTIONS(645), - [anon_sym_yield] = ACTIONS(647), + [anon_sym_await] = ACTIONS(777), + [anon_sym_yield] = ACTIONS(779), [anon_sym_LBRACK] = ACTIONS(517), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(449), - [anon_sym_DOT] = ACTIONS(1354), + [anon_sym_SLASH] = ACTIONS(781), [anon_sym_class] = ACTIONS(451), - [anon_sym_async] = ACTIONS(1356), + [anon_sym_async] = ACTIONS(783), [anon_sym_function] = ACTIONS(455), [anon_sym_new] = ACTIONS(865), [anon_sym_PLUS] = ACTIONS(867), [anon_sym_DASH] = ACTIONS(867), - [anon_sym_TILDE] = ACTIONS(643), - [anon_sym_void] = ACTIONS(659), - [anon_sym_delete] = ACTIONS(659), - [anon_sym_PLUS_PLUS] = ACTIONS(661), - [anon_sym_DASH_DASH] = ACTIONS(661), + [anon_sym_TILDE] = ACTIONS(775), + [anon_sym_void] = ACTIONS(791), + [anon_sym_delete] = ACTIONS(791), + [anon_sym_PLUS_PLUS] = ACTIONS(793), + [anon_sym_DASH_DASH] = ACTIONS(793), [anon_sym_DQUOTE] = ACTIONS(475), [anon_sym_SQUOTE] = ACTIONS(477), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(479), - [sym_number] = ACTIONS(1344), - [sym_this] = ACTIONS(1346), - [sym_super] = ACTIONS(1346), - [sym_true] = ACTIONS(1346), - [sym_false] = ACTIONS(1346), - [sym_null] = ACTIONS(1346), - [sym_undefined] = ACTIONS(1346), + [sym_number] = ACTIONS(527), + [sym_this] = ACTIONS(485), + [sym_super] = ACTIONS(485), + [sym_true] = ACTIONS(485), + [sym_false] = ACTIONS(485), + [sym_null] = ACTIONS(485), + [sym_undefined] = ACTIONS(485), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(1350), - [anon_sym_get] = ACTIONS(1350), - [anon_sym_set] = ACTIONS(1350), - [anon_sym_declare] = ACTIONS(1350), - [anon_sym_public] = ACTIONS(1350), - [anon_sym_private] = ACTIONS(1350), - [anon_sym_protected] = ACTIONS(1350), - [anon_sym_module] = ACTIONS(1350), - [anon_sym_any] = ACTIONS(1350), - [anon_sym_number] = ACTIONS(1350), - [anon_sym_boolean] = ACTIONS(1350), - [anon_sym_string] = ACTIONS(1350), - [anon_sym_symbol] = ACTIONS(1350), - [sym_readonly] = ACTIONS(1350), + [anon_sym_static] = ACTIONS(769), + [anon_sym_get] = ACTIONS(769), + [anon_sym_set] = ACTIONS(769), + [anon_sym_declare] = ACTIONS(769), + [anon_sym_public] = ACTIONS(769), + [anon_sym_private] = ACTIONS(769), + [anon_sym_protected] = ACTIONS(769), + [anon_sym_module] = ACTIONS(769), + [anon_sym_any] = ACTIONS(769), + [anon_sym_number] = ACTIONS(769), + [anon_sym_boolean] = ACTIONS(769), + [anon_sym_string] = ACTIONS(769), + [anon_sym_symbol] = ACTIONS(769), + [sym_readonly] = ACTIONS(769), }, - [176] = { - [sym_import] = STATE(1101), - [sym_statement_block] = STATE(1180), - [sym_parenthesized_expression] = STATE(739), - [sym__expression] = STATE(1019), - [sym_yield_expression] = STATE(1105), - [sym_object] = STATE(1297), - [sym_array] = STATE(1296), - [sym_class] = STATE(1101), - [sym_function] = STATE(1101), - [sym_generator_function] = STATE(1101), - [sym_arrow_function] = STATE(1101), - [sym__call_signature] = STATE(3116), - [sym_call_expression] = STATE(1101), - [sym_new_expression] = STATE(1105), - [sym_await_expression] = STATE(1105), - [sym_member_expression] = STATE(739), - [sym_subscript_expression] = STATE(739), - [sym_assignment_expression] = STATE(1105), - [sym__augmented_assignment_lhs] = STATE(1920), - [sym_augmented_assignment_expression] = STATE(1105), - [sym_ternary_expression] = STATE(1105), - [sym_binary_expression] = STATE(1105), - [sym_unary_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_string] = STATE(1101), - [sym_template_string] = STATE(1101), - [sym_regex] = STATE(1101), - [sym_meta_property] = STATE(1101), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(755), - [sym_type_assertion] = STATE(1105), - [sym_as_expression] = STATE(1105), - [sym_internal_module] = STATE(1105), - [sym_type_arguments] = STATE(361), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2497), + [182] = { + [sym_import] = STATE(1460), + [sym_parenthesized_expression] = STATE(731), + [sym__expression] = STATE(1708), + [sym_yield_expression] = STATE(1144), + [sym_object] = STATE(1251), + [sym_array] = STATE(1262), + [sym_class] = STATE(1460), + [sym_function] = STATE(1460), + [sym_generator_function] = STATE(1460), + [sym_arrow_function] = STATE(1460), + [sym__call_signature] = STATE(3133), + [sym_call_expression] = STATE(1460), + [sym_new_expression] = STATE(1144), + [sym_await_expression] = STATE(1144), + [sym_member_expression] = STATE(731), + [sym_subscript_expression] = STATE(731), + [sym_assignment_expression] = STATE(1144), + [sym__augmented_assignment_lhs] = STATE(1925), + [sym_augmented_assignment_expression] = STATE(1144), + [sym_ternary_expression] = STATE(1144), + [sym_binary_expression] = STATE(1144), + [sym_unary_expression] = STATE(1144), + [sym_update_expression] = STATE(1144), + [sym_string] = STATE(1460), + [sym_template_string] = STATE(1460), + [sym_regex] = STATE(1460), + [sym_meta_property] = STATE(1460), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2383), + [sym_non_null_expression] = STATE(950), + [sym_type_assertion] = STATE(1144), + [sym_as_expression] = STATE(1144), + [sym_internal_module] = STATE(1144), + [sym_type_arguments] = STATE(395), + [sym_type_parameters] = STATE(2913), + [aux_sym_export_statement_repeat1] = STATE(2545), + [sym_identifier] = ACTIONS(1334), + [anon_sym_export] = ACTIONS(1336), + [anon_sym_namespace] = ACTIONS(1338), + [anon_sym_LBRACE] = ACTIONS(1270), + [anon_sym_type] = ACTIONS(1336), + [anon_sym_typeof] = ACTIONS(601), + [anon_sym_import] = ACTIONS(681), + [anon_sym_BANG] = ACTIONS(585), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_await] = ACTIONS(587), + [anon_sym_yield] = ACTIONS(589), + [anon_sym_LBRACK] = ACTIONS(879), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(693), + [anon_sym_DOT] = ACTIONS(1340), + [anon_sym_class] = ACTIONS(695), + [anon_sym_async] = ACTIONS(1342), + [anon_sym_function] = ACTIONS(699), + [anon_sym_new] = ACTIONS(1344), + [anon_sym_PLUS] = ACTIONS(905), + [anon_sym_DASH] = ACTIONS(905), + [anon_sym_TILDE] = ACTIONS(585), + [anon_sym_void] = ACTIONS(601), + [anon_sym_delete] = ACTIONS(601), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_DQUOTE] = ACTIONS(711), + [anon_sym_SQUOTE] = ACTIONS(713), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(715), + [sym_number] = ACTIONS(1346), + [sym_this] = ACTIONS(1348), + [sym_super] = ACTIONS(1348), + [sym_true] = ACTIONS(1348), + [sym_false] = ACTIONS(1348), + [sym_null] = ACTIONS(1348), + [sym_undefined] = ACTIONS(1348), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(1336), + [anon_sym_get] = ACTIONS(1336), + [anon_sym_set] = ACTIONS(1336), + [anon_sym_declare] = ACTIONS(1336), + [anon_sym_public] = ACTIONS(1336), + [anon_sym_private] = ACTIONS(1336), + [anon_sym_protected] = ACTIONS(1336), + [anon_sym_module] = ACTIONS(1336), + [anon_sym_any] = ACTIONS(1336), + [anon_sym_number] = ACTIONS(1336), + [anon_sym_boolean] = ACTIONS(1336), + [anon_sym_string] = ACTIONS(1336), + [anon_sym_symbol] = ACTIONS(1336), + [sym_readonly] = ACTIONS(1336), + }, + [183] = { + [sym_import] = STATE(1690), + [sym_statement_block] = STATE(1682), + [sym_parenthesized_expression] = STATE(834), + [sym__expression] = STATE(1308), + [sym_yield_expression] = STATE(1687), + [sym_object] = STATE(1538), + [sym_array] = STATE(1543), + [sym_class] = STATE(1690), + [sym_function] = STATE(1690), + [sym_generator_function] = STATE(1690), + [sym_arrow_function] = STATE(1690), + [sym__call_signature] = STATE(3133), + [sym_call_expression] = STATE(1690), + [sym_new_expression] = STATE(1687), + [sym_await_expression] = STATE(1687), + [sym_member_expression] = STATE(834), + [sym_subscript_expression] = STATE(834), + [sym_assignment_expression] = STATE(1687), + [sym__augmented_assignment_lhs] = STATE(1921), + [sym_augmented_assignment_expression] = STATE(1687), + [sym_ternary_expression] = STATE(1687), + [sym_binary_expression] = STATE(1687), + [sym_unary_expression] = STATE(1687), + [sym_update_expression] = STATE(1687), + [sym_string] = STATE(1690), + [sym_template_string] = STATE(1690), + [sym_regex] = STATE(1690), + [sym_meta_property] = STATE(1690), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(846), + [sym_type_assertion] = STATE(1687), + [sym_as_expression] = STATE(1687), + [sym_internal_module] = STATE(1687), + [sym_type_arguments] = STATE(301), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2545), + [sym_identifier] = ACTIONS(869), + [anon_sym_export] = ACTIONS(673), + [anon_sym_namespace] = ACTIONS(675), + [anon_sym_LBRACE] = ACTIONS(1368), + [anon_sym_type] = ACTIONS(673), + [anon_sym_typeof] = ACTIONS(707), + [anon_sym_import] = ACTIONS(681), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_await] = ACTIONS(687), + [anon_sym_yield] = ACTIONS(689), + [anon_sym_LBRACK] = ACTIONS(879), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(693), + [anon_sym_class] = ACTIONS(695), + [anon_sym_async] = ACTIONS(697), + [anon_sym_function] = ACTIONS(699), + [anon_sym_new] = ACTIONS(881), + [anon_sym_PLUS] = ACTIONS(883), + [anon_sym_DASH] = ACTIONS(883), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_void] = ACTIONS(707), + [anon_sym_delete] = ACTIONS(707), + [anon_sym_PLUS_PLUS] = ACTIONS(709), + [anon_sym_DASH_DASH] = ACTIONS(709), + [anon_sym_DQUOTE] = ACTIONS(711), + [anon_sym_SQUOTE] = ACTIONS(713), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(715), + [sym_number] = ACTIONS(885), + [sym_this] = ACTIONS(721), + [sym_super] = ACTIONS(721), + [sym_true] = ACTIONS(721), + [sym_false] = ACTIONS(721), + [sym_null] = ACTIONS(721), + [sym_undefined] = ACTIONS(721), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(673), + [anon_sym_get] = ACTIONS(673), + [anon_sym_set] = ACTIONS(673), + [anon_sym_declare] = ACTIONS(673), + [anon_sym_public] = ACTIONS(673), + [anon_sym_private] = ACTIONS(673), + [anon_sym_protected] = ACTIONS(673), + [anon_sym_module] = ACTIONS(673), + [anon_sym_any] = ACTIONS(673), + [anon_sym_number] = ACTIONS(673), + [anon_sym_boolean] = ACTIONS(673), + [anon_sym_string] = ACTIONS(673), + [anon_sym_symbol] = ACTIONS(673), + [sym_readonly] = ACTIONS(673), + }, + [184] = { + [sym_import] = STATE(1265), + [sym_parenthesized_expression] = STATE(704), + [sym__expression] = STATE(1666), + [sym_yield_expression] = STATE(1144), + [sym_object] = STATE(1134), + [sym_array] = STATE(1131), + [sym_class] = STATE(1265), + [sym_function] = STATE(1265), + [sym_generator_function] = STATE(1265), + [sym_arrow_function] = STATE(1265), + [sym__call_signature] = STATE(3196), + [sym_call_expression] = STATE(1265), + [sym_new_expression] = STATE(1144), + [sym_await_expression] = STATE(1144), + [sym_member_expression] = STATE(704), + [sym_subscript_expression] = STATE(704), + [sym_assignment_expression] = STATE(1144), + [sym__augmented_assignment_lhs] = STATE(1925), + [sym_augmented_assignment_expression] = STATE(1144), + [sym_ternary_expression] = STATE(1144), + [sym_binary_expression] = STATE(1144), + [sym_unary_expression] = STATE(1144), + [sym_update_expression] = STATE(1144), + [sym_string] = STATE(1265), + [sym_template_string] = STATE(1265), + [sym_regex] = STATE(1265), + [sym_meta_property] = STATE(1265), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2383), + [sym_non_null_expression] = STATE(950), + [sym_type_assertion] = STATE(1144), + [sym_as_expression] = STATE(1144), + [sym_internal_module] = STATE(1144), + [sym_type_arguments] = STATE(395), + [sym_type_parameters] = STATE(2913), + [aux_sym_export_statement_repeat1] = STATE(2575), + [sym_identifier] = ACTIONS(1352), + [anon_sym_export] = ACTIONS(1354), + [anon_sym_namespace] = ACTIONS(1356), + [anon_sym_LBRACE] = ACTIONS(571), + [anon_sym_type] = ACTIONS(1354), + [anon_sym_typeof] = ACTIONS(601), + [anon_sym_import] = ACTIONS(539), + [anon_sym_BANG] = ACTIONS(585), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(587), + [anon_sym_yield] = ACTIONS(589), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(1358), + [anon_sym_class] = ACTIONS(545), + [anon_sym_async] = ACTIONS(1360), + [anon_sym_function] = ACTIONS(549), + [anon_sym_new] = ACTIONS(1362), + [anon_sym_PLUS] = ACTIONS(905), + [anon_sym_DASH] = ACTIONS(905), + [anon_sym_TILDE] = ACTIONS(585), + [anon_sym_void] = ACTIONS(601), + [anon_sym_delete] = ACTIONS(601), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_DQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(85), + [sym_number] = ACTIONS(1364), + [sym_this] = ACTIONS(1366), + [sym_super] = ACTIONS(1366), + [sym_true] = ACTIONS(1366), + [sym_false] = ACTIONS(1366), + [sym_null] = ACTIONS(1366), + [sym_undefined] = ACTIONS(1366), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(1354), + [anon_sym_get] = ACTIONS(1354), + [anon_sym_set] = ACTIONS(1354), + [anon_sym_declare] = ACTIONS(1354), + [anon_sym_public] = ACTIONS(1354), + [anon_sym_private] = ACTIONS(1354), + [anon_sym_protected] = ACTIONS(1354), + [anon_sym_module] = ACTIONS(1354), + [anon_sym_any] = ACTIONS(1354), + [anon_sym_number] = ACTIONS(1354), + [anon_sym_boolean] = ACTIONS(1354), + [anon_sym_string] = ACTIONS(1354), + [anon_sym_symbol] = ACTIONS(1354), + [sym_readonly] = ACTIONS(1354), + }, + [185] = { + [sym_import] = STATE(1523), + [sym_parenthesized_expression] = STATE(768), + [sym__expression] = STATE(1291), + [sym_yield_expression] = STATE(1567), + [sym_object] = STATE(1357), + [sym_array] = STATE(1360), + [sym_class] = STATE(1523), + [sym_function] = STATE(1523), + [sym_generator_function] = STATE(1523), + [sym_arrow_function] = STATE(1523), + [sym__call_signature] = STATE(3196), + [sym_call_expression] = STATE(1523), + [sym_new_expression] = STATE(1567), + [sym_await_expression] = STATE(1567), + [sym_member_expression] = STATE(768), + [sym_subscript_expression] = STATE(768), + [sym_assignment_expression] = STATE(1567), + [sym__augmented_assignment_lhs] = STATE(1928), + [sym_augmented_assignment_expression] = STATE(1567), + [sym_ternary_expression] = STATE(1567), + [sym_binary_expression] = STATE(1567), + [sym_unary_expression] = STATE(1567), + [sym_update_expression] = STATE(1567), + [sym_sequence_expression] = STATE(2867), + [sym_string] = STATE(1523), + [sym_template_string] = STATE(1523), + [sym_regex] = STATE(1523), + [sym_meta_property] = STATE(1523), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(774), + [sym_type_assertion] = STATE(1567), + [sym_as_expression] = STATE(1567), + [sym_internal_module] = STATE(1567), + [sym_type_arguments] = STATE(292), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2575), + [sym_identifier] = ACTIONS(567), + [anon_sym_export] = ACTIONS(531), + [anon_sym_namespace] = ACTIONS(533), + [anon_sym_LBRACE] = ACTIONS(571), + [anon_sym_type] = ACTIONS(531), + [anon_sym_typeof] = ACTIONS(19), + [anon_sym_import] = ACTIONS(539), + [anon_sym_BANG] = ACTIONS(29), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(39), + [anon_sym_yield] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(545), + [anon_sym_async] = ACTIONS(547), + [anon_sym_function] = ACTIONS(549), + [anon_sym_new] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(29), + [anon_sym_void] = ACTIONS(19), + [anon_sym_delete] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_DQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(85), + [sym_number] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(531), + [anon_sym_get] = ACTIONS(531), + [anon_sym_set] = ACTIONS(531), + [anon_sym_declare] = ACTIONS(531), + [anon_sym_public] = ACTIONS(531), + [anon_sym_private] = ACTIONS(531), + [anon_sym_protected] = ACTIONS(531), + [anon_sym_module] = ACTIONS(531), + [anon_sym_any] = ACTIONS(531), + [anon_sym_number] = ACTIONS(531), + [anon_sym_boolean] = ACTIONS(531), + [anon_sym_string] = ACTIONS(531), + [anon_sym_symbol] = ACTIONS(531), + [sym_readonly] = ACTIONS(531), + }, + [186] = { + [sym_import] = STATE(1010), + [sym_parenthesized_expression] = STATE(659), + [sym__expression] = STATE(1661), + [sym_yield_expression] = STATE(1144), + [sym_object] = STATE(991), + [sym_array] = STATE(988), + [sym_class] = STATE(1010), + [sym_function] = STATE(1010), + [sym_generator_function] = STATE(1010), + [sym_arrow_function] = STATE(1010), + [sym__call_signature] = STATE(3190), + [sym_call_expression] = STATE(1010), + [sym_new_expression] = STATE(1144), + [sym_await_expression] = STATE(1144), + [sym_member_expression] = STATE(659), + [sym_subscript_expression] = STATE(659), + [sym_assignment_expression] = STATE(1144), + [sym__augmented_assignment_lhs] = STATE(1925), + [sym_augmented_assignment_expression] = STATE(1144), + [sym_ternary_expression] = STATE(1144), + [sym_binary_expression] = STATE(1144), + [sym_unary_expression] = STATE(1144), + [sym_update_expression] = STATE(1144), + [sym_string] = STATE(1010), + [sym_template_string] = STATE(1010), + [sym_regex] = STATE(1010), + [sym_meta_property] = STATE(1010), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(950), + [sym_type_assertion] = STATE(1144), + [sym_as_expression] = STATE(1144), + [sym_internal_module] = STATE(1144), + [sym_type_arguments] = STATE(395), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2580), + [sym_identifier] = ACTIONS(1370), + [anon_sym_export] = ACTIONS(1372), + [anon_sym_namespace] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(509), + [anon_sym_type] = ACTIONS(1372), + [anon_sym_typeof] = ACTIONS(601), + [anon_sym_import] = ACTIONS(435), + [anon_sym_BANG] = ACTIONS(585), + [anon_sym_LPAREN] = ACTIONS(515), + [anon_sym_await] = ACTIONS(587), + [anon_sym_yield] = ACTIONS(589), + [anon_sym_LBRACK] = ACTIONS(517), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(781), + [anon_sym_DOT] = ACTIONS(1376), + [anon_sym_class] = ACTIONS(451), + [anon_sym_async] = ACTIONS(1378), + [anon_sym_function] = ACTIONS(455), + [anon_sym_new] = ACTIONS(903), + [anon_sym_PLUS] = ACTIONS(905), + [anon_sym_DASH] = ACTIONS(905), + [anon_sym_TILDE] = ACTIONS(585), + [anon_sym_void] = ACTIONS(601), + [anon_sym_delete] = ACTIONS(601), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_DQUOTE] = ACTIONS(475), + [anon_sym_SQUOTE] = ACTIONS(477), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(479), + [sym_number] = ACTIONS(1380), + [sym_this] = ACTIONS(1382), + [sym_super] = ACTIONS(1382), + [sym_true] = ACTIONS(1382), + [sym_false] = ACTIONS(1382), + [sym_null] = ACTIONS(1382), + [sym_undefined] = ACTIONS(1382), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(1372), + [anon_sym_get] = ACTIONS(1372), + [anon_sym_set] = ACTIONS(1372), + [anon_sym_declare] = ACTIONS(1372), + [anon_sym_public] = ACTIONS(1372), + [anon_sym_private] = ACTIONS(1372), + [anon_sym_protected] = ACTIONS(1372), + [anon_sym_module] = ACTIONS(1372), + [anon_sym_any] = ACTIONS(1372), + [anon_sym_number] = ACTIONS(1372), + [anon_sym_boolean] = ACTIONS(1372), + [anon_sym_string] = ACTIONS(1372), + [anon_sym_symbol] = ACTIONS(1372), + [sym_readonly] = ACTIONS(1372), + }, + [187] = { + [sym_import] = STATE(1151), + [sym_parenthesized_expression] = STATE(759), + [sym__expression] = STATE(1329), + [sym_yield_expression] = STATE(1144), + [sym_object] = STATE(1257), + [sym_array] = STATE(1254), + [sym_class] = STATE(1151), + [sym_function] = STATE(1151), + [sym_generator_function] = STATE(1151), + [sym_arrow_function] = STATE(1151), + [sym__call_signature] = STATE(3082), + [sym_call_expression] = STATE(1151), + [sym_new_expression] = STATE(1144), + [sym_await_expression] = STATE(1144), + [sym_member_expression] = STATE(759), + [sym_subscript_expression] = STATE(759), + [sym_assignment_expression] = STATE(1144), + [sym__augmented_assignment_lhs] = STATE(1924), + [sym_augmented_assignment_expression] = STATE(1144), + [sym_ternary_expression] = STATE(1144), + [sym_binary_expression] = STATE(1144), + [sym_unary_expression] = STATE(1144), + [sym_update_expression] = STATE(1144), + [sym_sequence_expression] = STATE(3188), + [sym_string] = STATE(1151), + [sym_template_string] = STATE(1151), + [sym_regex] = STATE(1151), + [sym_meta_property] = STATE(1151), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(754), + [sym_type_assertion] = STATE(1144), + [sym_as_expression] = STATE(1144), + [sym_internal_module] = STATE(1144), + [sym_type_arguments] = STATE(326), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2580), [sym_identifier] = ACTIONS(499), [anon_sym_export] = ACTIONS(501), [anon_sym_namespace] = ACTIONS(507), - [anon_sym_LBRACE] = ACTIONS(1332), + [anon_sym_LBRACE] = ACTIONS(509), [anon_sym_type] = ACTIONS(501), [anon_sym_typeof] = ACTIONS(471), [anon_sym_import] = ACTIONS(435), @@ -29070,134 +30114,44 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(501), [sym_readonly] = ACTIONS(501), }, - [177] = { - [sym__call_signature] = STATE(3042), - [sym_string] = STATE(2189), - [sym_formal_parameters] = STATE(2157), - [sym__property_name] = STATE(2189), - [sym_computed_property_name] = STATE(2189), - [sym_type_parameters] = STATE(2850), - [aux_sym_object_repeat1] = STATE(2739), - [sym_identifier] = ACTIONS(1358), - [anon_sym_export] = ACTIONS(1360), - [anon_sym_STAR] = ACTIONS(1362), - [anon_sym_EQ] = ACTIONS(1282), - [anon_sym_as] = ACTIONS(808), - [anon_sym_namespace] = ACTIONS(1360), - [anon_sym_COMMA] = ACTIONS(841), - [anon_sym_RBRACE] = ACTIONS(1201), - [anon_sym_type] = ACTIONS(1360), - [anon_sym_BANG] = ACTIONS(808), - [anon_sym_LPAREN] = ACTIONS(1365), - [anon_sym_in] = ACTIONS(808), - [anon_sym_SEMI] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(1216), - [anon_sym_LBRACK] = ACTIONS(1369), - [anon_sym_LT] = ACTIONS(1371), - [anon_sym_GT] = ACTIONS(808), - [anon_sym_SLASH] = ACTIONS(808), - [anon_sym_DOT] = ACTIONS(1007), - [anon_sym_async] = ACTIONS(1360), - [anon_sym_function] = ACTIONS(1375), - [anon_sym_EQ_GT] = ACTIONS(1009), - [anon_sym_QMARK_DOT] = ACTIONS(1011), - [anon_sym_PLUS_EQ] = ACTIONS(831), - [anon_sym_DASH_EQ] = ACTIONS(831), - [anon_sym_STAR_EQ] = ACTIONS(831), - [anon_sym_SLASH_EQ] = ACTIONS(831), - [anon_sym_PERCENT_EQ] = ACTIONS(831), - [anon_sym_CARET_EQ] = ACTIONS(831), - [anon_sym_AMP_EQ] = ACTIONS(831), - [anon_sym_PIPE_EQ] = ACTIONS(831), - [anon_sym_GT_GT_EQ] = ACTIONS(831), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(831), - [anon_sym_LT_LT_EQ] = ACTIONS(831), - [anon_sym_STAR_STAR_EQ] = ACTIONS(831), - [anon_sym_AMP_AMP_EQ] = ACTIONS(831), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(831), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(831), - [anon_sym_QMARK] = ACTIONS(1221), - [anon_sym_AMP_AMP] = ACTIONS(808), - [anon_sym_PIPE_PIPE] = ACTIONS(808), - [anon_sym_GT_GT] = ACTIONS(808), - [anon_sym_GT_GT_GT] = ACTIONS(808), - [anon_sym_LT_LT] = ACTIONS(808), - [anon_sym_AMP] = ACTIONS(808), - [anon_sym_CARET] = ACTIONS(808), - [anon_sym_PIPE] = ACTIONS(808), - [anon_sym_PLUS] = ACTIONS(808), - [anon_sym_DASH] = ACTIONS(808), - [anon_sym_PERCENT] = ACTIONS(808), - [anon_sym_STAR_STAR] = ACTIONS(808), - [anon_sym_LT_EQ] = ACTIONS(841), - [anon_sym_EQ_EQ] = ACTIONS(808), - [anon_sym_EQ_EQ_EQ] = ACTIONS(841), - [anon_sym_BANG_EQ] = ACTIONS(808), - [anon_sym_BANG_EQ_EQ] = ACTIONS(841), - [anon_sym_GT_EQ] = ACTIONS(841), - [anon_sym_QMARK_QMARK] = ACTIONS(808), - [anon_sym_instanceof] = ACTIONS(808), - [anon_sym_PLUS_PLUS] = ACTIONS(841), - [anon_sym_DASH_DASH] = ACTIONS(841), - [anon_sym_DQUOTE] = ACTIONS(845), - [anon_sym_SQUOTE] = ACTIONS(847), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(841), - [sym_number] = ACTIONS(1377), - [anon_sym_static] = ACTIONS(1360), - [anon_sym_get] = ACTIONS(1379), - [anon_sym_set] = ACTIONS(1379), - [anon_sym_declare] = ACTIONS(1360), - [anon_sym_public] = ACTIONS(1360), - [anon_sym_private] = ACTIONS(1360), - [anon_sym_protected] = ACTIONS(1360), - [anon_sym_module] = ACTIONS(1360), - [anon_sym_any] = ACTIONS(1360), - [anon_sym_number] = ACTIONS(1360), - [anon_sym_boolean] = ACTIONS(1360), - [anon_sym_string] = ACTIONS(1360), - [anon_sym_symbol] = ACTIONS(1360), - [sym_readonly] = ACTIONS(1360), - [sym__automatic_semicolon] = ACTIONS(841), - }, - [178] = { - [sym_import] = STATE(1101), - [sym_parenthesized_expression] = STATE(739), - [sym__expression] = STATE(1327), - [sym_yield_expression] = STATE(1105), - [sym_object] = STATE(1297), - [sym_array] = STATE(1296), - [sym_class] = STATE(1101), - [sym_function] = STATE(1101), - [sym_generator_function] = STATE(1101), - [sym_arrow_function] = STATE(1101), - [sym__call_signature] = STATE(3116), - [sym_call_expression] = STATE(1101), - [sym_new_expression] = STATE(1105), - [sym_await_expression] = STATE(1105), - [sym_member_expression] = STATE(739), - [sym_subscript_expression] = STATE(739), - [sym_assignment_expression] = STATE(1105), - [sym__augmented_assignment_lhs] = STATE(1920), - [sym_augmented_assignment_expression] = STATE(1105), - [sym_ternary_expression] = STATE(1105), - [sym_binary_expression] = STATE(1105), - [sym_unary_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_sequence_expression] = STATE(3100), - [sym_string] = STATE(1101), - [sym_template_string] = STATE(1101), - [sym_regex] = STATE(1101), - [sym_meta_property] = STATE(1101), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(755), - [sym_type_assertion] = STATE(1105), - [sym_as_expression] = STATE(1105), - [sym_internal_module] = STATE(1105), - [sym_type_arguments] = STATE(361), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2497), + [188] = { + [sym_import] = STATE(1151), + [sym_parenthesized_expression] = STATE(759), + [sym__expression] = STATE(1337), + [sym_yield_expression] = STATE(1144), + [sym_object] = STATE(1257), + [sym_array] = STATE(1254), + [sym_class] = STATE(1151), + [sym_function] = STATE(1151), + [sym_generator_function] = STATE(1151), + [sym_arrow_function] = STATE(1151), + [sym__call_signature] = STATE(3082), + [sym_call_expression] = STATE(1151), + [sym_new_expression] = STATE(1144), + [sym_await_expression] = STATE(1144), + [sym_member_expression] = STATE(759), + [sym_subscript_expression] = STATE(759), + [sym_assignment_expression] = STATE(1144), + [sym__augmented_assignment_lhs] = STATE(1924), + [sym_augmented_assignment_expression] = STATE(1144), + [sym_ternary_expression] = STATE(1144), + [sym_binary_expression] = STATE(1144), + [sym_unary_expression] = STATE(1144), + [sym_update_expression] = STATE(1144), + [sym_sequence_expression] = STATE(3187), + [sym_string] = STATE(1151), + [sym_template_string] = STATE(1151), + [sym_regex] = STATE(1151), + [sym_meta_property] = STATE(1151), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(754), + [sym_type_assertion] = STATE(1144), + [sym_as_expression] = STATE(1144), + [sym_internal_module] = STATE(1144), + [sym_type_arguments] = STATE(326), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2580), [sym_identifier] = ACTIONS(499), [anon_sym_export] = ACTIONS(501), [anon_sym_namespace] = ACTIONS(507), @@ -29250,48 +30204,138 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(501), [sym_readonly] = ACTIONS(501), }, - [179] = { - [sym_import] = STATE(1101), - [sym_statement_block] = STATE(1179), - [sym_parenthesized_expression] = STATE(739), - [sym__expression] = STATE(1018), - [sym_yield_expression] = STATE(1105), - [sym_object] = STATE(1297), - [sym_array] = STATE(1296), - [sym_class] = STATE(1101), - [sym_function] = STATE(1101), - [sym_generator_function] = STATE(1101), - [sym_arrow_function] = STATE(1101), - [sym__call_signature] = STATE(3116), - [sym_call_expression] = STATE(1101), - [sym_new_expression] = STATE(1105), - [sym_await_expression] = STATE(1105), - [sym_member_expression] = STATE(739), - [sym_subscript_expression] = STATE(739), - [sym_assignment_expression] = STATE(1105), - [sym__augmented_assignment_lhs] = STATE(1920), - [sym_augmented_assignment_expression] = STATE(1105), - [sym_ternary_expression] = STATE(1105), - [sym_binary_expression] = STATE(1105), - [sym_unary_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_string] = STATE(1101), - [sym_template_string] = STATE(1101), - [sym_regex] = STATE(1101), - [sym_meta_property] = STATE(1101), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(755), - [sym_type_assertion] = STATE(1105), - [sym_as_expression] = STATE(1105), - [sym_internal_module] = STATE(1105), - [sym_type_arguments] = STATE(361), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2497), + [189] = { + [sym_import] = STATE(1690), + [sym_statement_block] = STATE(1684), + [sym_parenthesized_expression] = STATE(834), + [sym__expression] = STATE(1293), + [sym_yield_expression] = STATE(1687), + [sym_object] = STATE(1538), + [sym_array] = STATE(1543), + [sym_class] = STATE(1690), + [sym_function] = STATE(1690), + [sym_generator_function] = STATE(1690), + [sym_arrow_function] = STATE(1690), + [sym__call_signature] = STATE(3133), + [sym_call_expression] = STATE(1690), + [sym_new_expression] = STATE(1687), + [sym_await_expression] = STATE(1687), + [sym_member_expression] = STATE(834), + [sym_subscript_expression] = STATE(834), + [sym_assignment_expression] = STATE(1687), + [sym__augmented_assignment_lhs] = STATE(1921), + [sym_augmented_assignment_expression] = STATE(1687), + [sym_ternary_expression] = STATE(1687), + [sym_binary_expression] = STATE(1687), + [sym_unary_expression] = STATE(1687), + [sym_update_expression] = STATE(1687), + [sym_string] = STATE(1690), + [sym_template_string] = STATE(1690), + [sym_regex] = STATE(1690), + [sym_meta_property] = STATE(1690), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(846), + [sym_type_assertion] = STATE(1687), + [sym_as_expression] = STATE(1687), + [sym_internal_module] = STATE(1687), + [sym_type_arguments] = STATE(301), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2545), + [sym_identifier] = ACTIONS(869), + [anon_sym_export] = ACTIONS(673), + [anon_sym_namespace] = ACTIONS(675), + [anon_sym_LBRACE] = ACTIONS(1368), + [anon_sym_type] = ACTIONS(673), + [anon_sym_typeof] = ACTIONS(707), + [anon_sym_import] = ACTIONS(681), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_await] = ACTIONS(687), + [anon_sym_yield] = ACTIONS(689), + [anon_sym_LBRACK] = ACTIONS(879), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(693), + [anon_sym_class] = ACTIONS(695), + [anon_sym_async] = ACTIONS(697), + [anon_sym_function] = ACTIONS(699), + [anon_sym_new] = ACTIONS(881), + [anon_sym_PLUS] = ACTIONS(883), + [anon_sym_DASH] = ACTIONS(883), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_void] = ACTIONS(707), + [anon_sym_delete] = ACTIONS(707), + [anon_sym_PLUS_PLUS] = ACTIONS(709), + [anon_sym_DASH_DASH] = ACTIONS(709), + [anon_sym_DQUOTE] = ACTIONS(711), + [anon_sym_SQUOTE] = ACTIONS(713), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(715), + [sym_number] = ACTIONS(885), + [sym_this] = ACTIONS(721), + [sym_super] = ACTIONS(721), + [sym_true] = ACTIONS(721), + [sym_false] = ACTIONS(721), + [sym_null] = ACTIONS(721), + [sym_undefined] = ACTIONS(721), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(673), + [anon_sym_get] = ACTIONS(673), + [anon_sym_set] = ACTIONS(673), + [anon_sym_declare] = ACTIONS(673), + [anon_sym_public] = ACTIONS(673), + [anon_sym_private] = ACTIONS(673), + [anon_sym_protected] = ACTIONS(673), + [anon_sym_module] = ACTIONS(673), + [anon_sym_any] = ACTIONS(673), + [anon_sym_number] = ACTIONS(673), + [anon_sym_boolean] = ACTIONS(673), + [anon_sym_string] = ACTIONS(673), + [anon_sym_symbol] = ACTIONS(673), + [sym_readonly] = ACTIONS(673), + }, + [190] = { + [sym_import] = STATE(1151), + [sym_parenthesized_expression] = STATE(759), + [sym__expression] = STATE(1338), + [sym_yield_expression] = STATE(1144), + [sym_object] = STATE(1257), + [sym_array] = STATE(1254), + [sym_class] = STATE(1151), + [sym_function] = STATE(1151), + [sym_generator_function] = STATE(1151), + [sym_arrow_function] = STATE(1151), + [sym__call_signature] = STATE(3082), + [sym_call_expression] = STATE(1151), + [sym_new_expression] = STATE(1144), + [sym_await_expression] = STATE(1144), + [sym_member_expression] = STATE(759), + [sym_subscript_expression] = STATE(759), + [sym_assignment_expression] = STATE(1144), + [sym__augmented_assignment_lhs] = STATE(1924), + [sym_augmented_assignment_expression] = STATE(1144), + [sym_ternary_expression] = STATE(1144), + [sym_binary_expression] = STATE(1144), + [sym_unary_expression] = STATE(1144), + [sym_update_expression] = STATE(1144), + [sym_sequence_expression] = STATE(3221), + [sym_string] = STATE(1151), + [sym_template_string] = STATE(1151), + [sym_regex] = STATE(1151), + [sym_meta_property] = STATE(1151), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(754), + [sym_type_assertion] = STATE(1144), + [sym_as_expression] = STATE(1144), + [sym_internal_module] = STATE(1144), + [sym_type_arguments] = STATE(326), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2580), [sym_identifier] = ACTIONS(499), [anon_sym_export] = ACTIONS(501), [anon_sym_namespace] = ACTIONS(507), - [anon_sym_LBRACE] = ACTIONS(1332), + [anon_sym_LBRACE] = ACTIONS(509), [anon_sym_type] = ACTIONS(501), [anon_sym_typeof] = ACTIONS(471), [anon_sym_import] = ACTIONS(435), @@ -29340,48 +30384,48 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(501), [sym_readonly] = ACTIONS(501), }, - [180] = { - [sym_import] = STATE(1101), - [sym_statement_block] = STATE(1176), - [sym_parenthesized_expression] = STATE(739), - [sym__expression] = STATE(1017), - [sym_yield_expression] = STATE(1105), - [sym_object] = STATE(1297), - [sym_array] = STATE(1296), - [sym_class] = STATE(1101), - [sym_function] = STATE(1101), - [sym_generator_function] = STATE(1101), - [sym_arrow_function] = STATE(1101), - [sym__call_signature] = STATE(3116), - [sym_call_expression] = STATE(1101), - [sym_new_expression] = STATE(1105), - [sym_await_expression] = STATE(1105), - [sym_member_expression] = STATE(739), - [sym_subscript_expression] = STATE(739), - [sym_assignment_expression] = STATE(1105), - [sym__augmented_assignment_lhs] = STATE(1920), - [sym_augmented_assignment_expression] = STATE(1105), - [sym_ternary_expression] = STATE(1105), - [sym_binary_expression] = STATE(1105), - [sym_unary_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_string] = STATE(1101), - [sym_template_string] = STATE(1101), - [sym_regex] = STATE(1101), - [sym_meta_property] = STATE(1101), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(755), - [sym_type_assertion] = STATE(1105), - [sym_as_expression] = STATE(1105), - [sym_internal_module] = STATE(1105), - [sym_type_arguments] = STATE(361), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2497), + [191] = { + [sym_import] = STATE(1151), + [sym_parenthesized_expression] = STATE(759), + [sym__expression] = STATE(1186), + [sym_yield_expression] = STATE(1144), + [sym_object] = STATE(1257), + [sym_array] = STATE(1254), + [sym_class] = STATE(1151), + [sym_function] = STATE(1151), + [sym_generator_function] = STATE(1151), + [sym_arrow_function] = STATE(1151), + [sym__call_signature] = STATE(3082), + [sym_call_expression] = STATE(1151), + [sym_new_expression] = STATE(1144), + [sym_await_expression] = STATE(1144), + [sym_member_expression] = STATE(759), + [sym_subscript_expression] = STATE(759), + [sym_assignment_expression] = STATE(1144), + [sym__augmented_assignment_lhs] = STATE(1924), + [sym_augmented_assignment_expression] = STATE(1144), + [sym_ternary_expression] = STATE(1144), + [sym_binary_expression] = STATE(1144), + [sym_unary_expression] = STATE(1144), + [sym_update_expression] = STATE(1144), + [sym_sequence_expression] = STATE(3085), + [sym_string] = STATE(1151), + [sym_template_string] = STATE(1151), + [sym_regex] = STATE(1151), + [sym_meta_property] = STATE(1151), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(754), + [sym_type_assertion] = STATE(1144), + [sym_as_expression] = STATE(1144), + [sym_internal_module] = STATE(1144), + [sym_type_arguments] = STATE(326), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2580), [sym_identifier] = ACTIONS(499), [anon_sym_export] = ACTIONS(501), [anon_sym_namespace] = ACTIONS(507), - [anon_sym_LBRACE] = ACTIONS(1332), + [anon_sym_LBRACE] = ACTIONS(509), [anon_sym_type] = ACTIONS(501), [anon_sym_typeof] = ACTIONS(471), [anon_sym_import] = ACTIONS(435), @@ -29430,80 +30474,80 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(501), [sym_readonly] = ACTIONS(501), }, - [181] = { - [sym_import] = STATE(1682), - [sym_statement_block] = STATE(1687), - [sym_parenthesized_expression] = STATE(828), - [sym__expression] = STATE(1261), - [sym_yield_expression] = STATE(1680), - [sym_object] = STATE(1586), - [sym_array] = STATE(1585), - [sym_class] = STATE(1682), - [sym_function] = STATE(1682), - [sym_generator_function] = STATE(1682), - [sym_arrow_function] = STATE(1682), - [sym__call_signature] = STATE(3105), - [sym_call_expression] = STATE(1682), - [sym_new_expression] = STATE(1680), - [sym_await_expression] = STATE(1680), - [sym_member_expression] = STATE(828), - [sym_subscript_expression] = STATE(828), - [sym_assignment_expression] = STATE(1680), - [sym__augmented_assignment_lhs] = STATE(1918), - [sym_augmented_assignment_expression] = STATE(1680), - [sym_ternary_expression] = STATE(1680), - [sym_binary_expression] = STATE(1680), - [sym_unary_expression] = STATE(1680), - [sym_update_expression] = STATE(1680), - [sym_string] = STATE(1682), - [sym_template_string] = STATE(1682), - [sym_regex] = STATE(1682), - [sym_meta_property] = STATE(1682), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(827), - [sym_type_assertion] = STATE(1680), - [sym_as_expression] = STATE(1680), - [sym_internal_module] = STATE(1680), - [sym_type_arguments] = STATE(256), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2529), - [sym_identifier] = ACTIONS(879), + [192] = { + [sym_import] = STATE(1523), + [sym_statement_block] = STATE(1530), + [sym_parenthesized_expression] = STATE(768), + [sym__expression] = STATE(1162), + [sym_yield_expression] = STATE(1567), + [sym_object] = STATE(1357), + [sym_array] = STATE(1360), + [sym_class] = STATE(1523), + [sym_function] = STATE(1523), + [sym_generator_function] = STATE(1523), + [sym_arrow_function] = STATE(1523), + [sym__call_signature] = STATE(3196), + [sym_call_expression] = STATE(1523), + [sym_new_expression] = STATE(1567), + [sym_await_expression] = STATE(1567), + [sym_member_expression] = STATE(768), + [sym_subscript_expression] = STATE(768), + [sym_assignment_expression] = STATE(1567), + [sym__augmented_assignment_lhs] = STATE(1928), + [sym_augmented_assignment_expression] = STATE(1567), + [sym_ternary_expression] = STATE(1567), + [sym_binary_expression] = STATE(1567), + [sym_unary_expression] = STATE(1567), + [sym_update_expression] = STATE(1567), + [sym_string] = STATE(1523), + [sym_template_string] = STATE(1523), + [sym_regex] = STATE(1523), + [sym_meta_property] = STATE(1523), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(774), + [sym_type_assertion] = STATE(1567), + [sym_as_expression] = STATE(1567), + [sym_internal_module] = STATE(1567), + [sym_type_arguments] = STATE(292), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2575), + [sym_identifier] = ACTIONS(567), [anon_sym_export] = ACTIONS(531), [anon_sym_namespace] = ACTIONS(533), - [anon_sym_LBRACE] = ACTIONS(1381), + [anon_sym_LBRACE] = ACTIONS(1332), [anon_sym_type] = ACTIONS(531), - [anon_sym_typeof] = ACTIONS(565), + [anon_sym_typeof] = ACTIONS(19), [anon_sym_import] = ACTIONS(539), - [anon_sym_BANG] = ACTIONS(541), - [anon_sym_LPAREN] = ACTIONS(887), - [anon_sym_await] = ACTIONS(545), - [anon_sym_yield] = ACTIONS(547), - [anon_sym_LBRACK] = ACTIONS(889), + [anon_sym_BANG] = ACTIONS(29), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(39), + [anon_sym_yield] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(551), - [anon_sym_class] = ACTIONS(553), - [anon_sym_async] = ACTIONS(555), - [anon_sym_function] = ACTIONS(557), - [anon_sym_new] = ACTIONS(891), - [anon_sym_PLUS] = ACTIONS(893), - [anon_sym_DASH] = ACTIONS(893), - [anon_sym_TILDE] = ACTIONS(541), - [anon_sym_void] = ACTIONS(565), - [anon_sym_delete] = ACTIONS(565), - [anon_sym_PLUS_PLUS] = ACTIONS(567), - [anon_sym_DASH_DASH] = ACTIONS(567), - [anon_sym_DQUOTE] = ACTIONS(569), - [anon_sym_SQUOTE] = ACTIONS(571), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(573), - [sym_number] = ACTIONS(895), - [sym_this] = ACTIONS(579), - [sym_super] = ACTIONS(579), - [sym_true] = ACTIONS(579), - [sym_false] = ACTIONS(579), - [sym_null] = ACTIONS(579), - [sym_undefined] = ACTIONS(579), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(545), + [anon_sym_async] = ACTIONS(547), + [anon_sym_function] = ACTIONS(549), + [anon_sym_new] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(29), + [anon_sym_void] = ACTIONS(19), + [anon_sym_delete] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_DQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(85), + [sym_number] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(531), [anon_sym_get] = ACTIONS(531), @@ -29520,339 +30564,339 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(531), [sym_readonly] = ACTIONS(531), }, - [182] = { - [sym_import] = STATE(1008), - [sym_parenthesized_expression] = STATE(654), - [sym__expression] = STATE(1683), - [sym_yield_expression] = STATE(1105), - [sym_object] = STATE(986), - [sym_array] = STATE(985), - [sym_class] = STATE(1008), - [sym_function] = STATE(1008), - [sym_generator_function] = STATE(1008), - [sym_arrow_function] = STATE(1008), - [sym__call_signature] = STATE(3002), - [sym_call_expression] = STATE(1008), - [sym_new_expression] = STATE(1105), - [sym_await_expression] = STATE(1105), - [sym_member_expression] = STATE(654), - [sym_subscript_expression] = STATE(654), - [sym_assignment_expression] = STATE(1105), - [sym__augmented_assignment_lhs] = STATE(1921), - [sym_augmented_assignment_expression] = STATE(1105), - [sym_ternary_expression] = STATE(1105), - [sym_binary_expression] = STATE(1105), - [sym_unary_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_string] = STATE(1008), - [sym_template_string] = STATE(1008), - [sym_regex] = STATE(1008), - [sym_meta_property] = STATE(1008), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(949), - [sym_type_assertion] = STATE(1105), - [sym_as_expression] = STATE(1105), - [sym_internal_module] = STATE(1105), - [sym_type_arguments] = STATE(324), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2497), - [sym_identifier] = ACTIONS(1348), - [anon_sym_export] = ACTIONS(1350), - [anon_sym_namespace] = ACTIONS(1352), - [anon_sym_LBRACE] = ACTIONS(509), - [anon_sym_type] = ACTIONS(1350), - [anon_sym_typeof] = ACTIONS(659), - [anon_sym_import] = ACTIONS(435), - [anon_sym_BANG] = ACTIONS(643), - [anon_sym_LPAREN] = ACTIONS(515), - [anon_sym_await] = ACTIONS(645), - [anon_sym_yield] = ACTIONS(647), - [anon_sym_LBRACK] = ACTIONS(517), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(449), - [anon_sym_DOT] = ACTIONS(1383), - [anon_sym_class] = ACTIONS(451), - [anon_sym_async] = ACTIONS(1356), - [anon_sym_function] = ACTIONS(455), - [anon_sym_new] = ACTIONS(865), - [anon_sym_PLUS] = ACTIONS(867), - [anon_sym_DASH] = ACTIONS(867), - [anon_sym_TILDE] = ACTIONS(643), - [anon_sym_void] = ACTIONS(659), - [anon_sym_delete] = ACTIONS(659), - [anon_sym_PLUS_PLUS] = ACTIONS(661), - [anon_sym_DASH_DASH] = ACTIONS(661), - [anon_sym_DQUOTE] = ACTIONS(475), - [anon_sym_SQUOTE] = ACTIONS(477), + [193] = { + [sym__call_signature] = STATE(3073), + [sym_string] = STATE(2218), + [sym_formal_parameters] = STATE(2253), + [sym__property_name] = STATE(2218), + [sym_computed_property_name] = STATE(2218), + [sym_type_parameters] = STATE(2827), + [aux_sym_object_repeat1] = STATE(2757), + [sym_identifier] = ACTIONS(1384), + [anon_sym_export] = ACTIONS(1386), + [anon_sym_STAR] = ACTIONS(1388), + [anon_sym_EQ] = ACTIONS(1258), + [anon_sym_as] = ACTIONS(808), + [anon_sym_namespace] = ACTIONS(1386), + [anon_sym_COMMA] = ACTIONS(841), + [anon_sym_RBRACE] = ACTIONS(1244), + [anon_sym_type] = ACTIONS(1386), + [anon_sym_BANG] = ACTIONS(808), + [anon_sym_LPAREN] = ACTIONS(1391), + [anon_sym_in] = ACTIONS(808), + [anon_sym_SEMI] = ACTIONS(841), + [anon_sym_COLON] = ACTIONS(1216), + [anon_sym_LBRACK] = ACTIONS(1395), + [anon_sym_LT] = ACTIONS(1397), + [anon_sym_GT] = ACTIONS(808), + [anon_sym_SLASH] = ACTIONS(808), + [anon_sym_DOT] = ACTIONS(1017), + [anon_sym_async] = ACTIONS(1386), + [anon_sym_function] = ACTIONS(1401), + [anon_sym_EQ_GT] = ACTIONS(1019), + [anon_sym_QMARK_DOT] = ACTIONS(1021), + [anon_sym_PLUS_EQ] = ACTIONS(831), + [anon_sym_DASH_EQ] = ACTIONS(831), + [anon_sym_STAR_EQ] = ACTIONS(831), + [anon_sym_SLASH_EQ] = ACTIONS(831), + [anon_sym_PERCENT_EQ] = ACTIONS(831), + [anon_sym_CARET_EQ] = ACTIONS(831), + [anon_sym_AMP_EQ] = ACTIONS(831), + [anon_sym_PIPE_EQ] = ACTIONS(831), + [anon_sym_GT_GT_EQ] = ACTIONS(831), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(831), + [anon_sym_LT_LT_EQ] = ACTIONS(831), + [anon_sym_STAR_STAR_EQ] = ACTIONS(831), + [anon_sym_AMP_AMP_EQ] = ACTIONS(831), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(831), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(831), + [anon_sym_QMARK] = ACTIONS(1221), + [anon_sym_AMP_AMP] = ACTIONS(808), + [anon_sym_PIPE_PIPE] = ACTIONS(808), + [anon_sym_GT_GT] = ACTIONS(808), + [anon_sym_GT_GT_GT] = ACTIONS(808), + [anon_sym_LT_LT] = ACTIONS(808), + [anon_sym_AMP] = ACTIONS(808), + [anon_sym_CARET] = ACTIONS(808), + [anon_sym_PIPE] = ACTIONS(808), + [anon_sym_PLUS] = ACTIONS(808), + [anon_sym_DASH] = ACTIONS(808), + [anon_sym_PERCENT] = ACTIONS(808), + [anon_sym_STAR_STAR] = ACTIONS(808), + [anon_sym_LT_EQ] = ACTIONS(841), + [anon_sym_EQ_EQ] = ACTIONS(808), + [anon_sym_EQ_EQ_EQ] = ACTIONS(841), + [anon_sym_BANG_EQ] = ACTIONS(808), + [anon_sym_BANG_EQ_EQ] = ACTIONS(841), + [anon_sym_GT_EQ] = ACTIONS(841), + [anon_sym_QMARK_QMARK] = ACTIONS(808), + [anon_sym_instanceof] = ACTIONS(808), + [anon_sym_PLUS_PLUS] = ACTIONS(841), + [anon_sym_DASH_DASH] = ACTIONS(841), + [anon_sym_DQUOTE] = ACTIONS(845), + [anon_sym_SQUOTE] = ACTIONS(847), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(479), - [sym_number] = ACTIONS(1344), - [sym_this] = ACTIONS(1346), - [sym_super] = ACTIONS(1346), - [sym_true] = ACTIONS(1346), - [sym_false] = ACTIONS(1346), - [sym_null] = ACTIONS(1346), - [sym_undefined] = ACTIONS(1346), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(1350), - [anon_sym_get] = ACTIONS(1350), - [anon_sym_set] = ACTIONS(1350), - [anon_sym_declare] = ACTIONS(1350), - [anon_sym_public] = ACTIONS(1350), - [anon_sym_private] = ACTIONS(1350), - [anon_sym_protected] = ACTIONS(1350), - [anon_sym_module] = ACTIONS(1350), - [anon_sym_any] = ACTIONS(1350), - [anon_sym_number] = ACTIONS(1350), - [anon_sym_boolean] = ACTIONS(1350), - [anon_sym_string] = ACTIONS(1350), - [anon_sym_symbol] = ACTIONS(1350), - [sym_readonly] = ACTIONS(1350), + [anon_sym_BQUOTE] = ACTIONS(841), + [sym_number] = ACTIONS(1403), + [anon_sym_static] = ACTIONS(1386), + [anon_sym_get] = ACTIONS(1405), + [anon_sym_set] = ACTIONS(1405), + [anon_sym_declare] = ACTIONS(1386), + [anon_sym_public] = ACTIONS(1386), + [anon_sym_private] = ACTIONS(1386), + [anon_sym_protected] = ACTIONS(1386), + [anon_sym_module] = ACTIONS(1386), + [anon_sym_any] = ACTIONS(1386), + [anon_sym_number] = ACTIONS(1386), + [anon_sym_boolean] = ACTIONS(1386), + [anon_sym_string] = ACTIONS(1386), + [anon_sym_symbol] = ACTIONS(1386), + [sym_readonly] = ACTIONS(1386), + [sym__automatic_semicolon] = ACTIONS(841), }, - [183] = { - [sym_import] = STATE(1008), - [sym_parenthesized_expression] = STATE(654), - [sym__expression] = STATE(1683), - [sym_yield_expression] = STATE(1105), - [sym_object] = STATE(986), - [sym_array] = STATE(985), - [sym_class] = STATE(1008), - [sym_function] = STATE(1008), - [sym_generator_function] = STATE(1008), - [sym_arrow_function] = STATE(1008), - [sym__call_signature] = STATE(3002), - [sym_call_expression] = STATE(1008), - [sym_new_expression] = STATE(1105), - [sym_await_expression] = STATE(1105), - [sym_member_expression] = STATE(654), - [sym_subscript_expression] = STATE(654), - [sym_assignment_expression] = STATE(1105), - [sym__augmented_assignment_lhs] = STATE(1921), - [sym_augmented_assignment_expression] = STATE(1105), - [sym_ternary_expression] = STATE(1105), - [sym_binary_expression] = STATE(1105), - [sym_unary_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_string] = STATE(1008), - [sym_template_string] = STATE(1008), - [sym_regex] = STATE(1008), - [sym_meta_property] = STATE(1008), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(949), - [sym_type_assertion] = STATE(1105), - [sym_as_expression] = STATE(1105), - [sym_internal_module] = STATE(1105), - [sym_type_arguments] = STATE(324), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2497), - [sym_identifier] = ACTIONS(1348), - [anon_sym_export] = ACTIONS(1350), - [anon_sym_namespace] = ACTIONS(1352), - [anon_sym_LBRACE] = ACTIONS(509), - [anon_sym_type] = ACTIONS(1350), - [anon_sym_typeof] = ACTIONS(659), + [194] = { + [sym_import] = STATE(1151), + [sym_statement_block] = STATE(1123), + [sym_parenthesized_expression] = STATE(837), + [sym__expression] = STATE(1238), + [sym_yield_expression] = STATE(1144), + [sym_object] = STATE(1495), + [sym_array] = STATE(1493), + [sym_class] = STATE(1151), + [sym_function] = STATE(1151), + [sym_generator_function] = STATE(1151), + [sym_arrow_function] = STATE(1151), + [sym__call_signature] = STATE(3190), + [sym_call_expression] = STATE(1151), + [sym_new_expression] = STATE(1144), + [sym_await_expression] = STATE(1144), + [sym_member_expression] = STATE(837), + [sym_subscript_expression] = STATE(837), + [sym_assignment_expression] = STATE(1144), + [sym__augmented_assignment_lhs] = STATE(1927), + [sym_augmented_assignment_expression] = STATE(1144), + [sym_ternary_expression] = STATE(1144), + [sym_binary_expression] = STATE(1144), + [sym_unary_expression] = STATE(1144), + [sym_update_expression] = STATE(1144), + [sym_string] = STATE(1151), + [sym_template_string] = STATE(1151), + [sym_regex] = STATE(1151), + [sym_meta_property] = STATE(1151), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(845), + [sym_type_assertion] = STATE(1144), + [sym_as_expression] = STATE(1144), + [sym_internal_module] = STATE(1144), + [sym_type_arguments] = STATE(357), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2580), + [sym_identifier] = ACTIONS(859), + [anon_sym_export] = ACTIONS(769), + [anon_sym_namespace] = ACTIONS(771), + [anon_sym_LBRACE] = ACTIONS(1350), + [anon_sym_type] = ACTIONS(769), + [anon_sym_typeof] = ACTIONS(791), [anon_sym_import] = ACTIONS(435), - [anon_sym_BANG] = ACTIONS(643), + [anon_sym_BANG] = ACTIONS(775), [anon_sym_LPAREN] = ACTIONS(515), - [anon_sym_await] = ACTIONS(645), - [anon_sym_yield] = ACTIONS(647), + [anon_sym_await] = ACTIONS(777), + [anon_sym_yield] = ACTIONS(779), [anon_sym_LBRACK] = ACTIONS(517), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(449), - [anon_sym_DOT] = ACTIONS(1340), + [anon_sym_SLASH] = ACTIONS(781), [anon_sym_class] = ACTIONS(451), - [anon_sym_async] = ACTIONS(1356), + [anon_sym_async] = ACTIONS(783), [anon_sym_function] = ACTIONS(455), [anon_sym_new] = ACTIONS(865), [anon_sym_PLUS] = ACTIONS(867), [anon_sym_DASH] = ACTIONS(867), - [anon_sym_TILDE] = ACTIONS(643), - [anon_sym_void] = ACTIONS(659), - [anon_sym_delete] = ACTIONS(659), - [anon_sym_PLUS_PLUS] = ACTIONS(661), - [anon_sym_DASH_DASH] = ACTIONS(661), + [anon_sym_TILDE] = ACTIONS(775), + [anon_sym_void] = ACTIONS(791), + [anon_sym_delete] = ACTIONS(791), + [anon_sym_PLUS_PLUS] = ACTIONS(793), + [anon_sym_DASH_DASH] = ACTIONS(793), [anon_sym_DQUOTE] = ACTIONS(475), [anon_sym_SQUOTE] = ACTIONS(477), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(479), - [sym_number] = ACTIONS(1344), - [sym_this] = ACTIONS(1346), - [sym_super] = ACTIONS(1346), - [sym_true] = ACTIONS(1346), - [sym_false] = ACTIONS(1346), - [sym_null] = ACTIONS(1346), - [sym_undefined] = ACTIONS(1346), + [sym_number] = ACTIONS(527), + [sym_this] = ACTIONS(485), + [sym_super] = ACTIONS(485), + [sym_true] = ACTIONS(485), + [sym_false] = ACTIONS(485), + [sym_null] = ACTIONS(485), + [sym_undefined] = ACTIONS(485), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(1350), - [anon_sym_get] = ACTIONS(1350), - [anon_sym_set] = ACTIONS(1350), - [anon_sym_declare] = ACTIONS(1350), - [anon_sym_public] = ACTIONS(1350), - [anon_sym_private] = ACTIONS(1350), - [anon_sym_protected] = ACTIONS(1350), - [anon_sym_module] = ACTIONS(1350), - [anon_sym_any] = ACTIONS(1350), - [anon_sym_number] = ACTIONS(1350), - [anon_sym_boolean] = ACTIONS(1350), - [anon_sym_string] = ACTIONS(1350), - [anon_sym_symbol] = ACTIONS(1350), - [sym_readonly] = ACTIONS(1350), + [anon_sym_static] = ACTIONS(769), + [anon_sym_get] = ACTIONS(769), + [anon_sym_set] = ACTIONS(769), + [anon_sym_declare] = ACTIONS(769), + [anon_sym_public] = ACTIONS(769), + [anon_sym_private] = ACTIONS(769), + [anon_sym_protected] = ACTIONS(769), + [anon_sym_module] = ACTIONS(769), + [anon_sym_any] = ACTIONS(769), + [anon_sym_number] = ACTIONS(769), + [anon_sym_boolean] = ACTIONS(769), + [anon_sym_string] = ACTIONS(769), + [anon_sym_symbol] = ACTIONS(769), + [sym_readonly] = ACTIONS(769), }, - [184] = { - [sym_import] = STATE(1008), - [sym_parenthesized_expression] = STATE(654), - [sym__expression] = STATE(1683), - [sym_yield_expression] = STATE(1105), - [sym_object] = STATE(986), - [sym_array] = STATE(985), - [sym_class] = STATE(1008), - [sym_function] = STATE(1008), - [sym_generator_function] = STATE(1008), - [sym_arrow_function] = STATE(1008), - [sym__call_signature] = STATE(3170), - [sym_call_expression] = STATE(1008), - [sym_new_expression] = STATE(1105), - [sym_await_expression] = STATE(1105), - [sym_member_expression] = STATE(654), - [sym_subscript_expression] = STATE(654), - [sym_assignment_expression] = STATE(1105), - [sym__augmented_assignment_lhs] = STATE(1921), - [sym_augmented_assignment_expression] = STATE(1105), - [sym_ternary_expression] = STATE(1105), - [sym_binary_expression] = STATE(1105), - [sym_unary_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_string] = STATE(1008), - [sym_template_string] = STATE(1008), - [sym_regex] = STATE(1008), - [sym_meta_property] = STATE(1008), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2467), - [sym_non_null_expression] = STATE(949), - [sym_type_assertion] = STATE(1105), - [sym_as_expression] = STATE(1105), - [sym_internal_module] = STATE(1105), - [sym_type_arguments] = STATE(324), - [sym_type_parameters] = STATE(2860), - [aux_sym_export_statement_repeat1] = STATE(2497), - [sym_identifier] = ACTIONS(1385), - [anon_sym_export] = ACTIONS(1387), - [anon_sym_namespace] = ACTIONS(1389), + [195] = { + [sym_import] = STATE(1010), + [sym_parenthesized_expression] = STATE(659), + [sym__expression] = STATE(1661), + [sym_yield_expression] = STATE(1144), + [sym_object] = STATE(991), + [sym_array] = STATE(988), + [sym_class] = STATE(1010), + [sym_function] = STATE(1010), + [sym_generator_function] = STATE(1010), + [sym_arrow_function] = STATE(1010), + [sym__call_signature] = STATE(3024), + [sym_call_expression] = STATE(1010), + [sym_new_expression] = STATE(1144), + [sym_await_expression] = STATE(1144), + [sym_member_expression] = STATE(659), + [sym_subscript_expression] = STATE(659), + [sym_assignment_expression] = STATE(1144), + [sym__augmented_assignment_lhs] = STATE(1925), + [sym_augmented_assignment_expression] = STATE(1144), + [sym_ternary_expression] = STATE(1144), + [sym_binary_expression] = STATE(1144), + [sym_unary_expression] = STATE(1144), + [sym_update_expression] = STATE(1144), + [sym_string] = STATE(1010), + [sym_template_string] = STATE(1010), + [sym_regex] = STATE(1010), + [sym_meta_property] = STATE(1010), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(950), + [sym_type_assertion] = STATE(1144), + [sym_as_expression] = STATE(1144), + [sym_internal_module] = STATE(1144), + [sym_type_arguments] = STATE(395), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2580), + [sym_identifier] = ACTIONS(1407), + [anon_sym_export] = ACTIONS(1409), + [anon_sym_namespace] = ACTIONS(1411), [anon_sym_LBRACE] = ACTIONS(509), - [anon_sym_type] = ACTIONS(1387), - [anon_sym_typeof] = ACTIONS(659), + [anon_sym_type] = ACTIONS(1409), + [anon_sym_typeof] = ACTIONS(601), [anon_sym_import] = ACTIONS(435), - [anon_sym_BANG] = ACTIONS(643), + [anon_sym_BANG] = ACTIONS(585), [anon_sym_LPAREN] = ACTIONS(515), - [anon_sym_await] = ACTIONS(645), - [anon_sym_yield] = ACTIONS(647), + [anon_sym_await] = ACTIONS(587), + [anon_sym_yield] = ACTIONS(589), [anon_sym_LBRACK] = ACTIONS(517), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(765), - [anon_sym_DOT] = ACTIONS(1340), + [anon_sym_SLASH] = ACTIONS(449), + [anon_sym_DOT] = ACTIONS(1358), [anon_sym_class] = ACTIONS(451), - [anon_sym_async] = ACTIONS(1391), + [anon_sym_async] = ACTIONS(1413), [anon_sym_function] = ACTIONS(455), - [anon_sym_new] = ACTIONS(865), - [anon_sym_PLUS] = ACTIONS(867), - [anon_sym_DASH] = ACTIONS(867), - [anon_sym_TILDE] = ACTIONS(643), - [anon_sym_void] = ACTIONS(659), - [anon_sym_delete] = ACTIONS(659), - [anon_sym_PLUS_PLUS] = ACTIONS(661), - [anon_sym_DASH_DASH] = ACTIONS(661), + [anon_sym_new] = ACTIONS(903), + [anon_sym_PLUS] = ACTIONS(905), + [anon_sym_DASH] = ACTIONS(905), + [anon_sym_TILDE] = ACTIONS(585), + [anon_sym_void] = ACTIONS(601), + [anon_sym_delete] = ACTIONS(601), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(603), [anon_sym_DQUOTE] = ACTIONS(475), [anon_sym_SQUOTE] = ACTIONS(477), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(479), - [sym_number] = ACTIONS(1344), - [sym_this] = ACTIONS(1346), - [sym_super] = ACTIONS(1346), - [sym_true] = ACTIONS(1346), - [sym_false] = ACTIONS(1346), - [sym_null] = ACTIONS(1346), - [sym_undefined] = ACTIONS(1346), + [sym_number] = ACTIONS(1380), + [sym_this] = ACTIONS(1382), + [sym_super] = ACTIONS(1382), + [sym_true] = ACTIONS(1382), + [sym_false] = ACTIONS(1382), + [sym_null] = ACTIONS(1382), + [sym_undefined] = ACTIONS(1382), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(1387), - [anon_sym_get] = ACTIONS(1387), - [anon_sym_set] = ACTIONS(1387), - [anon_sym_declare] = ACTIONS(1387), - [anon_sym_public] = ACTIONS(1387), - [anon_sym_private] = ACTIONS(1387), - [anon_sym_protected] = ACTIONS(1387), - [anon_sym_module] = ACTIONS(1387), - [anon_sym_any] = ACTIONS(1387), - [anon_sym_number] = ACTIONS(1387), - [anon_sym_boolean] = ACTIONS(1387), - [anon_sym_string] = ACTIONS(1387), - [anon_sym_symbol] = ACTIONS(1387), - [sym_readonly] = ACTIONS(1387), + [anon_sym_static] = ACTIONS(1409), + [anon_sym_get] = ACTIONS(1409), + [anon_sym_set] = ACTIONS(1409), + [anon_sym_declare] = ACTIONS(1409), + [anon_sym_public] = ACTIONS(1409), + [anon_sym_private] = ACTIONS(1409), + [anon_sym_protected] = ACTIONS(1409), + [anon_sym_module] = ACTIONS(1409), + [anon_sym_any] = ACTIONS(1409), + [anon_sym_number] = ACTIONS(1409), + [anon_sym_boolean] = ACTIONS(1409), + [anon_sym_string] = ACTIONS(1409), + [anon_sym_symbol] = ACTIONS(1409), + [sym_readonly] = ACTIONS(1409), }, - [185] = { - [sym_import] = STATE(1101), - [sym_parenthesized_expression] = STATE(948), - [sym__expression] = STATE(1502), - [sym_yield_expression] = STATE(1105), - [sym_object] = STATE(1654), - [sym_array] = STATE(1640), - [sym_class] = STATE(1101), - [sym_function] = STATE(1101), - [sym_generator_function] = STATE(1101), - [sym_arrow_function] = STATE(1101), - [sym__call_signature] = STATE(3002), - [sym_call_expression] = STATE(1101), - [sym_new_expression] = STATE(1105), - [sym_await_expression] = STATE(1105), - [sym_member_expression] = STATE(948), - [sym_subscript_expression] = STATE(948), - [sym_assignment_expression] = STATE(1105), - [sym__augmented_assignment_lhs] = STATE(1921), - [sym_augmented_assignment_expression] = STATE(1105), - [sym_ternary_expression] = STATE(1105), - [sym_binary_expression] = STATE(1105), - [sym_unary_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_string] = STATE(1101), - [sym_template_string] = STATE(1101), - [sym_regex] = STATE(1101), - [sym_meta_property] = STATE(1101), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(949), - [sym_type_assertion] = STATE(1105), - [sym_as_expression] = STATE(1105), - [sym_internal_module] = STATE(1105), - [sym_mapped_type_clause] = STATE(3044), - [sym_type_arguments] = STATE(324), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2497), - [sym_identifier] = ACTIONS(1393), - [anon_sym_export] = ACTIONS(1395), - [anon_sym_namespace] = ACTIONS(1397), + [196] = { + [sym_import] = STATE(1151), + [sym_parenthesized_expression] = STATE(759), + [sym__expression] = STATE(1350), + [sym_yield_expression] = STATE(1144), + [sym_object] = STATE(1257), + [sym_array] = STATE(1254), + [sym_class] = STATE(1151), + [sym_function] = STATE(1151), + [sym_generator_function] = STATE(1151), + [sym_arrow_function] = STATE(1151), + [sym__call_signature] = STATE(3082), + [sym_call_expression] = STATE(1151), + [sym_new_expression] = STATE(1144), + [sym_await_expression] = STATE(1144), + [sym_member_expression] = STATE(759), + [sym_subscript_expression] = STATE(759), + [sym_assignment_expression] = STATE(1144), + [sym__augmented_assignment_lhs] = STATE(1924), + [sym_augmented_assignment_expression] = STATE(1144), + [sym_ternary_expression] = STATE(1144), + [sym_binary_expression] = STATE(1144), + [sym_unary_expression] = STATE(1144), + [sym_update_expression] = STATE(1144), + [sym_sequence_expression] = STATE(3182), + [sym_string] = STATE(1151), + [sym_template_string] = STATE(1151), + [sym_regex] = STATE(1151), + [sym_meta_property] = STATE(1151), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(754), + [sym_type_assertion] = STATE(1144), + [sym_as_expression] = STATE(1144), + [sym_internal_module] = STATE(1144), + [sym_type_arguments] = STATE(326), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2580), + [sym_identifier] = ACTIONS(499), + [anon_sym_export] = ACTIONS(501), + [anon_sym_namespace] = ACTIONS(507), [anon_sym_LBRACE] = ACTIONS(509), - [anon_sym_type] = ACTIONS(1395), - [anon_sym_typeof] = ACTIONS(659), + [anon_sym_type] = ACTIONS(501), + [anon_sym_typeof] = ACTIONS(471), [anon_sym_import] = ACTIONS(435), - [anon_sym_BANG] = ACTIONS(643), + [anon_sym_BANG] = ACTIONS(437), [anon_sym_LPAREN] = ACTIONS(515), - [anon_sym_await] = ACTIONS(645), - [anon_sym_yield] = ACTIONS(647), + [anon_sym_await] = ACTIONS(443), + [anon_sym_yield] = ACTIONS(445), [anon_sym_LBRACK] = ACTIONS(517), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(449), [anon_sym_class] = ACTIONS(451), - [anon_sym_async] = ACTIONS(1399), + [anon_sym_async] = ACTIONS(521), [anon_sym_function] = ACTIONS(455), - [anon_sym_new] = ACTIONS(865), - [anon_sym_PLUS] = ACTIONS(867), - [anon_sym_DASH] = ACTIONS(867), - [anon_sym_TILDE] = ACTIONS(643), - [anon_sym_void] = ACTIONS(659), - [anon_sym_delete] = ACTIONS(659), - [anon_sym_PLUS_PLUS] = ACTIONS(661), - [anon_sym_DASH_DASH] = ACTIONS(661), + [anon_sym_new] = ACTIONS(523), + [anon_sym_PLUS] = ACTIONS(525), + [anon_sym_DASH] = ACTIONS(525), + [anon_sym_TILDE] = ACTIONS(437), + [anon_sym_void] = ACTIONS(471), + [anon_sym_delete] = ACTIONS(471), + [anon_sym_PLUS_PLUS] = ACTIONS(473), + [anon_sym_DASH_DASH] = ACTIONS(473), [anon_sym_DQUOTE] = ACTIONS(475), [anon_sym_SQUOTE] = ACTIONS(477), [sym_comment] = ACTIONS(3), @@ -29865,84 +30909,84 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(485), [sym_undefined] = ACTIONS(485), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(1395), - [anon_sym_get] = ACTIONS(1395), - [anon_sym_set] = ACTIONS(1395), - [anon_sym_declare] = ACTIONS(1395), - [anon_sym_public] = ACTIONS(1395), - [anon_sym_private] = ACTIONS(1395), - [anon_sym_protected] = ACTIONS(1395), - [anon_sym_module] = ACTIONS(1395), - [anon_sym_any] = ACTIONS(1395), - [anon_sym_number] = ACTIONS(1395), - [anon_sym_boolean] = ACTIONS(1395), - [anon_sym_string] = ACTIONS(1395), - [anon_sym_symbol] = ACTIONS(1395), - [sym_readonly] = ACTIONS(1395), - }, - [186] = { - [sym_import] = STATE(1101), - [sym_statement_block] = STATE(1180), - [sym_parenthesized_expression] = STATE(921), - [sym__expression] = STATE(1285), - [sym_yield_expression] = STATE(1105), - [sym_object] = STATE(1531), - [sym_array] = STATE(1536), - [sym_class] = STATE(1101), - [sym_function] = STATE(1101), - [sym_generator_function] = STATE(1101), - [sym_arrow_function] = STATE(1101), - [sym__call_signature] = STATE(3170), - [sym_call_expression] = STATE(1101), - [sym_new_expression] = STATE(1105), - [sym_await_expression] = STATE(1105), - [sym_member_expression] = STATE(921), - [sym_subscript_expression] = STATE(921), - [sym_assignment_expression] = STATE(1105), - [sym__augmented_assignment_lhs] = STATE(1917), - [sym_augmented_assignment_expression] = STATE(1105), - [sym_ternary_expression] = STATE(1105), - [sym_binary_expression] = STATE(1105), - [sym_unary_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_string] = STATE(1101), - [sym_template_string] = STATE(1101), - [sym_regex] = STATE(1101), - [sym_meta_property] = STATE(1101), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(882), - [sym_type_assertion] = STATE(1105), - [sym_as_expression] = STATE(1105), - [sym_internal_module] = STATE(1105), - [sym_type_arguments] = STATE(355), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2497), - [sym_identifier] = ACTIONS(897), - [anon_sym_export] = ACTIONS(751), - [anon_sym_namespace] = ACTIONS(753), - [anon_sym_LBRACE] = ACTIONS(1332), - [anon_sym_type] = ACTIONS(751), - [anon_sym_typeof] = ACTIONS(775), - [anon_sym_import] = ACTIONS(435), - [anon_sym_BANG] = ACTIONS(757), - [anon_sym_LPAREN] = ACTIONS(515), - [anon_sym_await] = ACTIONS(759), - [anon_sym_yield] = ACTIONS(761), + [anon_sym_static] = ACTIONS(501), + [anon_sym_get] = ACTIONS(501), + [anon_sym_set] = ACTIONS(501), + [anon_sym_declare] = ACTIONS(501), + [anon_sym_public] = ACTIONS(501), + [anon_sym_private] = ACTIONS(501), + [anon_sym_protected] = ACTIONS(501), + [anon_sym_module] = ACTIONS(501), + [anon_sym_any] = ACTIONS(501), + [anon_sym_number] = ACTIONS(501), + [anon_sym_boolean] = ACTIONS(501), + [anon_sym_string] = ACTIONS(501), + [anon_sym_symbol] = ACTIONS(501), + [sym_readonly] = ACTIONS(501), + }, + [197] = { + [sym_import] = STATE(1151), + [sym_parenthesized_expression] = STATE(759), + [sym__expression] = STATE(1341), + [sym_yield_expression] = STATE(1144), + [sym_object] = STATE(1257), + [sym_array] = STATE(1254), + [sym_class] = STATE(1151), + [sym_function] = STATE(1151), + [sym_generator_function] = STATE(1151), + [sym_arrow_function] = STATE(1151), + [sym__call_signature] = STATE(3082), + [sym_call_expression] = STATE(1151), + [sym_new_expression] = STATE(1144), + [sym_await_expression] = STATE(1144), + [sym_member_expression] = STATE(759), + [sym_subscript_expression] = STATE(759), + [sym_assignment_expression] = STATE(1144), + [sym__augmented_assignment_lhs] = STATE(1924), + [sym_augmented_assignment_expression] = STATE(1144), + [sym_ternary_expression] = STATE(1144), + [sym_binary_expression] = STATE(1144), + [sym_unary_expression] = STATE(1144), + [sym_update_expression] = STATE(1144), + [sym_sequence_expression] = STATE(3054), + [sym_string] = STATE(1151), + [sym_template_string] = STATE(1151), + [sym_regex] = STATE(1151), + [sym_meta_property] = STATE(1151), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(754), + [sym_type_assertion] = STATE(1144), + [sym_as_expression] = STATE(1144), + [sym_internal_module] = STATE(1144), + [sym_type_arguments] = STATE(326), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2580), + [sym_identifier] = ACTIONS(499), + [anon_sym_export] = ACTIONS(501), + [anon_sym_namespace] = ACTIONS(507), + [anon_sym_LBRACE] = ACTIONS(509), + [anon_sym_type] = ACTIONS(501), + [anon_sym_typeof] = ACTIONS(471), + [anon_sym_import] = ACTIONS(435), + [anon_sym_BANG] = ACTIONS(437), + [anon_sym_LPAREN] = ACTIONS(515), + [anon_sym_await] = ACTIONS(443), + [anon_sym_yield] = ACTIONS(445), [anon_sym_LBRACK] = ACTIONS(517), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(765), + [anon_sym_SLASH] = ACTIONS(449), [anon_sym_class] = ACTIONS(451), - [anon_sym_async] = ACTIONS(767), + [anon_sym_async] = ACTIONS(521), [anon_sym_function] = ACTIONS(455), - [anon_sym_new] = ACTIONS(903), - [anon_sym_PLUS] = ACTIONS(905), - [anon_sym_DASH] = ACTIONS(905), - [anon_sym_TILDE] = ACTIONS(757), - [anon_sym_void] = ACTIONS(775), - [anon_sym_delete] = ACTIONS(775), - [anon_sym_PLUS_PLUS] = ACTIONS(777), - [anon_sym_DASH_DASH] = ACTIONS(777), + [anon_sym_new] = ACTIONS(523), + [anon_sym_PLUS] = ACTIONS(525), + [anon_sym_DASH] = ACTIONS(525), + [anon_sym_TILDE] = ACTIONS(437), + [anon_sym_void] = ACTIONS(471), + [anon_sym_delete] = ACTIONS(471), + [anon_sym_PLUS_PLUS] = ACTIONS(473), + [anon_sym_DASH_DASH] = ACTIONS(473), [anon_sym_DQUOTE] = ACTIONS(475), [anon_sym_SQUOTE] = ACTIONS(477), [sym_comment] = ACTIONS(3), @@ -29955,174 +30999,174 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(485), [sym_undefined] = ACTIONS(485), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(751), - [anon_sym_get] = ACTIONS(751), - [anon_sym_set] = ACTIONS(751), - [anon_sym_declare] = ACTIONS(751), - [anon_sym_public] = ACTIONS(751), - [anon_sym_private] = ACTIONS(751), - [anon_sym_protected] = ACTIONS(751), - [anon_sym_module] = ACTIONS(751), - [anon_sym_any] = ACTIONS(751), - [anon_sym_number] = ACTIONS(751), - [anon_sym_boolean] = ACTIONS(751), - [anon_sym_string] = ACTIONS(751), - [anon_sym_symbol] = ACTIONS(751), - [sym_readonly] = ACTIONS(751), + [anon_sym_static] = ACTIONS(501), + [anon_sym_get] = ACTIONS(501), + [anon_sym_set] = ACTIONS(501), + [anon_sym_declare] = ACTIONS(501), + [anon_sym_public] = ACTIONS(501), + [anon_sym_private] = ACTIONS(501), + [anon_sym_protected] = ACTIONS(501), + [anon_sym_module] = ACTIONS(501), + [anon_sym_any] = ACTIONS(501), + [anon_sym_number] = ACTIONS(501), + [anon_sym_boolean] = ACTIONS(501), + [anon_sym_string] = ACTIONS(501), + [anon_sym_symbol] = ACTIONS(501), + [sym_readonly] = ACTIONS(501), }, - [187] = { - [sym_import] = STATE(1101), - [sym_statement_block] = STATE(1179), - [sym_parenthesized_expression] = STATE(921), - [sym__expression] = STATE(1284), - [sym_yield_expression] = STATE(1105), - [sym_object] = STATE(1531), - [sym_array] = STATE(1536), - [sym_class] = STATE(1101), - [sym_function] = STATE(1101), - [sym_generator_function] = STATE(1101), - [sym_arrow_function] = STATE(1101), - [sym__call_signature] = STATE(3170), - [sym_call_expression] = STATE(1101), - [sym_new_expression] = STATE(1105), - [sym_await_expression] = STATE(1105), - [sym_member_expression] = STATE(921), - [sym_subscript_expression] = STATE(921), - [sym_assignment_expression] = STATE(1105), - [sym__augmented_assignment_lhs] = STATE(1917), - [sym_augmented_assignment_expression] = STATE(1105), - [sym_ternary_expression] = STATE(1105), - [sym_binary_expression] = STATE(1105), - [sym_unary_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_string] = STATE(1101), - [sym_template_string] = STATE(1101), - [sym_regex] = STATE(1101), - [sym_meta_property] = STATE(1101), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(882), - [sym_type_assertion] = STATE(1105), - [sym_as_expression] = STATE(1105), - [sym_internal_module] = STATE(1105), - [sym_type_arguments] = STATE(355), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2497), - [sym_identifier] = ACTIONS(897), - [anon_sym_export] = ACTIONS(751), - [anon_sym_namespace] = ACTIONS(753), + [198] = { + [sym_import] = STATE(1523), + [sym_statement_block] = STATE(1575), + [sym_parenthesized_expression] = STATE(955), + [sym__expression] = STATE(1344), + [sym_yield_expression] = STATE(1567), + [sym_object] = STATE(1636), + [sym_array] = STATE(1643), + [sym_class] = STATE(1523), + [sym_function] = STATE(1523), + [sym_generator_function] = STATE(1523), + [sym_arrow_function] = STATE(1523), + [sym__call_signature] = STATE(3078), + [sym_call_expression] = STATE(1523), + [sym_new_expression] = STATE(1567), + [sym_await_expression] = STATE(1567), + [sym_member_expression] = STATE(955), + [sym_subscript_expression] = STATE(955), + [sym_assignment_expression] = STATE(1567), + [sym__augmented_assignment_lhs] = STATE(1929), + [sym_augmented_assignment_expression] = STATE(1567), + [sym_ternary_expression] = STATE(1567), + [sym_binary_expression] = STATE(1567), + [sym_unary_expression] = STATE(1567), + [sym_update_expression] = STATE(1567), + [sym_string] = STATE(1523), + [sym_template_string] = STATE(1523), + [sym_regex] = STATE(1523), + [sym_meta_property] = STATE(1523), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(953), + [sym_type_assertion] = STATE(1567), + [sym_as_expression] = STATE(1567), + [sym_internal_module] = STATE(1567), + [sym_type_arguments] = STATE(384), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2575), + [sym_identifier] = ACTIONS(887), + [anon_sym_export] = ACTIONS(635), + [anon_sym_namespace] = ACTIONS(637), [anon_sym_LBRACE] = ACTIONS(1332), - [anon_sym_type] = ACTIONS(751), - [anon_sym_typeof] = ACTIONS(775), - [anon_sym_import] = ACTIONS(435), - [anon_sym_BANG] = ACTIONS(757), - [anon_sym_LPAREN] = ACTIONS(515), - [anon_sym_await] = ACTIONS(759), - [anon_sym_yield] = ACTIONS(761), - [anon_sym_LBRACK] = ACTIONS(517), + [anon_sym_type] = ACTIONS(635), + [anon_sym_typeof] = ACTIONS(657), + [anon_sym_import] = ACTIONS(539), + [anon_sym_BANG] = ACTIONS(641), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(643), + [anon_sym_yield] = ACTIONS(645), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(765), - [anon_sym_class] = ACTIONS(451), - [anon_sym_async] = ACTIONS(767), - [anon_sym_function] = ACTIONS(455), - [anon_sym_new] = ACTIONS(903), - [anon_sym_PLUS] = ACTIONS(905), - [anon_sym_DASH] = ACTIONS(905), - [anon_sym_TILDE] = ACTIONS(757), - [anon_sym_void] = ACTIONS(775), - [anon_sym_delete] = ACTIONS(775), - [anon_sym_PLUS_PLUS] = ACTIONS(777), - [anon_sym_DASH_DASH] = ACTIONS(777), - [anon_sym_DQUOTE] = ACTIONS(475), - [anon_sym_SQUOTE] = ACTIONS(477), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(545), + [anon_sym_async] = ACTIONS(649), + [anon_sym_function] = ACTIONS(549), + [anon_sym_new] = ACTIONS(893), + [anon_sym_PLUS] = ACTIONS(895), + [anon_sym_DASH] = ACTIONS(895), + [anon_sym_TILDE] = ACTIONS(641), + [anon_sym_void] = ACTIONS(657), + [anon_sym_delete] = ACTIONS(657), + [anon_sym_PLUS_PLUS] = ACTIONS(659), + [anon_sym_DASH_DASH] = ACTIONS(659), + [anon_sym_DQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(479), - [sym_number] = ACTIONS(527), - [sym_this] = ACTIONS(485), - [sym_super] = ACTIONS(485), - [sym_true] = ACTIONS(485), - [sym_false] = ACTIONS(485), - [sym_null] = ACTIONS(485), - [sym_undefined] = ACTIONS(485), + [anon_sym_BQUOTE] = ACTIONS(85), + [sym_number] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(751), - [anon_sym_get] = ACTIONS(751), - [anon_sym_set] = ACTIONS(751), - [anon_sym_declare] = ACTIONS(751), - [anon_sym_public] = ACTIONS(751), - [anon_sym_private] = ACTIONS(751), - [anon_sym_protected] = ACTIONS(751), - [anon_sym_module] = ACTIONS(751), - [anon_sym_any] = ACTIONS(751), - [anon_sym_number] = ACTIONS(751), - [anon_sym_boolean] = ACTIONS(751), - [anon_sym_string] = ACTIONS(751), - [anon_sym_symbol] = ACTIONS(751), - [sym_readonly] = ACTIONS(751), + [anon_sym_static] = ACTIONS(635), + [anon_sym_get] = ACTIONS(635), + [anon_sym_set] = ACTIONS(635), + [anon_sym_declare] = ACTIONS(635), + [anon_sym_public] = ACTIONS(635), + [anon_sym_private] = ACTIONS(635), + [anon_sym_protected] = ACTIONS(635), + [anon_sym_module] = ACTIONS(635), + [anon_sym_any] = ACTIONS(635), + [anon_sym_number] = ACTIONS(635), + [anon_sym_boolean] = ACTIONS(635), + [anon_sym_string] = ACTIONS(635), + [anon_sym_symbol] = ACTIONS(635), + [sym_readonly] = ACTIONS(635), }, - [188] = { - [sym_import] = STATE(1101), - [sym_statement_block] = STATE(1176), - [sym_parenthesized_expression] = STATE(921), - [sym__expression] = STATE(1283), - [sym_yield_expression] = STATE(1105), - [sym_object] = STATE(1531), - [sym_array] = STATE(1536), - [sym_class] = STATE(1101), - [sym_function] = STATE(1101), - [sym_generator_function] = STATE(1101), - [sym_arrow_function] = STATE(1101), - [sym__call_signature] = STATE(3170), - [sym_call_expression] = STATE(1101), - [sym_new_expression] = STATE(1105), - [sym_await_expression] = STATE(1105), - [sym_member_expression] = STATE(921), - [sym_subscript_expression] = STATE(921), - [sym_assignment_expression] = STATE(1105), - [sym__augmented_assignment_lhs] = STATE(1917), - [sym_augmented_assignment_expression] = STATE(1105), - [sym_ternary_expression] = STATE(1105), - [sym_binary_expression] = STATE(1105), - [sym_unary_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_string] = STATE(1101), - [sym_template_string] = STATE(1101), - [sym_regex] = STATE(1101), - [sym_meta_property] = STATE(1101), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(882), - [sym_type_assertion] = STATE(1105), - [sym_as_expression] = STATE(1105), - [sym_internal_module] = STATE(1105), - [sym_type_arguments] = STATE(355), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2497), - [sym_identifier] = ACTIONS(897), - [anon_sym_export] = ACTIONS(751), - [anon_sym_namespace] = ACTIONS(753), - [anon_sym_LBRACE] = ACTIONS(1332), - [anon_sym_type] = ACTIONS(751), - [anon_sym_typeof] = ACTIONS(775), + [199] = { + [sym_import] = STATE(1151), + [sym_statement_block] = STATE(1200), + [sym_parenthesized_expression] = STATE(759), + [sym__expression] = STATE(1056), + [sym_yield_expression] = STATE(1144), + [sym_object] = STATE(1257), + [sym_array] = STATE(1254), + [sym_class] = STATE(1151), + [sym_function] = STATE(1151), + [sym_generator_function] = STATE(1151), + [sym_arrow_function] = STATE(1151), + [sym__call_signature] = STATE(3082), + [sym_call_expression] = STATE(1151), + [sym_new_expression] = STATE(1144), + [sym_await_expression] = STATE(1144), + [sym_member_expression] = STATE(759), + [sym_subscript_expression] = STATE(759), + [sym_assignment_expression] = STATE(1144), + [sym__augmented_assignment_lhs] = STATE(1924), + [sym_augmented_assignment_expression] = STATE(1144), + [sym_ternary_expression] = STATE(1144), + [sym_binary_expression] = STATE(1144), + [sym_unary_expression] = STATE(1144), + [sym_update_expression] = STATE(1144), + [sym_string] = STATE(1151), + [sym_template_string] = STATE(1151), + [sym_regex] = STATE(1151), + [sym_meta_property] = STATE(1151), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(754), + [sym_type_assertion] = STATE(1144), + [sym_as_expression] = STATE(1144), + [sym_internal_module] = STATE(1144), + [sym_type_arguments] = STATE(326), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2580), + [sym_identifier] = ACTIONS(499), + [anon_sym_export] = ACTIONS(501), + [anon_sym_namespace] = ACTIONS(507), + [anon_sym_LBRACE] = ACTIONS(1350), + [anon_sym_type] = ACTIONS(501), + [anon_sym_typeof] = ACTIONS(471), [anon_sym_import] = ACTIONS(435), - [anon_sym_BANG] = ACTIONS(757), + [anon_sym_BANG] = ACTIONS(437), [anon_sym_LPAREN] = ACTIONS(515), - [anon_sym_await] = ACTIONS(759), - [anon_sym_yield] = ACTIONS(761), + [anon_sym_await] = ACTIONS(443), + [anon_sym_yield] = ACTIONS(445), [anon_sym_LBRACK] = ACTIONS(517), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(765), + [anon_sym_SLASH] = ACTIONS(449), [anon_sym_class] = ACTIONS(451), - [anon_sym_async] = ACTIONS(767), + [anon_sym_async] = ACTIONS(521), [anon_sym_function] = ACTIONS(455), - [anon_sym_new] = ACTIONS(903), - [anon_sym_PLUS] = ACTIONS(905), - [anon_sym_DASH] = ACTIONS(905), - [anon_sym_TILDE] = ACTIONS(757), - [anon_sym_void] = ACTIONS(775), - [anon_sym_delete] = ACTIONS(775), - [anon_sym_PLUS_PLUS] = ACTIONS(777), - [anon_sym_DASH_DASH] = ACTIONS(777), + [anon_sym_new] = ACTIONS(523), + [anon_sym_PLUS] = ACTIONS(525), + [anon_sym_DASH] = ACTIONS(525), + [anon_sym_TILDE] = ACTIONS(437), + [anon_sym_void] = ACTIONS(471), + [anon_sym_delete] = ACTIONS(471), + [anon_sym_PLUS_PLUS] = ACTIONS(473), + [anon_sym_DASH_DASH] = ACTIONS(473), [anon_sym_DQUOTE] = ACTIONS(475), [anon_sym_SQUOTE] = ACTIONS(477), [sym_comment] = ACTIONS(3), @@ -30135,84 +31179,84 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(485), [sym_undefined] = ACTIONS(485), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(751), - [anon_sym_get] = ACTIONS(751), - [anon_sym_set] = ACTIONS(751), - [anon_sym_declare] = ACTIONS(751), - [anon_sym_public] = ACTIONS(751), - [anon_sym_private] = ACTIONS(751), - [anon_sym_protected] = ACTIONS(751), - [anon_sym_module] = ACTIONS(751), - [anon_sym_any] = ACTIONS(751), - [anon_sym_number] = ACTIONS(751), - [anon_sym_boolean] = ACTIONS(751), - [anon_sym_string] = ACTIONS(751), - [anon_sym_symbol] = ACTIONS(751), - [sym_readonly] = ACTIONS(751), + [anon_sym_static] = ACTIONS(501), + [anon_sym_get] = ACTIONS(501), + [anon_sym_set] = ACTIONS(501), + [anon_sym_declare] = ACTIONS(501), + [anon_sym_public] = ACTIONS(501), + [anon_sym_private] = ACTIONS(501), + [anon_sym_protected] = ACTIONS(501), + [anon_sym_module] = ACTIONS(501), + [anon_sym_any] = ACTIONS(501), + [anon_sym_number] = ACTIONS(501), + [anon_sym_boolean] = ACTIONS(501), + [anon_sym_string] = ACTIONS(501), + [anon_sym_symbol] = ACTIONS(501), + [sym_readonly] = ACTIONS(501), }, - [189] = { - [sym_import] = STATE(1101), - [sym_statement_block] = STATE(1170), - [sym_parenthesized_expression] = STATE(921), - [sym__expression] = STATE(1277), - [sym_yield_expression] = STATE(1105), - [sym_object] = STATE(1531), - [sym_array] = STATE(1536), - [sym_class] = STATE(1101), - [sym_function] = STATE(1101), - [sym_generator_function] = STATE(1101), - [sym_arrow_function] = STATE(1101), - [sym__call_signature] = STATE(3170), - [sym_call_expression] = STATE(1101), - [sym_new_expression] = STATE(1105), - [sym_await_expression] = STATE(1105), - [sym_member_expression] = STATE(921), - [sym_subscript_expression] = STATE(921), - [sym_assignment_expression] = STATE(1105), - [sym__augmented_assignment_lhs] = STATE(1917), - [sym_augmented_assignment_expression] = STATE(1105), - [sym_ternary_expression] = STATE(1105), - [sym_binary_expression] = STATE(1105), - [sym_unary_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_string] = STATE(1101), - [sym_template_string] = STATE(1101), - [sym_regex] = STATE(1101), - [sym_meta_property] = STATE(1101), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(882), - [sym_type_assertion] = STATE(1105), - [sym_as_expression] = STATE(1105), - [sym_internal_module] = STATE(1105), - [sym_type_arguments] = STATE(355), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2497), - [sym_identifier] = ACTIONS(897), - [anon_sym_export] = ACTIONS(751), - [anon_sym_namespace] = ACTIONS(753), - [anon_sym_LBRACE] = ACTIONS(1332), - [anon_sym_type] = ACTIONS(751), - [anon_sym_typeof] = ACTIONS(775), + [200] = { + [sym_import] = STATE(1151), + [sym_parenthesized_expression] = STATE(956), + [sym__expression] = STATE(1524), + [sym_yield_expression] = STATE(1144), + [sym_object] = STATE(1653), + [sym_array] = STATE(1660), + [sym_class] = STATE(1151), + [sym_function] = STATE(1151), + [sym_generator_function] = STATE(1151), + [sym_arrow_function] = STATE(1151), + [sym__call_signature] = STATE(3024), + [sym_call_expression] = STATE(1151), + [sym_new_expression] = STATE(1144), + [sym_await_expression] = STATE(1144), + [sym_member_expression] = STATE(956), + [sym_subscript_expression] = STATE(956), + [sym_assignment_expression] = STATE(1144), + [sym__augmented_assignment_lhs] = STATE(1925), + [sym_augmented_assignment_expression] = STATE(1144), + [sym_ternary_expression] = STATE(1144), + [sym_binary_expression] = STATE(1144), + [sym_unary_expression] = STATE(1144), + [sym_update_expression] = STATE(1144), + [sym_string] = STATE(1151), + [sym_template_string] = STATE(1151), + [sym_regex] = STATE(1151), + [sym_meta_property] = STATE(1151), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(950), + [sym_type_assertion] = STATE(1144), + [sym_as_expression] = STATE(1144), + [sym_internal_module] = STATE(1144), + [sym_mapped_type_clause] = STATE(3014), + [sym_type_arguments] = STATE(395), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2580), + [sym_identifier] = ACTIONS(1415), + [anon_sym_export] = ACTIONS(1417), + [anon_sym_namespace] = ACTIONS(1419), + [anon_sym_LBRACE] = ACTIONS(509), + [anon_sym_type] = ACTIONS(1417), + [anon_sym_typeof] = ACTIONS(601), [anon_sym_import] = ACTIONS(435), - [anon_sym_BANG] = ACTIONS(757), + [anon_sym_BANG] = ACTIONS(585), [anon_sym_LPAREN] = ACTIONS(515), - [anon_sym_await] = ACTIONS(759), - [anon_sym_yield] = ACTIONS(761), + [anon_sym_await] = ACTIONS(587), + [anon_sym_yield] = ACTIONS(589), [anon_sym_LBRACK] = ACTIONS(517), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(765), + [anon_sym_SLASH] = ACTIONS(449), [anon_sym_class] = ACTIONS(451), - [anon_sym_async] = ACTIONS(767), + [anon_sym_async] = ACTIONS(1421), [anon_sym_function] = ACTIONS(455), [anon_sym_new] = ACTIONS(903), [anon_sym_PLUS] = ACTIONS(905), [anon_sym_DASH] = ACTIONS(905), - [anon_sym_TILDE] = ACTIONS(757), - [anon_sym_void] = ACTIONS(775), - [anon_sym_delete] = ACTIONS(775), - [anon_sym_PLUS_PLUS] = ACTIONS(777), - [anon_sym_DASH_DASH] = ACTIONS(777), + [anon_sym_TILDE] = ACTIONS(585), + [anon_sym_void] = ACTIONS(601), + [anon_sym_delete] = ACTIONS(601), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(603), [anon_sym_DQUOTE] = ACTIONS(475), [anon_sym_SQUOTE] = ACTIONS(477), [sym_comment] = ACTIONS(3), @@ -30225,84 +31269,84 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(485), [sym_undefined] = ACTIONS(485), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(751), - [anon_sym_get] = ACTIONS(751), - [anon_sym_set] = ACTIONS(751), - [anon_sym_declare] = ACTIONS(751), - [anon_sym_public] = ACTIONS(751), - [anon_sym_private] = ACTIONS(751), - [anon_sym_protected] = ACTIONS(751), - [anon_sym_module] = ACTIONS(751), - [anon_sym_any] = ACTIONS(751), - [anon_sym_number] = ACTIONS(751), - [anon_sym_boolean] = ACTIONS(751), - [anon_sym_string] = ACTIONS(751), - [anon_sym_symbol] = ACTIONS(751), - [sym_readonly] = ACTIONS(751), + [anon_sym_static] = ACTIONS(1417), + [anon_sym_get] = ACTIONS(1417), + [anon_sym_set] = ACTIONS(1417), + [anon_sym_declare] = ACTIONS(1417), + [anon_sym_public] = ACTIONS(1417), + [anon_sym_private] = ACTIONS(1417), + [anon_sym_protected] = ACTIONS(1417), + [anon_sym_module] = ACTIONS(1417), + [anon_sym_any] = ACTIONS(1417), + [anon_sym_number] = ACTIONS(1417), + [anon_sym_boolean] = ACTIONS(1417), + [anon_sym_string] = ACTIONS(1417), + [anon_sym_symbol] = ACTIONS(1417), + [sym_readonly] = ACTIONS(1417), }, - [190] = { - [sym_import] = STATE(1101), - [sym_variable_declarator] = STATE(2543), - [sym_parenthesized_expression] = STATE(955), - [sym__expression] = STATE(1683), - [sym_yield_expression] = STATE(1105), - [sym_object] = STATE(1027), - [sym_array] = STATE(1026), - [sym_class] = STATE(1101), - [sym_function] = STATE(1101), - [sym_generator_function] = STATE(1101), - [sym_arrow_function] = STATE(1101), - [sym__call_signature] = STATE(3002), - [sym_call_expression] = STATE(1101), - [sym_new_expression] = STATE(1105), - [sym_await_expression] = STATE(1105), - [sym_member_expression] = STATE(955), - [sym_subscript_expression] = STATE(955), - [sym_assignment_expression] = STATE(1105), - [sym__augmented_assignment_lhs] = STATE(1921), - [sym_augmented_assignment_expression] = STATE(1105), - [sym_ternary_expression] = STATE(1105), - [sym_binary_expression] = STATE(1105), - [sym_unary_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_string] = STATE(1101), - [sym_template_string] = STATE(1101), - [sym_regex] = STATE(1101), - [sym_meta_property] = STATE(1101), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(956), - [sym_type_assertion] = STATE(1105), - [sym_as_expression] = STATE(1105), - [sym_internal_module] = STATE(1105), - [sym_type_arguments] = STATE(324), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2497), - [sym_identifier] = ACTIONS(1401), - [anon_sym_export] = ACTIONS(1403), - [anon_sym_namespace] = ACTIONS(1405), - [anon_sym_LBRACE] = ACTIONS(595), - [anon_sym_type] = ACTIONS(1403), - [anon_sym_typeof] = ACTIONS(659), + [201] = { + [sym_import] = STATE(1151), + [sym_parenthesized_expression] = STATE(759), + [sym__expression] = STATE(1171), + [sym_yield_expression] = STATE(1144), + [sym_object] = STATE(1257), + [sym_array] = STATE(1254), + [sym_class] = STATE(1151), + [sym_function] = STATE(1151), + [sym_generator_function] = STATE(1151), + [sym_arrow_function] = STATE(1151), + [sym__call_signature] = STATE(3082), + [sym_call_expression] = STATE(1151), + [sym_new_expression] = STATE(1144), + [sym_await_expression] = STATE(1144), + [sym_member_expression] = STATE(759), + [sym_subscript_expression] = STATE(759), + [sym_assignment_expression] = STATE(1144), + [sym__augmented_assignment_lhs] = STATE(1924), + [sym_augmented_assignment_expression] = STATE(1144), + [sym_ternary_expression] = STATE(1144), + [sym_binary_expression] = STATE(1144), + [sym_unary_expression] = STATE(1144), + [sym_update_expression] = STATE(1144), + [sym_sequence_expression] = STATE(3138), + [sym_string] = STATE(1151), + [sym_template_string] = STATE(1151), + [sym_regex] = STATE(1151), + [sym_meta_property] = STATE(1151), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(754), + [sym_type_assertion] = STATE(1144), + [sym_as_expression] = STATE(1144), + [sym_internal_module] = STATE(1144), + [sym_type_arguments] = STATE(326), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2580), + [sym_identifier] = ACTIONS(499), + [anon_sym_export] = ACTIONS(501), + [anon_sym_namespace] = ACTIONS(507), + [anon_sym_LBRACE] = ACTIONS(509), + [anon_sym_type] = ACTIONS(501), + [anon_sym_typeof] = ACTIONS(471), [anon_sym_import] = ACTIONS(435), - [anon_sym_BANG] = ACTIONS(643), + [anon_sym_BANG] = ACTIONS(437), [anon_sym_LPAREN] = ACTIONS(515), - [anon_sym_await] = ACTIONS(645), - [anon_sym_yield] = ACTIONS(647), - [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_await] = ACTIONS(443), + [anon_sym_yield] = ACTIONS(445), + [anon_sym_LBRACK] = ACTIONS(517), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(449), [anon_sym_class] = ACTIONS(451), - [anon_sym_async] = ACTIONS(1407), + [anon_sym_async] = ACTIONS(521), [anon_sym_function] = ACTIONS(455), - [anon_sym_new] = ACTIONS(865), - [anon_sym_PLUS] = ACTIONS(867), - [anon_sym_DASH] = ACTIONS(867), - [anon_sym_TILDE] = ACTIONS(643), - [anon_sym_void] = ACTIONS(659), - [anon_sym_delete] = ACTIONS(659), - [anon_sym_PLUS_PLUS] = ACTIONS(661), - [anon_sym_DASH_DASH] = ACTIONS(661), + [anon_sym_new] = ACTIONS(523), + [anon_sym_PLUS] = ACTIONS(525), + [anon_sym_DASH] = ACTIONS(525), + [anon_sym_TILDE] = ACTIONS(437), + [anon_sym_void] = ACTIONS(471), + [anon_sym_delete] = ACTIONS(471), + [anon_sym_PLUS_PLUS] = ACTIONS(473), + [anon_sym_DASH_DASH] = ACTIONS(473), [anon_sym_DQUOTE] = ACTIONS(475), [anon_sym_SQUOTE] = ACTIONS(477), [sym_comment] = ACTIONS(3), @@ -30315,63 +31359,63 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(485), [sym_undefined] = ACTIONS(485), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(1403), - [anon_sym_get] = ACTIONS(1403), - [anon_sym_set] = ACTIONS(1403), - [anon_sym_declare] = ACTIONS(1403), - [anon_sym_public] = ACTIONS(1403), - [anon_sym_private] = ACTIONS(1403), - [anon_sym_protected] = ACTIONS(1403), - [anon_sym_module] = ACTIONS(1403), - [anon_sym_any] = ACTIONS(1403), - [anon_sym_number] = ACTIONS(1403), - [anon_sym_boolean] = ACTIONS(1403), - [anon_sym_string] = ACTIONS(1403), - [anon_sym_symbol] = ACTIONS(1403), - [sym_readonly] = ACTIONS(1403), + [anon_sym_static] = ACTIONS(501), + [anon_sym_get] = ACTIONS(501), + [anon_sym_set] = ACTIONS(501), + [anon_sym_declare] = ACTIONS(501), + [anon_sym_public] = ACTIONS(501), + [anon_sym_private] = ACTIONS(501), + [anon_sym_protected] = ACTIONS(501), + [anon_sym_module] = ACTIONS(501), + [anon_sym_any] = ACTIONS(501), + [anon_sym_number] = ACTIONS(501), + [anon_sym_boolean] = ACTIONS(501), + [anon_sym_string] = ACTIONS(501), + [anon_sym_symbol] = ACTIONS(501), + [sym_readonly] = ACTIONS(501), }, - [191] = { - [sym_import] = STATE(1101), - [sym_statement_block] = STATE(1170), - [sym_parenthesized_expression] = STATE(739), - [sym__expression] = STATE(1015), - [sym_yield_expression] = STATE(1105), - [sym_object] = STATE(1297), - [sym_array] = STATE(1296), - [sym_class] = STATE(1101), - [sym_function] = STATE(1101), - [sym_generator_function] = STATE(1101), - [sym_arrow_function] = STATE(1101), - [sym__call_signature] = STATE(3116), - [sym_call_expression] = STATE(1101), - [sym_new_expression] = STATE(1105), - [sym_await_expression] = STATE(1105), - [sym_member_expression] = STATE(739), - [sym_subscript_expression] = STATE(739), - [sym_assignment_expression] = STATE(1105), - [sym__augmented_assignment_lhs] = STATE(1920), - [sym_augmented_assignment_expression] = STATE(1105), - [sym_ternary_expression] = STATE(1105), - [sym_binary_expression] = STATE(1105), - [sym_unary_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_string] = STATE(1101), - [sym_template_string] = STATE(1101), - [sym_regex] = STATE(1101), - [sym_meta_property] = STATE(1101), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(755), - [sym_type_assertion] = STATE(1105), - [sym_as_expression] = STATE(1105), - [sym_internal_module] = STATE(1105), - [sym_type_arguments] = STATE(361), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2497), + [202] = { + [sym_import] = STATE(1151), + [sym_parenthesized_expression] = STATE(759), + [sym__expression] = STATE(1317), + [sym_yield_expression] = STATE(1144), + [sym_object] = STATE(1257), + [sym_array] = STATE(1254), + [sym_class] = STATE(1151), + [sym_function] = STATE(1151), + [sym_generator_function] = STATE(1151), + [sym_arrow_function] = STATE(1151), + [sym__call_signature] = STATE(3082), + [sym_call_expression] = STATE(1151), + [sym_new_expression] = STATE(1144), + [sym_await_expression] = STATE(1144), + [sym_member_expression] = STATE(759), + [sym_subscript_expression] = STATE(759), + [sym_assignment_expression] = STATE(1144), + [sym__augmented_assignment_lhs] = STATE(1924), + [sym_augmented_assignment_expression] = STATE(1144), + [sym_ternary_expression] = STATE(1144), + [sym_binary_expression] = STATE(1144), + [sym_unary_expression] = STATE(1144), + [sym_update_expression] = STATE(1144), + [sym_sequence_expression] = STATE(3032), + [sym_string] = STATE(1151), + [sym_template_string] = STATE(1151), + [sym_regex] = STATE(1151), + [sym_meta_property] = STATE(1151), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(754), + [sym_type_assertion] = STATE(1144), + [sym_as_expression] = STATE(1144), + [sym_internal_module] = STATE(1144), + [sym_type_arguments] = STATE(326), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2580), [sym_identifier] = ACTIONS(499), [anon_sym_export] = ACTIONS(501), [anon_sym_namespace] = ACTIONS(507), - [anon_sym_LBRACE] = ACTIONS(1332), + [anon_sym_LBRACE] = ACTIONS(509), [anon_sym_type] = ACTIONS(501), [anon_sym_typeof] = ACTIONS(471), [anon_sym_import] = ACTIONS(435), @@ -30420,159 +31464,69 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(501), [sym_readonly] = ACTIONS(501), }, - [192] = { - [sym_import] = STATE(1101), - [sym_variable_declarator] = STATE(2545), + [203] = { + [sym_import] = STATE(1523), + [sym_statement_block] = STATE(1530), [sym_parenthesized_expression] = STATE(955), - [sym__expression] = STATE(1683), - [sym_yield_expression] = STATE(1105), - [sym_object] = STATE(1027), - [sym_array] = STATE(1026), - [sym_class] = STATE(1101), - [sym_function] = STATE(1101), - [sym_generator_function] = STATE(1101), - [sym_arrow_function] = STATE(1101), - [sym__call_signature] = STATE(3002), - [sym_call_expression] = STATE(1101), - [sym_new_expression] = STATE(1105), - [sym_await_expression] = STATE(1105), + [sym__expression] = STATE(1320), + [sym_yield_expression] = STATE(1567), + [sym_object] = STATE(1636), + [sym_array] = STATE(1643), + [sym_class] = STATE(1523), + [sym_function] = STATE(1523), + [sym_generator_function] = STATE(1523), + [sym_arrow_function] = STATE(1523), + [sym__call_signature] = STATE(3078), + [sym_call_expression] = STATE(1523), + [sym_new_expression] = STATE(1567), + [sym_await_expression] = STATE(1567), [sym_member_expression] = STATE(955), [sym_subscript_expression] = STATE(955), - [sym_assignment_expression] = STATE(1105), - [sym__augmented_assignment_lhs] = STATE(1921), - [sym_augmented_assignment_expression] = STATE(1105), - [sym_ternary_expression] = STATE(1105), - [sym_binary_expression] = STATE(1105), - [sym_unary_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_string] = STATE(1101), - [sym_template_string] = STATE(1101), - [sym_regex] = STATE(1101), - [sym_meta_property] = STATE(1101), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(956), - [sym_type_assertion] = STATE(1105), - [sym_as_expression] = STATE(1105), - [sym_internal_module] = STATE(1105), - [sym_type_arguments] = STATE(324), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2497), - [sym_identifier] = ACTIONS(1401), - [anon_sym_export] = ACTIONS(1403), - [anon_sym_namespace] = ACTIONS(1405), - [anon_sym_LBRACE] = ACTIONS(595), - [anon_sym_type] = ACTIONS(1403), - [anon_sym_typeof] = ACTIONS(659), - [anon_sym_import] = ACTIONS(435), - [anon_sym_BANG] = ACTIONS(643), - [anon_sym_LPAREN] = ACTIONS(515), - [anon_sym_await] = ACTIONS(645), - [anon_sym_yield] = ACTIONS(647), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(449), - [anon_sym_class] = ACTIONS(451), - [anon_sym_async] = ACTIONS(1407), - [anon_sym_function] = ACTIONS(455), - [anon_sym_new] = ACTIONS(865), - [anon_sym_PLUS] = ACTIONS(867), - [anon_sym_DASH] = ACTIONS(867), - [anon_sym_TILDE] = ACTIONS(643), - [anon_sym_void] = ACTIONS(659), - [anon_sym_delete] = ACTIONS(659), - [anon_sym_PLUS_PLUS] = ACTIONS(661), - [anon_sym_DASH_DASH] = ACTIONS(661), - [anon_sym_DQUOTE] = ACTIONS(475), - [anon_sym_SQUOTE] = ACTIONS(477), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(479), - [sym_number] = ACTIONS(527), - [sym_this] = ACTIONS(485), - [sym_super] = ACTIONS(485), - [sym_true] = ACTIONS(485), - [sym_false] = ACTIONS(485), - [sym_null] = ACTIONS(485), - [sym_undefined] = ACTIONS(485), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(1403), - [anon_sym_get] = ACTIONS(1403), - [anon_sym_set] = ACTIONS(1403), - [anon_sym_declare] = ACTIONS(1403), - [anon_sym_public] = ACTIONS(1403), - [anon_sym_private] = ACTIONS(1403), - [anon_sym_protected] = ACTIONS(1403), - [anon_sym_module] = ACTIONS(1403), - [anon_sym_any] = ACTIONS(1403), - [anon_sym_number] = ACTIONS(1403), - [anon_sym_boolean] = ACTIONS(1403), - [anon_sym_string] = ACTIONS(1403), - [anon_sym_symbol] = ACTIONS(1403), - [sym_readonly] = ACTIONS(1403), - }, - [193] = { - [sym_import] = STATE(1498), - [sym_statement_block] = STATE(1572), - [sym_parenthesized_expression] = STATE(764), - [sym__expression] = STATE(1111), - [sym_yield_expression] = STATE(1518), - [sym_object] = STATE(1435), - [sym_array] = STATE(1433), - [sym_class] = STATE(1498), - [sym_function] = STATE(1498), - [sym_generator_function] = STATE(1498), - [sym_arrow_function] = STATE(1498), - [sym__call_signature] = STATE(3145), - [sym_call_expression] = STATE(1498), - [sym_new_expression] = STATE(1518), - [sym_await_expression] = STATE(1518), - [sym_member_expression] = STATE(764), - [sym_subscript_expression] = STATE(764), - [sym_assignment_expression] = STATE(1518), - [sym__augmented_assignment_lhs] = STATE(1925), - [sym_augmented_assignment_expression] = STATE(1518), - [sym_ternary_expression] = STATE(1518), - [sym_binary_expression] = STATE(1518), - [sym_unary_expression] = STATE(1518), - [sym_update_expression] = STATE(1518), - [sym_string] = STATE(1498), - [sym_template_string] = STATE(1498), - [sym_regex] = STATE(1498), - [sym_meta_property] = STATE(1498), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(772), - [sym_type_assertion] = STATE(1518), - [sym_as_expression] = STATE(1518), - [sym_internal_module] = STATE(1518), - [sym_type_arguments] = STATE(349), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2554), - [sym_identifier] = ACTIONS(587), - [anon_sym_export] = ACTIONS(589), - [anon_sym_namespace] = ACTIONS(593), - [anon_sym_LBRACE] = ACTIONS(1409), - [anon_sym_type] = ACTIONS(589), - [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(597), - [anon_sym_BANG] = ACTIONS(29), + [sym_assignment_expression] = STATE(1567), + [sym__augmented_assignment_lhs] = STATE(1929), + [sym_augmented_assignment_expression] = STATE(1567), + [sym_ternary_expression] = STATE(1567), + [sym_binary_expression] = STATE(1567), + [sym_unary_expression] = STATE(1567), + [sym_update_expression] = STATE(1567), + [sym_string] = STATE(1523), + [sym_template_string] = STATE(1523), + [sym_regex] = STATE(1523), + [sym_meta_property] = STATE(1523), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(953), + [sym_type_assertion] = STATE(1567), + [sym_as_expression] = STATE(1567), + [sym_internal_module] = STATE(1567), + [sym_type_arguments] = STATE(384), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2575), + [sym_identifier] = ACTIONS(887), + [anon_sym_export] = ACTIONS(635), + [anon_sym_namespace] = ACTIONS(637), + [anon_sym_LBRACE] = ACTIONS(1332), + [anon_sym_type] = ACTIONS(635), + [anon_sym_typeof] = ACTIONS(657), + [anon_sym_import] = ACTIONS(539), + [anon_sym_BANG] = ACTIONS(641), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(39), - [anon_sym_yield] = ACTIONS(61), + [anon_sym_await] = ACTIONS(643), + [anon_sym_yield] = ACTIONS(645), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(601), - [anon_sym_async] = ACTIONS(603), - [anon_sym_function] = ACTIONS(605), - [anon_sym_new] = ACTIONS(75), - [anon_sym_PLUS] = ACTIONS(77), - [anon_sym_DASH] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(29), - [anon_sym_void] = ACTIONS(19), - [anon_sym_delete] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_class] = ACTIONS(545), + [anon_sym_async] = ACTIONS(649), + [anon_sym_function] = ACTIONS(549), + [anon_sym_new] = ACTIONS(893), + [anon_sym_PLUS] = ACTIONS(895), + [anon_sym_DASH] = ACTIONS(895), + [anon_sym_TILDE] = ACTIONS(641), + [anon_sym_void] = ACTIONS(657), + [anon_sym_delete] = ACTIONS(657), + [anon_sym_PLUS_PLUS] = ACTIONS(659), + [anon_sym_DASH_DASH] = ACTIONS(659), [anon_sym_DQUOTE] = ACTIONS(81), [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), @@ -30585,63 +31539,63 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(589), - [anon_sym_get] = ACTIONS(589), - [anon_sym_set] = ACTIONS(589), - [anon_sym_declare] = ACTIONS(589), - [anon_sym_public] = ACTIONS(589), - [anon_sym_private] = ACTIONS(589), - [anon_sym_protected] = ACTIONS(589), - [anon_sym_module] = ACTIONS(589), - [anon_sym_any] = ACTIONS(589), - [anon_sym_number] = ACTIONS(589), - [anon_sym_boolean] = ACTIONS(589), - [anon_sym_string] = ACTIONS(589), - [anon_sym_symbol] = ACTIONS(589), - [sym_readonly] = ACTIONS(589), + [anon_sym_static] = ACTIONS(635), + [anon_sym_get] = ACTIONS(635), + [anon_sym_set] = ACTIONS(635), + [anon_sym_declare] = ACTIONS(635), + [anon_sym_public] = ACTIONS(635), + [anon_sym_private] = ACTIONS(635), + [anon_sym_protected] = ACTIONS(635), + [anon_sym_module] = ACTIONS(635), + [anon_sym_any] = ACTIONS(635), + [anon_sym_number] = ACTIONS(635), + [anon_sym_boolean] = ACTIONS(635), + [anon_sym_string] = ACTIONS(635), + [anon_sym_symbol] = ACTIONS(635), + [sym_readonly] = ACTIONS(635), }, - [194] = { - [sym_import] = STATE(1101), - [sym_parenthesized_expression] = STATE(739), - [sym__expression] = STATE(1098), - [sym_yield_expression] = STATE(1105), - [sym_object] = STATE(1297), - [sym_array] = STATE(1296), - [sym_class] = STATE(1101), - [sym_function] = STATE(1101), - [sym_generator_function] = STATE(1101), - [sym_arrow_function] = STATE(1101), - [sym__call_signature] = STATE(3116), - [sym_call_expression] = STATE(1101), - [sym_new_expression] = STATE(1105), - [sym_await_expression] = STATE(1105), - [sym_member_expression] = STATE(739), - [sym_subscript_expression] = STATE(739), - [sym_assignment_expression] = STATE(1105), - [sym__augmented_assignment_lhs] = STATE(1920), - [sym_augmented_assignment_expression] = STATE(1105), - [sym_ternary_expression] = STATE(1105), - [sym_binary_expression] = STATE(1105), - [sym_unary_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_sequence_expression] = STATE(3209), - [sym_string] = STATE(1101), - [sym_template_string] = STATE(1101), - [sym_regex] = STATE(1101), - [sym_meta_property] = STATE(1101), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(755), - [sym_type_assertion] = STATE(1105), - [sym_as_expression] = STATE(1105), - [sym_internal_module] = STATE(1105), - [sym_type_arguments] = STATE(361), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2497), + [204] = { + [sym_import] = STATE(1151), + [sym_statement_block] = STATE(1197), + [sym_parenthesized_expression] = STATE(759), + [sym__expression] = STATE(1045), + [sym_yield_expression] = STATE(1144), + [sym_object] = STATE(1257), + [sym_array] = STATE(1254), + [sym_class] = STATE(1151), + [sym_function] = STATE(1151), + [sym_generator_function] = STATE(1151), + [sym_arrow_function] = STATE(1151), + [sym__call_signature] = STATE(3082), + [sym_call_expression] = STATE(1151), + [sym_new_expression] = STATE(1144), + [sym_await_expression] = STATE(1144), + [sym_member_expression] = STATE(759), + [sym_subscript_expression] = STATE(759), + [sym_assignment_expression] = STATE(1144), + [sym__augmented_assignment_lhs] = STATE(1924), + [sym_augmented_assignment_expression] = STATE(1144), + [sym_ternary_expression] = STATE(1144), + [sym_binary_expression] = STATE(1144), + [sym_unary_expression] = STATE(1144), + [sym_update_expression] = STATE(1144), + [sym_string] = STATE(1151), + [sym_template_string] = STATE(1151), + [sym_regex] = STATE(1151), + [sym_meta_property] = STATE(1151), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(754), + [sym_type_assertion] = STATE(1144), + [sym_as_expression] = STATE(1144), + [sym_internal_module] = STATE(1144), + [sym_type_arguments] = STATE(326), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2580), [sym_identifier] = ACTIONS(499), [anon_sym_export] = ACTIONS(501), [anon_sym_namespace] = ACTIONS(507), - [anon_sym_LBRACE] = ACTIONS(509), + [anon_sym_LBRACE] = ACTIONS(1350), [anon_sym_type] = ACTIONS(501), [anon_sym_typeof] = ACTIONS(471), [anon_sym_import] = ACTIONS(435), @@ -30690,494 +31644,224 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(501), [sym_readonly] = ACTIONS(501), }, - [195] = { - [sym_import] = STATE(1008), - [sym_parenthesized_expression] = STATE(654), - [sym__expression] = STATE(1683), - [sym_yield_expression] = STATE(1105), - [sym_object] = STATE(986), - [sym_array] = STATE(985), - [sym_class] = STATE(1008), - [sym_function] = STATE(1008), - [sym_generator_function] = STATE(1008), - [sym_arrow_function] = STATE(1008), - [sym__call_signature] = STATE(3170), - [sym_call_expression] = STATE(1008), - [sym_new_expression] = STATE(1105), - [sym_await_expression] = STATE(1105), - [sym_member_expression] = STATE(654), - [sym_subscript_expression] = STATE(654), - [sym_assignment_expression] = STATE(1105), - [sym__augmented_assignment_lhs] = STATE(1921), - [sym_augmented_assignment_expression] = STATE(1105), - [sym_ternary_expression] = STATE(1105), - [sym_binary_expression] = STATE(1105), - [sym_unary_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_string] = STATE(1008), - [sym_template_string] = STATE(1008), - [sym_regex] = STATE(1008), - [sym_meta_property] = STATE(1008), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(949), - [sym_type_assertion] = STATE(1105), - [sym_as_expression] = STATE(1105), - [sym_internal_module] = STATE(1105), - [sym_type_arguments] = STATE(324), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2497), - [sym_identifier] = ACTIONS(1385), - [anon_sym_export] = ACTIONS(1387), - [anon_sym_namespace] = ACTIONS(1389), + [205] = { + [sym_import] = STATE(1010), + [sym_parenthesized_expression] = STATE(659), + [sym__expression] = STATE(1661), + [sym_yield_expression] = STATE(1144), + [sym_object] = STATE(991), + [sym_array] = STATE(988), + [sym_class] = STATE(1010), + [sym_function] = STATE(1010), + [sym_generator_function] = STATE(1010), + [sym_arrow_function] = STATE(1010), + [sym__call_signature] = STATE(3082), + [sym_call_expression] = STATE(1010), + [sym_new_expression] = STATE(1144), + [sym_await_expression] = STATE(1144), + [sym_member_expression] = STATE(659), + [sym_subscript_expression] = STATE(659), + [sym_assignment_expression] = STATE(1144), + [sym__augmented_assignment_lhs] = STATE(1925), + [sym_augmented_assignment_expression] = STATE(1144), + [sym_ternary_expression] = STATE(1144), + [sym_binary_expression] = STATE(1144), + [sym_unary_expression] = STATE(1144), + [sym_update_expression] = STATE(1144), + [sym_string] = STATE(1010), + [sym_template_string] = STATE(1010), + [sym_regex] = STATE(1010), + [sym_meta_property] = STATE(1010), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2347), + [sym_non_null_expression] = STATE(950), + [sym_type_assertion] = STATE(1144), + [sym_as_expression] = STATE(1144), + [sym_internal_module] = STATE(1144), + [sym_type_arguments] = STATE(395), + [sym_type_parameters] = STATE(2990), + [aux_sym_export_statement_repeat1] = STATE(2580), + [sym_identifier] = ACTIONS(1423), + [anon_sym_export] = ACTIONS(1425), + [anon_sym_namespace] = ACTIONS(1427), [anon_sym_LBRACE] = ACTIONS(509), - [anon_sym_type] = ACTIONS(1387), - [anon_sym_typeof] = ACTIONS(659), + [anon_sym_type] = ACTIONS(1425), + [anon_sym_typeof] = ACTIONS(601), [anon_sym_import] = ACTIONS(435), - [anon_sym_BANG] = ACTIONS(643), + [anon_sym_BANG] = ACTIONS(585), [anon_sym_LPAREN] = ACTIONS(515), - [anon_sym_await] = ACTIONS(645), - [anon_sym_yield] = ACTIONS(647), + [anon_sym_await] = ACTIONS(587), + [anon_sym_yield] = ACTIONS(589), [anon_sym_LBRACK] = ACTIONS(517), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(765), - [anon_sym_DOT] = ACTIONS(1340), + [anon_sym_SLASH] = ACTIONS(449), + [anon_sym_DOT] = ACTIONS(1376), [anon_sym_class] = ACTIONS(451), - [anon_sym_async] = ACTIONS(1391), + [anon_sym_async] = ACTIONS(1429), [anon_sym_function] = ACTIONS(455), - [anon_sym_new] = ACTIONS(865), - [anon_sym_PLUS] = ACTIONS(867), - [anon_sym_DASH] = ACTIONS(867), - [anon_sym_TILDE] = ACTIONS(643), - [anon_sym_void] = ACTIONS(659), - [anon_sym_delete] = ACTIONS(659), - [anon_sym_PLUS_PLUS] = ACTIONS(661), - [anon_sym_DASH_DASH] = ACTIONS(661), + [anon_sym_new] = ACTIONS(903), + [anon_sym_PLUS] = ACTIONS(905), + [anon_sym_DASH] = ACTIONS(905), + [anon_sym_TILDE] = ACTIONS(585), + [anon_sym_void] = ACTIONS(601), + [anon_sym_delete] = ACTIONS(601), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(603), [anon_sym_DQUOTE] = ACTIONS(475), [anon_sym_SQUOTE] = ACTIONS(477), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(479), - [sym_number] = ACTIONS(1344), - [sym_this] = ACTIONS(1346), - [sym_super] = ACTIONS(1346), - [sym_true] = ACTIONS(1346), - [sym_false] = ACTIONS(1346), - [sym_null] = ACTIONS(1346), - [sym_undefined] = ACTIONS(1346), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(1387), - [anon_sym_get] = ACTIONS(1387), - [anon_sym_set] = ACTIONS(1387), - [anon_sym_declare] = ACTIONS(1387), - [anon_sym_public] = ACTIONS(1387), - [anon_sym_private] = ACTIONS(1387), - [anon_sym_protected] = ACTIONS(1387), - [anon_sym_module] = ACTIONS(1387), - [anon_sym_any] = ACTIONS(1387), - [anon_sym_number] = ACTIONS(1387), - [anon_sym_boolean] = ACTIONS(1387), - [anon_sym_string] = ACTIONS(1387), - [anon_sym_symbol] = ACTIONS(1387), - [sym_readonly] = ACTIONS(1387), - }, - [196] = { - [sym_import] = STATE(1682), - [sym_statement_block] = STATE(1638), - [sym_parenthesized_expression] = STATE(828), - [sym__expression] = STATE(1222), - [sym_yield_expression] = STATE(1680), - [sym_object] = STATE(1586), - [sym_array] = STATE(1585), - [sym_class] = STATE(1682), - [sym_function] = STATE(1682), - [sym_generator_function] = STATE(1682), - [sym_arrow_function] = STATE(1682), - [sym__call_signature] = STATE(3105), - [sym_call_expression] = STATE(1682), - [sym_new_expression] = STATE(1680), - [sym_await_expression] = STATE(1680), - [sym_member_expression] = STATE(828), - [sym_subscript_expression] = STATE(828), - [sym_assignment_expression] = STATE(1680), - [sym__augmented_assignment_lhs] = STATE(1918), - [sym_augmented_assignment_expression] = STATE(1680), - [sym_ternary_expression] = STATE(1680), - [sym_binary_expression] = STATE(1680), - [sym_unary_expression] = STATE(1680), - [sym_update_expression] = STATE(1680), - [sym_string] = STATE(1682), - [sym_template_string] = STATE(1682), - [sym_regex] = STATE(1682), - [sym_meta_property] = STATE(1682), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(827), - [sym_type_assertion] = STATE(1680), - [sym_as_expression] = STATE(1680), - [sym_internal_module] = STATE(1680), - [sym_type_arguments] = STATE(256), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2529), - [sym_identifier] = ACTIONS(879), - [anon_sym_export] = ACTIONS(531), - [anon_sym_namespace] = ACTIONS(533), - [anon_sym_LBRACE] = ACTIONS(1381), - [anon_sym_type] = ACTIONS(531), - [anon_sym_typeof] = ACTIONS(565), - [anon_sym_import] = ACTIONS(539), - [anon_sym_BANG] = ACTIONS(541), - [anon_sym_LPAREN] = ACTIONS(887), - [anon_sym_await] = ACTIONS(545), - [anon_sym_yield] = ACTIONS(547), - [anon_sym_LBRACK] = ACTIONS(889), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(551), - [anon_sym_class] = ACTIONS(553), - [anon_sym_async] = ACTIONS(555), - [anon_sym_function] = ACTIONS(557), - [anon_sym_new] = ACTIONS(891), - [anon_sym_PLUS] = ACTIONS(893), - [anon_sym_DASH] = ACTIONS(893), - [anon_sym_TILDE] = ACTIONS(541), - [anon_sym_void] = ACTIONS(565), - [anon_sym_delete] = ACTIONS(565), - [anon_sym_PLUS_PLUS] = ACTIONS(567), - [anon_sym_DASH_DASH] = ACTIONS(567), - [anon_sym_DQUOTE] = ACTIONS(569), - [anon_sym_SQUOTE] = ACTIONS(571), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(573), - [sym_number] = ACTIONS(895), - [sym_this] = ACTIONS(579), - [sym_super] = ACTIONS(579), - [sym_true] = ACTIONS(579), - [sym_false] = ACTIONS(579), - [sym_null] = ACTIONS(579), - [sym_undefined] = ACTIONS(579), + [sym_number] = ACTIONS(1380), + [sym_this] = ACTIONS(1382), + [sym_super] = ACTIONS(1382), + [sym_true] = ACTIONS(1382), + [sym_false] = ACTIONS(1382), + [sym_null] = ACTIONS(1382), + [sym_undefined] = ACTIONS(1382), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(531), - [anon_sym_get] = ACTIONS(531), - [anon_sym_set] = ACTIONS(531), - [anon_sym_declare] = ACTIONS(531), - [anon_sym_public] = ACTIONS(531), - [anon_sym_private] = ACTIONS(531), - [anon_sym_protected] = ACTIONS(531), - [anon_sym_module] = ACTIONS(531), - [anon_sym_any] = ACTIONS(531), - [anon_sym_number] = ACTIONS(531), - [anon_sym_boolean] = ACTIONS(531), - [anon_sym_string] = ACTIONS(531), - [anon_sym_symbol] = ACTIONS(531), - [sym_readonly] = ACTIONS(531), + [anon_sym_static] = ACTIONS(1425), + [anon_sym_get] = ACTIONS(1425), + [anon_sym_set] = ACTIONS(1425), + [anon_sym_declare] = ACTIONS(1425), + [anon_sym_public] = ACTIONS(1425), + [anon_sym_private] = ACTIONS(1425), + [anon_sym_protected] = ACTIONS(1425), + [anon_sym_module] = ACTIONS(1425), + [anon_sym_any] = ACTIONS(1425), + [anon_sym_number] = ACTIONS(1425), + [anon_sym_boolean] = ACTIONS(1425), + [anon_sym_string] = ACTIONS(1425), + [anon_sym_symbol] = ACTIONS(1425), + [sym_readonly] = ACTIONS(1425), }, - [197] = { - [sym_import] = STATE(1008), - [sym_parenthesized_expression] = STATE(654), - [sym__expression] = STATE(1683), - [sym_yield_expression] = STATE(1105), - [sym_object] = STATE(986), - [sym_array] = STATE(985), - [sym_class] = STATE(1008), - [sym_function] = STATE(1008), - [sym_generator_function] = STATE(1008), - [sym_arrow_function] = STATE(1008), - [sym__call_signature] = STATE(3002), - [sym_call_expression] = STATE(1008), - [sym_new_expression] = STATE(1105), - [sym_await_expression] = STATE(1105), - [sym_member_expression] = STATE(654), - [sym_subscript_expression] = STATE(654), - [sym_assignment_expression] = STATE(1105), - [sym__augmented_assignment_lhs] = STATE(1921), - [sym_augmented_assignment_expression] = STATE(1105), - [sym_ternary_expression] = STATE(1105), - [sym_binary_expression] = STATE(1105), - [sym_unary_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_string] = STATE(1008), - [sym_template_string] = STATE(1008), - [sym_regex] = STATE(1008), - [sym_meta_property] = STATE(1008), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2467), - [sym_non_null_expression] = STATE(949), - [sym_type_assertion] = STATE(1105), - [sym_as_expression] = STATE(1105), - [sym_internal_module] = STATE(1105), - [sym_type_arguments] = STATE(324), - [sym_type_parameters] = STATE(2860), - [aux_sym_export_statement_repeat1] = STATE(2497), - [sym_identifier] = ACTIONS(1348), - [anon_sym_export] = ACTIONS(1350), - [anon_sym_namespace] = ACTIONS(1352), - [anon_sym_LBRACE] = ACTIONS(509), - [anon_sym_type] = ACTIONS(1350), - [anon_sym_typeof] = ACTIONS(659), + [206] = { + [sym_import] = STATE(1151), + [sym_statement_block] = STATE(1176), + [sym_parenthesized_expression] = STATE(837), + [sym__expression] = STATE(1304), + [sym_yield_expression] = STATE(1144), + [sym_object] = STATE(1495), + [sym_array] = STATE(1493), + [sym_class] = STATE(1151), + [sym_function] = STATE(1151), + [sym_generator_function] = STATE(1151), + [sym_arrow_function] = STATE(1151), + [sym__call_signature] = STATE(3190), + [sym_call_expression] = STATE(1151), + [sym_new_expression] = STATE(1144), + [sym_await_expression] = STATE(1144), + [sym_member_expression] = STATE(837), + [sym_subscript_expression] = STATE(837), + [sym_assignment_expression] = STATE(1144), + [sym__augmented_assignment_lhs] = STATE(1927), + [sym_augmented_assignment_expression] = STATE(1144), + [sym_ternary_expression] = STATE(1144), + [sym_binary_expression] = STATE(1144), + [sym_unary_expression] = STATE(1144), + [sym_update_expression] = STATE(1144), + [sym_string] = STATE(1151), + [sym_template_string] = STATE(1151), + [sym_regex] = STATE(1151), + [sym_meta_property] = STATE(1151), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(845), + [sym_type_assertion] = STATE(1144), + [sym_as_expression] = STATE(1144), + [sym_internal_module] = STATE(1144), + [sym_type_arguments] = STATE(357), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2580), + [sym_identifier] = ACTIONS(859), + [anon_sym_export] = ACTIONS(769), + [anon_sym_namespace] = ACTIONS(771), + [anon_sym_LBRACE] = ACTIONS(1350), + [anon_sym_type] = ACTIONS(769), + [anon_sym_typeof] = ACTIONS(791), [anon_sym_import] = ACTIONS(435), - [anon_sym_BANG] = ACTIONS(643), + [anon_sym_BANG] = ACTIONS(775), [anon_sym_LPAREN] = ACTIONS(515), - [anon_sym_await] = ACTIONS(645), - [anon_sym_yield] = ACTIONS(647), + [anon_sym_await] = ACTIONS(777), + [anon_sym_yield] = ACTIONS(779), [anon_sym_LBRACK] = ACTIONS(517), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(449), - [anon_sym_DOT] = ACTIONS(1340), + [anon_sym_SLASH] = ACTIONS(781), [anon_sym_class] = ACTIONS(451), - [anon_sym_async] = ACTIONS(1356), + [anon_sym_async] = ACTIONS(783), [anon_sym_function] = ACTIONS(455), [anon_sym_new] = ACTIONS(865), [anon_sym_PLUS] = ACTIONS(867), [anon_sym_DASH] = ACTIONS(867), - [anon_sym_TILDE] = ACTIONS(643), - [anon_sym_void] = ACTIONS(659), - [anon_sym_delete] = ACTIONS(659), - [anon_sym_PLUS_PLUS] = ACTIONS(661), - [anon_sym_DASH_DASH] = ACTIONS(661), + [anon_sym_TILDE] = ACTIONS(775), + [anon_sym_void] = ACTIONS(791), + [anon_sym_delete] = ACTIONS(791), + [anon_sym_PLUS_PLUS] = ACTIONS(793), + [anon_sym_DASH_DASH] = ACTIONS(793), [anon_sym_DQUOTE] = ACTIONS(475), [anon_sym_SQUOTE] = ACTIONS(477), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(479), - [sym_number] = ACTIONS(1344), - [sym_this] = ACTIONS(1346), - [sym_super] = ACTIONS(1346), - [sym_true] = ACTIONS(1346), - [sym_false] = ACTIONS(1346), - [sym_null] = ACTIONS(1346), - [sym_undefined] = ACTIONS(1346), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(1350), - [anon_sym_get] = ACTIONS(1350), - [anon_sym_set] = ACTIONS(1350), - [anon_sym_declare] = ACTIONS(1350), - [anon_sym_public] = ACTIONS(1350), - [anon_sym_private] = ACTIONS(1350), - [anon_sym_protected] = ACTIONS(1350), - [anon_sym_module] = ACTIONS(1350), - [anon_sym_any] = ACTIONS(1350), - [anon_sym_number] = ACTIONS(1350), - [anon_sym_boolean] = ACTIONS(1350), - [anon_sym_string] = ACTIONS(1350), - [anon_sym_symbol] = ACTIONS(1350), - [sym_readonly] = ACTIONS(1350), - }, - [198] = { - [ts_builtin_sym_end] = ACTIONS(1411), - [sym_identifier] = ACTIONS(1413), - [anon_sym_export] = ACTIONS(1413), - [anon_sym_default] = ACTIONS(1413), - [anon_sym_EQ] = ACTIONS(1413), - [anon_sym_namespace] = ACTIONS(1413), - [anon_sym_LBRACE] = ACTIONS(1411), - [anon_sym_COMMA] = ACTIONS(1411), - [anon_sym_RBRACE] = ACTIONS(1411), - [anon_sym_type] = ACTIONS(1413), - [anon_sym_typeof] = ACTIONS(1413), - [anon_sym_import] = ACTIONS(1413), - [anon_sym_var] = ACTIONS(1413), - [anon_sym_let] = ACTIONS(1413), - [anon_sym_const] = ACTIONS(1413), - [anon_sym_BANG] = ACTIONS(1411), - [anon_sym_else] = ACTIONS(1413), - [anon_sym_if] = ACTIONS(1413), - [anon_sym_switch] = ACTIONS(1413), - [anon_sym_for] = ACTIONS(1413), - [anon_sym_LPAREN] = ACTIONS(1411), - [anon_sym_RPAREN] = ACTIONS(1411), - [anon_sym_await] = ACTIONS(1413), - [anon_sym_while] = ACTIONS(1413), - [anon_sym_do] = ACTIONS(1413), - [anon_sym_try] = ACTIONS(1413), - [anon_sym_with] = ACTIONS(1413), - [anon_sym_break] = ACTIONS(1413), - [anon_sym_continue] = ACTIONS(1413), - [anon_sym_debugger] = ACTIONS(1413), - [anon_sym_return] = ACTIONS(1413), - [anon_sym_throw] = ACTIONS(1413), - [anon_sym_SEMI] = ACTIONS(1411), - [anon_sym_COLON] = ACTIONS(1411), - [anon_sym_case] = ACTIONS(1413), - [anon_sym_yield] = ACTIONS(1413), - [anon_sym_LBRACK] = ACTIONS(1411), - [anon_sym_RBRACK] = ACTIONS(1411), - [anon_sym_LT] = ACTIONS(1411), - [anon_sym_GT] = ACTIONS(1411), - [anon_sym_SLASH] = ACTIONS(1413), - [anon_sym_DOT] = ACTIONS(1091), - [anon_sym_class] = ACTIONS(1413), - [anon_sym_async] = ACTIONS(1413), - [anon_sym_function] = ACTIONS(1413), - [anon_sym_EQ_GT] = ACTIONS(1411), - [anon_sym_new] = ACTIONS(1413), - [anon_sym_QMARK] = ACTIONS(1411), - [anon_sym_AMP] = ACTIONS(1411), - [anon_sym_PIPE] = ACTIONS(1411), - [anon_sym_PLUS] = ACTIONS(1413), - [anon_sym_DASH] = ACTIONS(1413), - [anon_sym_TILDE] = ACTIONS(1411), - [anon_sym_void] = ACTIONS(1413), - [anon_sym_delete] = ACTIONS(1413), - [anon_sym_PLUS_PLUS] = ACTIONS(1411), - [anon_sym_DASH_DASH] = ACTIONS(1411), - [anon_sym_DQUOTE] = ACTIONS(1411), - [anon_sym_SQUOTE] = ACTIONS(1411), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1411), - [sym_number] = ACTIONS(1411), - [sym_this] = ACTIONS(1413), - [sym_super] = ACTIONS(1413), - [sym_true] = ACTIONS(1413), - [sym_false] = ACTIONS(1413), - [sym_null] = ACTIONS(1413), - [sym_undefined] = ACTIONS(1413), - [anon_sym_AT] = ACTIONS(1411), - [anon_sym_static] = ACTIONS(1413), - [anon_sym_abstract] = ACTIONS(1413), - [anon_sym_get] = ACTIONS(1413), - [anon_sym_set] = ACTIONS(1413), - [anon_sym_declare] = ACTIONS(1413), - [anon_sym_public] = ACTIONS(1413), - [anon_sym_private] = ACTIONS(1413), - [anon_sym_protected] = ACTIONS(1413), - [anon_sym_module] = ACTIONS(1413), - [anon_sym_any] = ACTIONS(1413), - [anon_sym_number] = ACTIONS(1413), - [anon_sym_boolean] = ACTIONS(1413), - [anon_sym_string] = ACTIONS(1413), - [anon_sym_symbol] = ACTIONS(1413), - [anon_sym_implements] = ACTIONS(1413), - [anon_sym_interface] = ACTIONS(1413), - [anon_sym_extends] = ACTIONS(1413), - [anon_sym_enum] = ACTIONS(1413), - [sym_readonly] = ACTIONS(1413), - }, - [199] = { - [sym_import] = STATE(1682), - [sym_statement_block] = STATE(1658), - [sym_parenthesized_expression] = STATE(828), - [sym__expression] = STATE(1228), - [sym_yield_expression] = STATE(1680), - [sym_object] = STATE(1586), - [sym_array] = STATE(1585), - [sym_class] = STATE(1682), - [sym_function] = STATE(1682), - [sym_generator_function] = STATE(1682), - [sym_arrow_function] = STATE(1682), - [sym__call_signature] = STATE(3105), - [sym_call_expression] = STATE(1682), - [sym_new_expression] = STATE(1680), - [sym_await_expression] = STATE(1680), - [sym_member_expression] = STATE(828), - [sym_subscript_expression] = STATE(828), - [sym_assignment_expression] = STATE(1680), - [sym__augmented_assignment_lhs] = STATE(1918), - [sym_augmented_assignment_expression] = STATE(1680), - [sym_ternary_expression] = STATE(1680), - [sym_binary_expression] = STATE(1680), - [sym_unary_expression] = STATE(1680), - [sym_update_expression] = STATE(1680), - [sym_string] = STATE(1682), - [sym_template_string] = STATE(1682), - [sym_regex] = STATE(1682), - [sym_meta_property] = STATE(1682), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(827), - [sym_type_assertion] = STATE(1680), - [sym_as_expression] = STATE(1680), - [sym_internal_module] = STATE(1680), - [sym_type_arguments] = STATE(256), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2529), - [sym_identifier] = ACTIONS(879), - [anon_sym_export] = ACTIONS(531), - [anon_sym_namespace] = ACTIONS(533), - [anon_sym_LBRACE] = ACTIONS(1381), - [anon_sym_type] = ACTIONS(531), - [anon_sym_typeof] = ACTIONS(565), - [anon_sym_import] = ACTIONS(539), - [anon_sym_BANG] = ACTIONS(541), - [anon_sym_LPAREN] = ACTIONS(887), - [anon_sym_await] = ACTIONS(545), - [anon_sym_yield] = ACTIONS(547), - [anon_sym_LBRACK] = ACTIONS(889), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(551), - [anon_sym_class] = ACTIONS(553), - [anon_sym_async] = ACTIONS(555), - [anon_sym_function] = ACTIONS(557), - [anon_sym_new] = ACTIONS(891), - [anon_sym_PLUS] = ACTIONS(893), - [anon_sym_DASH] = ACTIONS(893), - [anon_sym_TILDE] = ACTIONS(541), - [anon_sym_void] = ACTIONS(565), - [anon_sym_delete] = ACTIONS(565), - [anon_sym_PLUS_PLUS] = ACTIONS(567), - [anon_sym_DASH_DASH] = ACTIONS(567), - [anon_sym_DQUOTE] = ACTIONS(569), - [anon_sym_SQUOTE] = ACTIONS(571), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(573), - [sym_number] = ACTIONS(895), - [sym_this] = ACTIONS(579), - [sym_super] = ACTIONS(579), - [sym_true] = ACTIONS(579), - [sym_false] = ACTIONS(579), - [sym_null] = ACTIONS(579), - [sym_undefined] = ACTIONS(579), + [sym_number] = ACTIONS(527), + [sym_this] = ACTIONS(485), + [sym_super] = ACTIONS(485), + [sym_true] = ACTIONS(485), + [sym_false] = ACTIONS(485), + [sym_null] = ACTIONS(485), + [sym_undefined] = ACTIONS(485), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(531), - [anon_sym_get] = ACTIONS(531), - [anon_sym_set] = ACTIONS(531), - [anon_sym_declare] = ACTIONS(531), - [anon_sym_public] = ACTIONS(531), - [anon_sym_private] = ACTIONS(531), - [anon_sym_protected] = ACTIONS(531), - [anon_sym_module] = ACTIONS(531), - [anon_sym_any] = ACTIONS(531), - [anon_sym_number] = ACTIONS(531), - [anon_sym_boolean] = ACTIONS(531), - [anon_sym_string] = ACTIONS(531), - [anon_sym_symbol] = ACTIONS(531), - [sym_readonly] = ACTIONS(531), + [anon_sym_static] = ACTIONS(769), + [anon_sym_get] = ACTIONS(769), + [anon_sym_set] = ACTIONS(769), + [anon_sym_declare] = ACTIONS(769), + [anon_sym_public] = ACTIONS(769), + [anon_sym_private] = ACTIONS(769), + [anon_sym_protected] = ACTIONS(769), + [anon_sym_module] = ACTIONS(769), + [anon_sym_any] = ACTIONS(769), + [anon_sym_number] = ACTIONS(769), + [anon_sym_boolean] = ACTIONS(769), + [anon_sym_string] = ACTIONS(769), + [anon_sym_symbol] = ACTIONS(769), + [sym_readonly] = ACTIONS(769), }, - [200] = { - [sym_import] = STATE(1101), - [sym_parenthesized_expression] = STATE(739), - [sym__expression] = STATE(1080), - [sym_yield_expression] = STATE(1105), - [sym_object] = STATE(1297), - [sym_array] = STATE(1296), - [sym_class] = STATE(1101), - [sym_function] = STATE(1101), - [sym_generator_function] = STATE(1101), - [sym_arrow_function] = STATE(1101), - [sym__call_signature] = STATE(3116), - [sym_call_expression] = STATE(1101), - [sym_new_expression] = STATE(1105), - [sym_await_expression] = STATE(1105), - [sym_member_expression] = STATE(739), - [sym_subscript_expression] = STATE(739), - [sym_assignment_expression] = STATE(1105), - [sym__augmented_assignment_lhs] = STATE(1920), - [sym_augmented_assignment_expression] = STATE(1105), - [sym_ternary_expression] = STATE(1105), - [sym_binary_expression] = STATE(1105), - [sym_unary_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_sequence_expression] = STATE(2507), - [sym_string] = STATE(1101), - [sym_template_string] = STATE(1101), - [sym_regex] = STATE(1101), - [sym_meta_property] = STATE(1101), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(755), - [sym_type_assertion] = STATE(1105), - [sym_as_expression] = STATE(1105), - [sym_internal_module] = STATE(1105), - [sym_type_arguments] = STATE(361), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2497), + [207] = { + [sym_import] = STATE(1151), + [sym_parenthesized_expression] = STATE(759), + [sym__expression] = STATE(1352), + [sym_yield_expression] = STATE(1144), + [sym_object] = STATE(1257), + [sym_array] = STATE(1254), + [sym_class] = STATE(1151), + [sym_function] = STATE(1151), + [sym_generator_function] = STATE(1151), + [sym_arrow_function] = STATE(1151), + [sym__call_signature] = STATE(3082), + [sym_call_expression] = STATE(1151), + [sym_new_expression] = STATE(1144), + [sym_await_expression] = STATE(1144), + [sym_member_expression] = STATE(759), + [sym_subscript_expression] = STATE(759), + [sym_assignment_expression] = STATE(1144), + [sym__augmented_assignment_lhs] = STATE(1924), + [sym_augmented_assignment_expression] = STATE(1144), + [sym_ternary_expression] = STATE(1144), + [sym_binary_expression] = STATE(1144), + [sym_unary_expression] = STATE(1144), + [sym_update_expression] = STATE(1144), + [sym_sequence_expression] = STATE(3139), + [sym_string] = STATE(1151), + [sym_template_string] = STATE(1151), + [sym_regex] = STATE(1151), + [sym_meta_property] = STATE(1151), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(754), + [sym_type_assertion] = STATE(1144), + [sym_as_expression] = STATE(1144), + [sym_internal_module] = STATE(1144), + [sym_type_arguments] = STATE(326), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2580), [sym_identifier] = ACTIONS(499), [anon_sym_export] = ACTIONS(501), [anon_sym_namespace] = ACTIONS(507), @@ -31230,159 +31914,69 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(501), [sym_readonly] = ACTIONS(501), }, - [201] = { - [sym_import] = STATE(1306), - [sym_parenthesized_expression] = STATE(714), - [sym__expression] = STATE(1634), - [sym_yield_expression] = STATE(1105), - [sym_object] = STATE(1097), - [sym_array] = STATE(1103), - [sym_class] = STATE(1306), - [sym_function] = STATE(1306), - [sym_generator_function] = STATE(1306), - [sym_arrow_function] = STATE(1306), - [sym__call_signature] = STATE(3059), - [sym_call_expression] = STATE(1306), - [sym_new_expression] = STATE(1105), - [sym_await_expression] = STATE(1105), - [sym_member_expression] = STATE(714), - [sym_subscript_expression] = STATE(714), - [sym_assignment_expression] = STATE(1105), - [sym__augmented_assignment_lhs] = STATE(1921), - [sym_augmented_assignment_expression] = STATE(1105), - [sym_ternary_expression] = STATE(1105), - [sym_binary_expression] = STATE(1105), - [sym_unary_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_string] = STATE(1306), - [sym_template_string] = STATE(1306), - [sym_regex] = STATE(1306), - [sym_meta_property] = STATE(1306), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(949), - [sym_type_assertion] = STATE(1105), - [sym_as_expression] = STATE(1105), - [sym_internal_module] = STATE(1105), - [sym_type_arguments] = STATE(324), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2554), - [sym_identifier] = ACTIONS(1415), - [anon_sym_export] = ACTIONS(1417), - [anon_sym_namespace] = ACTIONS(1419), - [anon_sym_LBRACE] = ACTIONS(595), - [anon_sym_type] = ACTIONS(1417), - [anon_sym_typeof] = ACTIONS(659), - [anon_sym_import] = ACTIONS(597), - [anon_sym_BANG] = ACTIONS(643), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(645), - [anon_sym_yield] = ACTIONS(647), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(1354), - [anon_sym_class] = ACTIONS(601), - [anon_sym_async] = ACTIONS(1421), - [anon_sym_function] = ACTIONS(605), - [anon_sym_new] = ACTIONS(1423), - [anon_sym_PLUS] = ACTIONS(867), - [anon_sym_DASH] = ACTIONS(867), - [anon_sym_TILDE] = ACTIONS(643), - [anon_sym_void] = ACTIONS(659), - [anon_sym_delete] = ACTIONS(659), - [anon_sym_PLUS_PLUS] = ACTIONS(661), - [anon_sym_DASH_DASH] = ACTIONS(661), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(85), - [sym_number] = ACTIONS(1425), - [sym_this] = ACTIONS(1427), - [sym_super] = ACTIONS(1427), - [sym_true] = ACTIONS(1427), - [sym_false] = ACTIONS(1427), - [sym_null] = ACTIONS(1427), - [sym_undefined] = ACTIONS(1427), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(1417), - [anon_sym_get] = ACTIONS(1417), - [anon_sym_set] = ACTIONS(1417), - [anon_sym_declare] = ACTIONS(1417), - [anon_sym_public] = ACTIONS(1417), - [anon_sym_private] = ACTIONS(1417), - [anon_sym_protected] = ACTIONS(1417), - [anon_sym_module] = ACTIONS(1417), - [anon_sym_any] = ACTIONS(1417), - [anon_sym_number] = ACTIONS(1417), - [anon_sym_boolean] = ACTIONS(1417), - [anon_sym_string] = ACTIONS(1417), - [anon_sym_symbol] = ACTIONS(1417), - [sym_readonly] = ACTIONS(1417), - }, - [202] = { - [sym_import] = STATE(1101), - [sym_statement_block] = STATE(1180), - [sym_parenthesized_expression] = STATE(948), - [sym__expression] = STATE(1375), - [sym_yield_expression] = STATE(1105), - [sym_object] = STATE(1654), - [sym_array] = STATE(1640), - [sym_class] = STATE(1101), - [sym_function] = STATE(1101), - [sym_generator_function] = STATE(1101), - [sym_arrow_function] = STATE(1101), - [sym__call_signature] = STATE(3002), - [sym_call_expression] = STATE(1101), - [sym_new_expression] = STATE(1105), - [sym_await_expression] = STATE(1105), - [sym_member_expression] = STATE(948), - [sym_subscript_expression] = STATE(948), - [sym_assignment_expression] = STATE(1105), - [sym__augmented_assignment_lhs] = STATE(1921), - [sym_augmented_assignment_expression] = STATE(1105), - [sym_ternary_expression] = STATE(1105), - [sym_binary_expression] = STATE(1105), - [sym_unary_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_string] = STATE(1101), - [sym_template_string] = STATE(1101), - [sym_regex] = STATE(1101), - [sym_meta_property] = STATE(1101), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(949), - [sym_type_assertion] = STATE(1105), - [sym_as_expression] = STATE(1105), - [sym_internal_module] = STATE(1105), - [sym_type_arguments] = STATE(324), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2497), - [sym_identifier] = ACTIONS(859), - [anon_sym_export] = ACTIONS(635), - [anon_sym_namespace] = ACTIONS(637), - [anon_sym_LBRACE] = ACTIONS(1332), - [anon_sym_type] = ACTIONS(635), - [anon_sym_typeof] = ACTIONS(659), + [208] = { + [sym_import] = STATE(1151), + [sym_parenthesized_expression] = STATE(759), + [sym__expression] = STATE(1359), + [sym_yield_expression] = STATE(1144), + [sym_object] = STATE(1257), + [sym_array] = STATE(1254), + [sym_class] = STATE(1151), + [sym_function] = STATE(1151), + [sym_generator_function] = STATE(1151), + [sym_arrow_function] = STATE(1151), + [sym__call_signature] = STATE(3082), + [sym_call_expression] = STATE(1151), + [sym_new_expression] = STATE(1144), + [sym_await_expression] = STATE(1144), + [sym_member_expression] = STATE(759), + [sym_subscript_expression] = STATE(759), + [sym_assignment_expression] = STATE(1144), + [sym__augmented_assignment_lhs] = STATE(1924), + [sym_augmented_assignment_expression] = STATE(1144), + [sym_ternary_expression] = STATE(1144), + [sym_binary_expression] = STATE(1144), + [sym_unary_expression] = STATE(1144), + [sym_update_expression] = STATE(1144), + [sym_sequence_expression] = STATE(3140), + [sym_string] = STATE(1151), + [sym_template_string] = STATE(1151), + [sym_regex] = STATE(1151), + [sym_meta_property] = STATE(1151), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(754), + [sym_type_assertion] = STATE(1144), + [sym_as_expression] = STATE(1144), + [sym_internal_module] = STATE(1144), + [sym_type_arguments] = STATE(326), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2580), + [sym_identifier] = ACTIONS(499), + [anon_sym_export] = ACTIONS(501), + [anon_sym_namespace] = ACTIONS(507), + [anon_sym_LBRACE] = ACTIONS(509), + [anon_sym_type] = ACTIONS(501), + [anon_sym_typeof] = ACTIONS(471), [anon_sym_import] = ACTIONS(435), - [anon_sym_BANG] = ACTIONS(643), + [anon_sym_BANG] = ACTIONS(437), [anon_sym_LPAREN] = ACTIONS(515), - [anon_sym_await] = ACTIONS(645), - [anon_sym_yield] = ACTIONS(647), + [anon_sym_await] = ACTIONS(443), + [anon_sym_yield] = ACTIONS(445), [anon_sym_LBRACK] = ACTIONS(517), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(449), [anon_sym_class] = ACTIONS(451), - [anon_sym_async] = ACTIONS(651), + [anon_sym_async] = ACTIONS(521), [anon_sym_function] = ACTIONS(455), - [anon_sym_new] = ACTIONS(865), - [anon_sym_PLUS] = ACTIONS(867), - [anon_sym_DASH] = ACTIONS(867), - [anon_sym_TILDE] = ACTIONS(643), - [anon_sym_void] = ACTIONS(659), - [anon_sym_delete] = ACTIONS(659), - [anon_sym_PLUS_PLUS] = ACTIONS(661), - [anon_sym_DASH_DASH] = ACTIONS(661), + [anon_sym_new] = ACTIONS(523), + [anon_sym_PLUS] = ACTIONS(525), + [anon_sym_DASH] = ACTIONS(525), + [anon_sym_TILDE] = ACTIONS(437), + [anon_sym_void] = ACTIONS(471), + [anon_sym_delete] = ACTIONS(471), + [anon_sym_PLUS_PLUS] = ACTIONS(473), + [anon_sym_DASH_DASH] = ACTIONS(473), [anon_sym_DQUOTE] = ACTIONS(475), [anon_sym_SQUOTE] = ACTIONS(477), [sym_comment] = ACTIONS(3), @@ -31395,153 +31989,63 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(485), [sym_undefined] = ACTIONS(485), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(635), - [anon_sym_get] = ACTIONS(635), - [anon_sym_set] = ACTIONS(635), - [anon_sym_declare] = ACTIONS(635), - [anon_sym_public] = ACTIONS(635), - [anon_sym_private] = ACTIONS(635), - [anon_sym_protected] = ACTIONS(635), - [anon_sym_module] = ACTIONS(635), - [anon_sym_any] = ACTIONS(635), - [anon_sym_number] = ACTIONS(635), - [anon_sym_boolean] = ACTIONS(635), - [anon_sym_string] = ACTIONS(635), - [anon_sym_symbol] = ACTIONS(635), - [sym_readonly] = ACTIONS(635), - }, - [203] = { - [sym_import] = STATE(1383), - [sym_parenthesized_expression] = STATE(734), - [sym__expression] = STATE(1686), - [sym_yield_expression] = STATE(1105), - [sym_object] = STATE(1214), - [sym_array] = STATE(1215), - [sym_class] = STATE(1383), - [sym_function] = STATE(1383), - [sym_generator_function] = STATE(1383), - [sym_arrow_function] = STATE(1383), - [sym__call_signature] = STATE(3105), - [sym_call_expression] = STATE(1383), - [sym_new_expression] = STATE(1105), - [sym_await_expression] = STATE(1105), - [sym_member_expression] = STATE(734), - [sym_subscript_expression] = STATE(734), - [sym_assignment_expression] = STATE(1105), - [sym__augmented_assignment_lhs] = STATE(1921), - [sym_augmented_assignment_expression] = STATE(1105), - [sym_ternary_expression] = STATE(1105), - [sym_binary_expression] = STATE(1105), - [sym_unary_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_string] = STATE(1383), - [sym_template_string] = STATE(1383), - [sym_regex] = STATE(1383), - [sym_meta_property] = STATE(1383), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(949), - [sym_type_assertion] = STATE(1105), - [sym_as_expression] = STATE(1105), - [sym_internal_module] = STATE(1105), - [sym_type_arguments] = STATE(324), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2529), - [sym_identifier] = ACTIONS(1429), - [anon_sym_export] = ACTIONS(1431), - [anon_sym_namespace] = ACTIONS(1433), - [anon_sym_LBRACE] = ACTIONS(1274), - [anon_sym_type] = ACTIONS(1431), - [anon_sym_typeof] = ACTIONS(659), - [anon_sym_import] = ACTIONS(539), - [anon_sym_BANG] = ACTIONS(643), - [anon_sym_LPAREN] = ACTIONS(887), - [anon_sym_await] = ACTIONS(645), - [anon_sym_yield] = ACTIONS(647), - [anon_sym_LBRACK] = ACTIONS(889), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(551), - [anon_sym_DOT] = ACTIONS(1383), - [anon_sym_class] = ACTIONS(553), - [anon_sym_async] = ACTIONS(1435), - [anon_sym_function] = ACTIONS(557), - [anon_sym_new] = ACTIONS(1437), - [anon_sym_PLUS] = ACTIONS(867), - [anon_sym_DASH] = ACTIONS(867), - [anon_sym_TILDE] = ACTIONS(643), - [anon_sym_void] = ACTIONS(659), - [anon_sym_delete] = ACTIONS(659), - [anon_sym_PLUS_PLUS] = ACTIONS(661), - [anon_sym_DASH_DASH] = ACTIONS(661), - [anon_sym_DQUOTE] = ACTIONS(569), - [anon_sym_SQUOTE] = ACTIONS(571), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(573), - [sym_number] = ACTIONS(1439), - [sym_this] = ACTIONS(1441), - [sym_super] = ACTIONS(1441), - [sym_true] = ACTIONS(1441), - [sym_false] = ACTIONS(1441), - [sym_null] = ACTIONS(1441), - [sym_undefined] = ACTIONS(1441), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(1431), - [anon_sym_get] = ACTIONS(1431), - [anon_sym_set] = ACTIONS(1431), - [anon_sym_declare] = ACTIONS(1431), - [anon_sym_public] = ACTIONS(1431), - [anon_sym_private] = ACTIONS(1431), - [anon_sym_protected] = ACTIONS(1431), - [anon_sym_module] = ACTIONS(1431), - [anon_sym_any] = ACTIONS(1431), - [anon_sym_number] = ACTIONS(1431), - [anon_sym_boolean] = ACTIONS(1431), - [anon_sym_string] = ACTIONS(1431), - [anon_sym_symbol] = ACTIONS(1431), - [sym_readonly] = ACTIONS(1431), + [anon_sym_static] = ACTIONS(501), + [anon_sym_get] = ACTIONS(501), + [anon_sym_set] = ACTIONS(501), + [anon_sym_declare] = ACTIONS(501), + [anon_sym_public] = ACTIONS(501), + [anon_sym_private] = ACTIONS(501), + [anon_sym_protected] = ACTIONS(501), + [anon_sym_module] = ACTIONS(501), + [anon_sym_any] = ACTIONS(501), + [anon_sym_number] = ACTIONS(501), + [anon_sym_boolean] = ACTIONS(501), + [anon_sym_string] = ACTIONS(501), + [anon_sym_symbol] = ACTIONS(501), + [sym_readonly] = ACTIONS(501), }, - [204] = { - [sym_import] = STATE(1101), - [sym_statement_block] = STATE(1160), - [sym_parenthesized_expression] = STATE(739), - [sym__expression] = STATE(1083), - [sym_yield_expression] = STATE(1105), - [sym_object] = STATE(1297), - [sym_array] = STATE(1296), - [sym_class] = STATE(1101), - [sym_function] = STATE(1101), - [sym_generator_function] = STATE(1101), - [sym_arrow_function] = STATE(1101), - [sym__call_signature] = STATE(3116), - [sym_call_expression] = STATE(1101), - [sym_new_expression] = STATE(1105), - [sym_await_expression] = STATE(1105), - [sym_member_expression] = STATE(739), - [sym_subscript_expression] = STATE(739), - [sym_assignment_expression] = STATE(1105), - [sym__augmented_assignment_lhs] = STATE(1920), - [sym_augmented_assignment_expression] = STATE(1105), - [sym_ternary_expression] = STATE(1105), - [sym_binary_expression] = STATE(1105), - [sym_unary_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_string] = STATE(1101), - [sym_template_string] = STATE(1101), - [sym_regex] = STATE(1101), - [sym_meta_property] = STATE(1101), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(755), - [sym_type_assertion] = STATE(1105), - [sym_as_expression] = STATE(1105), - [sym_internal_module] = STATE(1105), - [sym_type_arguments] = STATE(361), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2497), + [209] = { + [sym_import] = STATE(1151), + [sym_statement_block] = STATE(1196), + [sym_parenthesized_expression] = STATE(759), + [sym__expression] = STATE(1041), + [sym_yield_expression] = STATE(1144), + [sym_object] = STATE(1257), + [sym_array] = STATE(1254), + [sym_class] = STATE(1151), + [sym_function] = STATE(1151), + [sym_generator_function] = STATE(1151), + [sym_arrow_function] = STATE(1151), + [sym__call_signature] = STATE(3082), + [sym_call_expression] = STATE(1151), + [sym_new_expression] = STATE(1144), + [sym_await_expression] = STATE(1144), + [sym_member_expression] = STATE(759), + [sym_subscript_expression] = STATE(759), + [sym_assignment_expression] = STATE(1144), + [sym__augmented_assignment_lhs] = STATE(1924), + [sym_augmented_assignment_expression] = STATE(1144), + [sym_ternary_expression] = STATE(1144), + [sym_binary_expression] = STATE(1144), + [sym_unary_expression] = STATE(1144), + [sym_update_expression] = STATE(1144), + [sym_string] = STATE(1151), + [sym_template_string] = STATE(1151), + [sym_regex] = STATE(1151), + [sym_meta_property] = STATE(1151), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(754), + [sym_type_assertion] = STATE(1144), + [sym_as_expression] = STATE(1144), + [sym_internal_module] = STATE(1144), + [sym_type_arguments] = STATE(326), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2580), [sym_identifier] = ACTIONS(499), [anon_sym_export] = ACTIONS(501), [anon_sym_namespace] = ACTIONS(507), - [anon_sym_LBRACE] = ACTIONS(1332), + [anon_sym_LBRACE] = ACTIONS(1350), [anon_sym_type] = ACTIONS(501), [anon_sym_typeof] = ACTIONS(471), [anon_sym_import] = ACTIONS(435), @@ -31590,69 +32094,69 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(501), [sym_readonly] = ACTIONS(501), }, - [205] = { - [sym_import] = STATE(1101), - [sym_statement_block] = STATE(1179), - [sym_parenthesized_expression] = STATE(948), - [sym__expression] = STATE(1376), - [sym_yield_expression] = STATE(1105), - [sym_object] = STATE(1654), - [sym_array] = STATE(1640), - [sym_class] = STATE(1101), - [sym_function] = STATE(1101), - [sym_generator_function] = STATE(1101), - [sym_arrow_function] = STATE(1101), - [sym__call_signature] = STATE(3002), - [sym_call_expression] = STATE(1101), - [sym_new_expression] = STATE(1105), - [sym_await_expression] = STATE(1105), - [sym_member_expression] = STATE(948), - [sym_subscript_expression] = STATE(948), - [sym_assignment_expression] = STATE(1105), - [sym__augmented_assignment_lhs] = STATE(1921), - [sym_augmented_assignment_expression] = STATE(1105), - [sym_ternary_expression] = STATE(1105), - [sym_binary_expression] = STATE(1105), - [sym_unary_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_string] = STATE(1101), - [sym_template_string] = STATE(1101), - [sym_regex] = STATE(1101), - [sym_meta_property] = STATE(1101), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(949), - [sym_type_assertion] = STATE(1105), - [sym_as_expression] = STATE(1105), - [sym_internal_module] = STATE(1105), - [sym_type_arguments] = STATE(324), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2497), - [sym_identifier] = ACTIONS(859), - [anon_sym_export] = ACTIONS(635), - [anon_sym_namespace] = ACTIONS(637), - [anon_sym_LBRACE] = ACTIONS(1332), - [anon_sym_type] = ACTIONS(635), - [anon_sym_typeof] = ACTIONS(659), + [210] = { + [sym_import] = STATE(1151), + [sym_variable_declarator] = STATE(2587), + [sym_parenthesized_expression] = STATE(960), + [sym__expression] = STATE(1661), + [sym_yield_expression] = STATE(1144), + [sym_object] = STATE(1085), + [sym_array] = STATE(1026), + [sym_class] = STATE(1151), + [sym_function] = STATE(1151), + [sym_generator_function] = STATE(1151), + [sym_arrow_function] = STATE(1151), + [sym__call_signature] = STATE(3024), + [sym_call_expression] = STATE(1151), + [sym_new_expression] = STATE(1144), + [sym_await_expression] = STATE(1144), + [sym_member_expression] = STATE(960), + [sym_subscript_expression] = STATE(960), + [sym_assignment_expression] = STATE(1144), + [sym__augmented_assignment_lhs] = STATE(1925), + [sym_augmented_assignment_expression] = STATE(1144), + [sym_ternary_expression] = STATE(1144), + [sym_binary_expression] = STATE(1144), + [sym_unary_expression] = STATE(1144), + [sym_update_expression] = STATE(1144), + [sym_string] = STATE(1151), + [sym_template_string] = STATE(1151), + [sym_regex] = STATE(1151), + [sym_meta_property] = STATE(1151), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(957), + [sym_type_assertion] = STATE(1144), + [sym_as_expression] = STATE(1144), + [sym_internal_module] = STATE(1144), + [sym_type_arguments] = STATE(395), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2580), + [sym_identifier] = ACTIONS(1431), + [anon_sym_export] = ACTIONS(1433), + [anon_sym_namespace] = ACTIONS(1435), + [anon_sym_LBRACE] = ACTIONS(571), + [anon_sym_type] = ACTIONS(1433), + [anon_sym_typeof] = ACTIONS(601), [anon_sym_import] = ACTIONS(435), - [anon_sym_BANG] = ACTIONS(643), + [anon_sym_BANG] = ACTIONS(585), [anon_sym_LPAREN] = ACTIONS(515), - [anon_sym_await] = ACTIONS(645), - [anon_sym_yield] = ACTIONS(647), - [anon_sym_LBRACK] = ACTIONS(517), + [anon_sym_await] = ACTIONS(587), + [anon_sym_yield] = ACTIONS(589), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(449), [anon_sym_class] = ACTIONS(451), - [anon_sym_async] = ACTIONS(651), + [anon_sym_async] = ACTIONS(1437), [anon_sym_function] = ACTIONS(455), - [anon_sym_new] = ACTIONS(865), - [anon_sym_PLUS] = ACTIONS(867), - [anon_sym_DASH] = ACTIONS(867), - [anon_sym_TILDE] = ACTIONS(643), - [anon_sym_void] = ACTIONS(659), - [anon_sym_delete] = ACTIONS(659), - [anon_sym_PLUS_PLUS] = ACTIONS(661), - [anon_sym_DASH_DASH] = ACTIONS(661), + [anon_sym_new] = ACTIONS(903), + [anon_sym_PLUS] = ACTIONS(905), + [anon_sym_DASH] = ACTIONS(905), + [anon_sym_TILDE] = ACTIONS(585), + [anon_sym_void] = ACTIONS(601), + [anon_sym_delete] = ACTIONS(601), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(603), [anon_sym_DQUOTE] = ACTIONS(475), [anon_sym_SQUOTE] = ACTIONS(477), [sym_comment] = ACTIONS(3), @@ -31665,174 +32169,354 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(485), [sym_undefined] = ACTIONS(485), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(635), - [anon_sym_get] = ACTIONS(635), - [anon_sym_set] = ACTIONS(635), - [anon_sym_declare] = ACTIONS(635), - [anon_sym_public] = ACTIONS(635), - [anon_sym_private] = ACTIONS(635), - [anon_sym_protected] = ACTIONS(635), - [anon_sym_module] = ACTIONS(635), - [anon_sym_any] = ACTIONS(635), - [anon_sym_number] = ACTIONS(635), - [anon_sym_boolean] = ACTIONS(635), - [anon_sym_string] = ACTIONS(635), - [anon_sym_symbol] = ACTIONS(635), - [sym_readonly] = ACTIONS(635), + [anon_sym_static] = ACTIONS(1433), + [anon_sym_get] = ACTIONS(1433), + [anon_sym_set] = ACTIONS(1433), + [anon_sym_declare] = ACTIONS(1433), + [anon_sym_public] = ACTIONS(1433), + [anon_sym_private] = ACTIONS(1433), + [anon_sym_protected] = ACTIONS(1433), + [anon_sym_module] = ACTIONS(1433), + [anon_sym_any] = ACTIONS(1433), + [anon_sym_number] = ACTIONS(1433), + [anon_sym_boolean] = ACTIONS(1433), + [anon_sym_string] = ACTIONS(1433), + [anon_sym_symbol] = ACTIONS(1433), + [sym_readonly] = ACTIONS(1433), }, - [206] = { - [sym_import] = STATE(1306), - [sym_parenthesized_expression] = STATE(714), - [sym__expression] = STATE(1634), - [sym_yield_expression] = STATE(1105), - [sym_object] = STATE(1097), - [sym_array] = STATE(1103), - [sym_class] = STATE(1306), - [sym_function] = STATE(1306), - [sym_generator_function] = STATE(1306), - [sym_arrow_function] = STATE(1306), - [sym__call_signature] = STATE(3145), - [sym_call_expression] = STATE(1306), - [sym_new_expression] = STATE(1105), - [sym_await_expression] = STATE(1105), - [sym_member_expression] = STATE(714), - [sym_subscript_expression] = STATE(714), - [sym_assignment_expression] = STATE(1105), - [sym__augmented_assignment_lhs] = STATE(1921), - [sym_augmented_assignment_expression] = STATE(1105), - [sym_ternary_expression] = STATE(1105), - [sym_binary_expression] = STATE(1105), - [sym_unary_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_string] = STATE(1306), - [sym_template_string] = STATE(1306), - [sym_regex] = STATE(1306), - [sym_meta_property] = STATE(1306), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(949), - [sym_type_assertion] = STATE(1105), - [sym_as_expression] = STATE(1105), - [sym_internal_module] = STATE(1105), - [sym_type_arguments] = STATE(324), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2554), - [sym_identifier] = ACTIONS(1443), - [anon_sym_export] = ACTIONS(1445), - [anon_sym_namespace] = ACTIONS(1447), - [anon_sym_LBRACE] = ACTIONS(595), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_typeof] = ACTIONS(659), - [anon_sym_import] = ACTIONS(597), - [anon_sym_BANG] = ACTIONS(643), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(645), - [anon_sym_yield] = ACTIONS(647), + [211] = { + [sym_import] = STATE(1151), + [sym_variable_declarator] = STATE(2544), + [sym_parenthesized_expression] = STATE(960), + [sym__expression] = STATE(1661), + [sym_yield_expression] = STATE(1144), + [sym_object] = STATE(1085), + [sym_array] = STATE(1026), + [sym_class] = STATE(1151), + [sym_function] = STATE(1151), + [sym_generator_function] = STATE(1151), + [sym_arrow_function] = STATE(1151), + [sym__call_signature] = STATE(3024), + [sym_call_expression] = STATE(1151), + [sym_new_expression] = STATE(1144), + [sym_await_expression] = STATE(1144), + [sym_member_expression] = STATE(960), + [sym_subscript_expression] = STATE(960), + [sym_assignment_expression] = STATE(1144), + [sym__augmented_assignment_lhs] = STATE(1925), + [sym_augmented_assignment_expression] = STATE(1144), + [sym_ternary_expression] = STATE(1144), + [sym_binary_expression] = STATE(1144), + [sym_unary_expression] = STATE(1144), + [sym_update_expression] = STATE(1144), + [sym_string] = STATE(1151), + [sym_template_string] = STATE(1151), + [sym_regex] = STATE(1151), + [sym_meta_property] = STATE(1151), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(957), + [sym_type_assertion] = STATE(1144), + [sym_as_expression] = STATE(1144), + [sym_internal_module] = STATE(1144), + [sym_type_arguments] = STATE(395), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2580), + [sym_identifier] = ACTIONS(1431), + [anon_sym_export] = ACTIONS(1433), + [anon_sym_namespace] = ACTIONS(1435), + [anon_sym_LBRACE] = ACTIONS(571), + [anon_sym_type] = ACTIONS(1433), + [anon_sym_typeof] = ACTIONS(601), + [anon_sym_import] = ACTIONS(435), + [anon_sym_BANG] = ACTIONS(585), + [anon_sym_LPAREN] = ACTIONS(515), + [anon_sym_await] = ACTIONS(587), + [anon_sym_yield] = ACTIONS(589), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(1354), - [anon_sym_class] = ACTIONS(601), - [anon_sym_async] = ACTIONS(1449), - [anon_sym_function] = ACTIONS(605), - [anon_sym_new] = ACTIONS(1423), - [anon_sym_PLUS] = ACTIONS(867), - [anon_sym_DASH] = ACTIONS(867), - [anon_sym_TILDE] = ACTIONS(643), - [anon_sym_void] = ACTIONS(659), - [anon_sym_delete] = ACTIONS(659), - [anon_sym_PLUS_PLUS] = ACTIONS(661), - [anon_sym_DASH_DASH] = ACTIONS(661), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), + [anon_sym_SLASH] = ACTIONS(449), + [anon_sym_class] = ACTIONS(451), + [anon_sym_async] = ACTIONS(1437), + [anon_sym_function] = ACTIONS(455), + [anon_sym_new] = ACTIONS(903), + [anon_sym_PLUS] = ACTIONS(905), + [anon_sym_DASH] = ACTIONS(905), + [anon_sym_TILDE] = ACTIONS(585), + [anon_sym_void] = ACTIONS(601), + [anon_sym_delete] = ACTIONS(601), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_DQUOTE] = ACTIONS(475), + [anon_sym_SQUOTE] = ACTIONS(477), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(85), - [sym_number] = ACTIONS(1425), - [sym_this] = ACTIONS(1427), - [sym_super] = ACTIONS(1427), - [sym_true] = ACTIONS(1427), - [sym_false] = ACTIONS(1427), - [sym_null] = ACTIONS(1427), - [sym_undefined] = ACTIONS(1427), + [anon_sym_BQUOTE] = ACTIONS(479), + [sym_number] = ACTIONS(527), + [sym_this] = ACTIONS(485), + [sym_super] = ACTIONS(485), + [sym_true] = ACTIONS(485), + [sym_false] = ACTIONS(485), + [sym_null] = ACTIONS(485), + [sym_undefined] = ACTIONS(485), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(1445), - [anon_sym_get] = ACTIONS(1445), - [anon_sym_set] = ACTIONS(1445), - [anon_sym_declare] = ACTIONS(1445), - [anon_sym_public] = ACTIONS(1445), - [anon_sym_private] = ACTIONS(1445), - [anon_sym_protected] = ACTIONS(1445), - [anon_sym_module] = ACTIONS(1445), - [anon_sym_any] = ACTIONS(1445), - [anon_sym_number] = ACTIONS(1445), - [anon_sym_boolean] = ACTIONS(1445), - [anon_sym_string] = ACTIONS(1445), - [anon_sym_symbol] = ACTIONS(1445), - [sym_readonly] = ACTIONS(1445), + [anon_sym_static] = ACTIONS(1433), + [anon_sym_get] = ACTIONS(1433), + [anon_sym_set] = ACTIONS(1433), + [anon_sym_declare] = ACTIONS(1433), + [anon_sym_public] = ACTIONS(1433), + [anon_sym_private] = ACTIONS(1433), + [anon_sym_protected] = ACTIONS(1433), + [anon_sym_module] = ACTIONS(1433), + [anon_sym_any] = ACTIONS(1433), + [anon_sym_number] = ACTIONS(1433), + [anon_sym_boolean] = ACTIONS(1433), + [anon_sym_string] = ACTIONS(1433), + [anon_sym_symbol] = ACTIONS(1433), + [sym_readonly] = ACTIONS(1433), }, - [207] = { - [sym_import] = STATE(1101), - [sym_statement_block] = STATE(1176), - [sym_parenthesized_expression] = STATE(948), - [sym__expression] = STATE(1378), - [sym_yield_expression] = STATE(1105), - [sym_object] = STATE(1654), - [sym_array] = STATE(1640), - [sym_class] = STATE(1101), - [sym_function] = STATE(1101), - [sym_generator_function] = STATE(1101), - [sym_arrow_function] = STATE(1101), - [sym__call_signature] = STATE(3002), - [sym_call_expression] = STATE(1101), - [sym_new_expression] = STATE(1105), - [sym_await_expression] = STATE(1105), - [sym_member_expression] = STATE(948), - [sym_subscript_expression] = STATE(948), - [sym_assignment_expression] = STATE(1105), - [sym__augmented_assignment_lhs] = STATE(1921), - [sym_augmented_assignment_expression] = STATE(1105), - [sym_ternary_expression] = STATE(1105), - [sym_binary_expression] = STATE(1105), - [sym_unary_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_string] = STATE(1101), - [sym_template_string] = STATE(1101), - [sym_regex] = STATE(1101), - [sym_meta_property] = STATE(1101), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(949), - [sym_type_assertion] = STATE(1105), - [sym_as_expression] = STATE(1105), - [sym_internal_module] = STATE(1105), - [sym_type_arguments] = STATE(324), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2497), - [sym_identifier] = ACTIONS(859), - [anon_sym_export] = ACTIONS(635), - [anon_sym_namespace] = ACTIONS(637), - [anon_sym_LBRACE] = ACTIONS(1332), - [anon_sym_type] = ACTIONS(635), - [anon_sym_typeof] = ACTIONS(659), + [212] = { + [sym_import] = STATE(1151), + [sym_parenthesized_expression] = STATE(759), + [sym__expression] = STATE(1384), + [sym_yield_expression] = STATE(1144), + [sym_object] = STATE(1257), + [sym_array] = STATE(1254), + [sym_class] = STATE(1151), + [sym_function] = STATE(1151), + [sym_generator_function] = STATE(1151), + [sym_arrow_function] = STATE(1151), + [sym__call_signature] = STATE(3082), + [sym_call_expression] = STATE(1151), + [sym_new_expression] = STATE(1144), + [sym_await_expression] = STATE(1144), + [sym_member_expression] = STATE(759), + [sym_subscript_expression] = STATE(759), + [sym_assignment_expression] = STATE(1144), + [sym__augmented_assignment_lhs] = STATE(1924), + [sym_augmented_assignment_expression] = STATE(1144), + [sym_ternary_expression] = STATE(1144), + [sym_binary_expression] = STATE(1144), + [sym_unary_expression] = STATE(1144), + [sym_update_expression] = STATE(1144), + [sym_sequence_expression] = STATE(3094), + [sym_string] = STATE(1151), + [sym_template_string] = STATE(1151), + [sym_regex] = STATE(1151), + [sym_meta_property] = STATE(1151), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(754), + [sym_type_assertion] = STATE(1144), + [sym_as_expression] = STATE(1144), + [sym_internal_module] = STATE(1144), + [sym_type_arguments] = STATE(326), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2580), + [sym_identifier] = ACTIONS(499), + [anon_sym_export] = ACTIONS(501), + [anon_sym_namespace] = ACTIONS(507), + [anon_sym_LBRACE] = ACTIONS(509), + [anon_sym_type] = ACTIONS(501), + [anon_sym_typeof] = ACTIONS(471), + [anon_sym_import] = ACTIONS(435), + [anon_sym_BANG] = ACTIONS(437), + [anon_sym_LPAREN] = ACTIONS(515), + [anon_sym_await] = ACTIONS(443), + [anon_sym_yield] = ACTIONS(445), + [anon_sym_LBRACK] = ACTIONS(517), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(449), + [anon_sym_class] = ACTIONS(451), + [anon_sym_async] = ACTIONS(521), + [anon_sym_function] = ACTIONS(455), + [anon_sym_new] = ACTIONS(523), + [anon_sym_PLUS] = ACTIONS(525), + [anon_sym_DASH] = ACTIONS(525), + [anon_sym_TILDE] = ACTIONS(437), + [anon_sym_void] = ACTIONS(471), + [anon_sym_delete] = ACTIONS(471), + [anon_sym_PLUS_PLUS] = ACTIONS(473), + [anon_sym_DASH_DASH] = ACTIONS(473), + [anon_sym_DQUOTE] = ACTIONS(475), + [anon_sym_SQUOTE] = ACTIONS(477), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(479), + [sym_number] = ACTIONS(527), + [sym_this] = ACTIONS(485), + [sym_super] = ACTIONS(485), + [sym_true] = ACTIONS(485), + [sym_false] = ACTIONS(485), + [sym_null] = ACTIONS(485), + [sym_undefined] = ACTIONS(485), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(501), + [anon_sym_get] = ACTIONS(501), + [anon_sym_set] = ACTIONS(501), + [anon_sym_declare] = ACTIONS(501), + [anon_sym_public] = ACTIONS(501), + [anon_sym_private] = ACTIONS(501), + [anon_sym_protected] = ACTIONS(501), + [anon_sym_module] = ACTIONS(501), + [anon_sym_any] = ACTIONS(501), + [anon_sym_number] = ACTIONS(501), + [anon_sym_boolean] = ACTIONS(501), + [anon_sym_string] = ACTIONS(501), + [anon_sym_symbol] = ACTIONS(501), + [sym_readonly] = ACTIONS(501), + }, + [213] = { + [sym_import] = STATE(1151), + [sym_parenthesized_expression] = STATE(759), + [sym__expression] = STATE(1349), + [sym_yield_expression] = STATE(1144), + [sym_object] = STATE(1257), + [sym_array] = STATE(1254), + [sym_class] = STATE(1151), + [sym_function] = STATE(1151), + [sym_generator_function] = STATE(1151), + [sym_arrow_function] = STATE(1151), + [sym__call_signature] = STATE(3082), + [sym_call_expression] = STATE(1151), + [sym_new_expression] = STATE(1144), + [sym_await_expression] = STATE(1144), + [sym_member_expression] = STATE(759), + [sym_subscript_expression] = STATE(759), + [sym_assignment_expression] = STATE(1144), + [sym__augmented_assignment_lhs] = STATE(1924), + [sym_augmented_assignment_expression] = STATE(1144), + [sym_ternary_expression] = STATE(1144), + [sym_binary_expression] = STATE(1144), + [sym_unary_expression] = STATE(1144), + [sym_update_expression] = STATE(1144), + [sym_sequence_expression] = STATE(3022), + [sym_string] = STATE(1151), + [sym_template_string] = STATE(1151), + [sym_regex] = STATE(1151), + [sym_meta_property] = STATE(1151), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(754), + [sym_type_assertion] = STATE(1144), + [sym_as_expression] = STATE(1144), + [sym_internal_module] = STATE(1144), + [sym_type_arguments] = STATE(326), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2580), + [sym_identifier] = ACTIONS(499), + [anon_sym_export] = ACTIONS(501), + [anon_sym_namespace] = ACTIONS(507), + [anon_sym_LBRACE] = ACTIONS(509), + [anon_sym_type] = ACTIONS(501), + [anon_sym_typeof] = ACTIONS(471), [anon_sym_import] = ACTIONS(435), - [anon_sym_BANG] = ACTIONS(643), + [anon_sym_BANG] = ACTIONS(437), [anon_sym_LPAREN] = ACTIONS(515), - [anon_sym_await] = ACTIONS(645), - [anon_sym_yield] = ACTIONS(647), + [anon_sym_await] = ACTIONS(443), + [anon_sym_yield] = ACTIONS(445), [anon_sym_LBRACK] = ACTIONS(517), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(449), [anon_sym_class] = ACTIONS(451), - [anon_sym_async] = ACTIONS(651), + [anon_sym_async] = ACTIONS(521), + [anon_sym_function] = ACTIONS(455), + [anon_sym_new] = ACTIONS(523), + [anon_sym_PLUS] = ACTIONS(525), + [anon_sym_DASH] = ACTIONS(525), + [anon_sym_TILDE] = ACTIONS(437), + [anon_sym_void] = ACTIONS(471), + [anon_sym_delete] = ACTIONS(471), + [anon_sym_PLUS_PLUS] = ACTIONS(473), + [anon_sym_DASH_DASH] = ACTIONS(473), + [anon_sym_DQUOTE] = ACTIONS(475), + [anon_sym_SQUOTE] = ACTIONS(477), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(479), + [sym_number] = ACTIONS(527), + [sym_this] = ACTIONS(485), + [sym_super] = ACTIONS(485), + [sym_true] = ACTIONS(485), + [sym_false] = ACTIONS(485), + [sym_null] = ACTIONS(485), + [sym_undefined] = ACTIONS(485), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(501), + [anon_sym_get] = ACTIONS(501), + [anon_sym_set] = ACTIONS(501), + [anon_sym_declare] = ACTIONS(501), + [anon_sym_public] = ACTIONS(501), + [anon_sym_private] = ACTIONS(501), + [anon_sym_protected] = ACTIONS(501), + [anon_sym_module] = ACTIONS(501), + [anon_sym_any] = ACTIONS(501), + [anon_sym_number] = ACTIONS(501), + [anon_sym_boolean] = ACTIONS(501), + [anon_sym_string] = ACTIONS(501), + [anon_sym_symbol] = ACTIONS(501), + [sym_readonly] = ACTIONS(501), + }, + [214] = { + [sym_import] = STATE(1151), + [sym_statement_block] = STATE(1200), + [sym_parenthesized_expression] = STATE(837), + [sym__expression] = STATE(1253), + [sym_yield_expression] = STATE(1144), + [sym_object] = STATE(1495), + [sym_array] = STATE(1493), + [sym_class] = STATE(1151), + [sym_function] = STATE(1151), + [sym_generator_function] = STATE(1151), + [sym_arrow_function] = STATE(1151), + [sym__call_signature] = STATE(3190), + [sym_call_expression] = STATE(1151), + [sym_new_expression] = STATE(1144), + [sym_await_expression] = STATE(1144), + [sym_member_expression] = STATE(837), + [sym_subscript_expression] = STATE(837), + [sym_assignment_expression] = STATE(1144), + [sym__augmented_assignment_lhs] = STATE(1927), + [sym_augmented_assignment_expression] = STATE(1144), + [sym_ternary_expression] = STATE(1144), + [sym_binary_expression] = STATE(1144), + [sym_unary_expression] = STATE(1144), + [sym_update_expression] = STATE(1144), + [sym_string] = STATE(1151), + [sym_template_string] = STATE(1151), + [sym_regex] = STATE(1151), + [sym_meta_property] = STATE(1151), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(845), + [sym_type_assertion] = STATE(1144), + [sym_as_expression] = STATE(1144), + [sym_internal_module] = STATE(1144), + [sym_type_arguments] = STATE(357), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2580), + [sym_identifier] = ACTIONS(859), + [anon_sym_export] = ACTIONS(769), + [anon_sym_namespace] = ACTIONS(771), + [anon_sym_LBRACE] = ACTIONS(1350), + [anon_sym_type] = ACTIONS(769), + [anon_sym_typeof] = ACTIONS(791), + [anon_sym_import] = ACTIONS(435), + [anon_sym_BANG] = ACTIONS(775), + [anon_sym_LPAREN] = ACTIONS(515), + [anon_sym_await] = ACTIONS(777), + [anon_sym_yield] = ACTIONS(779), + [anon_sym_LBRACK] = ACTIONS(517), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(781), + [anon_sym_class] = ACTIONS(451), + [anon_sym_async] = ACTIONS(783), [anon_sym_function] = ACTIONS(455), [anon_sym_new] = ACTIONS(865), [anon_sym_PLUS] = ACTIONS(867), [anon_sym_DASH] = ACTIONS(867), - [anon_sym_TILDE] = ACTIONS(643), - [anon_sym_void] = ACTIONS(659), - [anon_sym_delete] = ACTIONS(659), - [anon_sym_PLUS_PLUS] = ACTIONS(661), - [anon_sym_DASH_DASH] = ACTIONS(661), + [anon_sym_TILDE] = ACTIONS(775), + [anon_sym_void] = ACTIONS(791), + [anon_sym_delete] = ACTIONS(791), + [anon_sym_PLUS_PLUS] = ACTIONS(793), + [anon_sym_DASH_DASH] = ACTIONS(793), [anon_sym_DQUOTE] = ACTIONS(475), [anon_sym_SQUOTE] = ACTIONS(477), [sym_comment] = ACTIONS(3), @@ -31845,6 +32529,96 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(485), [sym_undefined] = ACTIONS(485), [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(769), + [anon_sym_get] = ACTIONS(769), + [anon_sym_set] = ACTIONS(769), + [anon_sym_declare] = ACTIONS(769), + [anon_sym_public] = ACTIONS(769), + [anon_sym_private] = ACTIONS(769), + [anon_sym_protected] = ACTIONS(769), + [anon_sym_module] = ACTIONS(769), + [anon_sym_any] = ACTIONS(769), + [anon_sym_number] = ACTIONS(769), + [anon_sym_boolean] = ACTIONS(769), + [anon_sym_string] = ACTIONS(769), + [anon_sym_symbol] = ACTIONS(769), + [sym_readonly] = ACTIONS(769), + }, + [215] = { + [sym_import] = STATE(1523), + [sym_statement_block] = STATE(1594), + [sym_parenthesized_expression] = STATE(955), + [sym__expression] = STATE(1371), + [sym_yield_expression] = STATE(1567), + [sym_object] = STATE(1636), + [sym_array] = STATE(1643), + [sym_class] = STATE(1523), + [sym_function] = STATE(1523), + [sym_generator_function] = STATE(1523), + [sym_arrow_function] = STATE(1523), + [sym__call_signature] = STATE(3078), + [sym_call_expression] = STATE(1523), + [sym_new_expression] = STATE(1567), + [sym_await_expression] = STATE(1567), + [sym_member_expression] = STATE(955), + [sym_subscript_expression] = STATE(955), + [sym_assignment_expression] = STATE(1567), + [sym__augmented_assignment_lhs] = STATE(1929), + [sym_augmented_assignment_expression] = STATE(1567), + [sym_ternary_expression] = STATE(1567), + [sym_binary_expression] = STATE(1567), + [sym_unary_expression] = STATE(1567), + [sym_update_expression] = STATE(1567), + [sym_string] = STATE(1523), + [sym_template_string] = STATE(1523), + [sym_regex] = STATE(1523), + [sym_meta_property] = STATE(1523), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(953), + [sym_type_assertion] = STATE(1567), + [sym_as_expression] = STATE(1567), + [sym_internal_module] = STATE(1567), + [sym_type_arguments] = STATE(384), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2575), + [sym_identifier] = ACTIONS(887), + [anon_sym_export] = ACTIONS(635), + [anon_sym_namespace] = ACTIONS(637), + [anon_sym_LBRACE] = ACTIONS(1332), + [anon_sym_type] = ACTIONS(635), + [anon_sym_typeof] = ACTIONS(657), + [anon_sym_import] = ACTIONS(539), + [anon_sym_BANG] = ACTIONS(641), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(643), + [anon_sym_yield] = ACTIONS(645), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(545), + [anon_sym_async] = ACTIONS(649), + [anon_sym_function] = ACTIONS(549), + [anon_sym_new] = ACTIONS(893), + [anon_sym_PLUS] = ACTIONS(895), + [anon_sym_DASH] = ACTIONS(895), + [anon_sym_TILDE] = ACTIONS(641), + [anon_sym_void] = ACTIONS(657), + [anon_sym_delete] = ACTIONS(657), + [anon_sym_PLUS_PLUS] = ACTIONS(659), + [anon_sym_DASH_DASH] = ACTIONS(659), + [anon_sym_DQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(85), + [sym_number] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(635), [anon_sym_get] = ACTIONS(635), [anon_sym_set] = ACTIONS(635), @@ -31860,170 +32634,170 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(635), [sym_readonly] = ACTIONS(635), }, - [208] = { - [sym_import] = STATE(1682), - [sym_statement_block] = STATE(1685), - [sym_parenthesized_expression] = STATE(828), - [sym__expression] = STATE(1259), - [sym_yield_expression] = STATE(1680), - [sym_object] = STATE(1586), - [sym_array] = STATE(1585), - [sym_class] = STATE(1682), - [sym_function] = STATE(1682), - [sym_generator_function] = STATE(1682), - [sym_arrow_function] = STATE(1682), - [sym__call_signature] = STATE(3105), - [sym_call_expression] = STATE(1682), - [sym_new_expression] = STATE(1680), - [sym_await_expression] = STATE(1680), - [sym_member_expression] = STATE(828), - [sym_subscript_expression] = STATE(828), - [sym_assignment_expression] = STATE(1680), - [sym__augmented_assignment_lhs] = STATE(1918), - [sym_augmented_assignment_expression] = STATE(1680), - [sym_ternary_expression] = STATE(1680), - [sym_binary_expression] = STATE(1680), - [sym_unary_expression] = STATE(1680), - [sym_update_expression] = STATE(1680), - [sym_string] = STATE(1682), - [sym_template_string] = STATE(1682), - [sym_regex] = STATE(1682), - [sym_meta_property] = STATE(1682), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(827), - [sym_type_assertion] = STATE(1680), - [sym_as_expression] = STATE(1680), - [sym_internal_module] = STATE(1680), - [sym_type_arguments] = STATE(256), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2529), - [sym_identifier] = ACTIONS(879), - [anon_sym_export] = ACTIONS(531), - [anon_sym_namespace] = ACTIONS(533), - [anon_sym_LBRACE] = ACTIONS(1381), - [anon_sym_type] = ACTIONS(531), - [anon_sym_typeof] = ACTIONS(565), + [216] = { + [sym_import] = STATE(1523), + [sym_statement_block] = STATE(1598), + [sym_parenthesized_expression] = STATE(955), + [sym__expression] = STATE(1374), + [sym_yield_expression] = STATE(1567), + [sym_object] = STATE(1636), + [sym_array] = STATE(1643), + [sym_class] = STATE(1523), + [sym_function] = STATE(1523), + [sym_generator_function] = STATE(1523), + [sym_arrow_function] = STATE(1523), + [sym__call_signature] = STATE(3078), + [sym_call_expression] = STATE(1523), + [sym_new_expression] = STATE(1567), + [sym_await_expression] = STATE(1567), + [sym_member_expression] = STATE(955), + [sym_subscript_expression] = STATE(955), + [sym_assignment_expression] = STATE(1567), + [sym__augmented_assignment_lhs] = STATE(1929), + [sym_augmented_assignment_expression] = STATE(1567), + [sym_ternary_expression] = STATE(1567), + [sym_binary_expression] = STATE(1567), + [sym_unary_expression] = STATE(1567), + [sym_update_expression] = STATE(1567), + [sym_string] = STATE(1523), + [sym_template_string] = STATE(1523), + [sym_regex] = STATE(1523), + [sym_meta_property] = STATE(1523), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(953), + [sym_type_assertion] = STATE(1567), + [sym_as_expression] = STATE(1567), + [sym_internal_module] = STATE(1567), + [sym_type_arguments] = STATE(384), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2575), + [sym_identifier] = ACTIONS(887), + [anon_sym_export] = ACTIONS(635), + [anon_sym_namespace] = ACTIONS(637), + [anon_sym_LBRACE] = ACTIONS(1332), + [anon_sym_type] = ACTIONS(635), + [anon_sym_typeof] = ACTIONS(657), [anon_sym_import] = ACTIONS(539), - [anon_sym_BANG] = ACTIONS(541), - [anon_sym_LPAREN] = ACTIONS(887), - [anon_sym_await] = ACTIONS(545), - [anon_sym_yield] = ACTIONS(547), - [anon_sym_LBRACK] = ACTIONS(889), + [anon_sym_BANG] = ACTIONS(641), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(643), + [anon_sym_yield] = ACTIONS(645), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(551), - [anon_sym_class] = ACTIONS(553), - [anon_sym_async] = ACTIONS(555), - [anon_sym_function] = ACTIONS(557), - [anon_sym_new] = ACTIONS(891), - [anon_sym_PLUS] = ACTIONS(893), - [anon_sym_DASH] = ACTIONS(893), - [anon_sym_TILDE] = ACTIONS(541), - [anon_sym_void] = ACTIONS(565), - [anon_sym_delete] = ACTIONS(565), - [anon_sym_PLUS_PLUS] = ACTIONS(567), - [anon_sym_DASH_DASH] = ACTIONS(567), - [anon_sym_DQUOTE] = ACTIONS(569), - [anon_sym_SQUOTE] = ACTIONS(571), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(573), - [sym_number] = ACTIONS(895), - [sym_this] = ACTIONS(579), - [sym_super] = ACTIONS(579), - [sym_true] = ACTIONS(579), - [sym_false] = ACTIONS(579), - [sym_null] = ACTIONS(579), - [sym_undefined] = ACTIONS(579), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(545), + [anon_sym_async] = ACTIONS(649), + [anon_sym_function] = ACTIONS(549), + [anon_sym_new] = ACTIONS(893), + [anon_sym_PLUS] = ACTIONS(895), + [anon_sym_DASH] = ACTIONS(895), + [anon_sym_TILDE] = ACTIONS(641), + [anon_sym_void] = ACTIONS(657), + [anon_sym_delete] = ACTIONS(657), + [anon_sym_PLUS_PLUS] = ACTIONS(659), + [anon_sym_DASH_DASH] = ACTIONS(659), + [anon_sym_DQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(85), + [sym_number] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(531), - [anon_sym_get] = ACTIONS(531), - [anon_sym_set] = ACTIONS(531), - [anon_sym_declare] = ACTIONS(531), - [anon_sym_public] = ACTIONS(531), - [anon_sym_private] = ACTIONS(531), - [anon_sym_protected] = ACTIONS(531), - [anon_sym_module] = ACTIONS(531), - [anon_sym_any] = ACTIONS(531), - [anon_sym_number] = ACTIONS(531), - [anon_sym_boolean] = ACTIONS(531), - [anon_sym_string] = ACTIONS(531), - [anon_sym_symbol] = ACTIONS(531), - [sym_readonly] = ACTIONS(531), + [anon_sym_static] = ACTIONS(635), + [anon_sym_get] = ACTIONS(635), + [anon_sym_set] = ACTIONS(635), + [anon_sym_declare] = ACTIONS(635), + [anon_sym_public] = ACTIONS(635), + [anon_sym_private] = ACTIONS(635), + [anon_sym_protected] = ACTIONS(635), + [anon_sym_module] = ACTIONS(635), + [anon_sym_any] = ACTIONS(635), + [anon_sym_number] = ACTIONS(635), + [anon_sym_boolean] = ACTIONS(635), + [anon_sym_string] = ACTIONS(635), + [anon_sym_symbol] = ACTIONS(635), + [sym_readonly] = ACTIONS(635), }, - [209] = { - [sym_import] = STATE(1101), - [sym_statement_block] = STATE(1170), - [sym_parenthesized_expression] = STATE(948), - [sym__expression] = STATE(1382), - [sym_yield_expression] = STATE(1105), - [sym_object] = STATE(1654), - [sym_array] = STATE(1640), - [sym_class] = STATE(1101), - [sym_function] = STATE(1101), - [sym_generator_function] = STATE(1101), - [sym_arrow_function] = STATE(1101), - [sym__call_signature] = STATE(3002), - [sym_call_expression] = STATE(1101), - [sym_new_expression] = STATE(1105), - [sym_await_expression] = STATE(1105), - [sym_member_expression] = STATE(948), - [sym_subscript_expression] = STATE(948), - [sym_assignment_expression] = STATE(1105), - [sym__augmented_assignment_lhs] = STATE(1921), - [sym_augmented_assignment_expression] = STATE(1105), - [sym_ternary_expression] = STATE(1105), - [sym_binary_expression] = STATE(1105), - [sym_unary_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_string] = STATE(1101), - [sym_template_string] = STATE(1101), - [sym_regex] = STATE(1101), - [sym_meta_property] = STATE(1101), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(949), - [sym_type_assertion] = STATE(1105), - [sym_as_expression] = STATE(1105), - [sym_internal_module] = STATE(1105), - [sym_type_arguments] = STATE(324), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2497), - [sym_identifier] = ACTIONS(859), + [217] = { + [sym_import] = STATE(1523), + [sym_statement_block] = STATE(1599), + [sym_parenthesized_expression] = STATE(955), + [sym__expression] = STATE(1375), + [sym_yield_expression] = STATE(1567), + [sym_object] = STATE(1636), + [sym_array] = STATE(1643), + [sym_class] = STATE(1523), + [sym_function] = STATE(1523), + [sym_generator_function] = STATE(1523), + [sym_arrow_function] = STATE(1523), + [sym__call_signature] = STATE(3078), + [sym_call_expression] = STATE(1523), + [sym_new_expression] = STATE(1567), + [sym_await_expression] = STATE(1567), + [sym_member_expression] = STATE(955), + [sym_subscript_expression] = STATE(955), + [sym_assignment_expression] = STATE(1567), + [sym__augmented_assignment_lhs] = STATE(1929), + [sym_augmented_assignment_expression] = STATE(1567), + [sym_ternary_expression] = STATE(1567), + [sym_binary_expression] = STATE(1567), + [sym_unary_expression] = STATE(1567), + [sym_update_expression] = STATE(1567), + [sym_string] = STATE(1523), + [sym_template_string] = STATE(1523), + [sym_regex] = STATE(1523), + [sym_meta_property] = STATE(1523), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(953), + [sym_type_assertion] = STATE(1567), + [sym_as_expression] = STATE(1567), + [sym_internal_module] = STATE(1567), + [sym_type_arguments] = STATE(384), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2575), + [sym_identifier] = ACTIONS(887), [anon_sym_export] = ACTIONS(635), [anon_sym_namespace] = ACTIONS(637), [anon_sym_LBRACE] = ACTIONS(1332), [anon_sym_type] = ACTIONS(635), - [anon_sym_typeof] = ACTIONS(659), - [anon_sym_import] = ACTIONS(435), - [anon_sym_BANG] = ACTIONS(643), - [anon_sym_LPAREN] = ACTIONS(515), - [anon_sym_await] = ACTIONS(645), - [anon_sym_yield] = ACTIONS(647), - [anon_sym_LBRACK] = ACTIONS(517), + [anon_sym_typeof] = ACTIONS(657), + [anon_sym_import] = ACTIONS(539), + [anon_sym_BANG] = ACTIONS(641), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(643), + [anon_sym_yield] = ACTIONS(645), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(449), - [anon_sym_class] = ACTIONS(451), - [anon_sym_async] = ACTIONS(651), - [anon_sym_function] = ACTIONS(455), - [anon_sym_new] = ACTIONS(865), - [anon_sym_PLUS] = ACTIONS(867), - [anon_sym_DASH] = ACTIONS(867), - [anon_sym_TILDE] = ACTIONS(643), - [anon_sym_void] = ACTIONS(659), - [anon_sym_delete] = ACTIONS(659), - [anon_sym_PLUS_PLUS] = ACTIONS(661), - [anon_sym_DASH_DASH] = ACTIONS(661), - [anon_sym_DQUOTE] = ACTIONS(475), - [anon_sym_SQUOTE] = ACTIONS(477), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(545), + [anon_sym_async] = ACTIONS(649), + [anon_sym_function] = ACTIONS(549), + [anon_sym_new] = ACTIONS(893), + [anon_sym_PLUS] = ACTIONS(895), + [anon_sym_DASH] = ACTIONS(895), + [anon_sym_TILDE] = ACTIONS(641), + [anon_sym_void] = ACTIONS(657), + [anon_sym_delete] = ACTIONS(657), + [anon_sym_PLUS_PLUS] = ACTIONS(659), + [anon_sym_DASH_DASH] = ACTIONS(659), + [anon_sym_DQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(479), - [sym_number] = ACTIONS(527), - [sym_this] = ACTIONS(485), - [sym_super] = ACTIONS(485), - [sym_true] = ACTIONS(485), - [sym_false] = ACTIONS(485), - [sym_null] = ACTIONS(485), - [sym_undefined] = ACTIONS(485), + [anon_sym_BQUOTE] = ACTIONS(85), + [sym_number] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(635), [anon_sym_get] = ACTIONS(635), @@ -32040,69 +32814,69 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(635), [sym_readonly] = ACTIONS(635), }, - [210] = { - [sym_import] = STATE(1101), - [sym_parenthesized_expression] = STATE(948), - [sym__expression] = STATE(1502), - [sym_yield_expression] = STATE(1105), - [sym_object] = STATE(1654), - [sym_array] = STATE(1640), - [sym_class] = STATE(1101), - [sym_function] = STATE(1101), - [sym_generator_function] = STATE(1101), - [sym_arrow_function] = STATE(1101), - [sym__call_signature] = STATE(3002), - [sym_call_expression] = STATE(1101), - [sym_new_expression] = STATE(1105), - [sym_await_expression] = STATE(1105), - [sym_member_expression] = STATE(948), - [sym_subscript_expression] = STATE(948), - [sym_assignment_expression] = STATE(1105), - [sym__augmented_assignment_lhs] = STATE(1921), - [sym_augmented_assignment_expression] = STATE(1105), - [sym_ternary_expression] = STATE(1105), - [sym_binary_expression] = STATE(1105), - [sym_unary_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_string] = STATE(1101), - [sym_template_string] = STATE(1101), - [sym_regex] = STATE(1101), - [sym_meta_property] = STATE(1101), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(949), - [sym_type_assertion] = STATE(1105), - [sym_as_expression] = STATE(1105), - [sym_internal_module] = STATE(1105), - [sym_mapped_type_clause] = STATE(3060), - [sym_type_arguments] = STATE(324), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2497), - [sym_identifier] = ACTIONS(1451), - [anon_sym_export] = ACTIONS(1453), - [anon_sym_namespace] = ACTIONS(1455), - [anon_sym_LBRACE] = ACTIONS(509), - [anon_sym_type] = ACTIONS(1453), - [anon_sym_typeof] = ACTIONS(659), + [218] = { + [sym_import] = STATE(1151), + [sym_statement_block] = STATE(1197), + [sym_parenthesized_expression] = STATE(837), + [sym__expression] = STATE(1255), + [sym_yield_expression] = STATE(1144), + [sym_object] = STATE(1495), + [sym_array] = STATE(1493), + [sym_class] = STATE(1151), + [sym_function] = STATE(1151), + [sym_generator_function] = STATE(1151), + [sym_arrow_function] = STATE(1151), + [sym__call_signature] = STATE(3190), + [sym_call_expression] = STATE(1151), + [sym_new_expression] = STATE(1144), + [sym_await_expression] = STATE(1144), + [sym_member_expression] = STATE(837), + [sym_subscript_expression] = STATE(837), + [sym_assignment_expression] = STATE(1144), + [sym__augmented_assignment_lhs] = STATE(1927), + [sym_augmented_assignment_expression] = STATE(1144), + [sym_ternary_expression] = STATE(1144), + [sym_binary_expression] = STATE(1144), + [sym_unary_expression] = STATE(1144), + [sym_update_expression] = STATE(1144), + [sym_string] = STATE(1151), + [sym_template_string] = STATE(1151), + [sym_regex] = STATE(1151), + [sym_meta_property] = STATE(1151), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(845), + [sym_type_assertion] = STATE(1144), + [sym_as_expression] = STATE(1144), + [sym_internal_module] = STATE(1144), + [sym_type_arguments] = STATE(357), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2580), + [sym_identifier] = ACTIONS(859), + [anon_sym_export] = ACTIONS(769), + [anon_sym_namespace] = ACTIONS(771), + [anon_sym_LBRACE] = ACTIONS(1350), + [anon_sym_type] = ACTIONS(769), + [anon_sym_typeof] = ACTIONS(791), [anon_sym_import] = ACTIONS(435), - [anon_sym_BANG] = ACTIONS(643), + [anon_sym_BANG] = ACTIONS(775), [anon_sym_LPAREN] = ACTIONS(515), - [anon_sym_await] = ACTIONS(645), - [anon_sym_yield] = ACTIONS(647), + [anon_sym_await] = ACTIONS(777), + [anon_sym_yield] = ACTIONS(779), [anon_sym_LBRACK] = ACTIONS(517), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(449), + [anon_sym_SLASH] = ACTIONS(781), [anon_sym_class] = ACTIONS(451), - [anon_sym_async] = ACTIONS(1457), + [anon_sym_async] = ACTIONS(783), [anon_sym_function] = ACTIONS(455), [anon_sym_new] = ACTIONS(865), [anon_sym_PLUS] = ACTIONS(867), [anon_sym_DASH] = ACTIONS(867), - [anon_sym_TILDE] = ACTIONS(643), - [anon_sym_void] = ACTIONS(659), - [anon_sym_delete] = ACTIONS(659), - [anon_sym_PLUS_PLUS] = ACTIONS(661), - [anon_sym_DASH_DASH] = ACTIONS(661), + [anon_sym_TILDE] = ACTIONS(775), + [anon_sym_void] = ACTIONS(791), + [anon_sym_delete] = ACTIONS(791), + [anon_sym_PLUS_PLUS] = ACTIONS(793), + [anon_sym_DASH_DASH] = ACTIONS(793), [anon_sym_DQUOTE] = ACTIONS(475), [anon_sym_SQUOTE] = ACTIONS(477), [sym_comment] = ACTIONS(3), @@ -32115,59 +32889,59 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(485), [sym_undefined] = ACTIONS(485), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(1453), - [anon_sym_get] = ACTIONS(1453), - [anon_sym_set] = ACTIONS(1453), - [anon_sym_declare] = ACTIONS(1453), - [anon_sym_public] = ACTIONS(1453), - [anon_sym_private] = ACTIONS(1453), - [anon_sym_protected] = ACTIONS(1453), - [anon_sym_module] = ACTIONS(1453), - [anon_sym_any] = ACTIONS(1453), - [anon_sym_number] = ACTIONS(1453), - [anon_sym_boolean] = ACTIONS(1453), - [anon_sym_string] = ACTIONS(1453), - [anon_sym_symbol] = ACTIONS(1453), - [sym_readonly] = ACTIONS(1453), + [anon_sym_static] = ACTIONS(769), + [anon_sym_get] = ACTIONS(769), + [anon_sym_set] = ACTIONS(769), + [anon_sym_declare] = ACTIONS(769), + [anon_sym_public] = ACTIONS(769), + [anon_sym_private] = ACTIONS(769), + [anon_sym_protected] = ACTIONS(769), + [anon_sym_module] = ACTIONS(769), + [anon_sym_any] = ACTIONS(769), + [anon_sym_number] = ACTIONS(769), + [anon_sym_boolean] = ACTIONS(769), + [anon_sym_string] = ACTIONS(769), + [anon_sym_symbol] = ACTIONS(769), + [sym_readonly] = ACTIONS(769), }, - [211] = { - [sym_import] = STATE(1101), - [sym_parenthesized_expression] = STATE(739), - [sym__expression] = STATE(1436), - [sym_yield_expression] = STATE(1105), - [sym_object] = STATE(1297), - [sym_array] = STATE(1296), - [sym_class] = STATE(1101), - [sym_function] = STATE(1101), - [sym_generator_function] = STATE(1101), - [sym_arrow_function] = STATE(1101), - [sym__call_signature] = STATE(3116), - [sym_call_expression] = STATE(1101), - [sym_new_expression] = STATE(1105), - [sym_await_expression] = STATE(1105), - [sym_member_expression] = STATE(739), - [sym_subscript_expression] = STATE(739), - [sym_assignment_expression] = STATE(1105), - [sym__augmented_assignment_lhs] = STATE(1920), - [sym_augmented_assignment_expression] = STATE(1105), - [sym_ternary_expression] = STATE(1105), - [sym_binary_expression] = STATE(1105), - [sym_unary_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_sequence_expression] = STATE(3148), - [sym_string] = STATE(1101), - [sym_template_string] = STATE(1101), - [sym_regex] = STATE(1101), - [sym_meta_property] = STATE(1101), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(755), - [sym_type_assertion] = STATE(1105), - [sym_as_expression] = STATE(1105), - [sym_internal_module] = STATE(1105), - [sym_type_arguments] = STATE(361), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2497), + [219] = { + [sym_import] = STATE(1151), + [sym_parenthesized_expression] = STATE(759), + [sym__expression] = STATE(1378), + [sym_yield_expression] = STATE(1144), + [sym_object] = STATE(1257), + [sym_array] = STATE(1254), + [sym_class] = STATE(1151), + [sym_function] = STATE(1151), + [sym_generator_function] = STATE(1151), + [sym_arrow_function] = STATE(1151), + [sym__call_signature] = STATE(3082), + [sym_call_expression] = STATE(1151), + [sym_new_expression] = STATE(1144), + [sym_await_expression] = STATE(1144), + [sym_member_expression] = STATE(759), + [sym_subscript_expression] = STATE(759), + [sym_assignment_expression] = STATE(1144), + [sym__augmented_assignment_lhs] = STATE(1924), + [sym_augmented_assignment_expression] = STATE(1144), + [sym_ternary_expression] = STATE(1144), + [sym_binary_expression] = STATE(1144), + [sym_unary_expression] = STATE(1144), + [sym_update_expression] = STATE(1144), + [sym_sequence_expression] = STATE(3031), + [sym_string] = STATE(1151), + [sym_template_string] = STATE(1151), + [sym_regex] = STATE(1151), + [sym_meta_property] = STATE(1151), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(754), + [sym_type_assertion] = STATE(1144), + [sym_as_expression] = STATE(1144), + [sym_internal_module] = STATE(1144), + [sym_type_arguments] = STATE(326), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2580), [sym_identifier] = ACTIONS(499), [anon_sym_export] = ACTIONS(501), [anon_sym_namespace] = ACTIONS(507), @@ -32220,134 +32994,134 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(501), [sym_readonly] = ACTIONS(501), }, - [212] = { - [sym_import] = STATE(1008), - [sym_parenthesized_expression] = STATE(654), - [sym__expression] = STATE(1683), - [sym_yield_expression] = STATE(1105), - [sym_object] = STATE(986), - [sym_array] = STATE(985), - [sym_class] = STATE(1008), - [sym_function] = STATE(1008), - [sym_generator_function] = STATE(1008), - [sym_arrow_function] = STATE(1008), - [sym__call_signature] = STATE(3116), - [sym_call_expression] = STATE(1008), - [sym_new_expression] = STATE(1105), - [sym_await_expression] = STATE(1105), - [sym_member_expression] = STATE(654), - [sym_subscript_expression] = STATE(654), - [sym_assignment_expression] = STATE(1105), - [sym__augmented_assignment_lhs] = STATE(1921), - [sym_augmented_assignment_expression] = STATE(1105), - [sym_ternary_expression] = STATE(1105), - [sym_binary_expression] = STATE(1105), - [sym_unary_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_string] = STATE(1008), - [sym_template_string] = STATE(1008), - [sym_regex] = STATE(1008), - [sym_meta_property] = STATE(1008), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2279), - [sym_non_null_expression] = STATE(949), - [sym_type_assertion] = STATE(1105), - [sym_as_expression] = STATE(1105), - [sym_internal_module] = STATE(1105), - [sym_type_arguments] = STATE(324), - [sym_type_parameters] = STATE(2905), - [aux_sym_export_statement_repeat1] = STATE(2497), - [sym_identifier] = ACTIONS(1334), - [anon_sym_export] = ACTIONS(1336), - [anon_sym_namespace] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(509), - [anon_sym_type] = ACTIONS(1336), - [anon_sym_typeof] = ACTIONS(659), + [220] = { + [sym_import] = STATE(1151), + [sym_statement_block] = STATE(1196), + [sym_parenthesized_expression] = STATE(837), + [sym__expression] = STATE(1256), + [sym_yield_expression] = STATE(1144), + [sym_object] = STATE(1495), + [sym_array] = STATE(1493), + [sym_class] = STATE(1151), + [sym_function] = STATE(1151), + [sym_generator_function] = STATE(1151), + [sym_arrow_function] = STATE(1151), + [sym__call_signature] = STATE(3190), + [sym_call_expression] = STATE(1151), + [sym_new_expression] = STATE(1144), + [sym_await_expression] = STATE(1144), + [sym_member_expression] = STATE(837), + [sym_subscript_expression] = STATE(837), + [sym_assignment_expression] = STATE(1144), + [sym__augmented_assignment_lhs] = STATE(1927), + [sym_augmented_assignment_expression] = STATE(1144), + [sym_ternary_expression] = STATE(1144), + [sym_binary_expression] = STATE(1144), + [sym_unary_expression] = STATE(1144), + [sym_update_expression] = STATE(1144), + [sym_string] = STATE(1151), + [sym_template_string] = STATE(1151), + [sym_regex] = STATE(1151), + [sym_meta_property] = STATE(1151), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(845), + [sym_type_assertion] = STATE(1144), + [sym_as_expression] = STATE(1144), + [sym_internal_module] = STATE(1144), + [sym_type_arguments] = STATE(357), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2580), + [sym_identifier] = ACTIONS(859), + [anon_sym_export] = ACTIONS(769), + [anon_sym_namespace] = ACTIONS(771), + [anon_sym_LBRACE] = ACTIONS(1350), + [anon_sym_type] = ACTIONS(769), + [anon_sym_typeof] = ACTIONS(791), [anon_sym_import] = ACTIONS(435), - [anon_sym_BANG] = ACTIONS(643), + [anon_sym_BANG] = ACTIONS(775), [anon_sym_LPAREN] = ACTIONS(515), - [anon_sym_await] = ACTIONS(645), - [anon_sym_yield] = ACTIONS(647), + [anon_sym_await] = ACTIONS(777), + [anon_sym_yield] = ACTIONS(779), [anon_sym_LBRACK] = ACTIONS(517), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(449), - [anon_sym_DOT] = ACTIONS(1340), + [anon_sym_SLASH] = ACTIONS(781), [anon_sym_class] = ACTIONS(451), - [anon_sym_async] = ACTIONS(1342), + [anon_sym_async] = ACTIONS(783), [anon_sym_function] = ACTIONS(455), [anon_sym_new] = ACTIONS(865), [anon_sym_PLUS] = ACTIONS(867), [anon_sym_DASH] = ACTIONS(867), - [anon_sym_TILDE] = ACTIONS(643), - [anon_sym_void] = ACTIONS(659), - [anon_sym_delete] = ACTIONS(659), - [anon_sym_PLUS_PLUS] = ACTIONS(661), - [anon_sym_DASH_DASH] = ACTIONS(661), + [anon_sym_TILDE] = ACTIONS(775), + [anon_sym_void] = ACTIONS(791), + [anon_sym_delete] = ACTIONS(791), + [anon_sym_PLUS_PLUS] = ACTIONS(793), + [anon_sym_DASH_DASH] = ACTIONS(793), [anon_sym_DQUOTE] = ACTIONS(475), [anon_sym_SQUOTE] = ACTIONS(477), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(479), - [sym_number] = ACTIONS(1344), - [sym_this] = ACTIONS(1346), - [sym_super] = ACTIONS(1346), - [sym_true] = ACTIONS(1346), - [sym_false] = ACTIONS(1346), - [sym_null] = ACTIONS(1346), - [sym_undefined] = ACTIONS(1346), + [sym_number] = ACTIONS(527), + [sym_this] = ACTIONS(485), + [sym_super] = ACTIONS(485), + [sym_true] = ACTIONS(485), + [sym_false] = ACTIONS(485), + [sym_null] = ACTIONS(485), + [sym_undefined] = ACTIONS(485), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(1336), - [anon_sym_get] = ACTIONS(1336), - [anon_sym_set] = ACTIONS(1336), - [anon_sym_declare] = ACTIONS(1336), - [anon_sym_public] = ACTIONS(1336), - [anon_sym_private] = ACTIONS(1336), - [anon_sym_protected] = ACTIONS(1336), - [anon_sym_module] = ACTIONS(1336), - [anon_sym_any] = ACTIONS(1336), - [anon_sym_number] = ACTIONS(1336), - [anon_sym_boolean] = ACTIONS(1336), - [anon_sym_string] = ACTIONS(1336), - [anon_sym_symbol] = ACTIONS(1336), - [sym_readonly] = ACTIONS(1336), + [anon_sym_static] = ACTIONS(769), + [anon_sym_get] = ACTIONS(769), + [anon_sym_set] = ACTIONS(769), + [anon_sym_declare] = ACTIONS(769), + [anon_sym_public] = ACTIONS(769), + [anon_sym_private] = ACTIONS(769), + [anon_sym_protected] = ACTIONS(769), + [anon_sym_module] = ACTIONS(769), + [anon_sym_any] = ACTIONS(769), + [anon_sym_number] = ACTIONS(769), + [anon_sym_boolean] = ACTIONS(769), + [anon_sym_string] = ACTIONS(769), + [anon_sym_symbol] = ACTIONS(769), + [sym_readonly] = ACTIONS(769), }, - [213] = { - [sym_import] = STATE(1101), - [sym_parenthesized_expression] = STATE(739), - [sym__expression] = STATE(1434), - [sym_yield_expression] = STATE(1105), - [sym_object] = STATE(1297), - [sym_array] = STATE(1296), - [sym_class] = STATE(1101), - [sym_function] = STATE(1101), - [sym_generator_function] = STATE(1101), - [sym_arrow_function] = STATE(1101), - [sym__call_signature] = STATE(3116), - [sym_call_expression] = STATE(1101), - [sym_new_expression] = STATE(1105), - [sym_await_expression] = STATE(1105), - [sym_member_expression] = STATE(739), - [sym_subscript_expression] = STATE(739), - [sym_assignment_expression] = STATE(1105), - [sym__augmented_assignment_lhs] = STATE(1920), - [sym_augmented_assignment_expression] = STATE(1105), - [sym_ternary_expression] = STATE(1105), - [sym_binary_expression] = STATE(1105), - [sym_unary_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_sequence_expression] = STATE(3147), - [sym_string] = STATE(1101), - [sym_template_string] = STATE(1101), - [sym_regex] = STATE(1101), - [sym_meta_property] = STATE(1101), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(755), - [sym_type_assertion] = STATE(1105), - [sym_as_expression] = STATE(1105), - [sym_internal_module] = STATE(1105), - [sym_type_arguments] = STATE(361), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2497), + [221] = { + [sym_import] = STATE(1151), + [sym_parenthesized_expression] = STATE(759), + [sym__expression] = STATE(1368), + [sym_yield_expression] = STATE(1144), + [sym_object] = STATE(1257), + [sym_array] = STATE(1254), + [sym_class] = STATE(1151), + [sym_function] = STATE(1151), + [sym_generator_function] = STATE(1151), + [sym_arrow_function] = STATE(1151), + [sym__call_signature] = STATE(3082), + [sym_call_expression] = STATE(1151), + [sym_new_expression] = STATE(1144), + [sym_await_expression] = STATE(1144), + [sym_member_expression] = STATE(759), + [sym_subscript_expression] = STATE(759), + [sym_assignment_expression] = STATE(1144), + [sym__augmented_assignment_lhs] = STATE(1924), + [sym_augmented_assignment_expression] = STATE(1144), + [sym_ternary_expression] = STATE(1144), + [sym_binary_expression] = STATE(1144), + [sym_unary_expression] = STATE(1144), + [sym_update_expression] = STATE(1144), + [sym_sequence_expression] = STATE(3141), + [sym_string] = STATE(1151), + [sym_template_string] = STATE(1151), + [sym_regex] = STATE(1151), + [sym_meta_property] = STATE(1151), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(754), + [sym_type_assertion] = STATE(1144), + [sym_as_expression] = STATE(1144), + [sym_internal_module] = STATE(1144), + [sym_type_arguments] = STATE(326), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2580), [sym_identifier] = ACTIONS(499), [anon_sym_export] = ACTIONS(501), [anon_sym_namespace] = ACTIONS(507), @@ -32400,44 +33174,134 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(501), [sym_readonly] = ACTIONS(501), }, - [214] = { - [sym_import] = STATE(1101), - [sym_parenthesized_expression] = STATE(739), - [sym__expression] = STATE(1420), - [sym_yield_expression] = STATE(1105), - [sym_object] = STATE(1297), - [sym_array] = STATE(1296), - [sym_class] = STATE(1101), - [sym_function] = STATE(1101), - [sym_generator_function] = STATE(1101), - [sym_arrow_function] = STATE(1101), - [sym__call_signature] = STATE(3116), - [sym_call_expression] = STATE(1101), - [sym_new_expression] = STATE(1105), - [sym_await_expression] = STATE(1105), - [sym_member_expression] = STATE(739), - [sym_subscript_expression] = STATE(739), - [sym_assignment_expression] = STATE(1105), - [sym__augmented_assignment_lhs] = STATE(1920), - [sym_augmented_assignment_expression] = STATE(1105), - [sym_ternary_expression] = STATE(1105), - [sym_binary_expression] = STATE(1105), - [sym_unary_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_sequence_expression] = STATE(3146), - [sym_string] = STATE(1101), - [sym_template_string] = STATE(1101), - [sym_regex] = STATE(1101), - [sym_meta_property] = STATE(1101), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(755), - [sym_type_assertion] = STATE(1105), - [sym_as_expression] = STATE(1105), - [sym_internal_module] = STATE(1105), - [sym_type_arguments] = STATE(361), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2497), + [222] = { + [sym_import] = STATE(1265), + [sym_parenthesized_expression] = STATE(704), + [sym__expression] = STATE(1666), + [sym_yield_expression] = STATE(1144), + [sym_object] = STATE(1134), + [sym_array] = STATE(1131), + [sym_class] = STATE(1265), + [sym_function] = STATE(1265), + [sym_generator_function] = STATE(1265), + [sym_arrow_function] = STATE(1265), + [sym__call_signature] = STATE(3078), + [sym_call_expression] = STATE(1265), + [sym_new_expression] = STATE(1144), + [sym_await_expression] = STATE(1144), + [sym_member_expression] = STATE(704), + [sym_subscript_expression] = STATE(704), + [sym_assignment_expression] = STATE(1144), + [sym__augmented_assignment_lhs] = STATE(1925), + [sym_augmented_assignment_expression] = STATE(1144), + [sym_ternary_expression] = STATE(1144), + [sym_binary_expression] = STATE(1144), + [sym_unary_expression] = STATE(1144), + [sym_update_expression] = STATE(1144), + [sym_string] = STATE(1265), + [sym_template_string] = STATE(1265), + [sym_regex] = STATE(1265), + [sym_meta_property] = STATE(1265), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2383), + [sym_non_null_expression] = STATE(950), + [sym_type_assertion] = STATE(1144), + [sym_as_expression] = STATE(1144), + [sym_internal_module] = STATE(1144), + [sym_type_arguments] = STATE(395), + [sym_type_parameters] = STATE(2913), + [aux_sym_export_statement_repeat1] = STATE(2575), + [sym_identifier] = ACTIONS(1439), + [anon_sym_export] = ACTIONS(1441), + [anon_sym_namespace] = ACTIONS(1443), + [anon_sym_LBRACE] = ACTIONS(571), + [anon_sym_type] = ACTIONS(1441), + [anon_sym_typeof] = ACTIONS(601), + [anon_sym_import] = ACTIONS(539), + [anon_sym_BANG] = ACTIONS(585), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(587), + [anon_sym_yield] = ACTIONS(589), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(1358), + [anon_sym_class] = ACTIONS(545), + [anon_sym_async] = ACTIONS(1445), + [anon_sym_function] = ACTIONS(549), + [anon_sym_new] = ACTIONS(1362), + [anon_sym_PLUS] = ACTIONS(905), + [anon_sym_DASH] = ACTIONS(905), + [anon_sym_TILDE] = ACTIONS(585), + [anon_sym_void] = ACTIONS(601), + [anon_sym_delete] = ACTIONS(601), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_DQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(85), + [sym_number] = ACTIONS(1364), + [sym_this] = ACTIONS(1366), + [sym_super] = ACTIONS(1366), + [sym_true] = ACTIONS(1366), + [sym_false] = ACTIONS(1366), + [sym_null] = ACTIONS(1366), + [sym_undefined] = ACTIONS(1366), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(1441), + [anon_sym_get] = ACTIONS(1441), + [anon_sym_set] = ACTIONS(1441), + [anon_sym_declare] = ACTIONS(1441), + [anon_sym_public] = ACTIONS(1441), + [anon_sym_private] = ACTIONS(1441), + [anon_sym_protected] = ACTIONS(1441), + [anon_sym_module] = ACTIONS(1441), + [anon_sym_any] = ACTIONS(1441), + [anon_sym_number] = ACTIONS(1441), + [anon_sym_boolean] = ACTIONS(1441), + [anon_sym_string] = ACTIONS(1441), + [anon_sym_symbol] = ACTIONS(1441), + [sym_readonly] = ACTIONS(1441), + }, + [223] = { + [sym_import] = STATE(1151), + [sym_parenthesized_expression] = STATE(759), + [sym__expression] = STATE(1361), + [sym_yield_expression] = STATE(1144), + [sym_object] = STATE(1257), + [sym_array] = STATE(1254), + [sym_class] = STATE(1151), + [sym_function] = STATE(1151), + [sym_generator_function] = STATE(1151), + [sym_arrow_function] = STATE(1151), + [sym__call_signature] = STATE(3082), + [sym_call_expression] = STATE(1151), + [sym_new_expression] = STATE(1144), + [sym_await_expression] = STATE(1144), + [sym_member_expression] = STATE(759), + [sym_subscript_expression] = STATE(759), + [sym_assignment_expression] = STATE(1144), + [sym__augmented_assignment_lhs] = STATE(1924), + [sym_augmented_assignment_expression] = STATE(1144), + [sym_ternary_expression] = STATE(1144), + [sym_binary_expression] = STATE(1144), + [sym_unary_expression] = STATE(1144), + [sym_update_expression] = STATE(1144), + [sym_sequence_expression] = STATE(3145), + [sym_string] = STATE(1151), + [sym_template_string] = STATE(1151), + [sym_regex] = STATE(1151), + [sym_meta_property] = STATE(1151), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(754), + [sym_type_assertion] = STATE(1144), + [sym_as_expression] = STATE(1144), + [sym_internal_module] = STATE(1144), + [sym_type_arguments] = STATE(326), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2580), [sym_identifier] = ACTIONS(499), [anon_sym_export] = ACTIONS(501), [anon_sym_namespace] = ACTIONS(507), @@ -32490,134 +33354,44 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(501), [sym_readonly] = ACTIONS(501), }, - [215] = { - [sym__call_signature] = STATE(3042), - [sym_string] = STATE(2189), - [sym_formal_parameters] = STATE(2157), - [sym__property_name] = STATE(2189), - [sym_computed_property_name] = STATE(2189), - [sym_type_parameters] = STATE(2850), - [aux_sym_object_repeat1] = STATE(2645), - [sym_identifier] = ACTIONS(1358), - [anon_sym_export] = ACTIONS(1360), - [anon_sym_STAR] = ACTIONS(1362), - [anon_sym_EQ] = ACTIONS(1282), - [anon_sym_as] = ACTIONS(808), - [anon_sym_namespace] = ACTIONS(1360), - [anon_sym_COMMA] = ACTIONS(841), - [anon_sym_RBRACE] = ACTIONS(1242), - [anon_sym_type] = ACTIONS(1360), - [anon_sym_BANG] = ACTIONS(808), - [anon_sym_LPAREN] = ACTIONS(1365), - [anon_sym_in] = ACTIONS(808), - [anon_sym_SEMI] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(1216), - [anon_sym_LBRACK] = ACTIONS(1369), - [anon_sym_LT] = ACTIONS(1371), - [anon_sym_GT] = ACTIONS(808), - [anon_sym_SLASH] = ACTIONS(808), - [anon_sym_DOT] = ACTIONS(1007), - [anon_sym_async] = ACTIONS(1360), - [anon_sym_function] = ACTIONS(1375), - [anon_sym_EQ_GT] = ACTIONS(1009), - [anon_sym_QMARK_DOT] = ACTIONS(1011), - [anon_sym_PLUS_EQ] = ACTIONS(831), - [anon_sym_DASH_EQ] = ACTIONS(831), - [anon_sym_STAR_EQ] = ACTIONS(831), - [anon_sym_SLASH_EQ] = ACTIONS(831), - [anon_sym_PERCENT_EQ] = ACTIONS(831), - [anon_sym_CARET_EQ] = ACTIONS(831), - [anon_sym_AMP_EQ] = ACTIONS(831), - [anon_sym_PIPE_EQ] = ACTIONS(831), - [anon_sym_GT_GT_EQ] = ACTIONS(831), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(831), - [anon_sym_LT_LT_EQ] = ACTIONS(831), - [anon_sym_STAR_STAR_EQ] = ACTIONS(831), - [anon_sym_AMP_AMP_EQ] = ACTIONS(831), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(831), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(831), - [anon_sym_QMARK] = ACTIONS(1221), - [anon_sym_AMP_AMP] = ACTIONS(808), - [anon_sym_PIPE_PIPE] = ACTIONS(808), - [anon_sym_GT_GT] = ACTIONS(808), - [anon_sym_GT_GT_GT] = ACTIONS(808), - [anon_sym_LT_LT] = ACTIONS(808), - [anon_sym_AMP] = ACTIONS(808), - [anon_sym_CARET] = ACTIONS(808), - [anon_sym_PIPE] = ACTIONS(808), - [anon_sym_PLUS] = ACTIONS(808), - [anon_sym_DASH] = ACTIONS(808), - [anon_sym_PERCENT] = ACTIONS(808), - [anon_sym_STAR_STAR] = ACTIONS(808), - [anon_sym_LT_EQ] = ACTIONS(841), - [anon_sym_EQ_EQ] = ACTIONS(808), - [anon_sym_EQ_EQ_EQ] = ACTIONS(841), - [anon_sym_BANG_EQ] = ACTIONS(808), - [anon_sym_BANG_EQ_EQ] = ACTIONS(841), - [anon_sym_GT_EQ] = ACTIONS(841), - [anon_sym_QMARK_QMARK] = ACTIONS(808), - [anon_sym_instanceof] = ACTIONS(808), - [anon_sym_PLUS_PLUS] = ACTIONS(841), - [anon_sym_DASH_DASH] = ACTIONS(841), - [anon_sym_DQUOTE] = ACTIONS(845), - [anon_sym_SQUOTE] = ACTIONS(847), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(841), - [sym_number] = ACTIONS(1377), - [anon_sym_static] = ACTIONS(1360), - [anon_sym_get] = ACTIONS(1379), - [anon_sym_set] = ACTIONS(1379), - [anon_sym_declare] = ACTIONS(1360), - [anon_sym_public] = ACTIONS(1360), - [anon_sym_private] = ACTIONS(1360), - [anon_sym_protected] = ACTIONS(1360), - [anon_sym_module] = ACTIONS(1360), - [anon_sym_any] = ACTIONS(1360), - [anon_sym_number] = ACTIONS(1360), - [anon_sym_boolean] = ACTIONS(1360), - [anon_sym_string] = ACTIONS(1360), - [anon_sym_symbol] = ACTIONS(1360), - [sym_readonly] = ACTIONS(1360), - [sym__automatic_semicolon] = ACTIONS(841), - }, - [216] = { - [sym_import] = STATE(1101), - [sym_parenthesized_expression] = STATE(739), - [sym__expression] = STATE(1437), - [sym_yield_expression] = STATE(1105), - [sym_object] = STATE(1297), - [sym_array] = STATE(1296), - [sym_class] = STATE(1101), - [sym_function] = STATE(1101), - [sym_generator_function] = STATE(1101), - [sym_arrow_function] = STATE(1101), - [sym__call_signature] = STATE(3116), - [sym_call_expression] = STATE(1101), - [sym_new_expression] = STATE(1105), - [sym_await_expression] = STATE(1105), - [sym_member_expression] = STATE(739), - [sym_subscript_expression] = STATE(739), - [sym_assignment_expression] = STATE(1105), - [sym__augmented_assignment_lhs] = STATE(1920), - [sym_augmented_assignment_expression] = STATE(1105), - [sym_ternary_expression] = STATE(1105), - [sym_binary_expression] = STATE(1105), - [sym_unary_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_sequence_expression] = STATE(3136), - [sym_string] = STATE(1101), - [sym_template_string] = STATE(1101), - [sym_regex] = STATE(1101), - [sym_meta_property] = STATE(1101), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(755), - [sym_type_assertion] = STATE(1105), - [sym_as_expression] = STATE(1105), - [sym_internal_module] = STATE(1105), - [sym_type_arguments] = STATE(361), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2497), + [224] = { + [sym_import] = STATE(1151), + [sym_parenthesized_expression] = STATE(759), + [sym__expression] = STATE(1313), + [sym_yield_expression] = STATE(1144), + [sym_object] = STATE(1257), + [sym_array] = STATE(1254), + [sym_class] = STATE(1151), + [sym_function] = STATE(1151), + [sym_generator_function] = STATE(1151), + [sym_arrow_function] = STATE(1151), + [sym__call_signature] = STATE(3082), + [sym_call_expression] = STATE(1151), + [sym_new_expression] = STATE(1144), + [sym_await_expression] = STATE(1144), + [sym_member_expression] = STATE(759), + [sym_subscript_expression] = STATE(759), + [sym_assignment_expression] = STATE(1144), + [sym__augmented_assignment_lhs] = STATE(1924), + [sym_augmented_assignment_expression] = STATE(1144), + [sym_ternary_expression] = STATE(1144), + [sym_binary_expression] = STATE(1144), + [sym_unary_expression] = STATE(1144), + [sym_update_expression] = STATE(1144), + [sym_sequence_expression] = STATE(3149), + [sym_string] = STATE(1151), + [sym_template_string] = STATE(1151), + [sym_regex] = STATE(1151), + [sym_meta_property] = STATE(1151), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(754), + [sym_type_assertion] = STATE(1144), + [sym_as_expression] = STATE(1144), + [sym_internal_module] = STATE(1144), + [sym_type_arguments] = STATE(326), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2580), [sym_identifier] = ACTIONS(499), [anon_sym_export] = ACTIONS(501), [anon_sym_namespace] = ACTIONS(507), @@ -32670,134 +33444,224 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(501), [sym_readonly] = ACTIONS(501), }, - [217] = { - [sym_import] = STATE(1498), - [sym_statement_block] = STATE(1526), - [sym_parenthesized_expression] = STATE(764), - [sym__expression] = STATE(1129), - [sym_yield_expression] = STATE(1518), - [sym_object] = STATE(1435), - [sym_array] = STATE(1433), - [sym_class] = STATE(1498), - [sym_function] = STATE(1498), - [sym_generator_function] = STATE(1498), - [sym_arrow_function] = STATE(1498), - [sym__call_signature] = STATE(3145), - [sym_call_expression] = STATE(1498), - [sym_new_expression] = STATE(1518), - [sym_await_expression] = STATE(1518), - [sym_member_expression] = STATE(764), - [sym_subscript_expression] = STATE(764), - [sym_assignment_expression] = STATE(1518), + [225] = { + [sym_import] = STATE(1151), + [sym_parenthesized_expression] = STATE(956), + [sym__expression] = STATE(1524), + [sym_yield_expression] = STATE(1144), + [sym_object] = STATE(1653), + [sym_array] = STATE(1660), + [sym_class] = STATE(1151), + [sym_function] = STATE(1151), + [sym_generator_function] = STATE(1151), + [sym_arrow_function] = STATE(1151), + [sym__call_signature] = STATE(3024), + [sym_call_expression] = STATE(1151), + [sym_new_expression] = STATE(1144), + [sym_await_expression] = STATE(1144), + [sym_member_expression] = STATE(956), + [sym_subscript_expression] = STATE(956), + [sym_assignment_expression] = STATE(1144), [sym__augmented_assignment_lhs] = STATE(1925), - [sym_augmented_assignment_expression] = STATE(1518), - [sym_ternary_expression] = STATE(1518), - [sym_binary_expression] = STATE(1518), - [sym_unary_expression] = STATE(1518), - [sym_update_expression] = STATE(1518), - [sym_string] = STATE(1498), - [sym_template_string] = STATE(1498), - [sym_regex] = STATE(1498), - [sym_meta_property] = STATE(1498), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(772), - [sym_type_assertion] = STATE(1518), - [sym_as_expression] = STATE(1518), - [sym_internal_module] = STATE(1518), - [sym_type_arguments] = STATE(349), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2554), - [sym_identifier] = ACTIONS(587), - [anon_sym_export] = ACTIONS(589), - [anon_sym_namespace] = ACTIONS(593), - [anon_sym_LBRACE] = ACTIONS(1409), - [anon_sym_type] = ACTIONS(589), - [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(597), - [anon_sym_BANG] = ACTIONS(29), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(39), - [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(63), + [sym_augmented_assignment_expression] = STATE(1144), + [sym_ternary_expression] = STATE(1144), + [sym_binary_expression] = STATE(1144), + [sym_unary_expression] = STATE(1144), + [sym_update_expression] = STATE(1144), + [sym_string] = STATE(1151), + [sym_template_string] = STATE(1151), + [sym_regex] = STATE(1151), + [sym_meta_property] = STATE(1151), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(950), + [sym_type_assertion] = STATE(1144), + [sym_as_expression] = STATE(1144), + [sym_internal_module] = STATE(1144), + [sym_mapped_type_clause] = STATE(3107), + [sym_type_arguments] = STATE(395), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2580), + [sym_identifier] = ACTIONS(1447), + [anon_sym_export] = ACTIONS(1449), + [anon_sym_namespace] = ACTIONS(1451), + [anon_sym_LBRACE] = ACTIONS(509), + [anon_sym_type] = ACTIONS(1449), + [anon_sym_typeof] = ACTIONS(601), + [anon_sym_import] = ACTIONS(435), + [anon_sym_BANG] = ACTIONS(585), + [anon_sym_LPAREN] = ACTIONS(515), + [anon_sym_await] = ACTIONS(587), + [anon_sym_yield] = ACTIONS(589), + [anon_sym_LBRACK] = ACTIONS(517), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(601), - [anon_sym_async] = ACTIONS(603), - [anon_sym_function] = ACTIONS(605), - [anon_sym_new] = ACTIONS(75), - [anon_sym_PLUS] = ACTIONS(77), - [anon_sym_DASH] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(29), - [anon_sym_void] = ACTIONS(19), - [anon_sym_delete] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), + [anon_sym_SLASH] = ACTIONS(449), + [anon_sym_class] = ACTIONS(451), + [anon_sym_async] = ACTIONS(1453), + [anon_sym_function] = ACTIONS(455), + [anon_sym_new] = ACTIONS(903), + [anon_sym_PLUS] = ACTIONS(905), + [anon_sym_DASH] = ACTIONS(905), + [anon_sym_TILDE] = ACTIONS(585), + [anon_sym_void] = ACTIONS(601), + [anon_sym_delete] = ACTIONS(601), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_DQUOTE] = ACTIONS(475), + [anon_sym_SQUOTE] = ACTIONS(477), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(85), - [sym_number] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), + [anon_sym_BQUOTE] = ACTIONS(479), + [sym_number] = ACTIONS(527), + [sym_this] = ACTIONS(485), + [sym_super] = ACTIONS(485), + [sym_true] = ACTIONS(485), + [sym_false] = ACTIONS(485), + [sym_null] = ACTIONS(485), + [sym_undefined] = ACTIONS(485), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(589), - [anon_sym_get] = ACTIONS(589), - [anon_sym_set] = ACTIONS(589), - [anon_sym_declare] = ACTIONS(589), - [anon_sym_public] = ACTIONS(589), - [anon_sym_private] = ACTIONS(589), - [anon_sym_protected] = ACTIONS(589), - [anon_sym_module] = ACTIONS(589), - [anon_sym_any] = ACTIONS(589), - [anon_sym_number] = ACTIONS(589), - [anon_sym_boolean] = ACTIONS(589), - [anon_sym_string] = ACTIONS(589), - [anon_sym_symbol] = ACTIONS(589), - [sym_readonly] = ACTIONS(589), + [anon_sym_static] = ACTIONS(1449), + [anon_sym_get] = ACTIONS(1449), + [anon_sym_set] = ACTIONS(1449), + [anon_sym_declare] = ACTIONS(1449), + [anon_sym_public] = ACTIONS(1449), + [anon_sym_private] = ACTIONS(1449), + [anon_sym_protected] = ACTIONS(1449), + [anon_sym_module] = ACTIONS(1449), + [anon_sym_any] = ACTIONS(1449), + [anon_sym_number] = ACTIONS(1449), + [anon_sym_boolean] = ACTIONS(1449), + [anon_sym_string] = ACTIONS(1449), + [anon_sym_symbol] = ACTIONS(1449), + [sym_readonly] = ACTIONS(1449), }, - [218] = { - [sym_import] = STATE(1101), - [sym_parenthesized_expression] = STATE(739), - [sym__expression] = STATE(1412), - [sym_yield_expression] = STATE(1105), - [sym_object] = STATE(1297), - [sym_array] = STATE(1296), - [sym_class] = STATE(1101), - [sym_function] = STATE(1101), - [sym_generator_function] = STATE(1101), - [sym_arrow_function] = STATE(1101), - [sym__call_signature] = STATE(3116), - [sym_call_expression] = STATE(1101), - [sym_new_expression] = STATE(1105), - [sym_await_expression] = STATE(1105), - [sym_member_expression] = STATE(739), - [sym_subscript_expression] = STATE(739), - [sym_assignment_expression] = STATE(1105), - [sym__augmented_assignment_lhs] = STATE(1920), - [sym_augmented_assignment_expression] = STATE(1105), - [sym_ternary_expression] = STATE(1105), - [sym_binary_expression] = STATE(1105), - [sym_unary_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_sequence_expression] = STATE(3144), - [sym_string] = STATE(1101), - [sym_template_string] = STATE(1101), - [sym_regex] = STATE(1101), - [sym_meta_property] = STATE(1101), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(755), - [sym_type_assertion] = STATE(1105), - [sym_as_expression] = STATE(1105), - [sym_internal_module] = STATE(1105), - [sym_type_arguments] = STATE(361), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2497), + [226] = { + [sym_import] = STATE(1151), + [sym_statement_block] = STATE(1123), + [sym_parenthesized_expression] = STATE(956), + [sym__expression] = STATE(1387), + [sym_yield_expression] = STATE(1144), + [sym_object] = STATE(1653), + [sym_array] = STATE(1660), + [sym_class] = STATE(1151), + [sym_function] = STATE(1151), + [sym_generator_function] = STATE(1151), + [sym_arrow_function] = STATE(1151), + [sym__call_signature] = STATE(3024), + [sym_call_expression] = STATE(1151), + [sym_new_expression] = STATE(1144), + [sym_await_expression] = STATE(1144), + [sym_member_expression] = STATE(956), + [sym_subscript_expression] = STATE(956), + [sym_assignment_expression] = STATE(1144), + [sym__augmented_assignment_lhs] = STATE(1925), + [sym_augmented_assignment_expression] = STATE(1144), + [sym_ternary_expression] = STATE(1144), + [sym_binary_expression] = STATE(1144), + [sym_unary_expression] = STATE(1144), + [sym_update_expression] = STATE(1144), + [sym_string] = STATE(1151), + [sym_template_string] = STATE(1151), + [sym_regex] = STATE(1151), + [sym_meta_property] = STATE(1151), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(950), + [sym_type_assertion] = STATE(1144), + [sym_as_expression] = STATE(1144), + [sym_internal_module] = STATE(1144), + [sym_type_arguments] = STATE(395), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2580), + [sym_identifier] = ACTIONS(897), + [anon_sym_export] = ACTIONS(577), + [anon_sym_namespace] = ACTIONS(579), + [anon_sym_LBRACE] = ACTIONS(1350), + [anon_sym_type] = ACTIONS(577), + [anon_sym_typeof] = ACTIONS(601), + [anon_sym_import] = ACTIONS(435), + [anon_sym_BANG] = ACTIONS(585), + [anon_sym_LPAREN] = ACTIONS(515), + [anon_sym_await] = ACTIONS(587), + [anon_sym_yield] = ACTIONS(589), + [anon_sym_LBRACK] = ACTIONS(517), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(449), + [anon_sym_class] = ACTIONS(451), + [anon_sym_async] = ACTIONS(593), + [anon_sym_function] = ACTIONS(455), + [anon_sym_new] = ACTIONS(903), + [anon_sym_PLUS] = ACTIONS(905), + [anon_sym_DASH] = ACTIONS(905), + [anon_sym_TILDE] = ACTIONS(585), + [anon_sym_void] = ACTIONS(601), + [anon_sym_delete] = ACTIONS(601), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_DQUOTE] = ACTIONS(475), + [anon_sym_SQUOTE] = ACTIONS(477), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(479), + [sym_number] = ACTIONS(527), + [sym_this] = ACTIONS(485), + [sym_super] = ACTIONS(485), + [sym_true] = ACTIONS(485), + [sym_false] = ACTIONS(485), + [sym_null] = ACTIONS(485), + [sym_undefined] = ACTIONS(485), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(577), + [anon_sym_get] = ACTIONS(577), + [anon_sym_set] = ACTIONS(577), + [anon_sym_declare] = ACTIONS(577), + [anon_sym_public] = ACTIONS(577), + [anon_sym_private] = ACTIONS(577), + [anon_sym_protected] = ACTIONS(577), + [anon_sym_module] = ACTIONS(577), + [anon_sym_any] = ACTIONS(577), + [anon_sym_number] = ACTIONS(577), + [anon_sym_boolean] = ACTIONS(577), + [anon_sym_string] = ACTIONS(577), + [anon_sym_symbol] = ACTIONS(577), + [sym_readonly] = ACTIONS(577), + }, + [227] = { + [sym_import] = STATE(1151), + [sym_parenthesized_expression] = STATE(759), + [sym__expression] = STATE(1436), + [sym_yield_expression] = STATE(1144), + [sym_object] = STATE(1257), + [sym_array] = STATE(1254), + [sym_class] = STATE(1151), + [sym_function] = STATE(1151), + [sym_generator_function] = STATE(1151), + [sym_arrow_function] = STATE(1151), + [sym__call_signature] = STATE(3082), + [sym_call_expression] = STATE(1151), + [sym_new_expression] = STATE(1144), + [sym_await_expression] = STATE(1144), + [sym_member_expression] = STATE(759), + [sym_subscript_expression] = STATE(759), + [sym_assignment_expression] = STATE(1144), + [sym__augmented_assignment_lhs] = STATE(1924), + [sym_augmented_assignment_expression] = STATE(1144), + [sym_ternary_expression] = STATE(1144), + [sym_binary_expression] = STATE(1144), + [sym_unary_expression] = STATE(1144), + [sym_update_expression] = STATE(1144), + [sym_sequence_expression] = STATE(3027), + [sym_string] = STATE(1151), + [sym_template_string] = STATE(1151), + [sym_regex] = STATE(1151), + [sym_meta_property] = STATE(1151), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(754), + [sym_type_assertion] = STATE(1144), + [sym_as_expression] = STATE(1144), + [sym_internal_module] = STATE(1144), + [sym_type_arguments] = STATE(326), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2580), [sym_identifier] = ACTIONS(499), [anon_sym_export] = ACTIONS(501), [anon_sym_namespace] = ACTIONS(507), @@ -32850,429 +33714,519 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(501), [sym_readonly] = ACTIONS(501), }, - [219] = { - [sym_import] = STATE(1008), - [sym_parenthesized_expression] = STATE(654), - [sym__expression] = STATE(1683), - [sym_yield_expression] = STATE(1105), - [sym_object] = STATE(986), - [sym_array] = STATE(985), - [sym_class] = STATE(1008), - [sym_function] = STATE(1008), - [sym_generator_function] = STATE(1008), - [sym_arrow_function] = STATE(1008), - [sym__call_signature] = STATE(3116), - [sym_call_expression] = STATE(1008), - [sym_new_expression] = STATE(1105), - [sym_await_expression] = STATE(1105), - [sym_member_expression] = STATE(654), - [sym_subscript_expression] = STATE(654), - [sym_assignment_expression] = STATE(1105), - [sym__augmented_assignment_lhs] = STATE(1921), - [sym_augmented_assignment_expression] = STATE(1105), - [sym_ternary_expression] = STATE(1105), - [sym_binary_expression] = STATE(1105), - [sym_unary_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_string] = STATE(1008), - [sym_template_string] = STATE(1008), - [sym_regex] = STATE(1008), - [sym_meta_property] = STATE(1008), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(949), - [sym_type_assertion] = STATE(1105), - [sym_as_expression] = STATE(1105), - [sym_internal_module] = STATE(1105), - [sym_type_arguments] = STATE(324), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2497), - [sym_identifier] = ACTIONS(1334), - [anon_sym_export] = ACTIONS(1336), - [anon_sym_namespace] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(509), - [anon_sym_type] = ACTIONS(1336), - [anon_sym_typeof] = ACTIONS(659), + [228] = { + [sym_import] = STATE(1151), + [sym_statement_block] = STATE(1167), + [sym_parenthesized_expression] = STATE(956), + [sym__expression] = STATE(1400), + [sym_yield_expression] = STATE(1144), + [sym_object] = STATE(1653), + [sym_array] = STATE(1660), + [sym_class] = STATE(1151), + [sym_function] = STATE(1151), + [sym_generator_function] = STATE(1151), + [sym_arrow_function] = STATE(1151), + [sym__call_signature] = STATE(3024), + [sym_call_expression] = STATE(1151), + [sym_new_expression] = STATE(1144), + [sym_await_expression] = STATE(1144), + [sym_member_expression] = STATE(956), + [sym_subscript_expression] = STATE(956), + [sym_assignment_expression] = STATE(1144), + [sym__augmented_assignment_lhs] = STATE(1925), + [sym_augmented_assignment_expression] = STATE(1144), + [sym_ternary_expression] = STATE(1144), + [sym_binary_expression] = STATE(1144), + [sym_unary_expression] = STATE(1144), + [sym_update_expression] = STATE(1144), + [sym_string] = STATE(1151), + [sym_template_string] = STATE(1151), + [sym_regex] = STATE(1151), + [sym_meta_property] = STATE(1151), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(950), + [sym_type_assertion] = STATE(1144), + [sym_as_expression] = STATE(1144), + [sym_internal_module] = STATE(1144), + [sym_type_arguments] = STATE(395), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2580), + [sym_identifier] = ACTIONS(897), + [anon_sym_export] = ACTIONS(577), + [anon_sym_namespace] = ACTIONS(579), + [anon_sym_LBRACE] = ACTIONS(1350), + [anon_sym_type] = ACTIONS(577), + [anon_sym_typeof] = ACTIONS(601), [anon_sym_import] = ACTIONS(435), - [anon_sym_BANG] = ACTIONS(643), + [anon_sym_BANG] = ACTIONS(585), [anon_sym_LPAREN] = ACTIONS(515), - [anon_sym_await] = ACTIONS(645), - [anon_sym_yield] = ACTIONS(647), + [anon_sym_await] = ACTIONS(587), + [anon_sym_yield] = ACTIONS(589), [anon_sym_LBRACK] = ACTIONS(517), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(449), - [anon_sym_DOT] = ACTIONS(1340), [anon_sym_class] = ACTIONS(451), - [anon_sym_async] = ACTIONS(1342), + [anon_sym_async] = ACTIONS(593), [anon_sym_function] = ACTIONS(455), - [anon_sym_new] = ACTIONS(865), - [anon_sym_PLUS] = ACTIONS(867), - [anon_sym_DASH] = ACTIONS(867), - [anon_sym_TILDE] = ACTIONS(643), - [anon_sym_void] = ACTIONS(659), - [anon_sym_delete] = ACTIONS(659), - [anon_sym_PLUS_PLUS] = ACTIONS(661), - [anon_sym_DASH_DASH] = ACTIONS(661), + [anon_sym_new] = ACTIONS(903), + [anon_sym_PLUS] = ACTIONS(905), + [anon_sym_DASH] = ACTIONS(905), + [anon_sym_TILDE] = ACTIONS(585), + [anon_sym_void] = ACTIONS(601), + [anon_sym_delete] = ACTIONS(601), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(603), [anon_sym_DQUOTE] = ACTIONS(475), [anon_sym_SQUOTE] = ACTIONS(477), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(479), - [sym_number] = ACTIONS(1344), - [sym_this] = ACTIONS(1346), - [sym_super] = ACTIONS(1346), - [sym_true] = ACTIONS(1346), - [sym_false] = ACTIONS(1346), - [sym_null] = ACTIONS(1346), - [sym_undefined] = ACTIONS(1346), + [sym_number] = ACTIONS(527), + [sym_this] = ACTIONS(485), + [sym_super] = ACTIONS(485), + [sym_true] = ACTIONS(485), + [sym_false] = ACTIONS(485), + [sym_null] = ACTIONS(485), + [sym_undefined] = ACTIONS(485), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(1336), - [anon_sym_get] = ACTIONS(1336), - [anon_sym_set] = ACTIONS(1336), - [anon_sym_declare] = ACTIONS(1336), - [anon_sym_public] = ACTIONS(1336), - [anon_sym_private] = ACTIONS(1336), - [anon_sym_protected] = ACTIONS(1336), - [anon_sym_module] = ACTIONS(1336), - [anon_sym_any] = ACTIONS(1336), - [anon_sym_number] = ACTIONS(1336), - [anon_sym_boolean] = ACTIONS(1336), - [anon_sym_string] = ACTIONS(1336), - [anon_sym_symbol] = ACTIONS(1336), - [sym_readonly] = ACTIONS(1336), + [anon_sym_static] = ACTIONS(577), + [anon_sym_get] = ACTIONS(577), + [anon_sym_set] = ACTIONS(577), + [anon_sym_declare] = ACTIONS(577), + [anon_sym_public] = ACTIONS(577), + [anon_sym_private] = ACTIONS(577), + [anon_sym_protected] = ACTIONS(577), + [anon_sym_module] = ACTIONS(577), + [anon_sym_any] = ACTIONS(577), + [anon_sym_number] = ACTIONS(577), + [anon_sym_boolean] = ACTIONS(577), + [anon_sym_string] = ACTIONS(577), + [anon_sym_symbol] = ACTIONS(577), + [sym_readonly] = ACTIONS(577), }, - [220] = { - [sym_import] = STATE(1682), - [sym_statement_block] = STATE(1668), - [sym_parenthesized_expression] = STATE(828), - [sym__expression] = STATE(1248), - [sym_yield_expression] = STATE(1680), - [sym_object] = STATE(1586), - [sym_array] = STATE(1585), - [sym_class] = STATE(1682), - [sym_function] = STATE(1682), - [sym_generator_function] = STATE(1682), - [sym_arrow_function] = STATE(1682), - [sym__call_signature] = STATE(3105), - [sym_call_expression] = STATE(1682), - [sym_new_expression] = STATE(1680), - [sym_await_expression] = STATE(1680), - [sym_member_expression] = STATE(828), - [sym_subscript_expression] = STATE(828), - [sym_assignment_expression] = STATE(1680), - [sym__augmented_assignment_lhs] = STATE(1918), - [sym_augmented_assignment_expression] = STATE(1680), - [sym_ternary_expression] = STATE(1680), - [sym_binary_expression] = STATE(1680), - [sym_unary_expression] = STATE(1680), - [sym_update_expression] = STATE(1680), - [sym_string] = STATE(1682), - [sym_template_string] = STATE(1682), - [sym_regex] = STATE(1682), - [sym_meta_property] = STATE(1682), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(827), - [sym_type_assertion] = STATE(1680), - [sym_as_expression] = STATE(1680), - [sym_internal_module] = STATE(1680), - [sym_type_arguments] = STATE(256), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2529), - [sym_identifier] = ACTIONS(879), - [anon_sym_export] = ACTIONS(531), - [anon_sym_namespace] = ACTIONS(533), - [anon_sym_LBRACE] = ACTIONS(1381), - [anon_sym_type] = ACTIONS(531), - [anon_sym_typeof] = ACTIONS(565), - [anon_sym_import] = ACTIONS(539), - [anon_sym_BANG] = ACTIONS(541), - [anon_sym_LPAREN] = ACTIONS(887), - [anon_sym_await] = ACTIONS(545), - [anon_sym_yield] = ACTIONS(547), - [anon_sym_LBRACK] = ACTIONS(889), + [229] = { + [sym_import] = STATE(1151), + [sym_statement_block] = STATE(1176), + [sym_parenthesized_expression] = STATE(956), + [sym__expression] = STATE(1420), + [sym_yield_expression] = STATE(1144), + [sym_object] = STATE(1653), + [sym_array] = STATE(1660), + [sym_class] = STATE(1151), + [sym_function] = STATE(1151), + [sym_generator_function] = STATE(1151), + [sym_arrow_function] = STATE(1151), + [sym__call_signature] = STATE(3024), + [sym_call_expression] = STATE(1151), + [sym_new_expression] = STATE(1144), + [sym_await_expression] = STATE(1144), + [sym_member_expression] = STATE(956), + [sym_subscript_expression] = STATE(956), + [sym_assignment_expression] = STATE(1144), + [sym__augmented_assignment_lhs] = STATE(1925), + [sym_augmented_assignment_expression] = STATE(1144), + [sym_ternary_expression] = STATE(1144), + [sym_binary_expression] = STATE(1144), + [sym_unary_expression] = STATE(1144), + [sym_update_expression] = STATE(1144), + [sym_string] = STATE(1151), + [sym_template_string] = STATE(1151), + [sym_regex] = STATE(1151), + [sym_meta_property] = STATE(1151), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(950), + [sym_type_assertion] = STATE(1144), + [sym_as_expression] = STATE(1144), + [sym_internal_module] = STATE(1144), + [sym_type_arguments] = STATE(395), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2580), + [sym_identifier] = ACTIONS(897), + [anon_sym_export] = ACTIONS(577), + [anon_sym_namespace] = ACTIONS(579), + [anon_sym_LBRACE] = ACTIONS(1350), + [anon_sym_type] = ACTIONS(577), + [anon_sym_typeof] = ACTIONS(601), + [anon_sym_import] = ACTIONS(435), + [anon_sym_BANG] = ACTIONS(585), + [anon_sym_LPAREN] = ACTIONS(515), + [anon_sym_await] = ACTIONS(587), + [anon_sym_yield] = ACTIONS(589), + [anon_sym_LBRACK] = ACTIONS(517), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(551), - [anon_sym_class] = ACTIONS(553), - [anon_sym_async] = ACTIONS(555), - [anon_sym_function] = ACTIONS(557), - [anon_sym_new] = ACTIONS(891), - [anon_sym_PLUS] = ACTIONS(893), - [anon_sym_DASH] = ACTIONS(893), - [anon_sym_TILDE] = ACTIONS(541), - [anon_sym_void] = ACTIONS(565), - [anon_sym_delete] = ACTIONS(565), - [anon_sym_PLUS_PLUS] = ACTIONS(567), - [anon_sym_DASH_DASH] = ACTIONS(567), - [anon_sym_DQUOTE] = ACTIONS(569), - [anon_sym_SQUOTE] = ACTIONS(571), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(573), - [sym_number] = ACTIONS(895), - [sym_this] = ACTIONS(579), - [sym_super] = ACTIONS(579), - [sym_true] = ACTIONS(579), - [sym_false] = ACTIONS(579), - [sym_null] = ACTIONS(579), - [sym_undefined] = ACTIONS(579), + [anon_sym_SLASH] = ACTIONS(449), + [anon_sym_class] = ACTIONS(451), + [anon_sym_async] = ACTIONS(593), + [anon_sym_function] = ACTIONS(455), + [anon_sym_new] = ACTIONS(903), + [anon_sym_PLUS] = ACTIONS(905), + [anon_sym_DASH] = ACTIONS(905), + [anon_sym_TILDE] = ACTIONS(585), + [anon_sym_void] = ACTIONS(601), + [anon_sym_delete] = ACTIONS(601), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_DQUOTE] = ACTIONS(475), + [anon_sym_SQUOTE] = ACTIONS(477), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(479), + [sym_number] = ACTIONS(527), + [sym_this] = ACTIONS(485), + [sym_super] = ACTIONS(485), + [sym_true] = ACTIONS(485), + [sym_false] = ACTIONS(485), + [sym_null] = ACTIONS(485), + [sym_undefined] = ACTIONS(485), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(531), - [anon_sym_get] = ACTIONS(531), - [anon_sym_set] = ACTIONS(531), - [anon_sym_declare] = ACTIONS(531), - [anon_sym_public] = ACTIONS(531), - [anon_sym_private] = ACTIONS(531), - [anon_sym_protected] = ACTIONS(531), - [anon_sym_module] = ACTIONS(531), - [anon_sym_any] = ACTIONS(531), - [anon_sym_number] = ACTIONS(531), - [anon_sym_boolean] = ACTIONS(531), - [anon_sym_string] = ACTIONS(531), - [anon_sym_symbol] = ACTIONS(531), - [sym_readonly] = ACTIONS(531), + [anon_sym_static] = ACTIONS(577), + [anon_sym_get] = ACTIONS(577), + [anon_sym_set] = ACTIONS(577), + [anon_sym_declare] = ACTIONS(577), + [anon_sym_public] = ACTIONS(577), + [anon_sym_private] = ACTIONS(577), + [anon_sym_protected] = ACTIONS(577), + [anon_sym_module] = ACTIONS(577), + [anon_sym_any] = ACTIONS(577), + [anon_sym_number] = ACTIONS(577), + [anon_sym_boolean] = ACTIONS(577), + [anon_sym_string] = ACTIONS(577), + [anon_sym_symbol] = ACTIONS(577), + [sym_readonly] = ACTIONS(577), }, - [221] = { - [sym_import] = STATE(1498), - [sym_parenthesized_expression] = STATE(764), - [sym__expression] = STATE(1307), - [sym_yield_expression] = STATE(1518), - [sym_object] = STATE(1435), - [sym_array] = STATE(1433), - [sym_class] = STATE(1498), - [sym_function] = STATE(1498), - [sym_generator_function] = STATE(1498), - [sym_arrow_function] = STATE(1498), - [sym__call_signature] = STATE(3145), - [sym_call_expression] = STATE(1498), - [sym_new_expression] = STATE(1518), - [sym_await_expression] = STATE(1518), - [sym_member_expression] = STATE(764), - [sym_subscript_expression] = STATE(764), - [sym_assignment_expression] = STATE(1518), + [230] = { + [sym_import] = STATE(1151), + [sym_statement_block] = STATE(1200), + [sym_parenthesized_expression] = STATE(956), + [sym__expression] = STATE(1422), + [sym_yield_expression] = STATE(1144), + [sym_object] = STATE(1653), + [sym_array] = STATE(1660), + [sym_class] = STATE(1151), + [sym_function] = STATE(1151), + [sym_generator_function] = STATE(1151), + [sym_arrow_function] = STATE(1151), + [sym__call_signature] = STATE(3024), + [sym_call_expression] = STATE(1151), + [sym_new_expression] = STATE(1144), + [sym_await_expression] = STATE(1144), + [sym_member_expression] = STATE(956), + [sym_subscript_expression] = STATE(956), + [sym_assignment_expression] = STATE(1144), [sym__augmented_assignment_lhs] = STATE(1925), - [sym_augmented_assignment_expression] = STATE(1518), - [sym_ternary_expression] = STATE(1518), - [sym_binary_expression] = STATE(1518), - [sym_unary_expression] = STATE(1518), - [sym_update_expression] = STATE(1518), - [sym_sequence_expression] = STATE(2974), - [sym_string] = STATE(1498), - [sym_template_string] = STATE(1498), - [sym_regex] = STATE(1498), - [sym_meta_property] = STATE(1498), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(772), - [sym_type_assertion] = STATE(1518), - [sym_as_expression] = STATE(1518), - [sym_internal_module] = STATE(1518), - [sym_type_arguments] = STATE(349), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2554), - [sym_identifier] = ACTIONS(587), - [anon_sym_export] = ACTIONS(589), - [anon_sym_namespace] = ACTIONS(593), - [anon_sym_LBRACE] = ACTIONS(595), - [anon_sym_type] = ACTIONS(589), - [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(597), - [anon_sym_BANG] = ACTIONS(29), + [sym_augmented_assignment_expression] = STATE(1144), + [sym_ternary_expression] = STATE(1144), + [sym_binary_expression] = STATE(1144), + [sym_unary_expression] = STATE(1144), + [sym_update_expression] = STATE(1144), + [sym_string] = STATE(1151), + [sym_template_string] = STATE(1151), + [sym_regex] = STATE(1151), + [sym_meta_property] = STATE(1151), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(950), + [sym_type_assertion] = STATE(1144), + [sym_as_expression] = STATE(1144), + [sym_internal_module] = STATE(1144), + [sym_type_arguments] = STATE(395), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2580), + [sym_identifier] = ACTIONS(897), + [anon_sym_export] = ACTIONS(577), + [anon_sym_namespace] = ACTIONS(579), + [anon_sym_LBRACE] = ACTIONS(1350), + [anon_sym_type] = ACTIONS(577), + [anon_sym_typeof] = ACTIONS(601), + [anon_sym_import] = ACTIONS(435), + [anon_sym_BANG] = ACTIONS(585), + [anon_sym_LPAREN] = ACTIONS(515), + [anon_sym_await] = ACTIONS(587), + [anon_sym_yield] = ACTIONS(589), + [anon_sym_LBRACK] = ACTIONS(517), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(449), + [anon_sym_class] = ACTIONS(451), + [anon_sym_async] = ACTIONS(593), + [anon_sym_function] = ACTIONS(455), + [anon_sym_new] = ACTIONS(903), + [anon_sym_PLUS] = ACTIONS(905), + [anon_sym_DASH] = ACTIONS(905), + [anon_sym_TILDE] = ACTIONS(585), + [anon_sym_void] = ACTIONS(601), + [anon_sym_delete] = ACTIONS(601), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_DQUOTE] = ACTIONS(475), + [anon_sym_SQUOTE] = ACTIONS(477), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(479), + [sym_number] = ACTIONS(527), + [sym_this] = ACTIONS(485), + [sym_super] = ACTIONS(485), + [sym_true] = ACTIONS(485), + [sym_false] = ACTIONS(485), + [sym_null] = ACTIONS(485), + [sym_undefined] = ACTIONS(485), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(577), + [anon_sym_get] = ACTIONS(577), + [anon_sym_set] = ACTIONS(577), + [anon_sym_declare] = ACTIONS(577), + [anon_sym_public] = ACTIONS(577), + [anon_sym_private] = ACTIONS(577), + [anon_sym_protected] = ACTIONS(577), + [anon_sym_module] = ACTIONS(577), + [anon_sym_any] = ACTIONS(577), + [anon_sym_number] = ACTIONS(577), + [anon_sym_boolean] = ACTIONS(577), + [anon_sym_string] = ACTIONS(577), + [anon_sym_symbol] = ACTIONS(577), + [sym_readonly] = ACTIONS(577), + }, + [231] = { + [sym_import] = STATE(1265), + [sym_parenthesized_expression] = STATE(704), + [sym__expression] = STATE(1666), + [sym_yield_expression] = STATE(1144), + [sym_object] = STATE(1134), + [sym_array] = STATE(1131), + [sym_class] = STATE(1265), + [sym_function] = STATE(1265), + [sym_generator_function] = STATE(1265), + [sym_arrow_function] = STATE(1265), + [sym__call_signature] = STATE(3078), + [sym_call_expression] = STATE(1265), + [sym_new_expression] = STATE(1144), + [sym_await_expression] = STATE(1144), + [sym_member_expression] = STATE(704), + [sym_subscript_expression] = STATE(704), + [sym_assignment_expression] = STATE(1144), + [sym__augmented_assignment_lhs] = STATE(1925), + [sym_augmented_assignment_expression] = STATE(1144), + [sym_ternary_expression] = STATE(1144), + [sym_binary_expression] = STATE(1144), + [sym_unary_expression] = STATE(1144), + [sym_update_expression] = STATE(1144), + [sym_string] = STATE(1265), + [sym_template_string] = STATE(1265), + [sym_regex] = STATE(1265), + [sym_meta_property] = STATE(1265), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(950), + [sym_type_assertion] = STATE(1144), + [sym_as_expression] = STATE(1144), + [sym_internal_module] = STATE(1144), + [sym_type_arguments] = STATE(395), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2575), + [sym_identifier] = ACTIONS(1439), + [anon_sym_export] = ACTIONS(1441), + [anon_sym_namespace] = ACTIONS(1443), + [anon_sym_LBRACE] = ACTIONS(571), + [anon_sym_type] = ACTIONS(1441), + [anon_sym_typeof] = ACTIONS(601), + [anon_sym_import] = ACTIONS(539), + [anon_sym_BANG] = ACTIONS(585), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(39), - [anon_sym_yield] = ACTIONS(61), + [anon_sym_await] = ACTIONS(587), + [anon_sym_yield] = ACTIONS(589), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(601), - [anon_sym_async] = ACTIONS(603), - [anon_sym_function] = ACTIONS(605), - [anon_sym_new] = ACTIONS(75), - [anon_sym_PLUS] = ACTIONS(77), - [anon_sym_DASH] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(29), - [anon_sym_void] = ACTIONS(19), - [anon_sym_delete] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_DOT] = ACTIONS(1358), + [anon_sym_class] = ACTIONS(545), + [anon_sym_async] = ACTIONS(1445), + [anon_sym_function] = ACTIONS(549), + [anon_sym_new] = ACTIONS(1362), + [anon_sym_PLUS] = ACTIONS(905), + [anon_sym_DASH] = ACTIONS(905), + [anon_sym_TILDE] = ACTIONS(585), + [anon_sym_void] = ACTIONS(601), + [anon_sym_delete] = ACTIONS(601), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(603), [anon_sym_DQUOTE] = ACTIONS(81), [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(85), - [sym_number] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), + [sym_number] = ACTIONS(1364), + [sym_this] = ACTIONS(1366), + [sym_super] = ACTIONS(1366), + [sym_true] = ACTIONS(1366), + [sym_false] = ACTIONS(1366), + [sym_null] = ACTIONS(1366), + [sym_undefined] = ACTIONS(1366), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(589), - [anon_sym_get] = ACTIONS(589), - [anon_sym_set] = ACTIONS(589), - [anon_sym_declare] = ACTIONS(589), - [anon_sym_public] = ACTIONS(589), - [anon_sym_private] = ACTIONS(589), - [anon_sym_protected] = ACTIONS(589), - [anon_sym_module] = ACTIONS(589), - [anon_sym_any] = ACTIONS(589), - [anon_sym_number] = ACTIONS(589), - [anon_sym_boolean] = ACTIONS(589), - [anon_sym_string] = ACTIONS(589), - [anon_sym_symbol] = ACTIONS(589), - [sym_readonly] = ACTIONS(589), + [anon_sym_static] = ACTIONS(1441), + [anon_sym_get] = ACTIONS(1441), + [anon_sym_set] = ACTIONS(1441), + [anon_sym_declare] = ACTIONS(1441), + [anon_sym_public] = ACTIONS(1441), + [anon_sym_private] = ACTIONS(1441), + [anon_sym_protected] = ACTIONS(1441), + [anon_sym_module] = ACTIONS(1441), + [anon_sym_any] = ACTIONS(1441), + [anon_sym_number] = ACTIONS(1441), + [anon_sym_boolean] = ACTIONS(1441), + [anon_sym_string] = ACTIONS(1441), + [anon_sym_symbol] = ACTIONS(1441), + [sym_readonly] = ACTIONS(1441), }, - [222] = { - [sym_import] = STATE(1682), - [sym_statement_block] = STATE(1681), - [sym_parenthesized_expression] = STATE(828), - [sym__expression] = STATE(1255), - [sym_yield_expression] = STATE(1680), - [sym_object] = STATE(1586), - [sym_array] = STATE(1585), - [sym_class] = STATE(1682), - [sym_function] = STATE(1682), - [sym_generator_function] = STATE(1682), - [sym_arrow_function] = STATE(1682), - [sym__call_signature] = STATE(3105), - [sym_call_expression] = STATE(1682), - [sym_new_expression] = STATE(1680), - [sym_await_expression] = STATE(1680), - [sym_member_expression] = STATE(828), - [sym_subscript_expression] = STATE(828), - [sym_assignment_expression] = STATE(1680), - [sym__augmented_assignment_lhs] = STATE(1918), - [sym_augmented_assignment_expression] = STATE(1680), - [sym_ternary_expression] = STATE(1680), - [sym_binary_expression] = STATE(1680), - [sym_unary_expression] = STATE(1680), - [sym_update_expression] = STATE(1680), - [sym_string] = STATE(1682), - [sym_template_string] = STATE(1682), - [sym_regex] = STATE(1682), - [sym_meta_property] = STATE(1682), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(827), - [sym_type_assertion] = STATE(1680), - [sym_as_expression] = STATE(1680), - [sym_internal_module] = STATE(1680), - [sym_type_arguments] = STATE(256), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2529), - [sym_identifier] = ACTIONS(879), - [anon_sym_export] = ACTIONS(531), - [anon_sym_namespace] = ACTIONS(533), - [anon_sym_LBRACE] = ACTIONS(1381), - [anon_sym_type] = ACTIONS(531), - [anon_sym_typeof] = ACTIONS(565), - [anon_sym_import] = ACTIONS(539), - [anon_sym_BANG] = ACTIONS(541), - [anon_sym_LPAREN] = ACTIONS(887), - [anon_sym_await] = ACTIONS(545), - [anon_sym_yield] = ACTIONS(547), - [anon_sym_LBRACK] = ACTIONS(889), + [232] = { + [sym_import] = STATE(1010), + [sym_parenthesized_expression] = STATE(659), + [sym__expression] = STATE(1661), + [sym_yield_expression] = STATE(1144), + [sym_object] = STATE(991), + [sym_array] = STATE(988), + [sym_class] = STATE(1010), + [sym_function] = STATE(1010), + [sym_generator_function] = STATE(1010), + [sym_arrow_function] = STATE(1010), + [sym__call_signature] = STATE(3082), + [sym_call_expression] = STATE(1010), + [sym_new_expression] = STATE(1144), + [sym_await_expression] = STATE(1144), + [sym_member_expression] = STATE(659), + [sym_subscript_expression] = STATE(659), + [sym_assignment_expression] = STATE(1144), + [sym__augmented_assignment_lhs] = STATE(1925), + [sym_augmented_assignment_expression] = STATE(1144), + [sym_ternary_expression] = STATE(1144), + [sym_binary_expression] = STATE(1144), + [sym_unary_expression] = STATE(1144), + [sym_update_expression] = STATE(1144), + [sym_string] = STATE(1010), + [sym_template_string] = STATE(1010), + [sym_regex] = STATE(1010), + [sym_meta_property] = STATE(1010), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2383), + [sym_non_null_expression] = STATE(950), + [sym_type_assertion] = STATE(1144), + [sym_as_expression] = STATE(1144), + [sym_internal_module] = STATE(1144), + [sym_type_arguments] = STATE(395), + [sym_type_parameters] = STATE(2913), + [aux_sym_export_statement_repeat1] = STATE(2580), + [sym_identifier] = ACTIONS(1423), + [anon_sym_export] = ACTIONS(1425), + [anon_sym_namespace] = ACTIONS(1427), + [anon_sym_LBRACE] = ACTIONS(509), + [anon_sym_type] = ACTIONS(1425), + [anon_sym_typeof] = ACTIONS(601), + [anon_sym_import] = ACTIONS(435), + [anon_sym_BANG] = ACTIONS(585), + [anon_sym_LPAREN] = ACTIONS(515), + [anon_sym_await] = ACTIONS(587), + [anon_sym_yield] = ACTIONS(589), + [anon_sym_LBRACK] = ACTIONS(517), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(551), - [anon_sym_class] = ACTIONS(553), - [anon_sym_async] = ACTIONS(555), - [anon_sym_function] = ACTIONS(557), - [anon_sym_new] = ACTIONS(891), - [anon_sym_PLUS] = ACTIONS(893), - [anon_sym_DASH] = ACTIONS(893), - [anon_sym_TILDE] = ACTIONS(541), - [anon_sym_void] = ACTIONS(565), - [anon_sym_delete] = ACTIONS(565), - [anon_sym_PLUS_PLUS] = ACTIONS(567), - [anon_sym_DASH_DASH] = ACTIONS(567), - [anon_sym_DQUOTE] = ACTIONS(569), - [anon_sym_SQUOTE] = ACTIONS(571), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(573), - [sym_number] = ACTIONS(895), - [sym_this] = ACTIONS(579), - [sym_super] = ACTIONS(579), - [sym_true] = ACTIONS(579), - [sym_false] = ACTIONS(579), - [sym_null] = ACTIONS(579), - [sym_undefined] = ACTIONS(579), + [anon_sym_SLASH] = ACTIONS(449), + [anon_sym_DOT] = ACTIONS(1376), + [anon_sym_class] = ACTIONS(451), + [anon_sym_async] = ACTIONS(1429), + [anon_sym_function] = ACTIONS(455), + [anon_sym_new] = ACTIONS(903), + [anon_sym_PLUS] = ACTIONS(905), + [anon_sym_DASH] = ACTIONS(905), + [anon_sym_TILDE] = ACTIONS(585), + [anon_sym_void] = ACTIONS(601), + [anon_sym_delete] = ACTIONS(601), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_DQUOTE] = ACTIONS(475), + [anon_sym_SQUOTE] = ACTIONS(477), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(479), + [sym_number] = ACTIONS(1380), + [sym_this] = ACTIONS(1382), + [sym_super] = ACTIONS(1382), + [sym_true] = ACTIONS(1382), + [sym_false] = ACTIONS(1382), + [sym_null] = ACTIONS(1382), + [sym_undefined] = ACTIONS(1382), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(531), - [anon_sym_get] = ACTIONS(531), - [anon_sym_set] = ACTIONS(531), - [anon_sym_declare] = ACTIONS(531), - [anon_sym_public] = ACTIONS(531), - [anon_sym_private] = ACTIONS(531), - [anon_sym_protected] = ACTIONS(531), - [anon_sym_module] = ACTIONS(531), - [anon_sym_any] = ACTIONS(531), - [anon_sym_number] = ACTIONS(531), - [anon_sym_boolean] = ACTIONS(531), - [anon_sym_string] = ACTIONS(531), - [anon_sym_symbol] = ACTIONS(531), - [sym_readonly] = ACTIONS(531), + [anon_sym_static] = ACTIONS(1425), + [anon_sym_get] = ACTIONS(1425), + [anon_sym_set] = ACTIONS(1425), + [anon_sym_declare] = ACTIONS(1425), + [anon_sym_public] = ACTIONS(1425), + [anon_sym_private] = ACTIONS(1425), + [anon_sym_protected] = ACTIONS(1425), + [anon_sym_module] = ACTIONS(1425), + [anon_sym_any] = ACTIONS(1425), + [anon_sym_number] = ACTIONS(1425), + [anon_sym_boolean] = ACTIONS(1425), + [anon_sym_string] = ACTIONS(1425), + [anon_sym_symbol] = ACTIONS(1425), + [sym_readonly] = ACTIONS(1425), }, - [223] = { - [sym_import] = STATE(1101), - [sym_statement_block] = STATE(1160), - [sym_parenthesized_expression] = STATE(948), - [sym__expression] = STATE(1396), - [sym_yield_expression] = STATE(1105), - [sym_object] = STATE(1654), - [sym_array] = STATE(1640), - [sym_class] = STATE(1101), - [sym_function] = STATE(1101), - [sym_generator_function] = STATE(1101), - [sym_arrow_function] = STATE(1101), - [sym__call_signature] = STATE(3002), - [sym_call_expression] = STATE(1101), - [sym_new_expression] = STATE(1105), - [sym_await_expression] = STATE(1105), - [sym_member_expression] = STATE(948), - [sym_subscript_expression] = STATE(948), - [sym_assignment_expression] = STATE(1105), - [sym__augmented_assignment_lhs] = STATE(1921), - [sym_augmented_assignment_expression] = STATE(1105), - [sym_ternary_expression] = STATE(1105), - [sym_binary_expression] = STATE(1105), - [sym_unary_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_string] = STATE(1101), - [sym_template_string] = STATE(1101), - [sym_regex] = STATE(1101), - [sym_meta_property] = STATE(1101), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(949), - [sym_type_assertion] = STATE(1105), - [sym_as_expression] = STATE(1105), - [sym_internal_module] = STATE(1105), - [sym_type_arguments] = STATE(324), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2497), - [sym_identifier] = ACTIONS(859), - [anon_sym_export] = ACTIONS(635), - [anon_sym_namespace] = ACTIONS(637), - [anon_sym_LBRACE] = ACTIONS(1332), - [anon_sym_type] = ACTIONS(635), - [anon_sym_typeof] = ACTIONS(659), + [233] = { + [sym_import] = STATE(1151), + [sym_statement_block] = STATE(1197), + [sym_parenthesized_expression] = STATE(956), + [sym__expression] = STATE(1423), + [sym_yield_expression] = STATE(1144), + [sym_object] = STATE(1653), + [sym_array] = STATE(1660), + [sym_class] = STATE(1151), + [sym_function] = STATE(1151), + [sym_generator_function] = STATE(1151), + [sym_arrow_function] = STATE(1151), + [sym__call_signature] = STATE(3024), + [sym_call_expression] = STATE(1151), + [sym_new_expression] = STATE(1144), + [sym_await_expression] = STATE(1144), + [sym_member_expression] = STATE(956), + [sym_subscript_expression] = STATE(956), + [sym_assignment_expression] = STATE(1144), + [sym__augmented_assignment_lhs] = STATE(1925), + [sym_augmented_assignment_expression] = STATE(1144), + [sym_ternary_expression] = STATE(1144), + [sym_binary_expression] = STATE(1144), + [sym_unary_expression] = STATE(1144), + [sym_update_expression] = STATE(1144), + [sym_string] = STATE(1151), + [sym_template_string] = STATE(1151), + [sym_regex] = STATE(1151), + [sym_meta_property] = STATE(1151), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(950), + [sym_type_assertion] = STATE(1144), + [sym_as_expression] = STATE(1144), + [sym_internal_module] = STATE(1144), + [sym_type_arguments] = STATE(395), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2580), + [sym_identifier] = ACTIONS(897), + [anon_sym_export] = ACTIONS(577), + [anon_sym_namespace] = ACTIONS(579), + [anon_sym_LBRACE] = ACTIONS(1350), + [anon_sym_type] = ACTIONS(577), + [anon_sym_typeof] = ACTIONS(601), [anon_sym_import] = ACTIONS(435), - [anon_sym_BANG] = ACTIONS(643), + [anon_sym_BANG] = ACTIONS(585), [anon_sym_LPAREN] = ACTIONS(515), - [anon_sym_await] = ACTIONS(645), - [anon_sym_yield] = ACTIONS(647), + [anon_sym_await] = ACTIONS(587), + [anon_sym_yield] = ACTIONS(589), [anon_sym_LBRACK] = ACTIONS(517), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(449), [anon_sym_class] = ACTIONS(451), - [anon_sym_async] = ACTIONS(651), + [anon_sym_async] = ACTIONS(593), [anon_sym_function] = ACTIONS(455), - [anon_sym_new] = ACTIONS(865), - [anon_sym_PLUS] = ACTIONS(867), - [anon_sym_DASH] = ACTIONS(867), - [anon_sym_TILDE] = ACTIONS(643), - [anon_sym_void] = ACTIONS(659), - [anon_sym_delete] = ACTIONS(659), - [anon_sym_PLUS_PLUS] = ACTIONS(661), - [anon_sym_DASH_DASH] = ACTIONS(661), + [anon_sym_new] = ACTIONS(903), + [anon_sym_PLUS] = ACTIONS(905), + [anon_sym_DASH] = ACTIONS(905), + [anon_sym_TILDE] = ACTIONS(585), + [anon_sym_void] = ACTIONS(601), + [anon_sym_delete] = ACTIONS(601), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(603), [anon_sym_DQUOTE] = ACTIONS(475), [anon_sym_SQUOTE] = ACTIONS(477), [sym_comment] = ACTIONS(3), @@ -33285,329 +34239,419 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(485), [sym_undefined] = ACTIONS(485), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(635), - [anon_sym_get] = ACTIONS(635), - [anon_sym_set] = ACTIONS(635), - [anon_sym_declare] = ACTIONS(635), - [anon_sym_public] = ACTIONS(635), - [anon_sym_private] = ACTIONS(635), - [anon_sym_protected] = ACTIONS(635), - [anon_sym_module] = ACTIONS(635), - [anon_sym_any] = ACTIONS(635), - [anon_sym_number] = ACTIONS(635), - [anon_sym_boolean] = ACTIONS(635), - [anon_sym_string] = ACTIONS(635), - [anon_sym_symbol] = ACTIONS(635), - [sym_readonly] = ACTIONS(635), + [anon_sym_static] = ACTIONS(577), + [anon_sym_get] = ACTIONS(577), + [anon_sym_set] = ACTIONS(577), + [anon_sym_declare] = ACTIONS(577), + [anon_sym_public] = ACTIONS(577), + [anon_sym_private] = ACTIONS(577), + [anon_sym_protected] = ACTIONS(577), + [anon_sym_module] = ACTIONS(577), + [anon_sym_any] = ACTIONS(577), + [anon_sym_number] = ACTIONS(577), + [anon_sym_boolean] = ACTIONS(577), + [anon_sym_string] = ACTIONS(577), + [anon_sym_symbol] = ACTIONS(577), + [sym_readonly] = ACTIONS(577), }, - [224] = { - [sym_import] = STATE(1498), - [sym_statement_block] = STATE(1553), - [sym_parenthesized_expression] = STATE(764), - [sym__expression] = STATE(1168), - [sym_yield_expression] = STATE(1518), - [sym_object] = STATE(1435), - [sym_array] = STATE(1433), - [sym_class] = STATE(1498), - [sym_function] = STATE(1498), - [sym_generator_function] = STATE(1498), - [sym_arrow_function] = STATE(1498), - [sym__call_signature] = STATE(3145), - [sym_call_expression] = STATE(1498), - [sym_new_expression] = STATE(1518), - [sym_await_expression] = STATE(1518), - [sym_member_expression] = STATE(764), - [sym_subscript_expression] = STATE(764), - [sym_assignment_expression] = STATE(1518), + [234] = { + [sym_import] = STATE(1010), + [sym_parenthesized_expression] = STATE(659), + [sym__expression] = STATE(1661), + [sym_yield_expression] = STATE(1144), + [sym_object] = STATE(991), + [sym_array] = STATE(988), + [sym_class] = STATE(1010), + [sym_function] = STATE(1010), + [sym_generator_function] = STATE(1010), + [sym_arrow_function] = STATE(1010), + [sym__call_signature] = STATE(3190), + [sym_call_expression] = STATE(1010), + [sym_new_expression] = STATE(1144), + [sym_await_expression] = STATE(1144), + [sym_member_expression] = STATE(659), + [sym_subscript_expression] = STATE(659), + [sym_assignment_expression] = STATE(1144), [sym__augmented_assignment_lhs] = STATE(1925), - [sym_augmented_assignment_expression] = STATE(1518), - [sym_ternary_expression] = STATE(1518), - [sym_binary_expression] = STATE(1518), - [sym_unary_expression] = STATE(1518), - [sym_update_expression] = STATE(1518), - [sym_string] = STATE(1498), - [sym_template_string] = STATE(1498), - [sym_regex] = STATE(1498), - [sym_meta_property] = STATE(1498), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(772), - [sym_type_assertion] = STATE(1518), - [sym_as_expression] = STATE(1518), - [sym_internal_module] = STATE(1518), - [sym_type_arguments] = STATE(349), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2554), - [sym_identifier] = ACTIONS(587), - [anon_sym_export] = ACTIONS(589), - [anon_sym_namespace] = ACTIONS(593), - [anon_sym_LBRACE] = ACTIONS(1409), - [anon_sym_type] = ACTIONS(589), - [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(597), - [anon_sym_BANG] = ACTIONS(29), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(39), - [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(63), + [sym_augmented_assignment_expression] = STATE(1144), + [sym_ternary_expression] = STATE(1144), + [sym_binary_expression] = STATE(1144), + [sym_unary_expression] = STATE(1144), + [sym_update_expression] = STATE(1144), + [sym_string] = STATE(1010), + [sym_template_string] = STATE(1010), + [sym_regex] = STATE(1010), + [sym_meta_property] = STATE(1010), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2383), + [sym_non_null_expression] = STATE(950), + [sym_type_assertion] = STATE(1144), + [sym_as_expression] = STATE(1144), + [sym_internal_module] = STATE(1144), + [sym_type_arguments] = STATE(395), + [sym_type_parameters] = STATE(2913), + [aux_sym_export_statement_repeat1] = STATE(2580), + [sym_identifier] = ACTIONS(1370), + [anon_sym_export] = ACTIONS(1372), + [anon_sym_namespace] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(509), + [anon_sym_type] = ACTIONS(1372), + [anon_sym_typeof] = ACTIONS(601), + [anon_sym_import] = ACTIONS(435), + [anon_sym_BANG] = ACTIONS(585), + [anon_sym_LPAREN] = ACTIONS(515), + [anon_sym_await] = ACTIONS(587), + [anon_sym_yield] = ACTIONS(589), + [anon_sym_LBRACK] = ACTIONS(517), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(601), - [anon_sym_async] = ACTIONS(603), - [anon_sym_function] = ACTIONS(605), - [anon_sym_new] = ACTIONS(75), - [anon_sym_PLUS] = ACTIONS(77), - [anon_sym_DASH] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(29), - [anon_sym_void] = ACTIONS(19), - [anon_sym_delete] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), + [anon_sym_SLASH] = ACTIONS(781), + [anon_sym_DOT] = ACTIONS(1376), + [anon_sym_class] = ACTIONS(451), + [anon_sym_async] = ACTIONS(1378), + [anon_sym_function] = ACTIONS(455), + [anon_sym_new] = ACTIONS(903), + [anon_sym_PLUS] = ACTIONS(905), + [anon_sym_DASH] = ACTIONS(905), + [anon_sym_TILDE] = ACTIONS(585), + [anon_sym_void] = ACTIONS(601), + [anon_sym_delete] = ACTIONS(601), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_DQUOTE] = ACTIONS(475), + [anon_sym_SQUOTE] = ACTIONS(477), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(85), - [sym_number] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), + [anon_sym_BQUOTE] = ACTIONS(479), + [sym_number] = ACTIONS(1380), + [sym_this] = ACTIONS(1382), + [sym_super] = ACTIONS(1382), + [sym_true] = ACTIONS(1382), + [sym_false] = ACTIONS(1382), + [sym_null] = ACTIONS(1382), + [sym_undefined] = ACTIONS(1382), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(589), - [anon_sym_get] = ACTIONS(589), - [anon_sym_set] = ACTIONS(589), - [anon_sym_declare] = ACTIONS(589), - [anon_sym_public] = ACTIONS(589), - [anon_sym_private] = ACTIONS(589), - [anon_sym_protected] = ACTIONS(589), - [anon_sym_module] = ACTIONS(589), - [anon_sym_any] = ACTIONS(589), - [anon_sym_number] = ACTIONS(589), - [anon_sym_boolean] = ACTIONS(589), - [anon_sym_string] = ACTIONS(589), - [anon_sym_symbol] = ACTIONS(589), - [sym_readonly] = ACTIONS(589), + [anon_sym_static] = ACTIONS(1372), + [anon_sym_get] = ACTIONS(1372), + [anon_sym_set] = ACTIONS(1372), + [anon_sym_declare] = ACTIONS(1372), + [anon_sym_public] = ACTIONS(1372), + [anon_sym_private] = ACTIONS(1372), + [anon_sym_protected] = ACTIONS(1372), + [anon_sym_module] = ACTIONS(1372), + [anon_sym_any] = ACTIONS(1372), + [anon_sym_number] = ACTIONS(1372), + [anon_sym_boolean] = ACTIONS(1372), + [anon_sym_string] = ACTIONS(1372), + [anon_sym_symbol] = ACTIONS(1372), + [sym_readonly] = ACTIONS(1372), }, - [225] = { - [sym_import] = STATE(1498), - [sym_statement_block] = STATE(1545), - [sym_parenthesized_expression] = STATE(764), - [sym__expression] = STATE(1165), - [sym_yield_expression] = STATE(1518), - [sym_object] = STATE(1435), - [sym_array] = STATE(1433), - [sym_class] = STATE(1498), - [sym_function] = STATE(1498), - [sym_generator_function] = STATE(1498), - [sym_arrow_function] = STATE(1498), - [sym__call_signature] = STATE(3145), - [sym_call_expression] = STATE(1498), - [sym_new_expression] = STATE(1518), - [sym_await_expression] = STATE(1518), - [sym_member_expression] = STATE(764), - [sym_subscript_expression] = STATE(764), - [sym_assignment_expression] = STATE(1518), + [235] = { + [sym_import] = STATE(1151), + [sym_statement_block] = STATE(1196), + [sym_parenthesized_expression] = STATE(956), + [sym__expression] = STATE(1424), + [sym_yield_expression] = STATE(1144), + [sym_object] = STATE(1653), + [sym_array] = STATE(1660), + [sym_class] = STATE(1151), + [sym_function] = STATE(1151), + [sym_generator_function] = STATE(1151), + [sym_arrow_function] = STATE(1151), + [sym__call_signature] = STATE(3024), + [sym_call_expression] = STATE(1151), + [sym_new_expression] = STATE(1144), + [sym_await_expression] = STATE(1144), + [sym_member_expression] = STATE(956), + [sym_subscript_expression] = STATE(956), + [sym_assignment_expression] = STATE(1144), [sym__augmented_assignment_lhs] = STATE(1925), - [sym_augmented_assignment_expression] = STATE(1518), - [sym_ternary_expression] = STATE(1518), - [sym_binary_expression] = STATE(1518), - [sym_unary_expression] = STATE(1518), - [sym_update_expression] = STATE(1518), - [sym_string] = STATE(1498), - [sym_template_string] = STATE(1498), - [sym_regex] = STATE(1498), - [sym_meta_property] = STATE(1498), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(772), - [sym_type_assertion] = STATE(1518), - [sym_as_expression] = STATE(1518), - [sym_internal_module] = STATE(1518), - [sym_type_arguments] = STATE(349), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2554), - [sym_identifier] = ACTIONS(587), - [anon_sym_export] = ACTIONS(589), - [anon_sym_namespace] = ACTIONS(593), - [anon_sym_LBRACE] = ACTIONS(1409), - [anon_sym_type] = ACTIONS(589), - [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(597), - [anon_sym_BANG] = ACTIONS(29), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(39), - [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(63), + [sym_augmented_assignment_expression] = STATE(1144), + [sym_ternary_expression] = STATE(1144), + [sym_binary_expression] = STATE(1144), + [sym_unary_expression] = STATE(1144), + [sym_update_expression] = STATE(1144), + [sym_string] = STATE(1151), + [sym_template_string] = STATE(1151), + [sym_regex] = STATE(1151), + [sym_meta_property] = STATE(1151), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(950), + [sym_type_assertion] = STATE(1144), + [sym_as_expression] = STATE(1144), + [sym_internal_module] = STATE(1144), + [sym_type_arguments] = STATE(395), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2580), + [sym_identifier] = ACTIONS(897), + [anon_sym_export] = ACTIONS(577), + [anon_sym_namespace] = ACTIONS(579), + [anon_sym_LBRACE] = ACTIONS(1350), + [anon_sym_type] = ACTIONS(577), + [anon_sym_typeof] = ACTIONS(601), + [anon_sym_import] = ACTIONS(435), + [anon_sym_BANG] = ACTIONS(585), + [anon_sym_LPAREN] = ACTIONS(515), + [anon_sym_await] = ACTIONS(587), + [anon_sym_yield] = ACTIONS(589), + [anon_sym_LBRACK] = ACTIONS(517), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(601), - [anon_sym_async] = ACTIONS(603), - [anon_sym_function] = ACTIONS(605), - [anon_sym_new] = ACTIONS(75), - [anon_sym_PLUS] = ACTIONS(77), - [anon_sym_DASH] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(29), - [anon_sym_void] = ACTIONS(19), - [anon_sym_delete] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), + [anon_sym_SLASH] = ACTIONS(449), + [anon_sym_class] = ACTIONS(451), + [anon_sym_async] = ACTIONS(593), + [anon_sym_function] = ACTIONS(455), + [anon_sym_new] = ACTIONS(903), + [anon_sym_PLUS] = ACTIONS(905), + [anon_sym_DASH] = ACTIONS(905), + [anon_sym_TILDE] = ACTIONS(585), + [anon_sym_void] = ACTIONS(601), + [anon_sym_delete] = ACTIONS(601), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_DQUOTE] = ACTIONS(475), + [anon_sym_SQUOTE] = ACTIONS(477), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(85), - [sym_number] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), + [anon_sym_BQUOTE] = ACTIONS(479), + [sym_number] = ACTIONS(527), + [sym_this] = ACTIONS(485), + [sym_super] = ACTIONS(485), + [sym_true] = ACTIONS(485), + [sym_false] = ACTIONS(485), + [sym_null] = ACTIONS(485), + [sym_undefined] = ACTIONS(485), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(589), - [anon_sym_get] = ACTIONS(589), - [anon_sym_set] = ACTIONS(589), - [anon_sym_declare] = ACTIONS(589), - [anon_sym_public] = ACTIONS(589), - [anon_sym_private] = ACTIONS(589), - [anon_sym_protected] = ACTIONS(589), - [anon_sym_module] = ACTIONS(589), - [anon_sym_any] = ACTIONS(589), - [anon_sym_number] = ACTIONS(589), - [anon_sym_boolean] = ACTIONS(589), - [anon_sym_string] = ACTIONS(589), - [anon_sym_symbol] = ACTIONS(589), - [sym_readonly] = ACTIONS(589), + [anon_sym_static] = ACTIONS(577), + [anon_sym_get] = ACTIONS(577), + [anon_sym_set] = ACTIONS(577), + [anon_sym_declare] = ACTIONS(577), + [anon_sym_public] = ACTIONS(577), + [anon_sym_private] = ACTIONS(577), + [anon_sym_protected] = ACTIONS(577), + [anon_sym_module] = ACTIONS(577), + [anon_sym_any] = ACTIONS(577), + [anon_sym_number] = ACTIONS(577), + [anon_sym_boolean] = ACTIONS(577), + [anon_sym_string] = ACTIONS(577), + [anon_sym_symbol] = ACTIONS(577), + [sym_readonly] = ACTIONS(577), }, - [226] = { - [sym_import] = STATE(1498), - [sym_statement_block] = STATE(1543), - [sym_parenthesized_expression] = STATE(764), - [sym__expression] = STATE(1164), - [sym_yield_expression] = STATE(1518), - [sym_object] = STATE(1435), - [sym_array] = STATE(1433), - [sym_class] = STATE(1498), - [sym_function] = STATE(1498), - [sym_generator_function] = STATE(1498), - [sym_arrow_function] = STATE(1498), - [sym__call_signature] = STATE(3145), - [sym_call_expression] = STATE(1498), - [sym_new_expression] = STATE(1518), - [sym_await_expression] = STATE(1518), - [sym_member_expression] = STATE(764), - [sym_subscript_expression] = STATE(764), - [sym_assignment_expression] = STATE(1518), + [236] = { + [ts_builtin_sym_end] = ACTIONS(1455), + [sym_identifier] = ACTIONS(1457), + [anon_sym_export] = ACTIONS(1457), + [anon_sym_default] = ACTIONS(1457), + [anon_sym_EQ] = ACTIONS(1457), + [anon_sym_namespace] = ACTIONS(1457), + [anon_sym_LBRACE] = ACTIONS(1455), + [anon_sym_COMMA] = ACTIONS(1455), + [anon_sym_RBRACE] = ACTIONS(1455), + [anon_sym_type] = ACTIONS(1457), + [anon_sym_typeof] = ACTIONS(1457), + [anon_sym_import] = ACTIONS(1457), + [anon_sym_var] = ACTIONS(1457), + [anon_sym_let] = ACTIONS(1457), + [anon_sym_const] = ACTIONS(1457), + [anon_sym_BANG] = ACTIONS(1455), + [anon_sym_else] = ACTIONS(1457), + [anon_sym_if] = ACTIONS(1457), + [anon_sym_switch] = ACTIONS(1457), + [anon_sym_for] = ACTIONS(1457), + [anon_sym_LPAREN] = ACTIONS(1455), + [anon_sym_RPAREN] = ACTIONS(1455), + [anon_sym_await] = ACTIONS(1457), + [anon_sym_while] = ACTIONS(1457), + [anon_sym_do] = ACTIONS(1457), + [anon_sym_try] = ACTIONS(1457), + [anon_sym_with] = ACTIONS(1457), + [anon_sym_break] = ACTIONS(1457), + [anon_sym_continue] = ACTIONS(1457), + [anon_sym_debugger] = ACTIONS(1457), + [anon_sym_return] = ACTIONS(1457), + [anon_sym_throw] = ACTIONS(1457), + [anon_sym_SEMI] = ACTIONS(1455), + [anon_sym_COLON] = ACTIONS(1455), + [anon_sym_case] = ACTIONS(1457), + [anon_sym_yield] = ACTIONS(1457), + [anon_sym_LBRACK] = ACTIONS(1455), + [anon_sym_RBRACK] = ACTIONS(1455), + [anon_sym_LT] = ACTIONS(1455), + [anon_sym_GT] = ACTIONS(1455), + [anon_sym_SLASH] = ACTIONS(1457), + [anon_sym_DOT] = ACTIONS(947), + [anon_sym_class] = ACTIONS(1457), + [anon_sym_async] = ACTIONS(1457), + [anon_sym_function] = ACTIONS(1457), + [anon_sym_EQ_GT] = ACTIONS(1455), + [anon_sym_new] = ACTIONS(1457), + [anon_sym_QMARK] = ACTIONS(1455), + [anon_sym_AMP] = ACTIONS(1455), + [anon_sym_PIPE] = ACTIONS(1455), + [anon_sym_PLUS] = ACTIONS(1457), + [anon_sym_DASH] = ACTIONS(1457), + [anon_sym_TILDE] = ACTIONS(1455), + [anon_sym_void] = ACTIONS(1457), + [anon_sym_delete] = ACTIONS(1457), + [anon_sym_PLUS_PLUS] = ACTIONS(1455), + [anon_sym_DASH_DASH] = ACTIONS(1455), + [anon_sym_DQUOTE] = ACTIONS(1455), + [anon_sym_SQUOTE] = ACTIONS(1455), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1455), + [sym_number] = ACTIONS(1455), + [sym_this] = ACTIONS(1457), + [sym_super] = ACTIONS(1457), + [sym_true] = ACTIONS(1457), + [sym_false] = ACTIONS(1457), + [sym_null] = ACTIONS(1457), + [sym_undefined] = ACTIONS(1457), + [anon_sym_AT] = ACTIONS(1455), + [anon_sym_static] = ACTIONS(1457), + [anon_sym_abstract] = ACTIONS(1457), + [anon_sym_get] = ACTIONS(1457), + [anon_sym_set] = ACTIONS(1457), + [anon_sym_declare] = ACTIONS(1457), + [anon_sym_public] = ACTIONS(1457), + [anon_sym_private] = ACTIONS(1457), + [anon_sym_protected] = ACTIONS(1457), + [anon_sym_module] = ACTIONS(1457), + [anon_sym_any] = ACTIONS(1457), + [anon_sym_number] = ACTIONS(1457), + [anon_sym_boolean] = ACTIONS(1457), + [anon_sym_string] = ACTIONS(1457), + [anon_sym_symbol] = ACTIONS(1457), + [anon_sym_implements] = ACTIONS(1457), + [anon_sym_interface] = ACTIONS(1457), + [anon_sym_extends] = ACTIONS(1457), + [anon_sym_enum] = ACTIONS(1457), + [sym_readonly] = ACTIONS(1457), + }, + [237] = { + [sym_import] = STATE(1010), + [sym_parenthesized_expression] = STATE(659), + [sym__expression] = STATE(1661), + [sym_yield_expression] = STATE(1144), + [sym_object] = STATE(991), + [sym_array] = STATE(988), + [sym_class] = STATE(1010), + [sym_function] = STATE(1010), + [sym_generator_function] = STATE(1010), + [sym_arrow_function] = STATE(1010), + [sym__call_signature] = STATE(3024), + [sym_call_expression] = STATE(1010), + [sym_new_expression] = STATE(1144), + [sym_await_expression] = STATE(1144), + [sym_member_expression] = STATE(659), + [sym_subscript_expression] = STATE(659), + [sym_assignment_expression] = STATE(1144), [sym__augmented_assignment_lhs] = STATE(1925), - [sym_augmented_assignment_expression] = STATE(1518), - [sym_ternary_expression] = STATE(1518), - [sym_binary_expression] = STATE(1518), - [sym_unary_expression] = STATE(1518), - [sym_update_expression] = STATE(1518), - [sym_string] = STATE(1498), - [sym_template_string] = STATE(1498), - [sym_regex] = STATE(1498), - [sym_meta_property] = STATE(1498), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(772), - [sym_type_assertion] = STATE(1518), - [sym_as_expression] = STATE(1518), - [sym_internal_module] = STATE(1518), - [sym_type_arguments] = STATE(349), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2554), - [sym_identifier] = ACTIONS(587), - [anon_sym_export] = ACTIONS(589), - [anon_sym_namespace] = ACTIONS(593), - [anon_sym_LBRACE] = ACTIONS(1409), - [anon_sym_type] = ACTIONS(589), - [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(597), - [anon_sym_BANG] = ACTIONS(29), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(39), - [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(63), + [sym_augmented_assignment_expression] = STATE(1144), + [sym_ternary_expression] = STATE(1144), + [sym_binary_expression] = STATE(1144), + [sym_unary_expression] = STATE(1144), + [sym_update_expression] = STATE(1144), + [sym_string] = STATE(1010), + [sym_template_string] = STATE(1010), + [sym_regex] = STATE(1010), + [sym_meta_property] = STATE(1010), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2383), + [sym_non_null_expression] = STATE(950), + [sym_type_assertion] = STATE(1144), + [sym_as_expression] = STATE(1144), + [sym_internal_module] = STATE(1144), + [sym_type_arguments] = STATE(395), + [sym_type_parameters] = STATE(2913), + [aux_sym_export_statement_repeat1] = STATE(2580), + [sym_identifier] = ACTIONS(1407), + [anon_sym_export] = ACTIONS(1409), + [anon_sym_namespace] = ACTIONS(1411), + [anon_sym_LBRACE] = ACTIONS(509), + [anon_sym_type] = ACTIONS(1409), + [anon_sym_typeof] = ACTIONS(601), + [anon_sym_import] = ACTIONS(435), + [anon_sym_BANG] = ACTIONS(585), + [anon_sym_LPAREN] = ACTIONS(515), + [anon_sym_await] = ACTIONS(587), + [anon_sym_yield] = ACTIONS(589), + [anon_sym_LBRACK] = ACTIONS(517), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(601), - [anon_sym_async] = ACTIONS(603), - [anon_sym_function] = ACTIONS(605), - [anon_sym_new] = ACTIONS(75), - [anon_sym_PLUS] = ACTIONS(77), - [anon_sym_DASH] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(29), - [anon_sym_void] = ACTIONS(19), - [anon_sym_delete] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), + [anon_sym_SLASH] = ACTIONS(449), + [anon_sym_DOT] = ACTIONS(1376), + [anon_sym_class] = ACTIONS(451), + [anon_sym_async] = ACTIONS(1413), + [anon_sym_function] = ACTIONS(455), + [anon_sym_new] = ACTIONS(903), + [anon_sym_PLUS] = ACTIONS(905), + [anon_sym_DASH] = ACTIONS(905), + [anon_sym_TILDE] = ACTIONS(585), + [anon_sym_void] = ACTIONS(601), + [anon_sym_delete] = ACTIONS(601), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_DQUOTE] = ACTIONS(475), + [anon_sym_SQUOTE] = ACTIONS(477), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(85), - [sym_number] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), + [anon_sym_BQUOTE] = ACTIONS(479), + [sym_number] = ACTIONS(1380), + [sym_this] = ACTIONS(1382), + [sym_super] = ACTIONS(1382), + [sym_true] = ACTIONS(1382), + [sym_false] = ACTIONS(1382), + [sym_null] = ACTIONS(1382), + [sym_undefined] = ACTIONS(1382), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(589), - [anon_sym_get] = ACTIONS(589), - [anon_sym_set] = ACTIONS(589), - [anon_sym_declare] = ACTIONS(589), - [anon_sym_public] = ACTIONS(589), - [anon_sym_private] = ACTIONS(589), - [anon_sym_protected] = ACTIONS(589), - [anon_sym_module] = ACTIONS(589), - [anon_sym_any] = ACTIONS(589), - [anon_sym_number] = ACTIONS(589), - [anon_sym_boolean] = ACTIONS(589), - [anon_sym_string] = ACTIONS(589), - [anon_sym_symbol] = ACTIONS(589), - [sym_readonly] = ACTIONS(589), + [anon_sym_static] = ACTIONS(1409), + [anon_sym_get] = ACTIONS(1409), + [anon_sym_set] = ACTIONS(1409), + [anon_sym_declare] = ACTIONS(1409), + [anon_sym_public] = ACTIONS(1409), + [anon_sym_private] = ACTIONS(1409), + [anon_sym_protected] = ACTIONS(1409), + [anon_sym_module] = ACTIONS(1409), + [anon_sym_any] = ACTIONS(1409), + [anon_sym_number] = ACTIONS(1409), + [anon_sym_boolean] = ACTIONS(1409), + [anon_sym_string] = ACTIONS(1409), + [anon_sym_symbol] = ACTIONS(1409), + [sym_readonly] = ACTIONS(1409), }, - [227] = { - [sym_import] = STATE(1101), - [sym_parenthesized_expression] = STATE(739), - [sym__expression] = STATE(1414), - [sym_yield_expression] = STATE(1105), - [sym_object] = STATE(1297), - [sym_array] = STATE(1296), - [sym_class] = STATE(1101), - [sym_function] = STATE(1101), - [sym_generator_function] = STATE(1101), - [sym_arrow_function] = STATE(1101), - [sym__call_signature] = STATE(3116), - [sym_call_expression] = STATE(1101), - [sym_new_expression] = STATE(1105), - [sym_await_expression] = STATE(1105), - [sym_member_expression] = STATE(739), - [sym_subscript_expression] = STATE(739), - [sym_assignment_expression] = STATE(1105), - [sym__augmented_assignment_lhs] = STATE(1920), - [sym_augmented_assignment_expression] = STATE(1105), - [sym_ternary_expression] = STATE(1105), - [sym_binary_expression] = STATE(1105), - [sym_unary_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_sequence_expression] = STATE(3022), - [sym_string] = STATE(1101), - [sym_template_string] = STATE(1101), - [sym_regex] = STATE(1101), - [sym_meta_property] = STATE(1101), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(755), - [sym_type_assertion] = STATE(1105), - [sym_as_expression] = STATE(1105), - [sym_internal_module] = STATE(1105), - [sym_type_arguments] = STATE(361), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2497), + [238] = { + [sym_import] = STATE(1151), + [sym_parenthesized_expression] = STATE(759), + [sym__expression] = STATE(1444), + [sym_yield_expression] = STATE(1144), + [sym_object] = STATE(1257), + [sym_array] = STATE(1254), + [sym_class] = STATE(1151), + [sym_function] = STATE(1151), + [sym_generator_function] = STATE(1151), + [sym_arrow_function] = STATE(1151), + [sym__call_signature] = STATE(3082), + [sym_call_expression] = STATE(1151), + [sym_new_expression] = STATE(1144), + [sym_await_expression] = STATE(1144), + [sym_member_expression] = STATE(759), + [sym_subscript_expression] = STATE(759), + [sym_assignment_expression] = STATE(1144), + [sym__augmented_assignment_lhs] = STATE(1924), + [sym_augmented_assignment_expression] = STATE(1144), + [sym_ternary_expression] = STATE(1144), + [sym_binary_expression] = STATE(1144), + [sym_unary_expression] = STATE(1144), + [sym_update_expression] = STATE(1144), + [sym_sequence_expression] = STATE(3059), + [sym_string] = STATE(1151), + [sym_template_string] = STATE(1151), + [sym_regex] = STATE(1151), + [sym_meta_property] = STATE(1151), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(754), + [sym_type_assertion] = STATE(1144), + [sym_as_expression] = STATE(1144), + [sym_internal_module] = STATE(1144), + [sym_type_arguments] = STATE(326), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2580), [sym_identifier] = ACTIONS(499), [anon_sym_export] = ACTIONS(501), [anon_sym_namespace] = ACTIONS(507), @@ -33660,134 +34704,494 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(501), [sym_readonly] = ACTIONS(501), }, - [228] = { - [sym_import] = STATE(1306), - [sym_parenthesized_expression] = STATE(714), - [sym__expression] = STATE(1634), - [sym_yield_expression] = STATE(1105), - [sym_object] = STATE(1097), - [sym_array] = STATE(1103), - [sym_class] = STATE(1306), - [sym_function] = STATE(1306), - [sym_generator_function] = STATE(1306), - [sym_arrow_function] = STATE(1306), - [sym__call_signature] = STATE(3145), - [sym_call_expression] = STATE(1306), - [sym_new_expression] = STATE(1105), - [sym_await_expression] = STATE(1105), - [sym_member_expression] = STATE(714), - [sym_subscript_expression] = STATE(714), - [sym_assignment_expression] = STATE(1105), + [239] = { + [sym__call_signature] = STATE(3073), + [sym_string] = STATE(2218), + [sym_formal_parameters] = STATE(2253), + [sym__property_name] = STATE(2218), + [sym_computed_property_name] = STATE(2218), + [sym_type_parameters] = STATE(2827), + [aux_sym_object_repeat1] = STATE(2641), + [sym_identifier] = ACTIONS(1384), + [anon_sym_export] = ACTIONS(1386), + [anon_sym_STAR] = ACTIONS(1388), + [anon_sym_EQ] = ACTIONS(1258), + [anon_sym_as] = ACTIONS(808), + [anon_sym_namespace] = ACTIONS(1386), + [anon_sym_COMMA] = ACTIONS(841), + [anon_sym_RBRACE] = ACTIONS(1201), + [anon_sym_type] = ACTIONS(1386), + [anon_sym_BANG] = ACTIONS(808), + [anon_sym_LPAREN] = ACTIONS(1391), + [anon_sym_in] = ACTIONS(808), + [anon_sym_SEMI] = ACTIONS(841), + [anon_sym_COLON] = ACTIONS(1216), + [anon_sym_LBRACK] = ACTIONS(1395), + [anon_sym_LT] = ACTIONS(1397), + [anon_sym_GT] = ACTIONS(808), + [anon_sym_SLASH] = ACTIONS(808), + [anon_sym_DOT] = ACTIONS(1017), + [anon_sym_async] = ACTIONS(1386), + [anon_sym_function] = ACTIONS(1401), + [anon_sym_EQ_GT] = ACTIONS(1019), + [anon_sym_QMARK_DOT] = ACTIONS(1021), + [anon_sym_PLUS_EQ] = ACTIONS(831), + [anon_sym_DASH_EQ] = ACTIONS(831), + [anon_sym_STAR_EQ] = ACTIONS(831), + [anon_sym_SLASH_EQ] = ACTIONS(831), + [anon_sym_PERCENT_EQ] = ACTIONS(831), + [anon_sym_CARET_EQ] = ACTIONS(831), + [anon_sym_AMP_EQ] = ACTIONS(831), + [anon_sym_PIPE_EQ] = ACTIONS(831), + [anon_sym_GT_GT_EQ] = ACTIONS(831), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(831), + [anon_sym_LT_LT_EQ] = ACTIONS(831), + [anon_sym_STAR_STAR_EQ] = ACTIONS(831), + [anon_sym_AMP_AMP_EQ] = ACTIONS(831), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(831), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(831), + [anon_sym_QMARK] = ACTIONS(1221), + [anon_sym_AMP_AMP] = ACTIONS(808), + [anon_sym_PIPE_PIPE] = ACTIONS(808), + [anon_sym_GT_GT] = ACTIONS(808), + [anon_sym_GT_GT_GT] = ACTIONS(808), + [anon_sym_LT_LT] = ACTIONS(808), + [anon_sym_AMP] = ACTIONS(808), + [anon_sym_CARET] = ACTIONS(808), + [anon_sym_PIPE] = ACTIONS(808), + [anon_sym_PLUS] = ACTIONS(808), + [anon_sym_DASH] = ACTIONS(808), + [anon_sym_PERCENT] = ACTIONS(808), + [anon_sym_STAR_STAR] = ACTIONS(808), + [anon_sym_LT_EQ] = ACTIONS(841), + [anon_sym_EQ_EQ] = ACTIONS(808), + [anon_sym_EQ_EQ_EQ] = ACTIONS(841), + [anon_sym_BANG_EQ] = ACTIONS(808), + [anon_sym_BANG_EQ_EQ] = ACTIONS(841), + [anon_sym_GT_EQ] = ACTIONS(841), + [anon_sym_QMARK_QMARK] = ACTIONS(808), + [anon_sym_instanceof] = ACTIONS(808), + [anon_sym_PLUS_PLUS] = ACTIONS(841), + [anon_sym_DASH_DASH] = ACTIONS(841), + [anon_sym_DQUOTE] = ACTIONS(845), + [anon_sym_SQUOTE] = ACTIONS(847), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(841), + [sym_number] = ACTIONS(1403), + [anon_sym_static] = ACTIONS(1386), + [anon_sym_get] = ACTIONS(1405), + [anon_sym_set] = ACTIONS(1405), + [anon_sym_declare] = ACTIONS(1386), + [anon_sym_public] = ACTIONS(1386), + [anon_sym_private] = ACTIONS(1386), + [anon_sym_protected] = ACTIONS(1386), + [anon_sym_module] = ACTIONS(1386), + [anon_sym_any] = ACTIONS(1386), + [anon_sym_number] = ACTIONS(1386), + [anon_sym_boolean] = ACTIONS(1386), + [anon_sym_string] = ACTIONS(1386), + [anon_sym_symbol] = ACTIONS(1386), + [sym_readonly] = ACTIONS(1386), + [sym__automatic_semicolon] = ACTIONS(841), + }, + [240] = { + [sym_import] = STATE(1690), + [sym_statement_block] = STATE(1694), + [sym_parenthesized_expression] = STATE(834), + [sym__expression] = STATE(1299), + [sym_yield_expression] = STATE(1687), + [sym_object] = STATE(1538), + [sym_array] = STATE(1543), + [sym_class] = STATE(1690), + [sym_function] = STATE(1690), + [sym_generator_function] = STATE(1690), + [sym_arrow_function] = STATE(1690), + [sym__call_signature] = STATE(3133), + [sym_call_expression] = STATE(1690), + [sym_new_expression] = STATE(1687), + [sym_await_expression] = STATE(1687), + [sym_member_expression] = STATE(834), + [sym_subscript_expression] = STATE(834), + [sym_assignment_expression] = STATE(1687), [sym__augmented_assignment_lhs] = STATE(1921), - [sym_augmented_assignment_expression] = STATE(1105), - [sym_ternary_expression] = STATE(1105), - [sym_binary_expression] = STATE(1105), - [sym_unary_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_string] = STATE(1306), - [sym_template_string] = STATE(1306), - [sym_regex] = STATE(1306), - [sym_meta_property] = STATE(1306), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2467), - [sym_non_null_expression] = STATE(949), - [sym_type_assertion] = STATE(1105), - [sym_as_expression] = STATE(1105), - [sym_internal_module] = STATE(1105), - [sym_type_arguments] = STATE(324), - [sym_type_parameters] = STATE(2860), - [aux_sym_export_statement_repeat1] = STATE(2554), - [sym_identifier] = ACTIONS(1443), - [anon_sym_export] = ACTIONS(1445), - [anon_sym_namespace] = ACTIONS(1447), - [anon_sym_LBRACE] = ACTIONS(595), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_typeof] = ACTIONS(659), - [anon_sym_import] = ACTIONS(597), - [anon_sym_BANG] = ACTIONS(643), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(645), - [anon_sym_yield] = ACTIONS(647), - [anon_sym_LBRACK] = ACTIONS(63), + [sym_augmented_assignment_expression] = STATE(1687), + [sym_ternary_expression] = STATE(1687), + [sym_binary_expression] = STATE(1687), + [sym_unary_expression] = STATE(1687), + [sym_update_expression] = STATE(1687), + [sym_string] = STATE(1690), + [sym_template_string] = STATE(1690), + [sym_regex] = STATE(1690), + [sym_meta_property] = STATE(1690), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(846), + [sym_type_assertion] = STATE(1687), + [sym_as_expression] = STATE(1687), + [sym_internal_module] = STATE(1687), + [sym_type_arguments] = STATE(301), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2545), + [sym_identifier] = ACTIONS(869), + [anon_sym_export] = ACTIONS(673), + [anon_sym_namespace] = ACTIONS(675), + [anon_sym_LBRACE] = ACTIONS(1368), + [anon_sym_type] = ACTIONS(673), + [anon_sym_typeof] = ACTIONS(707), + [anon_sym_import] = ACTIONS(681), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_await] = ACTIONS(687), + [anon_sym_yield] = ACTIONS(689), + [anon_sym_LBRACK] = ACTIONS(879), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(1354), - [anon_sym_class] = ACTIONS(601), - [anon_sym_async] = ACTIONS(1449), - [anon_sym_function] = ACTIONS(605), - [anon_sym_new] = ACTIONS(1423), - [anon_sym_PLUS] = ACTIONS(867), - [anon_sym_DASH] = ACTIONS(867), - [anon_sym_TILDE] = ACTIONS(643), - [anon_sym_void] = ACTIONS(659), - [anon_sym_delete] = ACTIONS(659), - [anon_sym_PLUS_PLUS] = ACTIONS(661), - [anon_sym_DASH_DASH] = ACTIONS(661), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), + [anon_sym_SLASH] = ACTIONS(693), + [anon_sym_class] = ACTIONS(695), + [anon_sym_async] = ACTIONS(697), + [anon_sym_function] = ACTIONS(699), + [anon_sym_new] = ACTIONS(881), + [anon_sym_PLUS] = ACTIONS(883), + [anon_sym_DASH] = ACTIONS(883), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_void] = ACTIONS(707), + [anon_sym_delete] = ACTIONS(707), + [anon_sym_PLUS_PLUS] = ACTIONS(709), + [anon_sym_DASH_DASH] = ACTIONS(709), + [anon_sym_DQUOTE] = ACTIONS(711), + [anon_sym_SQUOTE] = ACTIONS(713), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(715), + [sym_number] = ACTIONS(885), + [sym_this] = ACTIONS(721), + [sym_super] = ACTIONS(721), + [sym_true] = ACTIONS(721), + [sym_false] = ACTIONS(721), + [sym_null] = ACTIONS(721), + [sym_undefined] = ACTIONS(721), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(673), + [anon_sym_get] = ACTIONS(673), + [anon_sym_set] = ACTIONS(673), + [anon_sym_declare] = ACTIONS(673), + [anon_sym_public] = ACTIONS(673), + [anon_sym_private] = ACTIONS(673), + [anon_sym_protected] = ACTIONS(673), + [anon_sym_module] = ACTIONS(673), + [anon_sym_any] = ACTIONS(673), + [anon_sym_number] = ACTIONS(673), + [anon_sym_boolean] = ACTIONS(673), + [anon_sym_string] = ACTIONS(673), + [anon_sym_symbol] = ACTIONS(673), + [sym_readonly] = ACTIONS(673), + }, + [241] = { + [sym_import] = STATE(1010), + [sym_parenthesized_expression] = STATE(659), + [sym__expression] = STATE(1661), + [sym_yield_expression] = STATE(1144), + [sym_object] = STATE(991), + [sym_array] = STATE(988), + [sym_class] = STATE(1010), + [sym_function] = STATE(1010), + [sym_generator_function] = STATE(1010), + [sym_arrow_function] = STATE(1010), + [sym__call_signature] = STATE(3024), + [sym_call_expression] = STATE(1010), + [sym_new_expression] = STATE(1144), + [sym_await_expression] = STATE(1144), + [sym_member_expression] = STATE(659), + [sym_subscript_expression] = STATE(659), + [sym_assignment_expression] = STATE(1144), + [sym__augmented_assignment_lhs] = STATE(1925), + [sym_augmented_assignment_expression] = STATE(1144), + [sym_ternary_expression] = STATE(1144), + [sym_binary_expression] = STATE(1144), + [sym_unary_expression] = STATE(1144), + [sym_update_expression] = STATE(1144), + [sym_string] = STATE(1010), + [sym_template_string] = STATE(1010), + [sym_regex] = STATE(1010), + [sym_meta_property] = STATE(1010), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(950), + [sym_type_assertion] = STATE(1144), + [sym_as_expression] = STATE(1144), + [sym_internal_module] = STATE(1144), + [sym_type_arguments] = STATE(395), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2580), + [sym_identifier] = ACTIONS(1407), + [anon_sym_export] = ACTIONS(1409), + [anon_sym_namespace] = ACTIONS(1411), + [anon_sym_LBRACE] = ACTIONS(509), + [anon_sym_type] = ACTIONS(1409), + [anon_sym_typeof] = ACTIONS(601), + [anon_sym_import] = ACTIONS(435), + [anon_sym_BANG] = ACTIONS(585), + [anon_sym_LPAREN] = ACTIONS(515), + [anon_sym_await] = ACTIONS(587), + [anon_sym_yield] = ACTIONS(589), + [anon_sym_LBRACK] = ACTIONS(517), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(449), + [anon_sym_DOT] = ACTIONS(1376), + [anon_sym_class] = ACTIONS(451), + [anon_sym_async] = ACTIONS(1413), + [anon_sym_function] = ACTIONS(455), + [anon_sym_new] = ACTIONS(903), + [anon_sym_PLUS] = ACTIONS(905), + [anon_sym_DASH] = ACTIONS(905), + [anon_sym_TILDE] = ACTIONS(585), + [anon_sym_void] = ACTIONS(601), + [anon_sym_delete] = ACTIONS(601), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_DQUOTE] = ACTIONS(475), + [anon_sym_SQUOTE] = ACTIONS(477), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(85), - [sym_number] = ACTIONS(1425), - [sym_this] = ACTIONS(1427), - [sym_super] = ACTIONS(1427), - [sym_true] = ACTIONS(1427), - [sym_false] = ACTIONS(1427), - [sym_null] = ACTIONS(1427), - [sym_undefined] = ACTIONS(1427), + [anon_sym_BQUOTE] = ACTIONS(479), + [sym_number] = ACTIONS(1380), + [sym_this] = ACTIONS(1382), + [sym_super] = ACTIONS(1382), + [sym_true] = ACTIONS(1382), + [sym_false] = ACTIONS(1382), + [sym_null] = ACTIONS(1382), + [sym_undefined] = ACTIONS(1382), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(1445), - [anon_sym_get] = ACTIONS(1445), - [anon_sym_set] = ACTIONS(1445), - [anon_sym_declare] = ACTIONS(1445), - [anon_sym_public] = ACTIONS(1445), - [anon_sym_private] = ACTIONS(1445), - [anon_sym_protected] = ACTIONS(1445), - [anon_sym_module] = ACTIONS(1445), - [anon_sym_any] = ACTIONS(1445), - [anon_sym_number] = ACTIONS(1445), - [anon_sym_boolean] = ACTIONS(1445), - [anon_sym_string] = ACTIONS(1445), - [anon_sym_symbol] = ACTIONS(1445), - [sym_readonly] = ACTIONS(1445), + [anon_sym_static] = ACTIONS(1409), + [anon_sym_get] = ACTIONS(1409), + [anon_sym_set] = ACTIONS(1409), + [anon_sym_declare] = ACTIONS(1409), + [anon_sym_public] = ACTIONS(1409), + [anon_sym_private] = ACTIONS(1409), + [anon_sym_protected] = ACTIONS(1409), + [anon_sym_module] = ACTIONS(1409), + [anon_sym_any] = ACTIONS(1409), + [anon_sym_number] = ACTIONS(1409), + [anon_sym_boolean] = ACTIONS(1409), + [anon_sym_string] = ACTIONS(1409), + [anon_sym_symbol] = ACTIONS(1409), + [sym_readonly] = ACTIONS(1409), }, - [229] = { - [sym_import] = STATE(1101), - [sym_parenthesized_expression] = STATE(739), - [sym__expression] = STATE(1319), - [sym_yield_expression] = STATE(1105), - [sym_object] = STATE(1297), - [sym_array] = STATE(1296), - [sym_class] = STATE(1101), - [sym_function] = STATE(1101), - [sym_generator_function] = STATE(1101), - [sym_arrow_function] = STATE(1101), - [sym__call_signature] = STATE(3116), - [sym_call_expression] = STATE(1101), - [sym_new_expression] = STATE(1105), - [sym_await_expression] = STATE(1105), - [sym_member_expression] = STATE(739), - [sym_subscript_expression] = STATE(739), - [sym_assignment_expression] = STATE(1105), - [sym__augmented_assignment_lhs] = STATE(1920), - [sym_augmented_assignment_expression] = STATE(1105), - [sym_ternary_expression] = STATE(1105), - [sym_binary_expression] = STATE(1105), - [sym_unary_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_sequence_expression] = STATE(3102), - [sym_string] = STATE(1101), - [sym_template_string] = STATE(1101), - [sym_regex] = STATE(1101), - [sym_meta_property] = STATE(1101), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(755), - [sym_type_assertion] = STATE(1105), - [sym_as_expression] = STATE(1105), - [sym_internal_module] = STATE(1105), - [sym_type_arguments] = STATE(361), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2497), + [242] = { + [sym_import] = STATE(1690), + [sym_statement_block] = STATE(1696), + [sym_parenthesized_expression] = STATE(834), + [sym__expression] = STATE(1274), + [sym_yield_expression] = STATE(1687), + [sym_object] = STATE(1538), + [sym_array] = STATE(1543), + [sym_class] = STATE(1690), + [sym_function] = STATE(1690), + [sym_generator_function] = STATE(1690), + [sym_arrow_function] = STATE(1690), + [sym__call_signature] = STATE(3133), + [sym_call_expression] = STATE(1690), + [sym_new_expression] = STATE(1687), + [sym_await_expression] = STATE(1687), + [sym_member_expression] = STATE(834), + [sym_subscript_expression] = STATE(834), + [sym_assignment_expression] = STATE(1687), + [sym__augmented_assignment_lhs] = STATE(1921), + [sym_augmented_assignment_expression] = STATE(1687), + [sym_ternary_expression] = STATE(1687), + [sym_binary_expression] = STATE(1687), + [sym_unary_expression] = STATE(1687), + [sym_update_expression] = STATE(1687), + [sym_string] = STATE(1690), + [sym_template_string] = STATE(1690), + [sym_regex] = STATE(1690), + [sym_meta_property] = STATE(1690), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(846), + [sym_type_assertion] = STATE(1687), + [sym_as_expression] = STATE(1687), + [sym_internal_module] = STATE(1687), + [sym_type_arguments] = STATE(301), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2545), + [sym_identifier] = ACTIONS(869), + [anon_sym_export] = ACTIONS(673), + [anon_sym_namespace] = ACTIONS(675), + [anon_sym_LBRACE] = ACTIONS(1368), + [anon_sym_type] = ACTIONS(673), + [anon_sym_typeof] = ACTIONS(707), + [anon_sym_import] = ACTIONS(681), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_await] = ACTIONS(687), + [anon_sym_yield] = ACTIONS(689), + [anon_sym_LBRACK] = ACTIONS(879), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(693), + [anon_sym_class] = ACTIONS(695), + [anon_sym_async] = ACTIONS(697), + [anon_sym_function] = ACTIONS(699), + [anon_sym_new] = ACTIONS(881), + [anon_sym_PLUS] = ACTIONS(883), + [anon_sym_DASH] = ACTIONS(883), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_void] = ACTIONS(707), + [anon_sym_delete] = ACTIONS(707), + [anon_sym_PLUS_PLUS] = ACTIONS(709), + [anon_sym_DASH_DASH] = ACTIONS(709), + [anon_sym_DQUOTE] = ACTIONS(711), + [anon_sym_SQUOTE] = ACTIONS(713), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(715), + [sym_number] = ACTIONS(885), + [sym_this] = ACTIONS(721), + [sym_super] = ACTIONS(721), + [sym_true] = ACTIONS(721), + [sym_false] = ACTIONS(721), + [sym_null] = ACTIONS(721), + [sym_undefined] = ACTIONS(721), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(673), + [anon_sym_get] = ACTIONS(673), + [anon_sym_set] = ACTIONS(673), + [anon_sym_declare] = ACTIONS(673), + [anon_sym_public] = ACTIONS(673), + [anon_sym_private] = ACTIONS(673), + [anon_sym_protected] = ACTIONS(673), + [anon_sym_module] = ACTIONS(673), + [anon_sym_any] = ACTIONS(673), + [anon_sym_number] = ACTIONS(673), + [anon_sym_boolean] = ACTIONS(673), + [anon_sym_string] = ACTIONS(673), + [anon_sym_symbol] = ACTIONS(673), + [sym_readonly] = ACTIONS(673), + }, + [243] = { + [sym__call_signature] = STATE(3073), + [sym_string] = STATE(2218), + [sym_formal_parameters] = STATE(2253), + [sym__property_name] = STATE(2218), + [sym_computed_property_name] = STATE(2218), + [sym_type_parameters] = STATE(2827), + [aux_sym_object_repeat1] = STATE(2651), + [sym_identifier] = ACTIONS(1384), + [anon_sym_export] = ACTIONS(1386), + [anon_sym_STAR] = ACTIONS(1388), + [anon_sym_EQ] = ACTIONS(1258), + [anon_sym_as] = ACTIONS(808), + [anon_sym_namespace] = ACTIONS(1386), + [anon_sym_COMMA] = ACTIONS(841), + [anon_sym_RBRACE] = ACTIONS(1242), + [anon_sym_type] = ACTIONS(1386), + [anon_sym_BANG] = ACTIONS(808), + [anon_sym_LPAREN] = ACTIONS(1391), + [anon_sym_in] = ACTIONS(808), + [anon_sym_SEMI] = ACTIONS(841), + [anon_sym_COLON] = ACTIONS(1216), + [anon_sym_LBRACK] = ACTIONS(1395), + [anon_sym_LT] = ACTIONS(1397), + [anon_sym_GT] = ACTIONS(808), + [anon_sym_SLASH] = ACTIONS(808), + [anon_sym_DOT] = ACTIONS(1017), + [anon_sym_async] = ACTIONS(1386), + [anon_sym_function] = ACTIONS(1401), + [anon_sym_EQ_GT] = ACTIONS(1019), + [anon_sym_QMARK_DOT] = ACTIONS(1021), + [anon_sym_PLUS_EQ] = ACTIONS(831), + [anon_sym_DASH_EQ] = ACTIONS(831), + [anon_sym_STAR_EQ] = ACTIONS(831), + [anon_sym_SLASH_EQ] = ACTIONS(831), + [anon_sym_PERCENT_EQ] = ACTIONS(831), + [anon_sym_CARET_EQ] = ACTIONS(831), + [anon_sym_AMP_EQ] = ACTIONS(831), + [anon_sym_PIPE_EQ] = ACTIONS(831), + [anon_sym_GT_GT_EQ] = ACTIONS(831), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(831), + [anon_sym_LT_LT_EQ] = ACTIONS(831), + [anon_sym_STAR_STAR_EQ] = ACTIONS(831), + [anon_sym_AMP_AMP_EQ] = ACTIONS(831), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(831), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(831), + [anon_sym_QMARK] = ACTIONS(1221), + [anon_sym_AMP_AMP] = ACTIONS(808), + [anon_sym_PIPE_PIPE] = ACTIONS(808), + [anon_sym_GT_GT] = ACTIONS(808), + [anon_sym_GT_GT_GT] = ACTIONS(808), + [anon_sym_LT_LT] = ACTIONS(808), + [anon_sym_AMP] = ACTIONS(808), + [anon_sym_CARET] = ACTIONS(808), + [anon_sym_PIPE] = ACTIONS(808), + [anon_sym_PLUS] = ACTIONS(808), + [anon_sym_DASH] = ACTIONS(808), + [anon_sym_PERCENT] = ACTIONS(808), + [anon_sym_STAR_STAR] = ACTIONS(808), + [anon_sym_LT_EQ] = ACTIONS(841), + [anon_sym_EQ_EQ] = ACTIONS(808), + [anon_sym_EQ_EQ_EQ] = ACTIONS(841), + [anon_sym_BANG_EQ] = ACTIONS(808), + [anon_sym_BANG_EQ_EQ] = ACTIONS(841), + [anon_sym_GT_EQ] = ACTIONS(841), + [anon_sym_QMARK_QMARK] = ACTIONS(808), + [anon_sym_instanceof] = ACTIONS(808), + [anon_sym_PLUS_PLUS] = ACTIONS(841), + [anon_sym_DASH_DASH] = ACTIONS(841), + [anon_sym_DQUOTE] = ACTIONS(845), + [anon_sym_SQUOTE] = ACTIONS(847), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(841), + [sym_number] = ACTIONS(1403), + [anon_sym_static] = ACTIONS(1386), + [anon_sym_get] = ACTIONS(1405), + [anon_sym_set] = ACTIONS(1405), + [anon_sym_declare] = ACTIONS(1386), + [anon_sym_public] = ACTIONS(1386), + [anon_sym_private] = ACTIONS(1386), + [anon_sym_protected] = ACTIONS(1386), + [anon_sym_module] = ACTIONS(1386), + [anon_sym_any] = ACTIONS(1386), + [anon_sym_number] = ACTIONS(1386), + [anon_sym_boolean] = ACTIONS(1386), + [anon_sym_string] = ACTIONS(1386), + [anon_sym_symbol] = ACTIONS(1386), + [sym_readonly] = ACTIONS(1386), + [sym__automatic_semicolon] = ACTIONS(841), + }, + [244] = { + [sym_import] = STATE(1151), + [sym_parenthesized_expression] = STATE(759), + [sym__expression] = STATE(1453), + [sym_yield_expression] = STATE(1144), + [sym_object] = STATE(1257), + [sym_array] = STATE(1254), + [sym_class] = STATE(1151), + [sym_function] = STATE(1151), + [sym_generator_function] = STATE(1151), + [sym_arrow_function] = STATE(1151), + [sym__call_signature] = STATE(3082), + [sym_call_expression] = STATE(1151), + [sym_new_expression] = STATE(1144), + [sym_await_expression] = STATE(1144), + [sym_member_expression] = STATE(759), + [sym_subscript_expression] = STATE(759), + [sym_assignment_expression] = STATE(1144), + [sym__augmented_assignment_lhs] = STATE(1924), + [sym_augmented_assignment_expression] = STATE(1144), + [sym_ternary_expression] = STATE(1144), + [sym_binary_expression] = STATE(1144), + [sym_unary_expression] = STATE(1144), + [sym_update_expression] = STATE(1144), + [sym_sequence_expression] = STATE(3106), + [sym_string] = STATE(1151), + [sym_template_string] = STATE(1151), + [sym_regex] = STATE(1151), + [sym_meta_property] = STATE(1151), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(754), + [sym_type_assertion] = STATE(1144), + [sym_as_expression] = STATE(1144), + [sym_internal_module] = STATE(1144), + [sym_type_arguments] = STATE(326), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2580), [sym_identifier] = ACTIONS(499), [anon_sym_export] = ACTIONS(501), [anon_sym_namespace] = ACTIONS(507), @@ -33840,44 +35244,44 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(501), [sym_readonly] = ACTIONS(501), }, - [230] = { - [sym_import] = STATE(1101), - [sym_parenthesized_expression] = STATE(739), - [sym__expression] = STATE(1439), - [sym_yield_expression] = STATE(1105), - [sym_object] = STATE(1297), - [sym_array] = STATE(1296), - [sym_class] = STATE(1101), - [sym_function] = STATE(1101), - [sym_generator_function] = STATE(1101), - [sym_arrow_function] = STATE(1101), - [sym__call_signature] = STATE(3116), - [sym_call_expression] = STATE(1101), - [sym_new_expression] = STATE(1105), - [sym_await_expression] = STATE(1105), - [sym_member_expression] = STATE(739), - [sym_subscript_expression] = STATE(739), - [sym_assignment_expression] = STATE(1105), - [sym__augmented_assignment_lhs] = STATE(1920), - [sym_augmented_assignment_expression] = STATE(1105), - [sym_ternary_expression] = STATE(1105), - [sym_binary_expression] = STATE(1105), - [sym_unary_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_sequence_expression] = STATE(3047), - [sym_string] = STATE(1101), - [sym_template_string] = STATE(1101), - [sym_regex] = STATE(1101), - [sym_meta_property] = STATE(1101), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(755), - [sym_type_assertion] = STATE(1105), - [sym_as_expression] = STATE(1105), - [sym_internal_module] = STATE(1105), - [sym_type_arguments] = STATE(361), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2497), + [245] = { + [sym_import] = STATE(1151), + [sym_parenthesized_expression] = STATE(759), + [sym__expression] = STATE(1457), + [sym_yield_expression] = STATE(1144), + [sym_object] = STATE(1257), + [sym_array] = STATE(1254), + [sym_class] = STATE(1151), + [sym_function] = STATE(1151), + [sym_generator_function] = STATE(1151), + [sym_arrow_function] = STATE(1151), + [sym__call_signature] = STATE(3082), + [sym_call_expression] = STATE(1151), + [sym_new_expression] = STATE(1144), + [sym_await_expression] = STATE(1144), + [sym_member_expression] = STATE(759), + [sym_subscript_expression] = STATE(759), + [sym_assignment_expression] = STATE(1144), + [sym__augmented_assignment_lhs] = STATE(1924), + [sym_augmented_assignment_expression] = STATE(1144), + [sym_ternary_expression] = STATE(1144), + [sym_binary_expression] = STATE(1144), + [sym_unary_expression] = STATE(1144), + [sym_update_expression] = STATE(1144), + [sym_sequence_expression] = STATE(3118), + [sym_string] = STATE(1151), + [sym_template_string] = STATE(1151), + [sym_regex] = STATE(1151), + [sym_meta_property] = STATE(1151), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(754), + [sym_type_assertion] = STATE(1144), + [sym_as_expression] = STATE(1144), + [sym_internal_module] = STATE(1144), + [sym_type_arguments] = STATE(326), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2580), [sym_identifier] = ACTIONS(499), [anon_sym_export] = ACTIONS(501), [anon_sym_namespace] = ACTIONS(507), @@ -33930,159 +35334,69 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(501), [sym_readonly] = ACTIONS(501), }, - [231] = { - [sym_import] = STATE(1498), - [sym_statement_block] = STATE(1526), - [sym_parenthesized_expression] = STATE(952), - [sym__expression] = STATE(1323), - [sym_yield_expression] = STATE(1518), - [sym_object] = STATE(1677), - [sym_array] = STATE(1671), - [sym_class] = STATE(1498), - [sym_function] = STATE(1498), - [sym_generator_function] = STATE(1498), - [sym_arrow_function] = STATE(1498), - [sym__call_signature] = STATE(3059), - [sym_call_expression] = STATE(1498), - [sym_new_expression] = STATE(1518), - [sym_await_expression] = STATE(1518), - [sym_member_expression] = STATE(952), - [sym_subscript_expression] = STATE(952), - [sym_assignment_expression] = STATE(1518), - [sym__augmented_assignment_lhs] = STATE(1919), - [sym_augmented_assignment_expression] = STATE(1518), - [sym_ternary_expression] = STATE(1518), - [sym_binary_expression] = STATE(1518), - [sym_unary_expression] = STATE(1518), - [sym_update_expression] = STATE(1518), - [sym_string] = STATE(1498), - [sym_template_string] = STATE(1498), - [sym_regex] = STATE(1498), - [sym_meta_property] = STATE(1498), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(946), - [sym_type_assertion] = STATE(1518), - [sym_as_expression] = STATE(1518), - [sym_internal_module] = STATE(1518), - [sym_type_arguments] = STATE(263), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2554), - [sym_identifier] = ACTIONS(869), - [anon_sym_export] = ACTIONS(675), - [anon_sym_namespace] = ACTIONS(677), - [anon_sym_LBRACE] = ACTIONS(1409), - [anon_sym_type] = ACTIONS(675), - [anon_sym_typeof] = ACTIONS(697), - [anon_sym_import] = ACTIONS(597), - [anon_sym_BANG] = ACTIONS(681), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(683), - [anon_sym_yield] = ACTIONS(685), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(601), - [anon_sym_async] = ACTIONS(689), - [anon_sym_function] = ACTIONS(605), - [anon_sym_new] = ACTIONS(875), - [anon_sym_PLUS] = ACTIONS(877), - [anon_sym_DASH] = ACTIONS(877), - [anon_sym_TILDE] = ACTIONS(681), - [anon_sym_void] = ACTIONS(697), - [anon_sym_delete] = ACTIONS(697), - [anon_sym_PLUS_PLUS] = ACTIONS(699), - [anon_sym_DASH_DASH] = ACTIONS(699), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(85), - [sym_number] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(675), - [anon_sym_get] = ACTIONS(675), - [anon_sym_set] = ACTIONS(675), - [anon_sym_declare] = ACTIONS(675), - [anon_sym_public] = ACTIONS(675), - [anon_sym_private] = ACTIONS(675), - [anon_sym_protected] = ACTIONS(675), - [anon_sym_module] = ACTIONS(675), - [anon_sym_any] = ACTIONS(675), - [anon_sym_number] = ACTIONS(675), - [anon_sym_boolean] = ACTIONS(675), - [anon_sym_string] = ACTIONS(675), - [anon_sym_symbol] = ACTIONS(675), - [sym_readonly] = ACTIONS(675), - }, - [232] = { - [sym_import] = STATE(1101), - [sym_statement_block] = STATE(1131), - [sym_parenthesized_expression] = STATE(921), - [sym__expression] = STATE(1236), - [sym_yield_expression] = STATE(1105), - [sym_object] = STATE(1531), - [sym_array] = STATE(1536), - [sym_class] = STATE(1101), - [sym_function] = STATE(1101), - [sym_generator_function] = STATE(1101), - [sym_arrow_function] = STATE(1101), - [sym__call_signature] = STATE(3170), - [sym_call_expression] = STATE(1101), - [sym_new_expression] = STATE(1105), - [sym_await_expression] = STATE(1105), - [sym_member_expression] = STATE(921), - [sym_subscript_expression] = STATE(921), - [sym_assignment_expression] = STATE(1105), - [sym__augmented_assignment_lhs] = STATE(1917), - [sym_augmented_assignment_expression] = STATE(1105), - [sym_ternary_expression] = STATE(1105), - [sym_binary_expression] = STATE(1105), - [sym_unary_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_string] = STATE(1101), - [sym_template_string] = STATE(1101), - [sym_regex] = STATE(1101), - [sym_meta_property] = STATE(1101), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(882), - [sym_type_assertion] = STATE(1105), - [sym_as_expression] = STATE(1105), - [sym_internal_module] = STATE(1105), - [sym_type_arguments] = STATE(355), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2497), - [sym_identifier] = ACTIONS(897), - [anon_sym_export] = ACTIONS(751), - [anon_sym_namespace] = ACTIONS(753), - [anon_sym_LBRACE] = ACTIONS(1332), - [anon_sym_type] = ACTIONS(751), - [anon_sym_typeof] = ACTIONS(775), + [246] = { + [sym_import] = STATE(1151), + [sym_parenthesized_expression] = STATE(759), + [sym__expression] = STATE(1471), + [sym_yield_expression] = STATE(1144), + [sym_object] = STATE(1257), + [sym_array] = STATE(1254), + [sym_class] = STATE(1151), + [sym_function] = STATE(1151), + [sym_generator_function] = STATE(1151), + [sym_arrow_function] = STATE(1151), + [sym__call_signature] = STATE(3082), + [sym_call_expression] = STATE(1151), + [sym_new_expression] = STATE(1144), + [sym_await_expression] = STATE(1144), + [sym_member_expression] = STATE(759), + [sym_subscript_expression] = STATE(759), + [sym_assignment_expression] = STATE(1144), + [sym__augmented_assignment_lhs] = STATE(1924), + [sym_augmented_assignment_expression] = STATE(1144), + [sym_ternary_expression] = STATE(1144), + [sym_binary_expression] = STATE(1144), + [sym_unary_expression] = STATE(1144), + [sym_update_expression] = STATE(1144), + [sym_sequence_expression] = STATE(3119), + [sym_string] = STATE(1151), + [sym_template_string] = STATE(1151), + [sym_regex] = STATE(1151), + [sym_meta_property] = STATE(1151), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(754), + [sym_type_assertion] = STATE(1144), + [sym_as_expression] = STATE(1144), + [sym_internal_module] = STATE(1144), + [sym_type_arguments] = STATE(326), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2580), + [sym_identifier] = ACTIONS(499), + [anon_sym_export] = ACTIONS(501), + [anon_sym_namespace] = ACTIONS(507), + [anon_sym_LBRACE] = ACTIONS(509), + [anon_sym_type] = ACTIONS(501), + [anon_sym_typeof] = ACTIONS(471), [anon_sym_import] = ACTIONS(435), - [anon_sym_BANG] = ACTIONS(757), + [anon_sym_BANG] = ACTIONS(437), [anon_sym_LPAREN] = ACTIONS(515), - [anon_sym_await] = ACTIONS(759), - [anon_sym_yield] = ACTIONS(761), + [anon_sym_await] = ACTIONS(443), + [anon_sym_yield] = ACTIONS(445), [anon_sym_LBRACK] = ACTIONS(517), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(765), + [anon_sym_SLASH] = ACTIONS(449), [anon_sym_class] = ACTIONS(451), - [anon_sym_async] = ACTIONS(767), + [anon_sym_async] = ACTIONS(521), [anon_sym_function] = ACTIONS(455), - [anon_sym_new] = ACTIONS(903), - [anon_sym_PLUS] = ACTIONS(905), - [anon_sym_DASH] = ACTIONS(905), - [anon_sym_TILDE] = ACTIONS(757), - [anon_sym_void] = ACTIONS(775), - [anon_sym_delete] = ACTIONS(775), - [anon_sym_PLUS_PLUS] = ACTIONS(777), - [anon_sym_DASH_DASH] = ACTIONS(777), + [anon_sym_new] = ACTIONS(523), + [anon_sym_PLUS] = ACTIONS(525), + [anon_sym_DASH] = ACTIONS(525), + [anon_sym_TILDE] = ACTIONS(437), + [anon_sym_void] = ACTIONS(471), + [anon_sym_delete] = ACTIONS(471), + [anon_sym_PLUS_PLUS] = ACTIONS(473), + [anon_sym_DASH_DASH] = ACTIONS(473), [anon_sym_DQUOTE] = ACTIONS(475), [anon_sym_SQUOTE] = ACTIONS(477), [sym_comment] = ACTIONS(3), @@ -34095,149 +35409,149 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(485), [sym_undefined] = ACTIONS(485), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(751), - [anon_sym_get] = ACTIONS(751), - [anon_sym_set] = ACTIONS(751), - [anon_sym_declare] = ACTIONS(751), - [anon_sym_public] = ACTIONS(751), - [anon_sym_private] = ACTIONS(751), - [anon_sym_protected] = ACTIONS(751), - [anon_sym_module] = ACTIONS(751), - [anon_sym_any] = ACTIONS(751), - [anon_sym_number] = ACTIONS(751), - [anon_sym_boolean] = ACTIONS(751), - [anon_sym_string] = ACTIONS(751), - [anon_sym_symbol] = ACTIONS(751), - [sym_readonly] = ACTIONS(751), - }, - [233] = { - [sym_import] = STATE(1101), - [sym_statement_block] = STATE(1131), - [sym_parenthesized_expression] = STATE(948), - [sym__expression] = STATE(1405), - [sym_yield_expression] = STATE(1105), - [sym_object] = STATE(1654), - [sym_array] = STATE(1640), - [sym_class] = STATE(1101), - [sym_function] = STATE(1101), - [sym_generator_function] = STATE(1101), - [sym_arrow_function] = STATE(1101), - [sym__call_signature] = STATE(3002), - [sym_call_expression] = STATE(1101), - [sym_new_expression] = STATE(1105), - [sym_await_expression] = STATE(1105), - [sym_member_expression] = STATE(948), - [sym_subscript_expression] = STATE(948), - [sym_assignment_expression] = STATE(1105), - [sym__augmented_assignment_lhs] = STATE(1921), - [sym_augmented_assignment_expression] = STATE(1105), - [sym_ternary_expression] = STATE(1105), - [sym_binary_expression] = STATE(1105), - [sym_unary_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_string] = STATE(1101), - [sym_template_string] = STATE(1101), - [sym_regex] = STATE(1101), - [sym_meta_property] = STATE(1101), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(949), - [sym_type_assertion] = STATE(1105), - [sym_as_expression] = STATE(1105), - [sym_internal_module] = STATE(1105), - [sym_type_arguments] = STATE(324), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2497), - [sym_identifier] = ACTIONS(859), - [anon_sym_export] = ACTIONS(635), - [anon_sym_namespace] = ACTIONS(637), - [anon_sym_LBRACE] = ACTIONS(1332), - [anon_sym_type] = ACTIONS(635), - [anon_sym_typeof] = ACTIONS(659), - [anon_sym_import] = ACTIONS(435), - [anon_sym_BANG] = ACTIONS(643), - [anon_sym_LPAREN] = ACTIONS(515), - [anon_sym_await] = ACTIONS(645), - [anon_sym_yield] = ACTIONS(647), - [anon_sym_LBRACK] = ACTIONS(517), + [anon_sym_static] = ACTIONS(501), + [anon_sym_get] = ACTIONS(501), + [anon_sym_set] = ACTIONS(501), + [anon_sym_declare] = ACTIONS(501), + [anon_sym_public] = ACTIONS(501), + [anon_sym_private] = ACTIONS(501), + [anon_sym_protected] = ACTIONS(501), + [anon_sym_module] = ACTIONS(501), + [anon_sym_any] = ACTIONS(501), + [anon_sym_number] = ACTIONS(501), + [anon_sym_boolean] = ACTIONS(501), + [anon_sym_string] = ACTIONS(501), + [anon_sym_symbol] = ACTIONS(501), + [sym_readonly] = ACTIONS(501), + }, + [247] = { + [sym_import] = STATE(1523), + [sym_statement_block] = STATE(1575), + [sym_parenthesized_expression] = STATE(768), + [sym__expression] = STATE(1145), + [sym_yield_expression] = STATE(1567), + [sym_object] = STATE(1357), + [sym_array] = STATE(1360), + [sym_class] = STATE(1523), + [sym_function] = STATE(1523), + [sym_generator_function] = STATE(1523), + [sym_arrow_function] = STATE(1523), + [sym__call_signature] = STATE(3196), + [sym_call_expression] = STATE(1523), + [sym_new_expression] = STATE(1567), + [sym_await_expression] = STATE(1567), + [sym_member_expression] = STATE(768), + [sym_subscript_expression] = STATE(768), + [sym_assignment_expression] = STATE(1567), + [sym__augmented_assignment_lhs] = STATE(1928), + [sym_augmented_assignment_expression] = STATE(1567), + [sym_ternary_expression] = STATE(1567), + [sym_binary_expression] = STATE(1567), + [sym_unary_expression] = STATE(1567), + [sym_update_expression] = STATE(1567), + [sym_string] = STATE(1523), + [sym_template_string] = STATE(1523), + [sym_regex] = STATE(1523), + [sym_meta_property] = STATE(1523), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(774), + [sym_type_assertion] = STATE(1567), + [sym_as_expression] = STATE(1567), + [sym_internal_module] = STATE(1567), + [sym_type_arguments] = STATE(292), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2575), + [sym_identifier] = ACTIONS(567), + [anon_sym_export] = ACTIONS(531), + [anon_sym_namespace] = ACTIONS(533), + [anon_sym_LBRACE] = ACTIONS(1332), + [anon_sym_type] = ACTIONS(531), + [anon_sym_typeof] = ACTIONS(19), + [anon_sym_import] = ACTIONS(539), + [anon_sym_BANG] = ACTIONS(29), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(39), + [anon_sym_yield] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(449), - [anon_sym_class] = ACTIONS(451), - [anon_sym_async] = ACTIONS(651), - [anon_sym_function] = ACTIONS(455), - [anon_sym_new] = ACTIONS(865), - [anon_sym_PLUS] = ACTIONS(867), - [anon_sym_DASH] = ACTIONS(867), - [anon_sym_TILDE] = ACTIONS(643), - [anon_sym_void] = ACTIONS(659), - [anon_sym_delete] = ACTIONS(659), - [anon_sym_PLUS_PLUS] = ACTIONS(661), - [anon_sym_DASH_DASH] = ACTIONS(661), - [anon_sym_DQUOTE] = ACTIONS(475), - [anon_sym_SQUOTE] = ACTIONS(477), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(545), + [anon_sym_async] = ACTIONS(547), + [anon_sym_function] = ACTIONS(549), + [anon_sym_new] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(29), + [anon_sym_void] = ACTIONS(19), + [anon_sym_delete] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_DQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(479), - [sym_number] = ACTIONS(527), - [sym_this] = ACTIONS(485), - [sym_super] = ACTIONS(485), - [sym_true] = ACTIONS(485), - [sym_false] = ACTIONS(485), - [sym_null] = ACTIONS(485), - [sym_undefined] = ACTIONS(485), + [anon_sym_BQUOTE] = ACTIONS(85), + [sym_number] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(635), - [anon_sym_get] = ACTIONS(635), - [anon_sym_set] = ACTIONS(635), - [anon_sym_declare] = ACTIONS(635), - [anon_sym_public] = ACTIONS(635), - [anon_sym_private] = ACTIONS(635), - [anon_sym_protected] = ACTIONS(635), - [anon_sym_module] = ACTIONS(635), - [anon_sym_any] = ACTIONS(635), - [anon_sym_number] = ACTIONS(635), - [anon_sym_boolean] = ACTIONS(635), - [anon_sym_string] = ACTIONS(635), - [anon_sym_symbol] = ACTIONS(635), - [sym_readonly] = ACTIONS(635), + [anon_sym_static] = ACTIONS(531), + [anon_sym_get] = ACTIONS(531), + [anon_sym_set] = ACTIONS(531), + [anon_sym_declare] = ACTIONS(531), + [anon_sym_public] = ACTIONS(531), + [anon_sym_private] = ACTIONS(531), + [anon_sym_protected] = ACTIONS(531), + [anon_sym_module] = ACTIONS(531), + [anon_sym_any] = ACTIONS(531), + [anon_sym_number] = ACTIONS(531), + [anon_sym_boolean] = ACTIONS(531), + [anon_sym_string] = ACTIONS(531), + [anon_sym_symbol] = ACTIONS(531), + [sym_readonly] = ACTIONS(531), }, - [234] = { - [sym_import] = STATE(1101), - [sym_parenthesized_expression] = STATE(739), - [sym__expression] = STATE(1175), - [sym_yield_expression] = STATE(1105), - [sym_object] = STATE(1297), - [sym_array] = STATE(1296), - [sym_class] = STATE(1101), - [sym_function] = STATE(1101), - [sym_generator_function] = STATE(1101), - [sym_arrow_function] = STATE(1101), - [sym__call_signature] = STATE(3116), - [sym_call_expression] = STATE(1101), - [sym_new_expression] = STATE(1105), - [sym_await_expression] = STATE(1105), - [sym_member_expression] = STATE(739), - [sym_subscript_expression] = STATE(739), - [sym_assignment_expression] = STATE(1105), - [sym__augmented_assignment_lhs] = STATE(1920), - [sym_augmented_assignment_expression] = STATE(1105), - [sym_ternary_expression] = STATE(1105), - [sym_binary_expression] = STATE(1105), - [sym_unary_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_sequence_expression] = STATE(3093), - [sym_string] = STATE(1101), - [sym_template_string] = STATE(1101), - [sym_regex] = STATE(1101), - [sym_meta_property] = STATE(1101), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(755), - [sym_type_assertion] = STATE(1105), - [sym_as_expression] = STATE(1105), - [sym_internal_module] = STATE(1105), - [sym_type_arguments] = STATE(361), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2497), + [248] = { + [sym_import] = STATE(1151), + [sym_parenthesized_expression] = STATE(759), + [sym__expression] = STATE(1340), + [sym_yield_expression] = STATE(1144), + [sym_object] = STATE(1257), + [sym_array] = STATE(1254), + [sym_class] = STATE(1151), + [sym_function] = STATE(1151), + [sym_generator_function] = STATE(1151), + [sym_arrow_function] = STATE(1151), + [sym__call_signature] = STATE(3082), + [sym_call_expression] = STATE(1151), + [sym_new_expression] = STATE(1144), + [sym_await_expression] = STATE(1144), + [sym_member_expression] = STATE(759), + [sym_subscript_expression] = STATE(759), + [sym_assignment_expression] = STATE(1144), + [sym__augmented_assignment_lhs] = STATE(1924), + [sym_augmented_assignment_expression] = STATE(1144), + [sym_ternary_expression] = STATE(1144), + [sym_binary_expression] = STATE(1144), + [sym_unary_expression] = STATE(1144), + [sym_update_expression] = STATE(1144), + [sym_sequence_expression] = STATE(3127), + [sym_string] = STATE(1151), + [sym_template_string] = STATE(1151), + [sym_regex] = STATE(1151), + [sym_meta_property] = STATE(1151), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(754), + [sym_type_assertion] = STATE(1144), + [sym_as_expression] = STATE(1144), + [sym_internal_module] = STATE(1144), + [sym_type_arguments] = STATE(326), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2580), [sym_identifier] = ACTIONS(499), [anon_sym_export] = ACTIONS(501), [anon_sym_namespace] = ACTIONS(507), @@ -34290,44 +35604,134 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(501), [sym_readonly] = ACTIONS(501), }, - [235] = { - [sym_import] = STATE(1101), - [sym_parenthesized_expression] = STATE(739), - [sym__expression] = STATE(1411), - [sym_yield_expression] = STATE(1105), - [sym_object] = STATE(1297), - [sym_array] = STATE(1296), - [sym_class] = STATE(1101), - [sym_function] = STATE(1101), - [sym_generator_function] = STATE(1101), - [sym_arrow_function] = STATE(1101), - [sym__call_signature] = STATE(3116), - [sym_call_expression] = STATE(1101), - [sym_new_expression] = STATE(1105), - [sym_await_expression] = STATE(1105), - [sym_member_expression] = STATE(739), - [sym_subscript_expression] = STATE(739), - [sym_assignment_expression] = STATE(1105), - [sym__augmented_assignment_lhs] = STATE(1920), - [sym_augmented_assignment_expression] = STATE(1105), - [sym_ternary_expression] = STATE(1105), - [sym_binary_expression] = STATE(1105), - [sym_unary_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_sequence_expression] = STATE(3013), - [sym_string] = STATE(1101), - [sym_template_string] = STATE(1101), - [sym_regex] = STATE(1101), - [sym_meta_property] = STATE(1101), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(755), - [sym_type_assertion] = STATE(1105), - [sym_as_expression] = STATE(1105), - [sym_internal_module] = STATE(1105), - [sym_type_arguments] = STATE(361), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2497), + [249] = { + [sym_import] = STATE(1523), + [sym_statement_block] = STATE(1484), + [sym_parenthesized_expression] = STATE(768), + [sym__expression] = STATE(1117), + [sym_yield_expression] = STATE(1567), + [sym_object] = STATE(1357), + [sym_array] = STATE(1360), + [sym_class] = STATE(1523), + [sym_function] = STATE(1523), + [sym_generator_function] = STATE(1523), + [sym_arrow_function] = STATE(1523), + [sym__call_signature] = STATE(3196), + [sym_call_expression] = STATE(1523), + [sym_new_expression] = STATE(1567), + [sym_await_expression] = STATE(1567), + [sym_member_expression] = STATE(768), + [sym_subscript_expression] = STATE(768), + [sym_assignment_expression] = STATE(1567), + [sym__augmented_assignment_lhs] = STATE(1928), + [sym_augmented_assignment_expression] = STATE(1567), + [sym_ternary_expression] = STATE(1567), + [sym_binary_expression] = STATE(1567), + [sym_unary_expression] = STATE(1567), + [sym_update_expression] = STATE(1567), + [sym_string] = STATE(1523), + [sym_template_string] = STATE(1523), + [sym_regex] = STATE(1523), + [sym_meta_property] = STATE(1523), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(774), + [sym_type_assertion] = STATE(1567), + [sym_as_expression] = STATE(1567), + [sym_internal_module] = STATE(1567), + [sym_type_arguments] = STATE(292), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2575), + [sym_identifier] = ACTIONS(567), + [anon_sym_export] = ACTIONS(531), + [anon_sym_namespace] = ACTIONS(533), + [anon_sym_LBRACE] = ACTIONS(1332), + [anon_sym_type] = ACTIONS(531), + [anon_sym_typeof] = ACTIONS(19), + [anon_sym_import] = ACTIONS(539), + [anon_sym_BANG] = ACTIONS(29), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(39), + [anon_sym_yield] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(545), + [anon_sym_async] = ACTIONS(547), + [anon_sym_function] = ACTIONS(549), + [anon_sym_new] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(29), + [anon_sym_void] = ACTIONS(19), + [anon_sym_delete] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_DQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(85), + [sym_number] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(531), + [anon_sym_get] = ACTIONS(531), + [anon_sym_set] = ACTIONS(531), + [anon_sym_declare] = ACTIONS(531), + [anon_sym_public] = ACTIONS(531), + [anon_sym_private] = ACTIONS(531), + [anon_sym_protected] = ACTIONS(531), + [anon_sym_module] = ACTIONS(531), + [anon_sym_any] = ACTIONS(531), + [anon_sym_number] = ACTIONS(531), + [anon_sym_boolean] = ACTIONS(531), + [anon_sym_string] = ACTIONS(531), + [anon_sym_symbol] = ACTIONS(531), + [sym_readonly] = ACTIONS(531), + }, + [250] = { + [sym_import] = STATE(1151), + [sym_parenthesized_expression] = STATE(759), + [sym__expression] = STATE(1323), + [sym_yield_expression] = STATE(1144), + [sym_object] = STATE(1257), + [sym_array] = STATE(1254), + [sym_class] = STATE(1151), + [sym_function] = STATE(1151), + [sym_generator_function] = STATE(1151), + [sym_arrow_function] = STATE(1151), + [sym__call_signature] = STATE(3082), + [sym_call_expression] = STATE(1151), + [sym_new_expression] = STATE(1144), + [sym_await_expression] = STATE(1144), + [sym_member_expression] = STATE(759), + [sym_subscript_expression] = STATE(759), + [sym_assignment_expression] = STATE(1144), + [sym__augmented_assignment_lhs] = STATE(1924), + [sym_augmented_assignment_expression] = STATE(1144), + [sym_ternary_expression] = STATE(1144), + [sym_binary_expression] = STATE(1144), + [sym_unary_expression] = STATE(1144), + [sym_update_expression] = STATE(1144), + [sym_sequence_expression] = STATE(3136), + [sym_string] = STATE(1151), + [sym_template_string] = STATE(1151), + [sym_regex] = STATE(1151), + [sym_meta_property] = STATE(1151), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(754), + [sym_type_assertion] = STATE(1144), + [sym_as_expression] = STATE(1144), + [sym_internal_module] = STATE(1144), + [sym_type_arguments] = STATE(326), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2580), [sym_identifier] = ACTIONS(499), [anon_sym_export] = ACTIONS(501), [anon_sym_namespace] = ACTIONS(507), @@ -34380,134 +35784,134 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(501), [sym_readonly] = ACTIONS(501), }, - [236] = { - [sym_import] = STATE(1498), - [sym_statement_block] = STATE(1572), - [sym_parenthesized_expression] = STATE(952), - [sym__expression] = STATE(1422), - [sym_yield_expression] = STATE(1518), - [sym_object] = STATE(1677), - [sym_array] = STATE(1671), - [sym_class] = STATE(1498), - [sym_function] = STATE(1498), - [sym_generator_function] = STATE(1498), - [sym_arrow_function] = STATE(1498), - [sym__call_signature] = STATE(3059), - [sym_call_expression] = STATE(1498), - [sym_new_expression] = STATE(1518), - [sym_await_expression] = STATE(1518), - [sym_member_expression] = STATE(952), - [sym_subscript_expression] = STATE(952), - [sym_assignment_expression] = STATE(1518), - [sym__augmented_assignment_lhs] = STATE(1919), - [sym_augmented_assignment_expression] = STATE(1518), - [sym_ternary_expression] = STATE(1518), - [sym_binary_expression] = STATE(1518), - [sym_unary_expression] = STATE(1518), - [sym_update_expression] = STATE(1518), - [sym_string] = STATE(1498), - [sym_template_string] = STATE(1498), - [sym_regex] = STATE(1498), - [sym_meta_property] = STATE(1498), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(946), - [sym_type_assertion] = STATE(1518), - [sym_as_expression] = STATE(1518), - [sym_internal_module] = STATE(1518), - [sym_type_arguments] = STATE(263), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2554), + [251] = { + [sym_import] = STATE(1690), + [sym_statement_block] = STATE(1698), + [sym_parenthesized_expression] = STATE(834), + [sym__expression] = STATE(1269), + [sym_yield_expression] = STATE(1687), + [sym_object] = STATE(1538), + [sym_array] = STATE(1543), + [sym_class] = STATE(1690), + [sym_function] = STATE(1690), + [sym_generator_function] = STATE(1690), + [sym_arrow_function] = STATE(1690), + [sym__call_signature] = STATE(3133), + [sym_call_expression] = STATE(1690), + [sym_new_expression] = STATE(1687), + [sym_await_expression] = STATE(1687), + [sym_member_expression] = STATE(834), + [sym_subscript_expression] = STATE(834), + [sym_assignment_expression] = STATE(1687), + [sym__augmented_assignment_lhs] = STATE(1921), + [sym_augmented_assignment_expression] = STATE(1687), + [sym_ternary_expression] = STATE(1687), + [sym_binary_expression] = STATE(1687), + [sym_unary_expression] = STATE(1687), + [sym_update_expression] = STATE(1687), + [sym_string] = STATE(1690), + [sym_template_string] = STATE(1690), + [sym_regex] = STATE(1690), + [sym_meta_property] = STATE(1690), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(846), + [sym_type_assertion] = STATE(1687), + [sym_as_expression] = STATE(1687), + [sym_internal_module] = STATE(1687), + [sym_type_arguments] = STATE(301), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2545), [sym_identifier] = ACTIONS(869), - [anon_sym_export] = ACTIONS(675), - [anon_sym_namespace] = ACTIONS(677), - [anon_sym_LBRACE] = ACTIONS(1409), - [anon_sym_type] = ACTIONS(675), - [anon_sym_typeof] = ACTIONS(697), - [anon_sym_import] = ACTIONS(597), - [anon_sym_BANG] = ACTIONS(681), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(683), - [anon_sym_yield] = ACTIONS(685), - [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_export] = ACTIONS(673), + [anon_sym_namespace] = ACTIONS(675), + [anon_sym_LBRACE] = ACTIONS(1368), + [anon_sym_type] = ACTIONS(673), + [anon_sym_typeof] = ACTIONS(707), + [anon_sym_import] = ACTIONS(681), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_await] = ACTIONS(687), + [anon_sym_yield] = ACTIONS(689), + [anon_sym_LBRACK] = ACTIONS(879), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(601), - [anon_sym_async] = ACTIONS(689), - [anon_sym_function] = ACTIONS(605), - [anon_sym_new] = ACTIONS(875), - [anon_sym_PLUS] = ACTIONS(877), - [anon_sym_DASH] = ACTIONS(877), - [anon_sym_TILDE] = ACTIONS(681), - [anon_sym_void] = ACTIONS(697), - [anon_sym_delete] = ACTIONS(697), - [anon_sym_PLUS_PLUS] = ACTIONS(699), - [anon_sym_DASH_DASH] = ACTIONS(699), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(85), - [sym_number] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), + [anon_sym_SLASH] = ACTIONS(693), + [anon_sym_class] = ACTIONS(695), + [anon_sym_async] = ACTIONS(697), + [anon_sym_function] = ACTIONS(699), + [anon_sym_new] = ACTIONS(881), + [anon_sym_PLUS] = ACTIONS(883), + [anon_sym_DASH] = ACTIONS(883), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_void] = ACTIONS(707), + [anon_sym_delete] = ACTIONS(707), + [anon_sym_PLUS_PLUS] = ACTIONS(709), + [anon_sym_DASH_DASH] = ACTIONS(709), + [anon_sym_DQUOTE] = ACTIONS(711), + [anon_sym_SQUOTE] = ACTIONS(713), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(715), + [sym_number] = ACTIONS(885), + [sym_this] = ACTIONS(721), + [sym_super] = ACTIONS(721), + [sym_true] = ACTIONS(721), + [sym_false] = ACTIONS(721), + [sym_null] = ACTIONS(721), + [sym_undefined] = ACTIONS(721), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(675), - [anon_sym_get] = ACTIONS(675), - [anon_sym_set] = ACTIONS(675), - [anon_sym_declare] = ACTIONS(675), - [anon_sym_public] = ACTIONS(675), - [anon_sym_private] = ACTIONS(675), - [anon_sym_protected] = ACTIONS(675), - [anon_sym_module] = ACTIONS(675), - [anon_sym_any] = ACTIONS(675), - [anon_sym_number] = ACTIONS(675), - [anon_sym_boolean] = ACTIONS(675), - [anon_sym_string] = ACTIONS(675), - [anon_sym_symbol] = ACTIONS(675), - [sym_readonly] = ACTIONS(675), + [anon_sym_static] = ACTIONS(673), + [anon_sym_get] = ACTIONS(673), + [anon_sym_set] = ACTIONS(673), + [anon_sym_declare] = ACTIONS(673), + [anon_sym_public] = ACTIONS(673), + [anon_sym_private] = ACTIONS(673), + [anon_sym_protected] = ACTIONS(673), + [anon_sym_module] = ACTIONS(673), + [anon_sym_any] = ACTIONS(673), + [anon_sym_number] = ACTIONS(673), + [anon_sym_boolean] = ACTIONS(673), + [anon_sym_string] = ACTIONS(673), + [anon_sym_symbol] = ACTIONS(673), + [sym_readonly] = ACTIONS(673), }, - [237] = { - [sym_import] = STATE(1101), - [sym_parenthesized_expression] = STATE(739), - [sym__expression] = STATE(1310), - [sym_yield_expression] = STATE(1105), - [sym_object] = STATE(1297), - [sym_array] = STATE(1296), - [sym_class] = STATE(1101), - [sym_function] = STATE(1101), - [sym_generator_function] = STATE(1101), - [sym_arrow_function] = STATE(1101), - [sym__call_signature] = STATE(3116), - [sym_call_expression] = STATE(1101), - [sym_new_expression] = STATE(1105), - [sym_await_expression] = STATE(1105), - [sym_member_expression] = STATE(739), - [sym_subscript_expression] = STATE(739), - [sym_assignment_expression] = STATE(1105), - [sym__augmented_assignment_lhs] = STATE(1920), - [sym_augmented_assignment_expression] = STATE(1105), - [sym_ternary_expression] = STATE(1105), - [sym_binary_expression] = STATE(1105), - [sym_unary_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_sequence_expression] = STATE(2995), - [sym_string] = STATE(1101), - [sym_template_string] = STATE(1101), - [sym_regex] = STATE(1101), - [sym_meta_property] = STATE(1101), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(755), - [sym_type_assertion] = STATE(1105), - [sym_as_expression] = STATE(1105), - [sym_internal_module] = STATE(1105), - [sym_type_arguments] = STATE(361), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2497), + [252] = { + [sym_import] = STATE(1151), + [sym_parenthesized_expression] = STATE(759), + [sym__expression] = STATE(1326), + [sym_yield_expression] = STATE(1144), + [sym_object] = STATE(1257), + [sym_array] = STATE(1254), + [sym_class] = STATE(1151), + [sym_function] = STATE(1151), + [sym_generator_function] = STATE(1151), + [sym_arrow_function] = STATE(1151), + [sym__call_signature] = STATE(3082), + [sym_call_expression] = STATE(1151), + [sym_new_expression] = STATE(1144), + [sym_await_expression] = STATE(1144), + [sym_member_expression] = STATE(759), + [sym_subscript_expression] = STATE(759), + [sym_assignment_expression] = STATE(1144), + [sym__augmented_assignment_lhs] = STATE(1924), + [sym_augmented_assignment_expression] = STATE(1144), + [sym_ternary_expression] = STATE(1144), + [sym_binary_expression] = STATE(1144), + [sym_unary_expression] = STATE(1144), + [sym_update_expression] = STATE(1144), + [sym_sequence_expression] = STATE(3135), + [sym_string] = STATE(1151), + [sym_template_string] = STATE(1151), + [sym_regex] = STATE(1151), + [sym_meta_property] = STATE(1151), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(754), + [sym_type_assertion] = STATE(1144), + [sym_as_expression] = STATE(1144), + [sym_internal_module] = STATE(1144), + [sym_type_arguments] = STATE(326), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2580), [sym_identifier] = ACTIONS(499), [anon_sym_export] = ACTIONS(501), [anon_sym_namespace] = ACTIONS(507), @@ -34560,51 +35964,141 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(501), [sym_readonly] = ACTIONS(501), }, - [238] = { - [sym_import] = STATE(1498), - [sym_statement_block] = STATE(1497), - [sym_parenthesized_expression] = STATE(764), - [sym__expression] = STATE(1126), - [sym_yield_expression] = STATE(1518), - [sym_object] = STATE(1435), - [sym_array] = STATE(1433), - [sym_class] = STATE(1498), - [sym_function] = STATE(1498), - [sym_generator_function] = STATE(1498), - [sym_arrow_function] = STATE(1498), - [sym__call_signature] = STATE(3145), - [sym_call_expression] = STATE(1498), - [sym_new_expression] = STATE(1518), - [sym_await_expression] = STATE(1518), - [sym_member_expression] = STATE(764), - [sym_subscript_expression] = STATE(764), - [sym_assignment_expression] = STATE(1518), + [253] = { + [sym_import] = STATE(1010), + [sym_parenthesized_expression] = STATE(659), + [sym__expression] = STATE(1661), + [sym_yield_expression] = STATE(1144), + [sym_object] = STATE(991), + [sym_array] = STATE(988), + [sym_class] = STATE(1010), + [sym_function] = STATE(1010), + [sym_generator_function] = STATE(1010), + [sym_arrow_function] = STATE(1010), + [sym__call_signature] = STATE(3082), + [sym_call_expression] = STATE(1010), + [sym_new_expression] = STATE(1144), + [sym_await_expression] = STATE(1144), + [sym_member_expression] = STATE(659), + [sym_subscript_expression] = STATE(659), + [sym_assignment_expression] = STATE(1144), [sym__augmented_assignment_lhs] = STATE(1925), - [sym_augmented_assignment_expression] = STATE(1518), - [sym_ternary_expression] = STATE(1518), - [sym_binary_expression] = STATE(1518), - [sym_unary_expression] = STATE(1518), - [sym_update_expression] = STATE(1518), - [sym_string] = STATE(1498), - [sym_template_string] = STATE(1498), - [sym_regex] = STATE(1498), - [sym_meta_property] = STATE(1498), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(772), - [sym_type_assertion] = STATE(1518), - [sym_as_expression] = STATE(1518), - [sym_internal_module] = STATE(1518), - [sym_type_arguments] = STATE(349), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2554), - [sym_identifier] = ACTIONS(587), - [anon_sym_export] = ACTIONS(589), - [anon_sym_namespace] = ACTIONS(593), - [anon_sym_LBRACE] = ACTIONS(1409), - [anon_sym_type] = ACTIONS(589), + [sym_augmented_assignment_expression] = STATE(1144), + [sym_ternary_expression] = STATE(1144), + [sym_binary_expression] = STATE(1144), + [sym_unary_expression] = STATE(1144), + [sym_update_expression] = STATE(1144), + [sym_string] = STATE(1010), + [sym_template_string] = STATE(1010), + [sym_regex] = STATE(1010), + [sym_meta_property] = STATE(1010), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(950), + [sym_type_assertion] = STATE(1144), + [sym_as_expression] = STATE(1144), + [sym_internal_module] = STATE(1144), + [sym_type_arguments] = STATE(395), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2580), + [sym_identifier] = ACTIONS(1423), + [anon_sym_export] = ACTIONS(1425), + [anon_sym_namespace] = ACTIONS(1427), + [anon_sym_LBRACE] = ACTIONS(509), + [anon_sym_type] = ACTIONS(1425), + [anon_sym_typeof] = ACTIONS(601), + [anon_sym_import] = ACTIONS(435), + [anon_sym_BANG] = ACTIONS(585), + [anon_sym_LPAREN] = ACTIONS(515), + [anon_sym_await] = ACTIONS(587), + [anon_sym_yield] = ACTIONS(589), + [anon_sym_LBRACK] = ACTIONS(517), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(449), + [anon_sym_DOT] = ACTIONS(1376), + [anon_sym_class] = ACTIONS(451), + [anon_sym_async] = ACTIONS(1429), + [anon_sym_function] = ACTIONS(455), + [anon_sym_new] = ACTIONS(903), + [anon_sym_PLUS] = ACTIONS(905), + [anon_sym_DASH] = ACTIONS(905), + [anon_sym_TILDE] = ACTIONS(585), + [anon_sym_void] = ACTIONS(601), + [anon_sym_delete] = ACTIONS(601), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_DQUOTE] = ACTIONS(475), + [anon_sym_SQUOTE] = ACTIONS(477), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(479), + [sym_number] = ACTIONS(1380), + [sym_this] = ACTIONS(1382), + [sym_super] = ACTIONS(1382), + [sym_true] = ACTIONS(1382), + [sym_false] = ACTIONS(1382), + [sym_null] = ACTIONS(1382), + [sym_undefined] = ACTIONS(1382), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(1425), + [anon_sym_get] = ACTIONS(1425), + [anon_sym_set] = ACTIONS(1425), + [anon_sym_declare] = ACTIONS(1425), + [anon_sym_public] = ACTIONS(1425), + [anon_sym_private] = ACTIONS(1425), + [anon_sym_protected] = ACTIONS(1425), + [anon_sym_module] = ACTIONS(1425), + [anon_sym_any] = ACTIONS(1425), + [anon_sym_number] = ACTIONS(1425), + [anon_sym_boolean] = ACTIONS(1425), + [anon_sym_string] = ACTIONS(1425), + [anon_sym_symbol] = ACTIONS(1425), + [sym_readonly] = ACTIONS(1425), + }, + [254] = { + [sym_import] = STATE(1523), + [sym_parenthesized_expression] = STATE(768), + [sym__expression] = STATE(1252), + [sym_yield_expression] = STATE(1567), + [sym_object] = STATE(1357), + [sym_array] = STATE(1360), + [sym_class] = STATE(1523), + [sym_function] = STATE(1523), + [sym_generator_function] = STATE(1523), + [sym_arrow_function] = STATE(1523), + [sym__call_signature] = STATE(3196), + [sym_call_expression] = STATE(1523), + [sym_new_expression] = STATE(1567), + [sym_await_expression] = STATE(1567), + [sym_member_expression] = STATE(768), + [sym_subscript_expression] = STATE(768), + [sym_assignment_expression] = STATE(1567), + [sym__augmented_assignment_lhs] = STATE(1928), + [sym_augmented_assignment_expression] = STATE(1567), + [sym_ternary_expression] = STATE(1567), + [sym_binary_expression] = STATE(1567), + [sym_unary_expression] = STATE(1567), + [sym_update_expression] = STATE(1567), + [sym_sequence_expression] = STATE(2885), + [sym_string] = STATE(1523), + [sym_template_string] = STATE(1523), + [sym_regex] = STATE(1523), + [sym_meta_property] = STATE(1523), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(774), + [sym_type_assertion] = STATE(1567), + [sym_as_expression] = STATE(1567), + [sym_internal_module] = STATE(1567), + [sym_type_arguments] = STATE(292), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2575), + [sym_identifier] = ACTIONS(567), + [anon_sym_export] = ACTIONS(531), + [anon_sym_namespace] = ACTIONS(533), + [anon_sym_LBRACE] = ACTIONS(571), + [anon_sym_type] = ACTIONS(531), [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(597), + [anon_sym_import] = ACTIONS(539), [anon_sym_BANG] = ACTIONS(29), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_await] = ACTIONS(39), @@ -34612,9 +36106,9 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(601), - [anon_sym_async] = ACTIONS(603), - [anon_sym_function] = ACTIONS(605), + [anon_sym_class] = ACTIONS(545), + [anon_sym_async] = ACTIONS(547), + [anon_sym_function] = ACTIONS(549), [anon_sym_new] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(77), [anon_sym_DASH] = ACTIONS(77), @@ -34635,84 +36129,173 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(589), - [anon_sym_get] = ACTIONS(589), - [anon_sym_set] = ACTIONS(589), - [anon_sym_declare] = ACTIONS(589), - [anon_sym_public] = ACTIONS(589), - [anon_sym_private] = ACTIONS(589), - [anon_sym_protected] = ACTIONS(589), - [anon_sym_module] = ACTIONS(589), - [anon_sym_any] = ACTIONS(589), - [anon_sym_number] = ACTIONS(589), - [anon_sym_boolean] = ACTIONS(589), - [anon_sym_string] = ACTIONS(589), - [anon_sym_symbol] = ACTIONS(589), - [sym_readonly] = ACTIONS(589), + [anon_sym_static] = ACTIONS(531), + [anon_sym_get] = ACTIONS(531), + [anon_sym_set] = ACTIONS(531), + [anon_sym_declare] = ACTIONS(531), + [anon_sym_public] = ACTIONS(531), + [anon_sym_private] = ACTIONS(531), + [anon_sym_protected] = ACTIONS(531), + [anon_sym_module] = ACTIONS(531), + [anon_sym_any] = ACTIONS(531), + [anon_sym_number] = ACTIONS(531), + [anon_sym_boolean] = ACTIONS(531), + [anon_sym_string] = ACTIONS(531), + [anon_sym_symbol] = ACTIONS(531), + [sym_readonly] = ACTIONS(531), }, - [239] = { - [sym_import] = STATE(1498), - [sym_statement_block] = STATE(1497), - [sym_parenthesized_expression] = STATE(952), - [sym__expression] = STATE(1467), - [sym_yield_expression] = STATE(1518), - [sym_object] = STATE(1677), - [sym_array] = STATE(1671), - [sym_class] = STATE(1498), - [sym_function] = STATE(1498), - [sym_generator_function] = STATE(1498), - [sym_arrow_function] = STATE(1498), - [sym__call_signature] = STATE(3059), - [sym_call_expression] = STATE(1498), - [sym_new_expression] = STATE(1518), - [sym_await_expression] = STATE(1518), - [sym_member_expression] = STATE(952), - [sym_subscript_expression] = STATE(952), - [sym_assignment_expression] = STATE(1518), - [sym__augmented_assignment_lhs] = STATE(1919), - [sym_augmented_assignment_expression] = STATE(1518), - [sym_ternary_expression] = STATE(1518), - [sym_binary_expression] = STATE(1518), - [sym_unary_expression] = STATE(1518), - [sym_update_expression] = STATE(1518), - [sym_string] = STATE(1498), - [sym_template_string] = STATE(1498), - [sym_regex] = STATE(1498), - [sym_meta_property] = STATE(1498), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(946), - [sym_type_assertion] = STATE(1518), - [sym_as_expression] = STATE(1518), - [sym_internal_module] = STATE(1518), - [sym_type_arguments] = STATE(263), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2554), - [sym_identifier] = ACTIONS(869), - [anon_sym_export] = ACTIONS(675), - [anon_sym_namespace] = ACTIONS(677), - [anon_sym_LBRACE] = ACTIONS(1409), - [anon_sym_type] = ACTIONS(675), - [anon_sym_typeof] = ACTIONS(697), - [anon_sym_import] = ACTIONS(597), - [anon_sym_BANG] = ACTIONS(681), + [255] = { + [sym_import] = STATE(1010), + [sym_parenthesized_expression] = STATE(659), + [sym__expression] = STATE(1661), + [sym_yield_expression] = STATE(1144), + [sym_object] = STATE(991), + [sym_array] = STATE(988), + [sym_class] = STATE(1010), + [sym_function] = STATE(1010), + [sym_generator_function] = STATE(1010), + [sym_arrow_function] = STATE(1010), + [sym__call_signature] = STATE(3024), + [sym_call_expression] = STATE(1010), + [sym_new_expression] = STATE(1144), + [sym_await_expression] = STATE(1144), + [sym_member_expression] = STATE(659), + [sym_subscript_expression] = STATE(659), + [sym_assignment_expression] = STATE(1144), + [sym__augmented_assignment_lhs] = STATE(1925), + [sym_augmented_assignment_expression] = STATE(1144), + [sym_ternary_expression] = STATE(1144), + [sym_binary_expression] = STATE(1144), + [sym_unary_expression] = STATE(1144), + [sym_update_expression] = STATE(1144), + [sym_string] = STATE(1010), + [sym_template_string] = STATE(1010), + [sym_regex] = STATE(1010), + [sym_meta_property] = STATE(1010), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(950), + [sym_type_assertion] = STATE(1144), + [sym_as_expression] = STATE(1144), + [sym_internal_module] = STATE(1144), + [sym_type_arguments] = STATE(395), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2580), + [sym_identifier] = ACTIONS(1407), + [anon_sym_export] = ACTIONS(1409), + [anon_sym_namespace] = ACTIONS(1411), + [anon_sym_LBRACE] = ACTIONS(509), + [anon_sym_type] = ACTIONS(1409), + [anon_sym_typeof] = ACTIONS(601), + [anon_sym_import] = ACTIONS(435), + [anon_sym_BANG] = ACTIONS(585), + [anon_sym_LPAREN] = ACTIONS(515), + [anon_sym_await] = ACTIONS(587), + [anon_sym_yield] = ACTIONS(589), + [anon_sym_LBRACK] = ACTIONS(517), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(449), + [anon_sym_DOT] = ACTIONS(1340), + [anon_sym_class] = ACTIONS(451), + [anon_sym_async] = ACTIONS(1413), + [anon_sym_function] = ACTIONS(455), + [anon_sym_new] = ACTIONS(903), + [anon_sym_PLUS] = ACTIONS(905), + [anon_sym_DASH] = ACTIONS(905), + [anon_sym_TILDE] = ACTIONS(585), + [anon_sym_void] = ACTIONS(601), + [anon_sym_delete] = ACTIONS(601), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_DQUOTE] = ACTIONS(475), + [anon_sym_SQUOTE] = ACTIONS(477), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(479), + [sym_number] = ACTIONS(1380), + [sym_this] = ACTIONS(1382), + [sym_super] = ACTIONS(1382), + [sym_true] = ACTIONS(1382), + [sym_false] = ACTIONS(1382), + [sym_null] = ACTIONS(1382), + [sym_undefined] = ACTIONS(1382), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(1409), + [anon_sym_get] = ACTIONS(1409), + [anon_sym_set] = ACTIONS(1409), + [anon_sym_declare] = ACTIONS(1409), + [anon_sym_public] = ACTIONS(1409), + [anon_sym_private] = ACTIONS(1409), + [anon_sym_protected] = ACTIONS(1409), + [anon_sym_module] = ACTIONS(1409), + [anon_sym_any] = ACTIONS(1409), + [anon_sym_number] = ACTIONS(1409), + [anon_sym_boolean] = ACTIONS(1409), + [anon_sym_string] = ACTIONS(1409), + [anon_sym_symbol] = ACTIONS(1409), + [sym_readonly] = ACTIONS(1409), + }, + [256] = { + [sym_import] = STATE(1523), + [sym_parenthesized_expression] = STATE(955), + [sym__expression] = STATE(1330), + [sym_yield_expression] = STATE(1567), + [sym_object] = STATE(1636), + [sym_array] = STATE(1643), + [sym_class] = STATE(1523), + [sym_function] = STATE(1523), + [sym_generator_function] = STATE(1523), + [sym_arrow_function] = STATE(1523), + [sym__call_signature] = STATE(3078), + [sym_call_expression] = STATE(1523), + [sym_new_expression] = STATE(1567), + [sym_await_expression] = STATE(1567), + [sym_member_expression] = STATE(955), + [sym_subscript_expression] = STATE(955), + [sym_assignment_expression] = STATE(1567), + [sym__augmented_assignment_lhs] = STATE(1929), + [sym_augmented_assignment_expression] = STATE(1567), + [sym_ternary_expression] = STATE(1567), + [sym_binary_expression] = STATE(1567), + [sym_unary_expression] = STATE(1567), + [sym_update_expression] = STATE(1567), + [sym_string] = STATE(1523), + [sym_template_string] = STATE(1523), + [sym_regex] = STATE(1523), + [sym_meta_property] = STATE(1523), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(953), + [sym_type_assertion] = STATE(1567), + [sym_as_expression] = STATE(1567), + [sym_internal_module] = STATE(1567), + [sym_type_arguments] = STATE(384), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2575), + [sym_identifier] = ACTIONS(887), + [anon_sym_export] = ACTIONS(635), + [anon_sym_namespace] = ACTIONS(637), + [anon_sym_LBRACE] = ACTIONS(571), + [anon_sym_type] = ACTIONS(635), + [anon_sym_typeof] = ACTIONS(657), + [anon_sym_import] = ACTIONS(539), + [anon_sym_BANG] = ACTIONS(641), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(683), - [anon_sym_yield] = ACTIONS(685), + [anon_sym_await] = ACTIONS(643), + [anon_sym_yield] = ACTIONS(645), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(601), - [anon_sym_async] = ACTIONS(689), - [anon_sym_function] = ACTIONS(605), - [anon_sym_new] = ACTIONS(875), - [anon_sym_PLUS] = ACTIONS(877), - [anon_sym_DASH] = ACTIONS(877), - [anon_sym_TILDE] = ACTIONS(681), - [anon_sym_void] = ACTIONS(697), - [anon_sym_delete] = ACTIONS(697), - [anon_sym_PLUS_PLUS] = ACTIONS(699), - [anon_sym_DASH_DASH] = ACTIONS(699), + [anon_sym_class] = ACTIONS(545), + [anon_sym_async] = ACTIONS(649), + [anon_sym_function] = ACTIONS(549), + [anon_sym_new] = ACTIONS(893), + [anon_sym_PLUS] = ACTIONS(895), + [anon_sym_DASH] = ACTIONS(895), + [anon_sym_TILDE] = ACTIONS(641), + [anon_sym_void] = ACTIONS(657), + [anon_sym_delete] = ACTIONS(657), + [anon_sym_PLUS_PLUS] = ACTIONS(659), + [anon_sym_DASH_DASH] = ACTIONS(659), [anon_sym_DQUOTE] = ACTIONS(81), [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), @@ -34725,59 +36308,147 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(675), - [anon_sym_get] = ACTIONS(675), - [anon_sym_set] = ACTIONS(675), - [anon_sym_declare] = ACTIONS(675), - [anon_sym_public] = ACTIONS(675), - [anon_sym_private] = ACTIONS(675), - [anon_sym_protected] = ACTIONS(675), - [anon_sym_module] = ACTIONS(675), - [anon_sym_any] = ACTIONS(675), - [anon_sym_number] = ACTIONS(675), - [anon_sym_boolean] = ACTIONS(675), - [anon_sym_string] = ACTIONS(675), - [anon_sym_symbol] = ACTIONS(675), - [sym_readonly] = ACTIONS(675), + [anon_sym_static] = ACTIONS(635), + [anon_sym_get] = ACTIONS(635), + [anon_sym_set] = ACTIONS(635), + [anon_sym_declare] = ACTIONS(635), + [anon_sym_public] = ACTIONS(635), + [anon_sym_private] = ACTIONS(635), + [anon_sym_protected] = ACTIONS(635), + [anon_sym_module] = ACTIONS(635), + [anon_sym_any] = ACTIONS(635), + [anon_sym_number] = ACTIONS(635), + [anon_sym_boolean] = ACTIONS(635), + [anon_sym_string] = ACTIONS(635), + [anon_sym_symbol] = ACTIONS(635), + [sym_readonly] = ACTIONS(635), + }, + [257] = { + [sym_import] = STATE(1690), + [sym_parenthesized_expression] = STATE(834), + [sym__expression] = STATE(1278), + [sym_yield_expression] = STATE(1687), + [sym_object] = STATE(1538), + [sym_array] = STATE(1543), + [sym_class] = STATE(1690), + [sym_function] = STATE(1690), + [sym_generator_function] = STATE(1690), + [sym_arrow_function] = STATE(1690), + [sym__call_signature] = STATE(3133), + [sym_call_expression] = STATE(1690), + [sym_new_expression] = STATE(1687), + [sym_await_expression] = STATE(1687), + [sym_member_expression] = STATE(834), + [sym_subscript_expression] = STATE(834), + [sym_assignment_expression] = STATE(1687), + [sym__augmented_assignment_lhs] = STATE(1921), + [sym_augmented_assignment_expression] = STATE(1687), + [sym_ternary_expression] = STATE(1687), + [sym_binary_expression] = STATE(1687), + [sym_unary_expression] = STATE(1687), + [sym_update_expression] = STATE(1687), + [sym_string] = STATE(1690), + [sym_template_string] = STATE(1690), + [sym_regex] = STATE(1690), + [sym_meta_property] = STATE(1690), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(846), + [sym_type_assertion] = STATE(1687), + [sym_as_expression] = STATE(1687), + [sym_internal_module] = STATE(1687), + [sym_type_arguments] = STATE(301), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2545), + [sym_identifier] = ACTIONS(869), + [anon_sym_export] = ACTIONS(673), + [anon_sym_namespace] = ACTIONS(675), + [anon_sym_LBRACE] = ACTIONS(1270), + [anon_sym_type] = ACTIONS(673), + [anon_sym_typeof] = ACTIONS(707), + [anon_sym_import] = ACTIONS(681), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_await] = ACTIONS(687), + [anon_sym_yield] = ACTIONS(689), + [anon_sym_LBRACK] = ACTIONS(879), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(693), + [anon_sym_class] = ACTIONS(695), + [anon_sym_async] = ACTIONS(697), + [anon_sym_function] = ACTIONS(699), + [anon_sym_new] = ACTIONS(881), + [anon_sym_PLUS] = ACTIONS(883), + [anon_sym_DASH] = ACTIONS(883), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_void] = ACTIONS(707), + [anon_sym_delete] = ACTIONS(707), + [anon_sym_PLUS_PLUS] = ACTIONS(709), + [anon_sym_DASH_DASH] = ACTIONS(709), + [anon_sym_DQUOTE] = ACTIONS(711), + [anon_sym_SQUOTE] = ACTIONS(713), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(715), + [sym_number] = ACTIONS(885), + [sym_this] = ACTIONS(721), + [sym_super] = ACTIONS(721), + [sym_true] = ACTIONS(721), + [sym_false] = ACTIONS(721), + [sym_null] = ACTIONS(721), + [sym_undefined] = ACTIONS(721), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(673), + [anon_sym_get] = ACTIONS(673), + [anon_sym_set] = ACTIONS(673), + [anon_sym_declare] = ACTIONS(673), + [anon_sym_public] = ACTIONS(673), + [anon_sym_private] = ACTIONS(673), + [anon_sym_protected] = ACTIONS(673), + [anon_sym_module] = ACTIONS(673), + [anon_sym_any] = ACTIONS(673), + [anon_sym_number] = ACTIONS(673), + [anon_sym_boolean] = ACTIONS(673), + [anon_sym_string] = ACTIONS(673), + [anon_sym_symbol] = ACTIONS(673), + [sym_readonly] = ACTIONS(673), }, - [240] = { - [sym_import] = STATE(1101), - [sym_parenthesized_expression] = STATE(739), - [sym__expression] = STATE(1468), - [sym_yield_expression] = STATE(1105), - [sym_object] = STATE(1297), - [sym_array] = STATE(1296), - [sym_class] = STATE(1101), - [sym_function] = STATE(1101), - [sym_generator_function] = STATE(1101), - [sym_arrow_function] = STATE(1101), - [sym__call_signature] = STATE(3116), - [sym_call_expression] = STATE(1101), - [sym_new_expression] = STATE(1105), - [sym_await_expression] = STATE(1105), - [sym_member_expression] = STATE(739), - [sym_subscript_expression] = STATE(739), - [sym_assignment_expression] = STATE(1105), - [sym__augmented_assignment_lhs] = STATE(1920), - [sym_augmented_assignment_expression] = STATE(1105), - [sym_ternary_expression] = STATE(1105), - [sym_binary_expression] = STATE(1105), - [sym_unary_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_sequence_expression] = STATE(3035), - [sym_string] = STATE(1101), - [sym_template_string] = STATE(1101), - [sym_regex] = STATE(1101), - [sym_meta_property] = STATE(1101), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(755), - [sym_type_assertion] = STATE(1105), - [sym_as_expression] = STATE(1105), - [sym_internal_module] = STATE(1105), - [sym_type_arguments] = STATE(361), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2497), + [258] = { + [sym_import] = STATE(1151), + [sym_parenthesized_expression] = STATE(759), + [sym__expression] = STATE(1454), + [sym_yield_expression] = STATE(1144), + [sym_object] = STATE(1257), + [sym_array] = STATE(1254), + [sym_class] = STATE(1151), + [sym_function] = STATE(1151), + [sym_generator_function] = STATE(1151), + [sym_arrow_function] = STATE(1151), + [sym__call_signature] = STATE(3082), + [sym_call_expression] = STATE(1151), + [sym_new_expression] = STATE(1144), + [sym_await_expression] = STATE(1144), + [sym_member_expression] = STATE(759), + [sym_subscript_expression] = STATE(759), + [sym_assignment_expression] = STATE(1144), + [sym__augmented_assignment_lhs] = STATE(1924), + [sym_augmented_assignment_expression] = STATE(1144), + [sym_ternary_expression] = STATE(1144), + [sym_binary_expression] = STATE(1144), + [sym_unary_expression] = STATE(1144), + [sym_update_expression] = STATE(1144), + [sym_string] = STATE(1151), + [sym_template_string] = STATE(1151), + [sym_regex] = STATE(1151), + [sym_meta_property] = STATE(1151), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(754), + [sym_type_assertion] = STATE(1144), + [sym_as_expression] = STATE(1144), + [sym_internal_module] = STATE(1144), + [sym_type_arguments] = STATE(326), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2580), [sym_identifier] = ACTIONS(499), [anon_sym_export] = ACTIONS(501), [anon_sym_namespace] = ACTIONS(507), @@ -34830,48 +36501,136 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(501), [sym_readonly] = ACTIONS(501), }, - [241] = { - [sym_import] = STATE(1101), - [sym_statement_block] = STATE(1131), - [sym_parenthesized_expression] = STATE(739), - [sym__expression] = STATE(1090), - [sym_yield_expression] = STATE(1105), - [sym_object] = STATE(1297), - [sym_array] = STATE(1296), - [sym_class] = STATE(1101), - [sym_function] = STATE(1101), - [sym_generator_function] = STATE(1101), - [sym_arrow_function] = STATE(1101), - [sym__call_signature] = STATE(3116), - [sym_call_expression] = STATE(1101), - [sym_new_expression] = STATE(1105), - [sym_await_expression] = STATE(1105), - [sym_member_expression] = STATE(739), - [sym_subscript_expression] = STATE(739), - [sym_assignment_expression] = STATE(1105), - [sym__augmented_assignment_lhs] = STATE(1920), - [sym_augmented_assignment_expression] = STATE(1105), - [sym_ternary_expression] = STATE(1105), - [sym_binary_expression] = STATE(1105), - [sym_unary_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_string] = STATE(1101), - [sym_template_string] = STATE(1101), - [sym_regex] = STATE(1101), - [sym_meta_property] = STATE(1101), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(755), - [sym_type_assertion] = STATE(1105), - [sym_as_expression] = STATE(1105), - [sym_internal_module] = STATE(1105), - [sym_type_arguments] = STATE(361), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2497), + [259] = { + [sym_import] = STATE(1151), + [sym_parenthesized_expression] = STATE(956), + [sym__expression] = STATE(1479), + [sym_yield_expression] = STATE(1144), + [sym_object] = STATE(1653), + [sym_array] = STATE(1660), + [sym_class] = STATE(1151), + [sym_function] = STATE(1151), + [sym_generator_function] = STATE(1151), + [sym_arrow_function] = STATE(1151), + [sym__call_signature] = STATE(3024), + [sym_call_expression] = STATE(1151), + [sym_new_expression] = STATE(1144), + [sym_await_expression] = STATE(1144), + [sym_member_expression] = STATE(956), + [sym_subscript_expression] = STATE(956), + [sym_assignment_expression] = STATE(1144), + [sym__augmented_assignment_lhs] = STATE(1925), + [sym_augmented_assignment_expression] = STATE(1144), + [sym_ternary_expression] = STATE(1144), + [sym_binary_expression] = STATE(1144), + [sym_unary_expression] = STATE(1144), + [sym_update_expression] = STATE(1144), + [sym_string] = STATE(1151), + [sym_template_string] = STATE(1151), + [sym_regex] = STATE(1151), + [sym_meta_property] = STATE(1151), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(950), + [sym_type_assertion] = STATE(1144), + [sym_as_expression] = STATE(1144), + [sym_internal_module] = STATE(1144), + [sym_type_arguments] = STATE(395), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2580), + [sym_identifier] = ACTIONS(897), + [anon_sym_export] = ACTIONS(577), + [anon_sym_namespace] = ACTIONS(579), + [anon_sym_LBRACE] = ACTIONS(509), + [anon_sym_type] = ACTIONS(577), + [anon_sym_typeof] = ACTIONS(601), + [anon_sym_import] = ACTIONS(435), + [anon_sym_BANG] = ACTIONS(585), + [anon_sym_LPAREN] = ACTIONS(515), + [anon_sym_await] = ACTIONS(587), + [anon_sym_yield] = ACTIONS(589), + [anon_sym_LBRACK] = ACTIONS(517), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(449), + [anon_sym_class] = ACTIONS(451), + [anon_sym_async] = ACTIONS(593), + [anon_sym_function] = ACTIONS(455), + [anon_sym_new] = ACTIONS(903), + [anon_sym_PLUS] = ACTIONS(905), + [anon_sym_DASH] = ACTIONS(905), + [anon_sym_TILDE] = ACTIONS(585), + [anon_sym_void] = ACTIONS(601), + [anon_sym_delete] = ACTIONS(601), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_DQUOTE] = ACTIONS(475), + [anon_sym_SQUOTE] = ACTIONS(477), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(479), + [sym_number] = ACTIONS(527), + [sym_this] = ACTIONS(485), + [sym_super] = ACTIONS(485), + [sym_true] = ACTIONS(485), + [sym_false] = ACTIONS(485), + [sym_null] = ACTIONS(485), + [sym_undefined] = ACTIONS(485), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(577), + [anon_sym_get] = ACTIONS(577), + [anon_sym_set] = ACTIONS(577), + [anon_sym_declare] = ACTIONS(577), + [anon_sym_public] = ACTIONS(577), + [anon_sym_private] = ACTIONS(577), + [anon_sym_protected] = ACTIONS(577), + [anon_sym_module] = ACTIONS(577), + [anon_sym_any] = ACTIONS(577), + [anon_sym_number] = ACTIONS(577), + [anon_sym_boolean] = ACTIONS(577), + [anon_sym_string] = ACTIONS(577), + [anon_sym_symbol] = ACTIONS(577), + [sym_readonly] = ACTIONS(577), + }, + [260] = { + [sym_import] = STATE(1151), + [sym_parenthesized_expression] = STATE(759), + [sym__expression] = STATE(1452), + [sym_yield_expression] = STATE(1144), + [sym_object] = STATE(1257), + [sym_array] = STATE(1254), + [sym_class] = STATE(1151), + [sym_function] = STATE(1151), + [sym_generator_function] = STATE(1151), + [sym_arrow_function] = STATE(1151), + [sym__call_signature] = STATE(3082), + [sym_call_expression] = STATE(1151), + [sym_new_expression] = STATE(1144), + [sym_await_expression] = STATE(1144), + [sym_member_expression] = STATE(759), + [sym_subscript_expression] = STATE(759), + [sym_assignment_expression] = STATE(1144), + [sym__augmented_assignment_lhs] = STATE(1924), + [sym_augmented_assignment_expression] = STATE(1144), + [sym_ternary_expression] = STATE(1144), + [sym_binary_expression] = STATE(1144), + [sym_unary_expression] = STATE(1144), + [sym_update_expression] = STATE(1144), + [sym_string] = STATE(1151), + [sym_template_string] = STATE(1151), + [sym_regex] = STATE(1151), + [sym_meta_property] = STATE(1151), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(754), + [sym_type_assertion] = STATE(1144), + [sym_as_expression] = STATE(1144), + [sym_internal_module] = STATE(1144), + [sym_type_arguments] = STATE(326), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2580), [sym_identifier] = ACTIONS(499), [anon_sym_export] = ACTIONS(501), [anon_sym_namespace] = ACTIONS(507), - [anon_sym_LBRACE] = ACTIONS(1332), + [anon_sym_LBRACE] = ACTIONS(509), [anon_sym_type] = ACTIONS(501), [anon_sym_typeof] = ACTIONS(471), [anon_sym_import] = ACTIONS(435), @@ -34920,44 +36679,221 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(501), [sym_readonly] = ACTIONS(501), }, - [242] = { - [sym_import] = STATE(1101), - [sym_parenthesized_expression] = STATE(739), - [sym__expression] = STATE(1384), - [sym_yield_expression] = STATE(1105), - [sym_object] = STATE(1297), - [sym_array] = STATE(1296), - [sym_class] = STATE(1101), - [sym_function] = STATE(1101), - [sym_generator_function] = STATE(1101), - [sym_arrow_function] = STATE(1101), - [sym__call_signature] = STATE(3116), - [sym_call_expression] = STATE(1101), - [sym_new_expression] = STATE(1105), - [sym_await_expression] = STATE(1105), - [sym_member_expression] = STATE(739), - [sym_subscript_expression] = STATE(739), - [sym_assignment_expression] = STATE(1105), - [sym__augmented_assignment_lhs] = STATE(1920), - [sym_augmented_assignment_expression] = STATE(1105), - [sym_ternary_expression] = STATE(1105), - [sym_binary_expression] = STATE(1105), - [sym_unary_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_sequence_expression] = STATE(3099), - [sym_string] = STATE(1101), - [sym_template_string] = STATE(1101), - [sym_regex] = STATE(1101), - [sym_meta_property] = STATE(1101), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(755), - [sym_type_assertion] = STATE(1105), - [sym_as_expression] = STATE(1105), - [sym_internal_module] = STATE(1105), - [sym_type_arguments] = STATE(361), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2497), + [261] = { + [sym_import] = STATE(1523), + [sym_parenthesized_expression] = STATE(768), + [sym__expression] = STATE(1164), + [sym_yield_expression] = STATE(1567), + [sym_object] = STATE(1357), + [sym_array] = STATE(1360), + [sym_class] = STATE(1523), + [sym_function] = STATE(1523), + [sym_generator_function] = STATE(1523), + [sym_arrow_function] = STATE(1523), + [sym__call_signature] = STATE(3196), + [sym_call_expression] = STATE(1523), + [sym_new_expression] = STATE(1567), + [sym_await_expression] = STATE(1567), + [sym_member_expression] = STATE(768), + [sym_subscript_expression] = STATE(768), + [sym_assignment_expression] = STATE(1567), + [sym__augmented_assignment_lhs] = STATE(1928), + [sym_augmented_assignment_expression] = STATE(1567), + [sym_ternary_expression] = STATE(1567), + [sym_binary_expression] = STATE(1567), + [sym_unary_expression] = STATE(1567), + [sym_update_expression] = STATE(1567), + [sym_string] = STATE(1523), + [sym_template_string] = STATE(1523), + [sym_regex] = STATE(1523), + [sym_meta_property] = STATE(1523), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(774), + [sym_type_assertion] = STATE(1567), + [sym_as_expression] = STATE(1567), + [sym_internal_module] = STATE(1567), + [sym_type_arguments] = STATE(292), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2575), + [sym_identifier] = ACTIONS(567), + [anon_sym_export] = ACTIONS(531), + [anon_sym_namespace] = ACTIONS(533), + [anon_sym_LBRACE] = ACTIONS(571), + [anon_sym_type] = ACTIONS(531), + [anon_sym_typeof] = ACTIONS(19), + [anon_sym_import] = ACTIONS(539), + [anon_sym_BANG] = ACTIONS(29), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(39), + [anon_sym_yield] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(545), + [anon_sym_async] = ACTIONS(547), + [anon_sym_function] = ACTIONS(549), + [anon_sym_new] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(29), + [anon_sym_void] = ACTIONS(19), + [anon_sym_delete] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_DQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(85), + [sym_number] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(531), + [anon_sym_get] = ACTIONS(531), + [anon_sym_set] = ACTIONS(531), + [anon_sym_declare] = ACTIONS(531), + [anon_sym_public] = ACTIONS(531), + [anon_sym_private] = ACTIONS(531), + [anon_sym_protected] = ACTIONS(531), + [anon_sym_module] = ACTIONS(531), + [anon_sym_any] = ACTIONS(531), + [anon_sym_number] = ACTIONS(531), + [anon_sym_boolean] = ACTIONS(531), + [anon_sym_string] = ACTIONS(531), + [anon_sym_symbol] = ACTIONS(531), + [sym_readonly] = ACTIONS(531), + }, + [262] = { + [sym_import] = STATE(1151), + [sym_parenthesized_expression] = STATE(837), + [sym__expression] = STATE(1246), + [sym_yield_expression] = STATE(1144), + [sym_object] = STATE(1495), + [sym_array] = STATE(1493), + [sym_class] = STATE(1151), + [sym_function] = STATE(1151), + [sym_generator_function] = STATE(1151), + [sym_arrow_function] = STATE(1151), + [sym__call_signature] = STATE(3190), + [sym_call_expression] = STATE(1151), + [sym_new_expression] = STATE(1144), + [sym_await_expression] = STATE(1144), + [sym_member_expression] = STATE(837), + [sym_subscript_expression] = STATE(837), + [sym_assignment_expression] = STATE(1144), + [sym__augmented_assignment_lhs] = STATE(1927), + [sym_augmented_assignment_expression] = STATE(1144), + [sym_ternary_expression] = STATE(1144), + [sym_binary_expression] = STATE(1144), + [sym_unary_expression] = STATE(1144), + [sym_update_expression] = STATE(1144), + [sym_string] = STATE(1151), + [sym_template_string] = STATE(1151), + [sym_regex] = STATE(1151), + [sym_meta_property] = STATE(1151), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(845), + [sym_type_assertion] = STATE(1144), + [sym_as_expression] = STATE(1144), + [sym_internal_module] = STATE(1144), + [sym_type_arguments] = STATE(357), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2580), + [sym_identifier] = ACTIONS(859), + [anon_sym_export] = ACTIONS(769), + [anon_sym_namespace] = ACTIONS(771), + [anon_sym_LBRACE] = ACTIONS(509), + [anon_sym_type] = ACTIONS(769), + [anon_sym_typeof] = ACTIONS(791), + [anon_sym_import] = ACTIONS(435), + [anon_sym_BANG] = ACTIONS(775), + [anon_sym_LPAREN] = ACTIONS(515), + [anon_sym_await] = ACTIONS(777), + [anon_sym_yield] = ACTIONS(779), + [anon_sym_LBRACK] = ACTIONS(517), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(781), + [anon_sym_class] = ACTIONS(451), + [anon_sym_async] = ACTIONS(783), + [anon_sym_function] = ACTIONS(455), + [anon_sym_new] = ACTIONS(865), + [anon_sym_PLUS] = ACTIONS(867), + [anon_sym_DASH] = ACTIONS(867), + [anon_sym_TILDE] = ACTIONS(775), + [anon_sym_void] = ACTIONS(791), + [anon_sym_delete] = ACTIONS(791), + [anon_sym_PLUS_PLUS] = ACTIONS(793), + [anon_sym_DASH_DASH] = ACTIONS(793), + [anon_sym_DQUOTE] = ACTIONS(475), + [anon_sym_SQUOTE] = ACTIONS(477), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(479), + [sym_number] = ACTIONS(527), + [sym_this] = ACTIONS(485), + [sym_super] = ACTIONS(485), + [sym_true] = ACTIONS(485), + [sym_false] = ACTIONS(485), + [sym_null] = ACTIONS(485), + [sym_undefined] = ACTIONS(485), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(769), + [anon_sym_get] = ACTIONS(769), + [anon_sym_set] = ACTIONS(769), + [anon_sym_declare] = ACTIONS(769), + [anon_sym_public] = ACTIONS(769), + [anon_sym_private] = ACTIONS(769), + [anon_sym_protected] = ACTIONS(769), + [anon_sym_module] = ACTIONS(769), + [anon_sym_any] = ACTIONS(769), + [anon_sym_number] = ACTIONS(769), + [anon_sym_boolean] = ACTIONS(769), + [anon_sym_string] = ACTIONS(769), + [anon_sym_symbol] = ACTIONS(769), + [sym_readonly] = ACTIONS(769), + }, + [263] = { + [sym_import] = STATE(1151), + [sym_parenthesized_expression] = STATE(759), + [sym__expression] = STATE(1092), + [sym_yield_expression] = STATE(1144), + [sym_object] = STATE(1257), + [sym_array] = STATE(1254), + [sym_class] = STATE(1151), + [sym_function] = STATE(1151), + [sym_generator_function] = STATE(1151), + [sym_arrow_function] = STATE(1151), + [sym__call_signature] = STATE(3082), + [sym_call_expression] = STATE(1151), + [sym_new_expression] = STATE(1144), + [sym_await_expression] = STATE(1144), + [sym_member_expression] = STATE(759), + [sym_subscript_expression] = STATE(759), + [sym_assignment_expression] = STATE(1144), + [sym__augmented_assignment_lhs] = STATE(1924), + [sym_augmented_assignment_expression] = STATE(1144), + [sym_ternary_expression] = STATE(1144), + [sym_binary_expression] = STATE(1144), + [sym_unary_expression] = STATE(1144), + [sym_update_expression] = STATE(1144), + [sym_string] = STATE(1151), + [sym_template_string] = STATE(1151), + [sym_regex] = STATE(1151), + [sym_meta_property] = STATE(1151), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(754), + [sym_type_assertion] = STATE(1144), + [sym_as_expression] = STATE(1144), + [sym_internal_module] = STATE(1144), + [sym_type_arguments] = STATE(326), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2580), [sym_identifier] = ACTIONS(499), [anon_sym_export] = ACTIONS(501), [anon_sym_namespace] = ACTIONS(507), @@ -35010,44 +36946,43 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(501), [sym_readonly] = ACTIONS(501), }, - [243] = { - [sym_import] = STATE(1101), - [sym_parenthesized_expression] = STATE(739), - [sym__expression] = STATE(1381), - [sym_yield_expression] = STATE(1105), - [sym_object] = STATE(1297), - [sym_array] = STATE(1296), - [sym_class] = STATE(1101), - [sym_function] = STATE(1101), - [sym_generator_function] = STATE(1101), - [sym_arrow_function] = STATE(1101), - [sym__call_signature] = STATE(3116), - [sym_call_expression] = STATE(1101), - [sym_new_expression] = STATE(1105), - [sym_await_expression] = STATE(1105), - [sym_member_expression] = STATE(739), - [sym_subscript_expression] = STATE(739), - [sym_assignment_expression] = STATE(1105), - [sym__augmented_assignment_lhs] = STATE(1920), - [sym_augmented_assignment_expression] = STATE(1105), - [sym_ternary_expression] = STATE(1105), - [sym_binary_expression] = STATE(1105), - [sym_unary_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_sequence_expression] = STATE(3098), - [sym_string] = STATE(1101), - [sym_template_string] = STATE(1101), - [sym_regex] = STATE(1101), - [sym_meta_property] = STATE(1101), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(755), - [sym_type_assertion] = STATE(1105), - [sym_as_expression] = STATE(1105), - [sym_internal_module] = STATE(1105), - [sym_type_arguments] = STATE(361), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2497), + [264] = { + [sym_import] = STATE(1151), + [sym_parenthesized_expression] = STATE(759), + [sym__expression] = STATE(1090), + [sym_yield_expression] = STATE(1144), + [sym_object] = STATE(1257), + [sym_array] = STATE(1254), + [sym_class] = STATE(1151), + [sym_function] = STATE(1151), + [sym_generator_function] = STATE(1151), + [sym_arrow_function] = STATE(1151), + [sym__call_signature] = STATE(3082), + [sym_call_expression] = STATE(1151), + [sym_new_expression] = STATE(1144), + [sym_await_expression] = STATE(1144), + [sym_member_expression] = STATE(759), + [sym_subscript_expression] = STATE(759), + [sym_assignment_expression] = STATE(1144), + [sym__augmented_assignment_lhs] = STATE(1924), + [sym_augmented_assignment_expression] = STATE(1144), + [sym_ternary_expression] = STATE(1144), + [sym_binary_expression] = STATE(1144), + [sym_unary_expression] = STATE(1144), + [sym_update_expression] = STATE(1144), + [sym_string] = STATE(1151), + [sym_template_string] = STATE(1151), + [sym_regex] = STATE(1151), + [sym_meta_property] = STATE(1151), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(754), + [sym_type_assertion] = STATE(1144), + [sym_as_expression] = STATE(1144), + [sym_internal_module] = STATE(1144), + [sym_type_arguments] = STATE(326), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2580), [sym_identifier] = ACTIONS(499), [anon_sym_export] = ACTIONS(501), [anon_sym_namespace] = ACTIONS(507), @@ -35100,51 +37035,228 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(501), [sym_readonly] = ACTIONS(501), }, - [244] = { - [sym_import] = STATE(1498), - [sym_parenthesized_expression] = STATE(764), - [sym__expression] = STATE(1290), - [sym_yield_expression] = STATE(1518), - [sym_object] = STATE(1435), - [sym_array] = STATE(1433), - [sym_class] = STATE(1498), - [sym_function] = STATE(1498), - [sym_generator_function] = STATE(1498), - [sym_arrow_function] = STATE(1498), - [sym__call_signature] = STATE(3145), - [sym_call_expression] = STATE(1498), - [sym_new_expression] = STATE(1518), - [sym_await_expression] = STATE(1518), - [sym_member_expression] = STATE(764), - [sym_subscript_expression] = STATE(764), - [sym_assignment_expression] = STATE(1518), - [sym__augmented_assignment_lhs] = STATE(1925), - [sym_augmented_assignment_expression] = STATE(1518), - [sym_ternary_expression] = STATE(1518), - [sym_binary_expression] = STATE(1518), - [sym_unary_expression] = STATE(1518), - [sym_update_expression] = STATE(1518), - [sym_sequence_expression] = STATE(2986), - [sym_string] = STATE(1498), - [sym_template_string] = STATE(1498), - [sym_regex] = STATE(1498), - [sym_meta_property] = STATE(1498), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(772), - [sym_type_assertion] = STATE(1518), - [sym_as_expression] = STATE(1518), - [sym_internal_module] = STATE(1518), - [sym_type_arguments] = STATE(349), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2554), - [sym_identifier] = ACTIONS(587), - [anon_sym_export] = ACTIONS(589), - [anon_sym_namespace] = ACTIONS(593), - [anon_sym_LBRACE] = ACTIONS(595), - [anon_sym_type] = ACTIONS(589), + [265] = { + [sym_import] = STATE(1151), + [sym_parenthesized_expression] = STATE(837), + [sym__expression] = STATE(1213), + [sym_yield_expression] = STATE(1144), + [sym_object] = STATE(1495), + [sym_array] = STATE(1493), + [sym_class] = STATE(1151), + [sym_function] = STATE(1151), + [sym_generator_function] = STATE(1151), + [sym_arrow_function] = STATE(1151), + [sym__call_signature] = STATE(3190), + [sym_call_expression] = STATE(1151), + [sym_new_expression] = STATE(1144), + [sym_await_expression] = STATE(1144), + [sym_member_expression] = STATE(837), + [sym_subscript_expression] = STATE(837), + [sym_assignment_expression] = STATE(1144), + [sym__augmented_assignment_lhs] = STATE(1927), + [sym_augmented_assignment_expression] = STATE(1144), + [sym_ternary_expression] = STATE(1144), + [sym_binary_expression] = STATE(1144), + [sym_unary_expression] = STATE(1144), + [sym_update_expression] = STATE(1144), + [sym_string] = STATE(1151), + [sym_template_string] = STATE(1151), + [sym_regex] = STATE(1151), + [sym_meta_property] = STATE(1151), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(845), + [sym_type_assertion] = STATE(1144), + [sym_as_expression] = STATE(1144), + [sym_internal_module] = STATE(1144), + [sym_type_arguments] = STATE(357), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2580), + [sym_identifier] = ACTIONS(859), + [anon_sym_export] = ACTIONS(769), + [anon_sym_namespace] = ACTIONS(771), + [anon_sym_LBRACE] = ACTIONS(509), + [anon_sym_type] = ACTIONS(769), + [anon_sym_typeof] = ACTIONS(791), + [anon_sym_import] = ACTIONS(435), + [anon_sym_BANG] = ACTIONS(775), + [anon_sym_LPAREN] = ACTIONS(515), + [anon_sym_await] = ACTIONS(777), + [anon_sym_yield] = ACTIONS(779), + [anon_sym_LBRACK] = ACTIONS(517), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(781), + [anon_sym_class] = ACTIONS(451), + [anon_sym_async] = ACTIONS(783), + [anon_sym_function] = ACTIONS(455), + [anon_sym_new] = ACTIONS(865), + [anon_sym_PLUS] = ACTIONS(867), + [anon_sym_DASH] = ACTIONS(867), + [anon_sym_TILDE] = ACTIONS(775), + [anon_sym_void] = ACTIONS(791), + [anon_sym_delete] = ACTIONS(791), + [anon_sym_PLUS_PLUS] = ACTIONS(793), + [anon_sym_DASH_DASH] = ACTIONS(793), + [anon_sym_DQUOTE] = ACTIONS(475), + [anon_sym_SQUOTE] = ACTIONS(477), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(479), + [sym_number] = ACTIONS(527), + [sym_this] = ACTIONS(485), + [sym_super] = ACTIONS(485), + [sym_true] = ACTIONS(485), + [sym_false] = ACTIONS(485), + [sym_null] = ACTIONS(485), + [sym_undefined] = ACTIONS(485), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(769), + [anon_sym_get] = ACTIONS(769), + [anon_sym_set] = ACTIONS(769), + [anon_sym_declare] = ACTIONS(769), + [anon_sym_public] = ACTIONS(769), + [anon_sym_private] = ACTIONS(769), + [anon_sym_protected] = ACTIONS(769), + [anon_sym_module] = ACTIONS(769), + [anon_sym_any] = ACTIONS(769), + [anon_sym_number] = ACTIONS(769), + [anon_sym_boolean] = ACTIONS(769), + [anon_sym_string] = ACTIONS(769), + [anon_sym_symbol] = ACTIONS(769), + [sym_readonly] = ACTIONS(769), + }, + [266] = { + [sym_import] = STATE(1151), + [sym_parenthesized_expression] = STATE(759), + [sym__expression] = STATE(1083), + [sym_yield_expression] = STATE(1144), + [sym_object] = STATE(1257), + [sym_array] = STATE(1254), + [sym_class] = STATE(1151), + [sym_function] = STATE(1151), + [sym_generator_function] = STATE(1151), + [sym_arrow_function] = STATE(1151), + [sym__call_signature] = STATE(3082), + [sym_call_expression] = STATE(1151), + [sym_new_expression] = STATE(1144), + [sym_await_expression] = STATE(1144), + [sym_member_expression] = STATE(759), + [sym_subscript_expression] = STATE(759), + [sym_assignment_expression] = STATE(1144), + [sym__augmented_assignment_lhs] = STATE(1924), + [sym_augmented_assignment_expression] = STATE(1144), + [sym_ternary_expression] = STATE(1144), + [sym_binary_expression] = STATE(1144), + [sym_unary_expression] = STATE(1144), + [sym_update_expression] = STATE(1144), + [sym_string] = STATE(1151), + [sym_template_string] = STATE(1151), + [sym_regex] = STATE(1151), + [sym_meta_property] = STATE(1151), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(754), + [sym_type_assertion] = STATE(1144), + [sym_as_expression] = STATE(1144), + [sym_internal_module] = STATE(1144), + [sym_type_arguments] = STATE(326), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2580), + [sym_identifier] = ACTIONS(499), + [anon_sym_export] = ACTIONS(501), + [anon_sym_namespace] = ACTIONS(507), + [anon_sym_LBRACE] = ACTIONS(509), + [anon_sym_type] = ACTIONS(501), + [anon_sym_typeof] = ACTIONS(471), + [anon_sym_import] = ACTIONS(435), + [anon_sym_BANG] = ACTIONS(437), + [anon_sym_LPAREN] = ACTIONS(515), + [anon_sym_await] = ACTIONS(443), + [anon_sym_yield] = ACTIONS(445), + [anon_sym_LBRACK] = ACTIONS(517), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(449), + [anon_sym_class] = ACTIONS(451), + [anon_sym_async] = ACTIONS(521), + [anon_sym_function] = ACTIONS(455), + [anon_sym_new] = ACTIONS(523), + [anon_sym_PLUS] = ACTIONS(525), + [anon_sym_DASH] = ACTIONS(525), + [anon_sym_TILDE] = ACTIONS(437), + [anon_sym_void] = ACTIONS(471), + [anon_sym_delete] = ACTIONS(471), + [anon_sym_PLUS_PLUS] = ACTIONS(473), + [anon_sym_DASH_DASH] = ACTIONS(473), + [anon_sym_DQUOTE] = ACTIONS(475), + [anon_sym_SQUOTE] = ACTIONS(477), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(479), + [sym_number] = ACTIONS(527), + [sym_this] = ACTIONS(485), + [sym_super] = ACTIONS(485), + [sym_true] = ACTIONS(485), + [sym_false] = ACTIONS(485), + [sym_null] = ACTIONS(485), + [sym_undefined] = ACTIONS(485), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(501), + [anon_sym_get] = ACTIONS(501), + [anon_sym_set] = ACTIONS(501), + [anon_sym_declare] = ACTIONS(501), + [anon_sym_public] = ACTIONS(501), + [anon_sym_private] = ACTIONS(501), + [anon_sym_protected] = ACTIONS(501), + [anon_sym_module] = ACTIONS(501), + [anon_sym_any] = ACTIONS(501), + [anon_sym_number] = ACTIONS(501), + [anon_sym_boolean] = ACTIONS(501), + [anon_sym_string] = ACTIONS(501), + [anon_sym_symbol] = ACTIONS(501), + [sym_readonly] = ACTIONS(501), + }, + [267] = { + [sym_import] = STATE(1523), + [sym_parenthesized_expression] = STATE(768), + [sym__expression] = STATE(1156), + [sym_yield_expression] = STATE(1567), + [sym_object] = STATE(1357), + [sym_array] = STATE(1360), + [sym_class] = STATE(1523), + [sym_function] = STATE(1523), + [sym_generator_function] = STATE(1523), + [sym_arrow_function] = STATE(1523), + [sym__call_signature] = STATE(3196), + [sym_call_expression] = STATE(1523), + [sym_new_expression] = STATE(1567), + [sym_await_expression] = STATE(1567), + [sym_member_expression] = STATE(768), + [sym_subscript_expression] = STATE(768), + [sym_assignment_expression] = STATE(1567), + [sym__augmented_assignment_lhs] = STATE(1928), + [sym_augmented_assignment_expression] = STATE(1567), + [sym_ternary_expression] = STATE(1567), + [sym_binary_expression] = STATE(1567), + [sym_unary_expression] = STATE(1567), + [sym_update_expression] = STATE(1567), + [sym_string] = STATE(1523), + [sym_template_string] = STATE(1523), + [sym_regex] = STATE(1523), + [sym_meta_property] = STATE(1523), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(774), + [sym_type_assertion] = STATE(1567), + [sym_as_expression] = STATE(1567), + [sym_internal_module] = STATE(1567), + [sym_type_arguments] = STATE(292), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2575), + [sym_identifier] = ACTIONS(567), + [anon_sym_export] = ACTIONS(531), + [anon_sym_namespace] = ACTIONS(533), + [anon_sym_LBRACE] = ACTIONS(571), + [anon_sym_type] = ACTIONS(531), [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(597), + [anon_sym_import] = ACTIONS(539), [anon_sym_BANG] = ACTIONS(29), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_await] = ACTIONS(39), @@ -35152,9 +37264,9 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(601), - [anon_sym_async] = ACTIONS(603), - [anon_sym_function] = ACTIONS(605), + [anon_sym_class] = ACTIONS(545), + [anon_sym_async] = ACTIONS(547), + [anon_sym_function] = ACTIONS(549), [anon_sym_new] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(77), [anon_sym_DASH] = ACTIONS(77), @@ -35175,59 +37287,58 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(589), - [anon_sym_get] = ACTIONS(589), - [anon_sym_set] = ACTIONS(589), - [anon_sym_declare] = ACTIONS(589), - [anon_sym_public] = ACTIONS(589), - [anon_sym_private] = ACTIONS(589), - [anon_sym_protected] = ACTIONS(589), - [anon_sym_module] = ACTIONS(589), - [anon_sym_any] = ACTIONS(589), - [anon_sym_number] = ACTIONS(589), - [anon_sym_boolean] = ACTIONS(589), - [anon_sym_string] = ACTIONS(589), - [anon_sym_symbol] = ACTIONS(589), - [sym_readonly] = ACTIONS(589), + [anon_sym_static] = ACTIONS(531), + [anon_sym_get] = ACTIONS(531), + [anon_sym_set] = ACTIONS(531), + [anon_sym_declare] = ACTIONS(531), + [anon_sym_public] = ACTIONS(531), + [anon_sym_private] = ACTIONS(531), + [anon_sym_protected] = ACTIONS(531), + [anon_sym_module] = ACTIONS(531), + [anon_sym_any] = ACTIONS(531), + [anon_sym_number] = ACTIONS(531), + [anon_sym_boolean] = ACTIONS(531), + [anon_sym_string] = ACTIONS(531), + [anon_sym_symbol] = ACTIONS(531), + [sym_readonly] = ACTIONS(531), }, - [245] = { - [sym_import] = STATE(1101), - [sym_parenthesized_expression] = STATE(739), - [sym__expression] = STATE(1377), - [sym_yield_expression] = STATE(1105), - [sym_object] = STATE(1297), - [sym_array] = STATE(1296), - [sym_class] = STATE(1101), - [sym_function] = STATE(1101), - [sym_generator_function] = STATE(1101), - [sym_arrow_function] = STATE(1101), - [sym__call_signature] = STATE(3116), - [sym_call_expression] = STATE(1101), - [sym_new_expression] = STATE(1105), - [sym_await_expression] = STATE(1105), - [sym_member_expression] = STATE(739), - [sym_subscript_expression] = STATE(739), - [sym_assignment_expression] = STATE(1105), - [sym__augmented_assignment_lhs] = STATE(1920), - [sym_augmented_assignment_expression] = STATE(1105), - [sym_ternary_expression] = STATE(1105), - [sym_binary_expression] = STATE(1105), - [sym_unary_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_sequence_expression] = STATE(3092), - [sym_string] = STATE(1101), - [sym_template_string] = STATE(1101), - [sym_regex] = STATE(1101), - [sym_meta_property] = STATE(1101), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(755), - [sym_type_assertion] = STATE(1105), - [sym_as_expression] = STATE(1105), - [sym_internal_module] = STATE(1105), - [sym_type_arguments] = STATE(361), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2497), + [268] = { + [sym_import] = STATE(1151), + [sym_parenthesized_expression] = STATE(759), + [sym__expression] = STATE(1082), + [sym_yield_expression] = STATE(1144), + [sym_object] = STATE(1257), + [sym_array] = STATE(1254), + [sym_class] = STATE(1151), + [sym_function] = STATE(1151), + [sym_generator_function] = STATE(1151), + [sym_arrow_function] = STATE(1151), + [sym__call_signature] = STATE(3082), + [sym_call_expression] = STATE(1151), + [sym_new_expression] = STATE(1144), + [sym_await_expression] = STATE(1144), + [sym_member_expression] = STATE(759), + [sym_subscript_expression] = STATE(759), + [sym_assignment_expression] = STATE(1144), + [sym__augmented_assignment_lhs] = STATE(1924), + [sym_augmented_assignment_expression] = STATE(1144), + [sym_ternary_expression] = STATE(1144), + [sym_binary_expression] = STATE(1144), + [sym_unary_expression] = STATE(1144), + [sym_update_expression] = STATE(1144), + [sym_string] = STATE(1151), + [sym_template_string] = STATE(1151), + [sym_regex] = STATE(1151), + [sym_meta_property] = STATE(1151), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(754), + [sym_type_assertion] = STATE(1144), + [sym_as_expression] = STATE(1144), + [sym_internal_module] = STATE(1144), + [sym_type_arguments] = STATE(326), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2580), [sym_identifier] = ACTIONS(499), [anon_sym_export] = ACTIONS(501), [anon_sym_namespace] = ACTIONS(507), @@ -35280,236 +37391,55 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(501), [sym_readonly] = ACTIONS(501), }, - [246] = { - [sym_import] = STATE(1498), - [sym_statement_block] = STATE(1543), - [sym_parenthesized_expression] = STATE(952), - [sym__expression] = STATE(1309), - [sym_yield_expression] = STATE(1518), - [sym_object] = STATE(1677), - [sym_array] = STATE(1671), - [sym_class] = STATE(1498), - [sym_function] = STATE(1498), - [sym_generator_function] = STATE(1498), - [sym_arrow_function] = STATE(1498), - [sym__call_signature] = STATE(3059), - [sym_call_expression] = STATE(1498), - [sym_new_expression] = STATE(1518), - [sym_await_expression] = STATE(1518), - [sym_member_expression] = STATE(952), - [sym_subscript_expression] = STATE(952), - [sym_assignment_expression] = STATE(1518), - [sym__augmented_assignment_lhs] = STATE(1919), - [sym_augmented_assignment_expression] = STATE(1518), - [sym_ternary_expression] = STATE(1518), - [sym_binary_expression] = STATE(1518), - [sym_unary_expression] = STATE(1518), - [sym_update_expression] = STATE(1518), - [sym_string] = STATE(1498), - [sym_template_string] = STATE(1498), - [sym_regex] = STATE(1498), - [sym_meta_property] = STATE(1498), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(946), - [sym_type_assertion] = STATE(1518), - [sym_as_expression] = STATE(1518), - [sym_internal_module] = STATE(1518), - [sym_type_arguments] = STATE(263), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2554), - [sym_identifier] = ACTIONS(869), - [anon_sym_export] = ACTIONS(675), - [anon_sym_namespace] = ACTIONS(677), - [anon_sym_LBRACE] = ACTIONS(1409), - [anon_sym_type] = ACTIONS(675), - [anon_sym_typeof] = ACTIONS(697), - [anon_sym_import] = ACTIONS(597), - [anon_sym_BANG] = ACTIONS(681), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(683), - [anon_sym_yield] = ACTIONS(685), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(601), - [anon_sym_async] = ACTIONS(689), - [anon_sym_function] = ACTIONS(605), - [anon_sym_new] = ACTIONS(875), - [anon_sym_PLUS] = ACTIONS(877), - [anon_sym_DASH] = ACTIONS(877), - [anon_sym_TILDE] = ACTIONS(681), - [anon_sym_void] = ACTIONS(697), - [anon_sym_delete] = ACTIONS(697), - [anon_sym_PLUS_PLUS] = ACTIONS(699), - [anon_sym_DASH_DASH] = ACTIONS(699), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(85), - [sym_number] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(675), - [anon_sym_get] = ACTIONS(675), - [anon_sym_set] = ACTIONS(675), - [anon_sym_declare] = ACTIONS(675), - [anon_sym_public] = ACTIONS(675), - [anon_sym_private] = ACTIONS(675), - [anon_sym_protected] = ACTIONS(675), - [anon_sym_module] = ACTIONS(675), - [anon_sym_any] = ACTIONS(675), - [anon_sym_number] = ACTIONS(675), - [anon_sym_boolean] = ACTIONS(675), - [anon_sym_string] = ACTIONS(675), - [anon_sym_symbol] = ACTIONS(675), - [sym_readonly] = ACTIONS(675), - }, - [247] = { - [sym__call_signature] = STATE(3042), - [sym_string] = STATE(2189), - [sym_formal_parameters] = STATE(2157), - [sym__property_name] = STATE(2189), - [sym_computed_property_name] = STATE(2189), - [sym_type_parameters] = STATE(2850), - [aux_sym_object_repeat1] = STATE(2772), - [sym_identifier] = ACTIONS(1358), - [anon_sym_export] = ACTIONS(1360), - [anon_sym_STAR] = ACTIONS(1362), - [anon_sym_EQ] = ACTIONS(1282), - [anon_sym_as] = ACTIONS(808), - [anon_sym_namespace] = ACTIONS(1360), - [anon_sym_COMMA] = ACTIONS(841), - [anon_sym_RBRACE] = ACTIONS(1244), - [anon_sym_type] = ACTIONS(1360), - [anon_sym_BANG] = ACTIONS(808), - [anon_sym_LPAREN] = ACTIONS(1365), - [anon_sym_in] = ACTIONS(808), - [anon_sym_SEMI] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(1216), - [anon_sym_LBRACK] = ACTIONS(1369), - [anon_sym_LT] = ACTIONS(1371), - [anon_sym_GT] = ACTIONS(808), - [anon_sym_SLASH] = ACTIONS(808), - [anon_sym_DOT] = ACTIONS(1007), - [anon_sym_async] = ACTIONS(1360), - [anon_sym_function] = ACTIONS(1375), - [anon_sym_EQ_GT] = ACTIONS(1009), - [anon_sym_QMARK_DOT] = ACTIONS(1011), - [anon_sym_PLUS_EQ] = ACTIONS(831), - [anon_sym_DASH_EQ] = ACTIONS(831), - [anon_sym_STAR_EQ] = ACTIONS(831), - [anon_sym_SLASH_EQ] = ACTIONS(831), - [anon_sym_PERCENT_EQ] = ACTIONS(831), - [anon_sym_CARET_EQ] = ACTIONS(831), - [anon_sym_AMP_EQ] = ACTIONS(831), - [anon_sym_PIPE_EQ] = ACTIONS(831), - [anon_sym_GT_GT_EQ] = ACTIONS(831), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(831), - [anon_sym_LT_LT_EQ] = ACTIONS(831), - [anon_sym_STAR_STAR_EQ] = ACTIONS(831), - [anon_sym_AMP_AMP_EQ] = ACTIONS(831), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(831), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(831), - [anon_sym_QMARK] = ACTIONS(1221), - [anon_sym_AMP_AMP] = ACTIONS(808), - [anon_sym_PIPE_PIPE] = ACTIONS(808), - [anon_sym_GT_GT] = ACTIONS(808), - [anon_sym_GT_GT_GT] = ACTIONS(808), - [anon_sym_LT_LT] = ACTIONS(808), - [anon_sym_AMP] = ACTIONS(808), - [anon_sym_CARET] = ACTIONS(808), - [anon_sym_PIPE] = ACTIONS(808), - [anon_sym_PLUS] = ACTIONS(808), - [anon_sym_DASH] = ACTIONS(808), - [anon_sym_PERCENT] = ACTIONS(808), - [anon_sym_STAR_STAR] = ACTIONS(808), - [anon_sym_LT_EQ] = ACTIONS(841), - [anon_sym_EQ_EQ] = ACTIONS(808), - [anon_sym_EQ_EQ_EQ] = ACTIONS(841), - [anon_sym_BANG_EQ] = ACTIONS(808), - [anon_sym_BANG_EQ_EQ] = ACTIONS(841), - [anon_sym_GT_EQ] = ACTIONS(841), - [anon_sym_QMARK_QMARK] = ACTIONS(808), - [anon_sym_instanceof] = ACTIONS(808), - [anon_sym_PLUS_PLUS] = ACTIONS(841), - [anon_sym_DASH_DASH] = ACTIONS(841), - [anon_sym_DQUOTE] = ACTIONS(845), - [anon_sym_SQUOTE] = ACTIONS(847), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(841), - [sym_number] = ACTIONS(1377), - [anon_sym_static] = ACTIONS(1360), - [anon_sym_get] = ACTIONS(1379), - [anon_sym_set] = ACTIONS(1379), - [anon_sym_declare] = ACTIONS(1360), - [anon_sym_public] = ACTIONS(1360), - [anon_sym_private] = ACTIONS(1360), - [anon_sym_protected] = ACTIONS(1360), - [anon_sym_module] = ACTIONS(1360), - [anon_sym_any] = ACTIONS(1360), - [anon_sym_number] = ACTIONS(1360), - [anon_sym_boolean] = ACTIONS(1360), - [anon_sym_string] = ACTIONS(1360), - [anon_sym_symbol] = ACTIONS(1360), - [sym_readonly] = ACTIONS(1360), - [sym__automatic_semicolon] = ACTIONS(841), - }, - [248] = { - [sym_import] = STATE(1101), - [sym_parenthesized_expression] = STATE(739), - [sym__expression] = STATE(1374), - [sym_yield_expression] = STATE(1105), - [sym_object] = STATE(1297), - [sym_array] = STATE(1296), - [sym_class] = STATE(1101), - [sym_function] = STATE(1101), - [sym_generator_function] = STATE(1101), - [sym_arrow_function] = STATE(1101), - [sym__call_signature] = STATE(3116), - [sym_call_expression] = STATE(1101), - [sym_new_expression] = STATE(1105), - [sym_await_expression] = STATE(1105), - [sym_member_expression] = STATE(739), - [sym_subscript_expression] = STATE(739), - [sym_assignment_expression] = STATE(1105), - [sym__augmented_assignment_lhs] = STATE(1920), - [sym_augmented_assignment_expression] = STATE(1105), - [sym_ternary_expression] = STATE(1105), - [sym_binary_expression] = STATE(1105), - [sym_unary_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_sequence_expression] = STATE(3087), - [sym_string] = STATE(1101), - [sym_template_string] = STATE(1101), - [sym_regex] = STATE(1101), - [sym_meta_property] = STATE(1101), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(755), - [sym_type_assertion] = STATE(1105), - [sym_as_expression] = STATE(1105), - [sym_internal_module] = STATE(1105), - [sym_type_arguments] = STATE(361), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2497), - [sym_identifier] = ACTIONS(499), - [anon_sym_export] = ACTIONS(501), - [anon_sym_namespace] = ACTIONS(507), - [anon_sym_LBRACE] = ACTIONS(509), - [anon_sym_type] = ACTIONS(501), - [anon_sym_typeof] = ACTIONS(471), - [anon_sym_import] = ACTIONS(435), - [anon_sym_BANG] = ACTIONS(437), - [anon_sym_LPAREN] = ACTIONS(515), - [anon_sym_await] = ACTIONS(443), - [anon_sym_yield] = ACTIONS(445), - [anon_sym_LBRACK] = ACTIONS(517), + [269] = { + [sym_import] = STATE(1151), + [sym_parenthesized_expression] = STATE(759), + [sym__expression] = STATE(1066), + [sym_yield_expression] = STATE(1144), + [sym_object] = STATE(1257), + [sym_array] = STATE(1254), + [sym_class] = STATE(1151), + [sym_function] = STATE(1151), + [sym_generator_function] = STATE(1151), + [sym_arrow_function] = STATE(1151), + [sym__call_signature] = STATE(3082), + [sym_call_expression] = STATE(1151), + [sym_new_expression] = STATE(1144), + [sym_await_expression] = STATE(1144), + [sym_member_expression] = STATE(759), + [sym_subscript_expression] = STATE(759), + [sym_assignment_expression] = STATE(1144), + [sym__augmented_assignment_lhs] = STATE(1924), + [sym_augmented_assignment_expression] = STATE(1144), + [sym_ternary_expression] = STATE(1144), + [sym_binary_expression] = STATE(1144), + [sym_unary_expression] = STATE(1144), + [sym_update_expression] = STATE(1144), + [sym_string] = STATE(1151), + [sym_template_string] = STATE(1151), + [sym_regex] = STATE(1151), + [sym_meta_property] = STATE(1151), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(754), + [sym_type_assertion] = STATE(1144), + [sym_as_expression] = STATE(1144), + [sym_internal_module] = STATE(1144), + [sym_type_arguments] = STATE(326), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2580), + [sym_identifier] = ACTIONS(499), + [anon_sym_export] = ACTIONS(501), + [anon_sym_namespace] = ACTIONS(507), + [anon_sym_LBRACE] = ACTIONS(509), + [anon_sym_type] = ACTIONS(501), + [anon_sym_typeof] = ACTIONS(471), + [anon_sym_import] = ACTIONS(435), + [anon_sym_BANG] = ACTIONS(437), + [anon_sym_LPAREN] = ACTIONS(515), + [anon_sym_await] = ACTIONS(443), + [anon_sym_yield] = ACTIONS(445), + [anon_sym_LBRACK] = ACTIONS(517), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(449), [anon_sym_class] = ACTIONS(451), @@ -35550,134 +37480,43 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(501), [sym_readonly] = ACTIONS(501), }, - [249] = { - [sym_import] = STATE(1498), - [sym_statement_block] = STATE(1545), - [sym_parenthesized_expression] = STATE(952), - [sym__expression] = STATE(1429), - [sym_yield_expression] = STATE(1518), - [sym_object] = STATE(1677), - [sym_array] = STATE(1671), - [sym_class] = STATE(1498), - [sym_function] = STATE(1498), - [sym_generator_function] = STATE(1498), - [sym_arrow_function] = STATE(1498), - [sym__call_signature] = STATE(3059), - [sym_call_expression] = STATE(1498), - [sym_new_expression] = STATE(1518), - [sym_await_expression] = STATE(1518), - [sym_member_expression] = STATE(952), - [sym_subscript_expression] = STATE(952), - [sym_assignment_expression] = STATE(1518), - [sym__augmented_assignment_lhs] = STATE(1919), - [sym_augmented_assignment_expression] = STATE(1518), - [sym_ternary_expression] = STATE(1518), - [sym_binary_expression] = STATE(1518), - [sym_unary_expression] = STATE(1518), - [sym_update_expression] = STATE(1518), - [sym_string] = STATE(1498), - [sym_template_string] = STATE(1498), - [sym_regex] = STATE(1498), - [sym_meta_property] = STATE(1498), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(946), - [sym_type_assertion] = STATE(1518), - [sym_as_expression] = STATE(1518), - [sym_internal_module] = STATE(1518), - [sym_type_arguments] = STATE(263), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2554), - [sym_identifier] = ACTIONS(869), - [anon_sym_export] = ACTIONS(675), - [anon_sym_namespace] = ACTIONS(677), - [anon_sym_LBRACE] = ACTIONS(1409), - [anon_sym_type] = ACTIONS(675), - [anon_sym_typeof] = ACTIONS(697), - [anon_sym_import] = ACTIONS(597), - [anon_sym_BANG] = ACTIONS(681), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(683), - [anon_sym_yield] = ACTIONS(685), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(601), - [anon_sym_async] = ACTIONS(689), - [anon_sym_function] = ACTIONS(605), - [anon_sym_new] = ACTIONS(875), - [anon_sym_PLUS] = ACTIONS(877), - [anon_sym_DASH] = ACTIONS(877), - [anon_sym_TILDE] = ACTIONS(681), - [anon_sym_void] = ACTIONS(697), - [anon_sym_delete] = ACTIONS(697), - [anon_sym_PLUS_PLUS] = ACTIONS(699), - [anon_sym_DASH_DASH] = ACTIONS(699), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(85), - [sym_number] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(675), - [anon_sym_get] = ACTIONS(675), - [anon_sym_set] = ACTIONS(675), - [anon_sym_declare] = ACTIONS(675), - [anon_sym_public] = ACTIONS(675), - [anon_sym_private] = ACTIONS(675), - [anon_sym_protected] = ACTIONS(675), - [anon_sym_module] = ACTIONS(675), - [anon_sym_any] = ACTIONS(675), - [anon_sym_number] = ACTIONS(675), - [anon_sym_boolean] = ACTIONS(675), - [anon_sym_string] = ACTIONS(675), - [anon_sym_symbol] = ACTIONS(675), - [sym_readonly] = ACTIONS(675), - }, - [250] = { - [sym_import] = STATE(1101), - [sym_parenthesized_expression] = STATE(739), - [sym__expression] = STATE(1353), - [sym_yield_expression] = STATE(1105), - [sym_object] = STATE(1297), - [sym_array] = STATE(1296), - [sym_class] = STATE(1101), - [sym_function] = STATE(1101), - [sym_generator_function] = STATE(1101), - [sym_arrow_function] = STATE(1101), - [sym__call_signature] = STATE(3116), - [sym_call_expression] = STATE(1101), - [sym_new_expression] = STATE(1105), - [sym_await_expression] = STATE(1105), - [sym_member_expression] = STATE(739), - [sym_subscript_expression] = STATE(739), - [sym_assignment_expression] = STATE(1105), - [sym__augmented_assignment_lhs] = STATE(1920), - [sym_augmented_assignment_expression] = STATE(1105), - [sym_ternary_expression] = STATE(1105), - [sym_binary_expression] = STATE(1105), - [sym_unary_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_sequence_expression] = STATE(3054), - [sym_string] = STATE(1101), - [sym_template_string] = STATE(1101), - [sym_regex] = STATE(1101), - [sym_meta_property] = STATE(1101), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(755), - [sym_type_assertion] = STATE(1105), - [sym_as_expression] = STATE(1105), - [sym_internal_module] = STATE(1105), - [sym_type_arguments] = STATE(361), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2497), + [270] = { + [sym_import] = STATE(1151), + [sym_parenthesized_expression] = STATE(759), + [sym__expression] = STATE(1077), + [sym_yield_expression] = STATE(1144), + [sym_object] = STATE(1257), + [sym_array] = STATE(1254), + [sym_class] = STATE(1151), + [sym_function] = STATE(1151), + [sym_generator_function] = STATE(1151), + [sym_arrow_function] = STATE(1151), + [sym__call_signature] = STATE(3082), + [sym_call_expression] = STATE(1151), + [sym_new_expression] = STATE(1144), + [sym_await_expression] = STATE(1144), + [sym_member_expression] = STATE(759), + [sym_subscript_expression] = STATE(759), + [sym_assignment_expression] = STATE(1144), + [sym__augmented_assignment_lhs] = STATE(1924), + [sym_augmented_assignment_expression] = STATE(1144), + [sym_ternary_expression] = STATE(1144), + [sym_binary_expression] = STATE(1144), + [sym_unary_expression] = STATE(1144), + [sym_update_expression] = STATE(1144), + [sym_string] = STATE(1151), + [sym_template_string] = STATE(1151), + [sym_regex] = STATE(1151), + [sym_meta_property] = STATE(1151), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(754), + [sym_type_assertion] = STATE(1144), + [sym_as_expression] = STATE(1144), + [sym_internal_module] = STATE(1144), + [sym_type_arguments] = STATE(326), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2580), [sym_identifier] = ACTIONS(499), [anon_sym_export] = ACTIONS(501), [anon_sym_namespace] = ACTIONS(507), @@ -35730,134 +37569,43 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(501), [sym_readonly] = ACTIONS(501), }, - [251] = { - [sym_import] = STATE(1306), - [sym_parenthesized_expression] = STATE(714), - [sym__expression] = STATE(1634), - [sym_yield_expression] = STATE(1105), - [sym_object] = STATE(1097), - [sym_array] = STATE(1103), - [sym_class] = STATE(1306), - [sym_function] = STATE(1306), - [sym_generator_function] = STATE(1306), - [sym_arrow_function] = STATE(1306), - [sym__call_signature] = STATE(3059), - [sym_call_expression] = STATE(1306), - [sym_new_expression] = STATE(1105), - [sym_await_expression] = STATE(1105), - [sym_member_expression] = STATE(714), - [sym_subscript_expression] = STATE(714), - [sym_assignment_expression] = STATE(1105), - [sym__augmented_assignment_lhs] = STATE(1921), - [sym_augmented_assignment_expression] = STATE(1105), - [sym_ternary_expression] = STATE(1105), - [sym_binary_expression] = STATE(1105), - [sym_unary_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_string] = STATE(1306), - [sym_template_string] = STATE(1306), - [sym_regex] = STATE(1306), - [sym_meta_property] = STATE(1306), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2467), - [sym_non_null_expression] = STATE(949), - [sym_type_assertion] = STATE(1105), - [sym_as_expression] = STATE(1105), - [sym_internal_module] = STATE(1105), - [sym_type_arguments] = STATE(324), - [sym_type_parameters] = STATE(2860), - [aux_sym_export_statement_repeat1] = STATE(2554), - [sym_identifier] = ACTIONS(1415), - [anon_sym_export] = ACTIONS(1417), - [anon_sym_namespace] = ACTIONS(1419), - [anon_sym_LBRACE] = ACTIONS(595), - [anon_sym_type] = ACTIONS(1417), - [anon_sym_typeof] = ACTIONS(659), - [anon_sym_import] = ACTIONS(597), - [anon_sym_BANG] = ACTIONS(643), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(645), - [anon_sym_yield] = ACTIONS(647), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(1354), - [anon_sym_class] = ACTIONS(601), - [anon_sym_async] = ACTIONS(1421), - [anon_sym_function] = ACTIONS(605), - [anon_sym_new] = ACTIONS(1423), - [anon_sym_PLUS] = ACTIONS(867), - [anon_sym_DASH] = ACTIONS(867), - [anon_sym_TILDE] = ACTIONS(643), - [anon_sym_void] = ACTIONS(659), - [anon_sym_delete] = ACTIONS(659), - [anon_sym_PLUS_PLUS] = ACTIONS(661), - [anon_sym_DASH_DASH] = ACTIONS(661), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(85), - [sym_number] = ACTIONS(1425), - [sym_this] = ACTIONS(1427), - [sym_super] = ACTIONS(1427), - [sym_true] = ACTIONS(1427), - [sym_false] = ACTIONS(1427), - [sym_null] = ACTIONS(1427), - [sym_undefined] = ACTIONS(1427), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(1417), - [anon_sym_get] = ACTIONS(1417), - [anon_sym_set] = ACTIONS(1417), - [anon_sym_declare] = ACTIONS(1417), - [anon_sym_public] = ACTIONS(1417), - [anon_sym_private] = ACTIONS(1417), - [anon_sym_protected] = ACTIONS(1417), - [anon_sym_module] = ACTIONS(1417), - [anon_sym_any] = ACTIONS(1417), - [anon_sym_number] = ACTIONS(1417), - [anon_sym_boolean] = ACTIONS(1417), - [anon_sym_string] = ACTIONS(1417), - [anon_sym_symbol] = ACTIONS(1417), - [sym_readonly] = ACTIONS(1417), - }, - [252] = { - [sym_import] = STATE(1101), - [sym_parenthesized_expression] = STATE(739), - [sym__expression] = STATE(1370), - [sym_yield_expression] = STATE(1105), - [sym_object] = STATE(1297), - [sym_array] = STATE(1296), - [sym_class] = STATE(1101), - [sym_function] = STATE(1101), - [sym_generator_function] = STATE(1101), - [sym_arrow_function] = STATE(1101), - [sym__call_signature] = STATE(3116), - [sym_call_expression] = STATE(1101), - [sym_new_expression] = STATE(1105), - [sym_await_expression] = STATE(1105), - [sym_member_expression] = STATE(739), - [sym_subscript_expression] = STATE(739), - [sym_assignment_expression] = STATE(1105), - [sym__augmented_assignment_lhs] = STATE(1920), - [sym_augmented_assignment_expression] = STATE(1105), - [sym_ternary_expression] = STATE(1105), - [sym_binary_expression] = STATE(1105), - [sym_unary_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_sequence_expression] = STATE(3052), - [sym_string] = STATE(1101), - [sym_template_string] = STATE(1101), - [sym_regex] = STATE(1101), - [sym_meta_property] = STATE(1101), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(755), - [sym_type_assertion] = STATE(1105), - [sym_as_expression] = STATE(1105), - [sym_internal_module] = STATE(1105), - [sym_type_arguments] = STATE(361), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2497), + [271] = { + [sym_import] = STATE(1151), + [sym_parenthesized_expression] = STATE(759), + [sym__expression] = STATE(1074), + [sym_yield_expression] = STATE(1144), + [sym_object] = STATE(1257), + [sym_array] = STATE(1254), + [sym_class] = STATE(1151), + [sym_function] = STATE(1151), + [sym_generator_function] = STATE(1151), + [sym_arrow_function] = STATE(1151), + [sym__call_signature] = STATE(3082), + [sym_call_expression] = STATE(1151), + [sym_new_expression] = STATE(1144), + [sym_await_expression] = STATE(1144), + [sym_member_expression] = STATE(759), + [sym_subscript_expression] = STATE(759), + [sym_assignment_expression] = STATE(1144), + [sym__augmented_assignment_lhs] = STATE(1924), + [sym_augmented_assignment_expression] = STATE(1144), + [sym_ternary_expression] = STATE(1144), + [sym_binary_expression] = STATE(1144), + [sym_unary_expression] = STATE(1144), + [sym_update_expression] = STATE(1144), + [sym_string] = STATE(1151), + [sym_template_string] = STATE(1151), + [sym_regex] = STATE(1151), + [sym_meta_property] = STATE(1151), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(754), + [sym_type_assertion] = STATE(1144), + [sym_as_expression] = STATE(1144), + [sym_internal_module] = STATE(1144), + [sym_type_arguments] = STATE(326), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2580), [sym_identifier] = ACTIONS(499), [anon_sym_export] = ACTIONS(501), [anon_sym_namespace] = ACTIONS(507), @@ -35910,134 +37658,221 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(501), [sym_readonly] = ACTIONS(501), }, - [253] = { - [sym_import] = STATE(1383), - [sym_parenthesized_expression] = STATE(734), - [sym__expression] = STATE(1686), - [sym_yield_expression] = STATE(1105), - [sym_object] = STATE(1214), - [sym_array] = STATE(1215), - [sym_class] = STATE(1383), - [sym_function] = STATE(1383), - [sym_generator_function] = STATE(1383), - [sym_arrow_function] = STATE(1383), - [sym__call_signature] = STATE(3105), - [sym_call_expression] = STATE(1383), - [sym_new_expression] = STATE(1105), - [sym_await_expression] = STATE(1105), - [sym_member_expression] = STATE(734), - [sym_subscript_expression] = STATE(734), - [sym_assignment_expression] = STATE(1105), - [sym__augmented_assignment_lhs] = STATE(1921), - [sym_augmented_assignment_expression] = STATE(1105), - [sym_ternary_expression] = STATE(1105), - [sym_binary_expression] = STATE(1105), - [sym_unary_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_string] = STATE(1383), - [sym_template_string] = STATE(1383), - [sym_regex] = STATE(1383), - [sym_meta_property] = STATE(1383), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2467), - [sym_non_null_expression] = STATE(949), - [sym_type_assertion] = STATE(1105), - [sym_as_expression] = STATE(1105), - [sym_internal_module] = STATE(1105), - [sym_type_arguments] = STATE(324), - [sym_type_parameters] = STATE(2860), - [aux_sym_export_statement_repeat1] = STATE(2529), - [sym_identifier] = ACTIONS(1429), - [anon_sym_export] = ACTIONS(1431), - [anon_sym_namespace] = ACTIONS(1433), - [anon_sym_LBRACE] = ACTIONS(1274), - [anon_sym_type] = ACTIONS(1431), - [anon_sym_typeof] = ACTIONS(659), + [272] = { + [sym_import] = STATE(1523), + [sym_parenthesized_expression] = STATE(768), + [sym__expression] = STATE(1178), + [sym_yield_expression] = STATE(1567), + [sym_object] = STATE(1357), + [sym_array] = STATE(1360), + [sym_class] = STATE(1523), + [sym_function] = STATE(1523), + [sym_generator_function] = STATE(1523), + [sym_arrow_function] = STATE(1523), + [sym__call_signature] = STATE(3196), + [sym_call_expression] = STATE(1523), + [sym_new_expression] = STATE(1567), + [sym_await_expression] = STATE(1567), + [sym_member_expression] = STATE(768), + [sym_subscript_expression] = STATE(768), + [sym_assignment_expression] = STATE(1567), + [sym__augmented_assignment_lhs] = STATE(1928), + [sym_augmented_assignment_expression] = STATE(1567), + [sym_ternary_expression] = STATE(1567), + [sym_binary_expression] = STATE(1567), + [sym_unary_expression] = STATE(1567), + [sym_update_expression] = STATE(1567), + [sym_string] = STATE(1523), + [sym_template_string] = STATE(1523), + [sym_regex] = STATE(1523), + [sym_meta_property] = STATE(1523), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(774), + [sym_type_assertion] = STATE(1567), + [sym_as_expression] = STATE(1567), + [sym_internal_module] = STATE(1567), + [sym_type_arguments] = STATE(292), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2575), + [sym_identifier] = ACTIONS(567), + [anon_sym_export] = ACTIONS(531), + [anon_sym_namespace] = ACTIONS(533), + [anon_sym_LBRACE] = ACTIONS(571), + [anon_sym_type] = ACTIONS(531), + [anon_sym_typeof] = ACTIONS(19), [anon_sym_import] = ACTIONS(539), - [anon_sym_BANG] = ACTIONS(643), - [anon_sym_LPAREN] = ACTIONS(887), - [anon_sym_await] = ACTIONS(645), - [anon_sym_yield] = ACTIONS(647), - [anon_sym_LBRACK] = ACTIONS(889), + [anon_sym_BANG] = ACTIONS(29), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(39), + [anon_sym_yield] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(545), + [anon_sym_async] = ACTIONS(547), + [anon_sym_function] = ACTIONS(549), + [anon_sym_new] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(29), + [anon_sym_void] = ACTIONS(19), + [anon_sym_delete] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_DQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(85), + [sym_number] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(531), + [anon_sym_get] = ACTIONS(531), + [anon_sym_set] = ACTIONS(531), + [anon_sym_declare] = ACTIONS(531), + [anon_sym_public] = ACTIONS(531), + [anon_sym_private] = ACTIONS(531), + [anon_sym_protected] = ACTIONS(531), + [anon_sym_module] = ACTIONS(531), + [anon_sym_any] = ACTIONS(531), + [anon_sym_number] = ACTIONS(531), + [anon_sym_boolean] = ACTIONS(531), + [anon_sym_string] = ACTIONS(531), + [anon_sym_symbol] = ACTIONS(531), + [sym_readonly] = ACTIONS(531), + }, + [273] = { + [sym_import] = STATE(1151), + [sym_parenthesized_expression] = STATE(837), + [sym__expression] = STATE(1302), + [sym_yield_expression] = STATE(1144), + [sym_object] = STATE(1495), + [sym_array] = STATE(1493), + [sym_class] = STATE(1151), + [sym_function] = STATE(1151), + [sym_generator_function] = STATE(1151), + [sym_arrow_function] = STATE(1151), + [sym__call_signature] = STATE(3190), + [sym_call_expression] = STATE(1151), + [sym_new_expression] = STATE(1144), + [sym_await_expression] = STATE(1144), + [sym_member_expression] = STATE(837), + [sym_subscript_expression] = STATE(837), + [sym_assignment_expression] = STATE(1144), + [sym__augmented_assignment_lhs] = STATE(1927), + [sym_augmented_assignment_expression] = STATE(1144), + [sym_ternary_expression] = STATE(1144), + [sym_binary_expression] = STATE(1144), + [sym_unary_expression] = STATE(1144), + [sym_update_expression] = STATE(1144), + [sym_string] = STATE(1151), + [sym_template_string] = STATE(1151), + [sym_regex] = STATE(1151), + [sym_meta_property] = STATE(1151), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(845), + [sym_type_assertion] = STATE(1144), + [sym_as_expression] = STATE(1144), + [sym_internal_module] = STATE(1144), + [sym_type_arguments] = STATE(357), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2580), + [sym_identifier] = ACTIONS(859), + [anon_sym_export] = ACTIONS(769), + [anon_sym_namespace] = ACTIONS(771), + [anon_sym_LBRACE] = ACTIONS(509), + [anon_sym_type] = ACTIONS(769), + [anon_sym_typeof] = ACTIONS(791), + [anon_sym_import] = ACTIONS(435), + [anon_sym_BANG] = ACTIONS(775), + [anon_sym_LPAREN] = ACTIONS(515), + [anon_sym_await] = ACTIONS(777), + [anon_sym_yield] = ACTIONS(779), + [anon_sym_LBRACK] = ACTIONS(517), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(551), - [anon_sym_DOT] = ACTIONS(1383), - [anon_sym_class] = ACTIONS(553), - [anon_sym_async] = ACTIONS(1435), - [anon_sym_function] = ACTIONS(557), - [anon_sym_new] = ACTIONS(1437), + [anon_sym_SLASH] = ACTIONS(781), + [anon_sym_class] = ACTIONS(451), + [anon_sym_async] = ACTIONS(783), + [anon_sym_function] = ACTIONS(455), + [anon_sym_new] = ACTIONS(865), [anon_sym_PLUS] = ACTIONS(867), [anon_sym_DASH] = ACTIONS(867), - [anon_sym_TILDE] = ACTIONS(643), - [anon_sym_void] = ACTIONS(659), - [anon_sym_delete] = ACTIONS(659), - [anon_sym_PLUS_PLUS] = ACTIONS(661), - [anon_sym_DASH_DASH] = ACTIONS(661), - [anon_sym_DQUOTE] = ACTIONS(569), - [anon_sym_SQUOTE] = ACTIONS(571), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(573), - [sym_number] = ACTIONS(1439), - [sym_this] = ACTIONS(1441), - [sym_super] = ACTIONS(1441), - [sym_true] = ACTIONS(1441), - [sym_false] = ACTIONS(1441), - [sym_null] = ACTIONS(1441), - [sym_undefined] = ACTIONS(1441), + [anon_sym_TILDE] = ACTIONS(775), + [anon_sym_void] = ACTIONS(791), + [anon_sym_delete] = ACTIONS(791), + [anon_sym_PLUS_PLUS] = ACTIONS(793), + [anon_sym_DASH_DASH] = ACTIONS(793), + [anon_sym_DQUOTE] = ACTIONS(475), + [anon_sym_SQUOTE] = ACTIONS(477), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(479), + [sym_number] = ACTIONS(527), + [sym_this] = ACTIONS(485), + [sym_super] = ACTIONS(485), + [sym_true] = ACTIONS(485), + [sym_false] = ACTIONS(485), + [sym_null] = ACTIONS(485), + [sym_undefined] = ACTIONS(485), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(1431), - [anon_sym_get] = ACTIONS(1431), - [anon_sym_set] = ACTIONS(1431), - [anon_sym_declare] = ACTIONS(1431), - [anon_sym_public] = ACTIONS(1431), - [anon_sym_private] = ACTIONS(1431), - [anon_sym_protected] = ACTIONS(1431), - [anon_sym_module] = ACTIONS(1431), - [anon_sym_any] = ACTIONS(1431), - [anon_sym_number] = ACTIONS(1431), - [anon_sym_boolean] = ACTIONS(1431), - [anon_sym_string] = ACTIONS(1431), - [anon_sym_symbol] = ACTIONS(1431), - [sym_readonly] = ACTIONS(1431), + [anon_sym_static] = ACTIONS(769), + [anon_sym_get] = ACTIONS(769), + [anon_sym_set] = ACTIONS(769), + [anon_sym_declare] = ACTIONS(769), + [anon_sym_public] = ACTIONS(769), + [anon_sym_private] = ACTIONS(769), + [anon_sym_protected] = ACTIONS(769), + [anon_sym_module] = ACTIONS(769), + [anon_sym_any] = ACTIONS(769), + [anon_sym_number] = ACTIONS(769), + [anon_sym_boolean] = ACTIONS(769), + [anon_sym_string] = ACTIONS(769), + [anon_sym_symbol] = ACTIONS(769), + [sym_readonly] = ACTIONS(769), }, - [254] = { - [sym_import] = STATE(1101), - [sym_parenthesized_expression] = STATE(739), - [sym__expression] = STATE(1421), - [sym_yield_expression] = STATE(1105), - [sym_object] = STATE(1297), - [sym_array] = STATE(1296), - [sym_class] = STATE(1101), - [sym_function] = STATE(1101), - [sym_generator_function] = STATE(1101), - [sym_arrow_function] = STATE(1101), - [sym__call_signature] = STATE(3116), - [sym_call_expression] = STATE(1101), - [sym_new_expression] = STATE(1105), - [sym_await_expression] = STATE(1105), - [sym_member_expression] = STATE(739), - [sym_subscript_expression] = STATE(739), - [sym_assignment_expression] = STATE(1105), - [sym__augmented_assignment_lhs] = STATE(1920), - [sym_augmented_assignment_expression] = STATE(1105), - [sym_ternary_expression] = STATE(1105), - [sym_binary_expression] = STATE(1105), - [sym_unary_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_sequence_expression] = STATE(3028), - [sym_string] = STATE(1101), - [sym_template_string] = STATE(1101), - [sym_regex] = STATE(1101), - [sym_meta_property] = STATE(1101), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(755), - [sym_type_assertion] = STATE(1105), - [sym_as_expression] = STATE(1105), - [sym_internal_module] = STATE(1105), - [sym_type_arguments] = STATE(361), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2497), + [274] = { + [sym_import] = STATE(1151), + [sym_parenthesized_expression] = STATE(759), + [sym__expression] = STATE(1097), + [sym_yield_expression] = STATE(1144), + [sym_object] = STATE(1257), + [sym_array] = STATE(1254), + [sym_class] = STATE(1151), + [sym_function] = STATE(1151), + [sym_generator_function] = STATE(1151), + [sym_arrow_function] = STATE(1151), + [sym__call_signature] = STATE(3082), + [sym_call_expression] = STATE(1151), + [sym_new_expression] = STATE(1144), + [sym_await_expression] = STATE(1144), + [sym_member_expression] = STATE(759), + [sym_subscript_expression] = STATE(759), + [sym_assignment_expression] = STATE(1144), + [sym__augmented_assignment_lhs] = STATE(1924), + [sym_augmented_assignment_expression] = STATE(1144), + [sym_ternary_expression] = STATE(1144), + [sym_binary_expression] = STATE(1144), + [sym_unary_expression] = STATE(1144), + [sym_update_expression] = STATE(1144), + [sym_string] = STATE(1151), + [sym_template_string] = STATE(1151), + [sym_regex] = STATE(1151), + [sym_meta_property] = STATE(1151), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(754), + [sym_type_assertion] = STATE(1144), + [sym_as_expression] = STATE(1144), + [sym_internal_module] = STATE(1144), + [sym_type_arguments] = STATE(326), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2580), [sym_identifier] = ACTIONS(499), [anon_sym_export] = ACTIONS(501), [anon_sym_namespace] = ACTIONS(507), @@ -36090,69 +37925,157 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(501), [sym_readonly] = ACTIONS(501), }, - [255] = { - [sym_import] = STATE(1498), - [sym_statement_block] = STATE(1553), - [sym_parenthesized_expression] = STATE(952), - [sym__expression] = STATE(1430), - [sym_yield_expression] = STATE(1518), - [sym_object] = STATE(1677), - [sym_array] = STATE(1671), - [sym_class] = STATE(1498), - [sym_function] = STATE(1498), - [sym_generator_function] = STATE(1498), - [sym_arrow_function] = STATE(1498), - [sym__call_signature] = STATE(3059), - [sym_call_expression] = STATE(1498), - [sym_new_expression] = STATE(1518), - [sym_await_expression] = STATE(1518), - [sym_member_expression] = STATE(952), - [sym_subscript_expression] = STATE(952), - [sym_assignment_expression] = STATE(1518), - [sym__augmented_assignment_lhs] = STATE(1919), - [sym_augmented_assignment_expression] = STATE(1518), - [sym_ternary_expression] = STATE(1518), - [sym_binary_expression] = STATE(1518), - [sym_unary_expression] = STATE(1518), - [sym_update_expression] = STATE(1518), - [sym_string] = STATE(1498), - [sym_template_string] = STATE(1498), - [sym_regex] = STATE(1498), - [sym_meta_property] = STATE(1498), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(946), - [sym_type_assertion] = STATE(1518), - [sym_as_expression] = STATE(1518), - [sym_internal_module] = STATE(1518), - [sym_type_arguments] = STATE(263), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2554), - [sym_identifier] = ACTIONS(869), - [anon_sym_export] = ACTIONS(675), - [anon_sym_namespace] = ACTIONS(677), - [anon_sym_LBRACE] = ACTIONS(1409), - [anon_sym_type] = ACTIONS(675), - [anon_sym_typeof] = ACTIONS(697), - [anon_sym_import] = ACTIONS(597), - [anon_sym_BANG] = ACTIONS(681), + [275] = { + [sym_import] = STATE(1151), + [sym_parenthesized_expression] = STATE(956), + [sym__expression] = STATE(1591), + [sym_yield_expression] = STATE(1144), + [sym_object] = STATE(1653), + [sym_array] = STATE(1660), + [sym_class] = STATE(1151), + [sym_function] = STATE(1151), + [sym_generator_function] = STATE(1151), + [sym_arrow_function] = STATE(1151), + [sym__call_signature] = STATE(3024), + [sym_call_expression] = STATE(1151), + [sym_new_expression] = STATE(1144), + [sym_await_expression] = STATE(1144), + [sym_member_expression] = STATE(956), + [sym_subscript_expression] = STATE(956), + [sym_assignment_expression] = STATE(1144), + [sym__augmented_assignment_lhs] = STATE(1925), + [sym_augmented_assignment_expression] = STATE(1144), + [sym_ternary_expression] = STATE(1144), + [sym_binary_expression] = STATE(1144), + [sym_unary_expression] = STATE(1144), + [sym_update_expression] = STATE(1144), + [sym_string] = STATE(1151), + [sym_template_string] = STATE(1151), + [sym_regex] = STATE(1151), + [sym_meta_property] = STATE(1151), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(950), + [sym_type_assertion] = STATE(1144), + [sym_as_expression] = STATE(1144), + [sym_internal_module] = STATE(1144), + [sym_type_arguments] = STATE(395), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2580), + [sym_identifier] = ACTIONS(897), + [anon_sym_export] = ACTIONS(577), + [anon_sym_namespace] = ACTIONS(579), + [anon_sym_LBRACE] = ACTIONS(509), + [anon_sym_type] = ACTIONS(577), + [anon_sym_typeof] = ACTIONS(601), + [anon_sym_import] = ACTIONS(435), + [anon_sym_BANG] = ACTIONS(585), + [anon_sym_LPAREN] = ACTIONS(515), + [anon_sym_await] = ACTIONS(587), + [anon_sym_yield] = ACTIONS(589), + [anon_sym_LBRACK] = ACTIONS(517), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(449), + [anon_sym_class] = ACTIONS(451), + [anon_sym_async] = ACTIONS(593), + [anon_sym_function] = ACTIONS(455), + [anon_sym_new] = ACTIONS(903), + [anon_sym_PLUS] = ACTIONS(905), + [anon_sym_DASH] = ACTIONS(905), + [anon_sym_TILDE] = ACTIONS(585), + [anon_sym_void] = ACTIONS(601), + [anon_sym_delete] = ACTIONS(601), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_DQUOTE] = ACTIONS(475), + [anon_sym_SQUOTE] = ACTIONS(477), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(479), + [sym_number] = ACTIONS(527), + [sym_this] = ACTIONS(485), + [sym_super] = ACTIONS(485), + [sym_true] = ACTIONS(485), + [sym_false] = ACTIONS(485), + [sym_null] = ACTIONS(485), + [sym_undefined] = ACTIONS(485), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(577), + [anon_sym_get] = ACTIONS(577), + [anon_sym_set] = ACTIONS(577), + [anon_sym_declare] = ACTIONS(577), + [anon_sym_public] = ACTIONS(577), + [anon_sym_private] = ACTIONS(577), + [anon_sym_protected] = ACTIONS(577), + [anon_sym_module] = ACTIONS(577), + [anon_sym_any] = ACTIONS(577), + [anon_sym_number] = ACTIONS(577), + [anon_sym_boolean] = ACTIONS(577), + [anon_sym_string] = ACTIONS(577), + [anon_sym_symbol] = ACTIONS(577), + [sym_readonly] = ACTIONS(577), + }, + [276] = { + [sym_import] = STATE(1523), + [sym_parenthesized_expression] = STATE(768), + [sym__expression] = STATE(1102), + [sym_yield_expression] = STATE(1567), + [sym_object] = STATE(1357), + [sym_array] = STATE(1360), + [sym_class] = STATE(1523), + [sym_function] = STATE(1523), + [sym_generator_function] = STATE(1523), + [sym_arrow_function] = STATE(1523), + [sym__call_signature] = STATE(3196), + [sym_call_expression] = STATE(1523), + [sym_new_expression] = STATE(1567), + [sym_await_expression] = STATE(1567), + [sym_member_expression] = STATE(768), + [sym_subscript_expression] = STATE(768), + [sym_assignment_expression] = STATE(1567), + [sym__augmented_assignment_lhs] = STATE(1928), + [sym_augmented_assignment_expression] = STATE(1567), + [sym_ternary_expression] = STATE(1567), + [sym_binary_expression] = STATE(1567), + [sym_unary_expression] = STATE(1567), + [sym_update_expression] = STATE(1567), + [sym_string] = STATE(1523), + [sym_template_string] = STATE(1523), + [sym_regex] = STATE(1523), + [sym_meta_property] = STATE(1523), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(774), + [sym_type_assertion] = STATE(1567), + [sym_as_expression] = STATE(1567), + [sym_internal_module] = STATE(1567), + [sym_type_arguments] = STATE(292), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2575), + [sym_identifier] = ACTIONS(567), + [anon_sym_export] = ACTIONS(531), + [anon_sym_namespace] = ACTIONS(533), + [anon_sym_LBRACE] = ACTIONS(571), + [anon_sym_type] = ACTIONS(531), + [anon_sym_typeof] = ACTIONS(19), + [anon_sym_import] = ACTIONS(539), + [anon_sym_BANG] = ACTIONS(29), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(683), - [anon_sym_yield] = ACTIONS(685), + [anon_sym_await] = ACTIONS(39), + [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(601), - [anon_sym_async] = ACTIONS(689), - [anon_sym_function] = ACTIONS(605), - [anon_sym_new] = ACTIONS(875), - [anon_sym_PLUS] = ACTIONS(877), - [anon_sym_DASH] = ACTIONS(877), - [anon_sym_TILDE] = ACTIONS(681), - [anon_sym_void] = ACTIONS(697), - [anon_sym_delete] = ACTIONS(697), - [anon_sym_PLUS_PLUS] = ACTIONS(699), - [anon_sym_DASH_DASH] = ACTIONS(699), + [anon_sym_class] = ACTIONS(545), + [anon_sym_async] = ACTIONS(547), + [anon_sym_function] = ACTIONS(549), + [anon_sym_new] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(29), + [anon_sym_void] = ACTIONS(19), + [anon_sym_delete] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_DQUOTE] = ACTIONS(81), [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), @@ -36165,94 +38088,94 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(675), - [anon_sym_get] = ACTIONS(675), - [anon_sym_set] = ACTIONS(675), - [anon_sym_declare] = ACTIONS(675), - [anon_sym_public] = ACTIONS(675), - [anon_sym_private] = ACTIONS(675), - [anon_sym_protected] = ACTIONS(675), - [anon_sym_module] = ACTIONS(675), - [anon_sym_any] = ACTIONS(675), - [anon_sym_number] = ACTIONS(675), - [anon_sym_boolean] = ACTIONS(675), - [anon_sym_string] = ACTIONS(675), - [anon_sym_symbol] = ACTIONS(675), - [sym_readonly] = ACTIONS(675), + [anon_sym_static] = ACTIONS(531), + [anon_sym_get] = ACTIONS(531), + [anon_sym_set] = ACTIONS(531), + [anon_sym_declare] = ACTIONS(531), + [anon_sym_public] = ACTIONS(531), + [anon_sym_private] = ACTIONS(531), + [anon_sym_protected] = ACTIONS(531), + [anon_sym_module] = ACTIONS(531), + [anon_sym_any] = ACTIONS(531), + [anon_sym_number] = ACTIONS(531), + [anon_sym_boolean] = ACTIONS(531), + [anon_sym_string] = ACTIONS(531), + [anon_sym_symbol] = ACTIONS(531), + [sym_readonly] = ACTIONS(531), }, - [256] = { - [sym_import] = STATE(1682), - [sym_parenthesized_expression] = STATE(828), - [sym__expression] = STATE(1220), - [sym_yield_expression] = STATE(1680), - [sym_object] = STATE(1586), - [sym_array] = STATE(1585), - [sym_class] = STATE(1682), - [sym_function] = STATE(1682), - [sym_generator_function] = STATE(1682), - [sym_arrow_function] = STATE(1682), - [sym__call_signature] = STATE(3105), - [sym_call_expression] = STATE(1682), - [sym_new_expression] = STATE(1680), - [sym_await_expression] = STATE(1680), - [sym_member_expression] = STATE(828), - [sym_subscript_expression] = STATE(828), - [sym_assignment_expression] = STATE(1680), - [sym__augmented_assignment_lhs] = STATE(1918), - [sym_augmented_assignment_expression] = STATE(1680), - [sym_ternary_expression] = STATE(1680), - [sym_binary_expression] = STATE(1680), - [sym_unary_expression] = STATE(1680), - [sym_update_expression] = STATE(1680), - [sym_string] = STATE(1682), - [sym_template_string] = STATE(1682), - [sym_regex] = STATE(1682), - [sym_meta_property] = STATE(1682), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(827), - [sym_type_assertion] = STATE(1680), - [sym_as_expression] = STATE(1680), - [sym_internal_module] = STATE(1680), - [sym_type_arguments] = STATE(256), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2529), - [sym_identifier] = ACTIONS(879), + [277] = { + [sym_import] = STATE(1523), + [sym_parenthesized_expression] = STATE(768), + [sym__expression] = STATE(1105), + [sym_yield_expression] = STATE(1567), + [sym_object] = STATE(1357), + [sym_array] = STATE(1360), + [sym_class] = STATE(1523), + [sym_function] = STATE(1523), + [sym_generator_function] = STATE(1523), + [sym_arrow_function] = STATE(1523), + [sym__call_signature] = STATE(3196), + [sym_call_expression] = STATE(1523), + [sym_new_expression] = STATE(1567), + [sym_await_expression] = STATE(1567), + [sym_member_expression] = STATE(768), + [sym_subscript_expression] = STATE(768), + [sym_assignment_expression] = STATE(1567), + [sym__augmented_assignment_lhs] = STATE(1928), + [sym_augmented_assignment_expression] = STATE(1567), + [sym_ternary_expression] = STATE(1567), + [sym_binary_expression] = STATE(1567), + [sym_unary_expression] = STATE(1567), + [sym_update_expression] = STATE(1567), + [sym_string] = STATE(1523), + [sym_template_string] = STATE(1523), + [sym_regex] = STATE(1523), + [sym_meta_property] = STATE(1523), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(774), + [sym_type_assertion] = STATE(1567), + [sym_as_expression] = STATE(1567), + [sym_internal_module] = STATE(1567), + [sym_type_arguments] = STATE(292), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2575), + [sym_identifier] = ACTIONS(567), [anon_sym_export] = ACTIONS(531), [anon_sym_namespace] = ACTIONS(533), - [anon_sym_LBRACE] = ACTIONS(1274), + [anon_sym_LBRACE] = ACTIONS(571), [anon_sym_type] = ACTIONS(531), - [anon_sym_typeof] = ACTIONS(565), + [anon_sym_typeof] = ACTIONS(19), [anon_sym_import] = ACTIONS(539), - [anon_sym_BANG] = ACTIONS(541), - [anon_sym_LPAREN] = ACTIONS(887), - [anon_sym_await] = ACTIONS(545), - [anon_sym_yield] = ACTIONS(547), - [anon_sym_LBRACK] = ACTIONS(889), + [anon_sym_BANG] = ACTIONS(29), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(39), + [anon_sym_yield] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(551), - [anon_sym_class] = ACTIONS(553), - [anon_sym_async] = ACTIONS(555), - [anon_sym_function] = ACTIONS(557), - [anon_sym_new] = ACTIONS(891), - [anon_sym_PLUS] = ACTIONS(893), - [anon_sym_DASH] = ACTIONS(893), - [anon_sym_TILDE] = ACTIONS(541), - [anon_sym_void] = ACTIONS(565), - [anon_sym_delete] = ACTIONS(565), - [anon_sym_PLUS_PLUS] = ACTIONS(567), - [anon_sym_DASH_DASH] = ACTIONS(567), - [anon_sym_DQUOTE] = ACTIONS(569), - [anon_sym_SQUOTE] = ACTIONS(571), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(573), - [sym_number] = ACTIONS(895), - [sym_this] = ACTIONS(579), - [sym_super] = ACTIONS(579), - [sym_true] = ACTIONS(579), - [sym_false] = ACTIONS(579), - [sym_null] = ACTIONS(579), - [sym_undefined] = ACTIONS(579), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(545), + [anon_sym_async] = ACTIONS(547), + [anon_sym_function] = ACTIONS(549), + [anon_sym_new] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(29), + [anon_sym_void] = ACTIONS(19), + [anon_sym_delete] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_DQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(85), + [sym_number] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(531), [anon_sym_get] = ACTIONS(531), @@ -36269,162 +38192,162 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(531), [sym_readonly] = ACTIONS(531), }, - [257] = { - [sym_import] = STATE(1101), - [sym_parenthesized_expression] = STATE(948), - [sym__expression] = STATE(1395), - [sym_yield_expression] = STATE(1105), - [sym_object] = STATE(1654), - [sym_array] = STATE(1640), - [sym_class] = STATE(1101), - [sym_function] = STATE(1101), - [sym_generator_function] = STATE(1101), - [sym_arrow_function] = STATE(1101), - [sym__call_signature] = STATE(3002), - [sym_call_expression] = STATE(1101), - [sym_new_expression] = STATE(1105), - [sym_await_expression] = STATE(1105), - [sym_member_expression] = STATE(948), - [sym_subscript_expression] = STATE(948), - [sym_assignment_expression] = STATE(1105), - [sym__augmented_assignment_lhs] = STATE(1921), - [sym_augmented_assignment_expression] = STATE(1105), - [sym_ternary_expression] = STATE(1105), - [sym_binary_expression] = STATE(1105), - [sym_unary_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_string] = STATE(1101), - [sym_template_string] = STATE(1101), - [sym_regex] = STATE(1101), - [sym_meta_property] = STATE(1101), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(949), - [sym_type_assertion] = STATE(1105), - [sym_as_expression] = STATE(1105), - [sym_internal_module] = STATE(1105), - [sym_type_arguments] = STATE(324), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2497), - [sym_identifier] = ACTIONS(859), - [anon_sym_export] = ACTIONS(635), - [anon_sym_namespace] = ACTIONS(637), - [anon_sym_LBRACE] = ACTIONS(509), - [anon_sym_type] = ACTIONS(635), - [anon_sym_typeof] = ACTIONS(659), - [anon_sym_import] = ACTIONS(435), - [anon_sym_BANG] = ACTIONS(643), - [anon_sym_LPAREN] = ACTIONS(515), - [anon_sym_await] = ACTIONS(645), - [anon_sym_yield] = ACTIONS(647), - [anon_sym_LBRACK] = ACTIONS(517), + [278] = { + [sym_import] = STATE(1523), + [sym_parenthesized_expression] = STATE(768), + [sym__expression] = STATE(1106), + [sym_yield_expression] = STATE(1567), + [sym_object] = STATE(1357), + [sym_array] = STATE(1360), + [sym_class] = STATE(1523), + [sym_function] = STATE(1523), + [sym_generator_function] = STATE(1523), + [sym_arrow_function] = STATE(1523), + [sym__call_signature] = STATE(3196), + [sym_call_expression] = STATE(1523), + [sym_new_expression] = STATE(1567), + [sym_await_expression] = STATE(1567), + [sym_member_expression] = STATE(768), + [sym_subscript_expression] = STATE(768), + [sym_assignment_expression] = STATE(1567), + [sym__augmented_assignment_lhs] = STATE(1928), + [sym_augmented_assignment_expression] = STATE(1567), + [sym_ternary_expression] = STATE(1567), + [sym_binary_expression] = STATE(1567), + [sym_unary_expression] = STATE(1567), + [sym_update_expression] = STATE(1567), + [sym_string] = STATE(1523), + [sym_template_string] = STATE(1523), + [sym_regex] = STATE(1523), + [sym_meta_property] = STATE(1523), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(774), + [sym_type_assertion] = STATE(1567), + [sym_as_expression] = STATE(1567), + [sym_internal_module] = STATE(1567), + [sym_type_arguments] = STATE(292), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2575), + [sym_identifier] = ACTIONS(567), + [anon_sym_export] = ACTIONS(531), + [anon_sym_namespace] = ACTIONS(533), + [anon_sym_LBRACE] = ACTIONS(571), + [anon_sym_type] = ACTIONS(531), + [anon_sym_typeof] = ACTIONS(19), + [anon_sym_import] = ACTIONS(539), + [anon_sym_BANG] = ACTIONS(29), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(39), + [anon_sym_yield] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(449), - [anon_sym_class] = ACTIONS(451), - [anon_sym_async] = ACTIONS(651), - [anon_sym_function] = ACTIONS(455), - [anon_sym_new] = ACTIONS(865), - [anon_sym_PLUS] = ACTIONS(867), - [anon_sym_DASH] = ACTIONS(867), - [anon_sym_TILDE] = ACTIONS(643), - [anon_sym_void] = ACTIONS(659), - [anon_sym_delete] = ACTIONS(659), - [anon_sym_PLUS_PLUS] = ACTIONS(661), - [anon_sym_DASH_DASH] = ACTIONS(661), - [anon_sym_DQUOTE] = ACTIONS(475), - [anon_sym_SQUOTE] = ACTIONS(477), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(545), + [anon_sym_async] = ACTIONS(547), + [anon_sym_function] = ACTIONS(549), + [anon_sym_new] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(29), + [anon_sym_void] = ACTIONS(19), + [anon_sym_delete] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_DQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(479), - [sym_number] = ACTIONS(527), - [sym_this] = ACTIONS(485), - [sym_super] = ACTIONS(485), - [sym_true] = ACTIONS(485), - [sym_false] = ACTIONS(485), - [sym_null] = ACTIONS(485), - [sym_undefined] = ACTIONS(485), + [anon_sym_BQUOTE] = ACTIONS(85), + [sym_number] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(635), - [anon_sym_get] = ACTIONS(635), - [anon_sym_set] = ACTIONS(635), - [anon_sym_declare] = ACTIONS(635), - [anon_sym_public] = ACTIONS(635), - [anon_sym_private] = ACTIONS(635), - [anon_sym_protected] = ACTIONS(635), - [anon_sym_module] = ACTIONS(635), - [anon_sym_any] = ACTIONS(635), - [anon_sym_number] = ACTIONS(635), - [anon_sym_boolean] = ACTIONS(635), - [anon_sym_string] = ACTIONS(635), - [anon_sym_symbol] = ACTIONS(635), - [sym_readonly] = ACTIONS(635), + [anon_sym_static] = ACTIONS(531), + [anon_sym_get] = ACTIONS(531), + [anon_sym_set] = ACTIONS(531), + [anon_sym_declare] = ACTIONS(531), + [anon_sym_public] = ACTIONS(531), + [anon_sym_private] = ACTIONS(531), + [anon_sym_protected] = ACTIONS(531), + [anon_sym_module] = ACTIONS(531), + [anon_sym_any] = ACTIONS(531), + [anon_sym_number] = ACTIONS(531), + [anon_sym_boolean] = ACTIONS(531), + [anon_sym_string] = ACTIONS(531), + [anon_sym_symbol] = ACTIONS(531), + [sym_readonly] = ACTIONS(531), }, - [258] = { - [sym_import] = STATE(1498), - [sym_parenthesized_expression] = STATE(952), - [sym__expression] = STATE(1413), - [sym_yield_expression] = STATE(1518), - [sym_object] = STATE(1677), - [sym_array] = STATE(1671), - [sym_class] = STATE(1498), - [sym_function] = STATE(1498), - [sym_generator_function] = STATE(1498), - [sym_arrow_function] = STATE(1498), - [sym__call_signature] = STATE(3059), - [sym_call_expression] = STATE(1498), - [sym_new_expression] = STATE(1518), - [sym_await_expression] = STATE(1518), - [sym_member_expression] = STATE(952), - [sym_subscript_expression] = STATE(952), - [sym_assignment_expression] = STATE(1518), - [sym__augmented_assignment_lhs] = STATE(1919), - [sym_augmented_assignment_expression] = STATE(1518), - [sym_ternary_expression] = STATE(1518), - [sym_binary_expression] = STATE(1518), - [sym_unary_expression] = STATE(1518), - [sym_update_expression] = STATE(1518), - [sym_string] = STATE(1498), - [sym_template_string] = STATE(1498), - [sym_regex] = STATE(1498), - [sym_meta_property] = STATE(1498), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(946), - [sym_type_assertion] = STATE(1518), - [sym_as_expression] = STATE(1518), - [sym_internal_module] = STATE(1518), - [sym_type_arguments] = STATE(263), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2554), - [sym_identifier] = ACTIONS(869), - [anon_sym_export] = ACTIONS(675), - [anon_sym_namespace] = ACTIONS(677), - [anon_sym_LBRACE] = ACTIONS(595), - [anon_sym_type] = ACTIONS(675), - [anon_sym_typeof] = ACTIONS(697), - [anon_sym_import] = ACTIONS(597), - [anon_sym_BANG] = ACTIONS(681), + [279] = { + [sym_import] = STATE(1523), + [sym_parenthesized_expression] = STATE(768), + [sym__expression] = STATE(1107), + [sym_yield_expression] = STATE(1567), + [sym_object] = STATE(1357), + [sym_array] = STATE(1360), + [sym_class] = STATE(1523), + [sym_function] = STATE(1523), + [sym_generator_function] = STATE(1523), + [sym_arrow_function] = STATE(1523), + [sym__call_signature] = STATE(3196), + [sym_call_expression] = STATE(1523), + [sym_new_expression] = STATE(1567), + [sym_await_expression] = STATE(1567), + [sym_member_expression] = STATE(768), + [sym_subscript_expression] = STATE(768), + [sym_assignment_expression] = STATE(1567), + [sym__augmented_assignment_lhs] = STATE(1928), + [sym_augmented_assignment_expression] = STATE(1567), + [sym_ternary_expression] = STATE(1567), + [sym_binary_expression] = STATE(1567), + [sym_unary_expression] = STATE(1567), + [sym_update_expression] = STATE(1567), + [sym_string] = STATE(1523), + [sym_template_string] = STATE(1523), + [sym_regex] = STATE(1523), + [sym_meta_property] = STATE(1523), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(774), + [sym_type_assertion] = STATE(1567), + [sym_as_expression] = STATE(1567), + [sym_internal_module] = STATE(1567), + [sym_type_arguments] = STATE(292), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2575), + [sym_identifier] = ACTIONS(567), + [anon_sym_export] = ACTIONS(531), + [anon_sym_namespace] = ACTIONS(533), + [anon_sym_LBRACE] = ACTIONS(571), + [anon_sym_type] = ACTIONS(531), + [anon_sym_typeof] = ACTIONS(19), + [anon_sym_import] = ACTIONS(539), + [anon_sym_BANG] = ACTIONS(29), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(683), - [anon_sym_yield] = ACTIONS(685), + [anon_sym_await] = ACTIONS(39), + [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(601), - [anon_sym_async] = ACTIONS(689), - [anon_sym_function] = ACTIONS(605), - [anon_sym_new] = ACTIONS(875), - [anon_sym_PLUS] = ACTIONS(877), - [anon_sym_DASH] = ACTIONS(877), - [anon_sym_TILDE] = ACTIONS(681), - [anon_sym_void] = ACTIONS(697), - [anon_sym_delete] = ACTIONS(697), - [anon_sym_PLUS_PLUS] = ACTIONS(699), - [anon_sym_DASH_DASH] = ACTIONS(699), + [anon_sym_class] = ACTIONS(545), + [anon_sym_async] = ACTIONS(547), + [anon_sym_function] = ACTIONS(549), + [anon_sym_new] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(29), + [anon_sym_void] = ACTIONS(19), + [anon_sym_delete] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_DQUOTE] = ACTIONS(81), [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(85), - [sym_number] = ACTIONS(1459), + [sym_number] = ACTIONS(87), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), @@ -36432,65 +38355,65 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(675), - [anon_sym_get] = ACTIONS(675), - [anon_sym_set] = ACTIONS(675), - [anon_sym_declare] = ACTIONS(675), - [anon_sym_public] = ACTIONS(675), - [anon_sym_private] = ACTIONS(675), - [anon_sym_protected] = ACTIONS(675), - [anon_sym_module] = ACTIONS(675), - [anon_sym_any] = ACTIONS(675), - [anon_sym_number] = ACTIONS(675), - [anon_sym_boolean] = ACTIONS(675), - [anon_sym_string] = ACTIONS(675), - [anon_sym_symbol] = ACTIONS(675), - [sym_readonly] = ACTIONS(675), + [anon_sym_static] = ACTIONS(531), + [anon_sym_get] = ACTIONS(531), + [anon_sym_set] = ACTIONS(531), + [anon_sym_declare] = ACTIONS(531), + [anon_sym_public] = ACTIONS(531), + [anon_sym_private] = ACTIONS(531), + [anon_sym_protected] = ACTIONS(531), + [anon_sym_module] = ACTIONS(531), + [anon_sym_any] = ACTIONS(531), + [anon_sym_number] = ACTIONS(531), + [anon_sym_boolean] = ACTIONS(531), + [anon_sym_string] = ACTIONS(531), + [anon_sym_symbol] = ACTIONS(531), + [sym_readonly] = ACTIONS(531), }, - [259] = { - [sym_import] = STATE(1498), - [sym_parenthesized_expression] = STATE(764), - [sym__expression] = STATE(1110), - [sym_yield_expression] = STATE(1518), - [sym_object] = STATE(1435), - [sym_array] = STATE(1433), - [sym_class] = STATE(1498), - [sym_function] = STATE(1498), - [sym_generator_function] = STATE(1498), - [sym_arrow_function] = STATE(1498), - [sym__call_signature] = STATE(3145), - [sym_call_expression] = STATE(1498), - [sym_new_expression] = STATE(1518), - [sym_await_expression] = STATE(1518), - [sym_member_expression] = STATE(764), - [sym_subscript_expression] = STATE(764), - [sym_assignment_expression] = STATE(1518), - [sym__augmented_assignment_lhs] = STATE(1925), - [sym_augmented_assignment_expression] = STATE(1518), - [sym_ternary_expression] = STATE(1518), - [sym_binary_expression] = STATE(1518), - [sym_unary_expression] = STATE(1518), - [sym_update_expression] = STATE(1518), - [sym_string] = STATE(1498), - [sym_template_string] = STATE(1498), - [sym_regex] = STATE(1498), - [sym_meta_property] = STATE(1498), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(772), - [sym_type_assertion] = STATE(1518), - [sym_as_expression] = STATE(1518), - [sym_internal_module] = STATE(1518), - [sym_type_arguments] = STATE(349), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2554), - [sym_identifier] = ACTIONS(587), - [anon_sym_export] = ACTIONS(589), - [anon_sym_namespace] = ACTIONS(593), - [anon_sym_LBRACE] = ACTIONS(595), - [anon_sym_type] = ACTIONS(589), + [280] = { + [sym_import] = STATE(1523), + [sym_parenthesized_expression] = STATE(768), + [sym__expression] = STATE(1099), + [sym_yield_expression] = STATE(1567), + [sym_object] = STATE(1357), + [sym_array] = STATE(1360), + [sym_class] = STATE(1523), + [sym_function] = STATE(1523), + [sym_generator_function] = STATE(1523), + [sym_arrow_function] = STATE(1523), + [sym__call_signature] = STATE(3196), + [sym_call_expression] = STATE(1523), + [sym_new_expression] = STATE(1567), + [sym_await_expression] = STATE(1567), + [sym_member_expression] = STATE(768), + [sym_subscript_expression] = STATE(768), + [sym_assignment_expression] = STATE(1567), + [sym__augmented_assignment_lhs] = STATE(1928), + [sym_augmented_assignment_expression] = STATE(1567), + [sym_ternary_expression] = STATE(1567), + [sym_binary_expression] = STATE(1567), + [sym_unary_expression] = STATE(1567), + [sym_update_expression] = STATE(1567), + [sym_string] = STATE(1523), + [sym_template_string] = STATE(1523), + [sym_regex] = STATE(1523), + [sym_meta_property] = STATE(1523), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(774), + [sym_type_assertion] = STATE(1567), + [sym_as_expression] = STATE(1567), + [sym_internal_module] = STATE(1567), + [sym_type_arguments] = STATE(292), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2575), + [sym_identifier] = ACTIONS(567), + [anon_sym_export] = ACTIONS(531), + [anon_sym_namespace] = ACTIONS(533), + [anon_sym_LBRACE] = ACTIONS(571), + [anon_sym_type] = ACTIONS(531), [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(597), + [anon_sym_import] = ACTIONS(539), [anon_sym_BANG] = ACTIONS(29), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_await] = ACTIONS(39), @@ -36498,9 +38421,9 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(601), - [anon_sym_async] = ACTIONS(603), - [anon_sym_function] = ACTIONS(605), + [anon_sym_class] = ACTIONS(545), + [anon_sym_async] = ACTIONS(547), + [anon_sym_function] = ACTIONS(549), [anon_sym_new] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(77), [anon_sym_DASH] = ACTIONS(77), @@ -36521,147 +38444,236 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(589), - [anon_sym_get] = ACTIONS(589), - [anon_sym_set] = ACTIONS(589), - [anon_sym_declare] = ACTIONS(589), - [anon_sym_public] = ACTIONS(589), - [anon_sym_private] = ACTIONS(589), - [anon_sym_protected] = ACTIONS(589), - [anon_sym_module] = ACTIONS(589), - [anon_sym_any] = ACTIONS(589), - [anon_sym_number] = ACTIONS(589), - [anon_sym_boolean] = ACTIONS(589), - [anon_sym_string] = ACTIONS(589), - [anon_sym_symbol] = ACTIONS(589), - [sym_readonly] = ACTIONS(589), + [anon_sym_static] = ACTIONS(531), + [anon_sym_get] = ACTIONS(531), + [anon_sym_set] = ACTIONS(531), + [anon_sym_declare] = ACTIONS(531), + [anon_sym_public] = ACTIONS(531), + [anon_sym_private] = ACTIONS(531), + [anon_sym_protected] = ACTIONS(531), + [anon_sym_module] = ACTIONS(531), + [anon_sym_any] = ACTIONS(531), + [anon_sym_number] = ACTIONS(531), + [anon_sym_boolean] = ACTIONS(531), + [anon_sym_string] = ACTIONS(531), + [anon_sym_symbol] = ACTIONS(531), + [sym_readonly] = ACTIONS(531), }, - [260] = { - [sym_import] = STATE(1101), - [sym_parenthesized_expression] = STATE(739), - [sym__expression] = STATE(1040), - [sym_yield_expression] = STATE(1105), - [sym_object] = STATE(1297), - [sym_array] = STATE(1296), - [sym_class] = STATE(1101), - [sym_function] = STATE(1101), - [sym_generator_function] = STATE(1101), - [sym_arrow_function] = STATE(1101), - [sym__call_signature] = STATE(3116), - [sym_call_expression] = STATE(1101), - [sym_new_expression] = STATE(1105), - [sym_await_expression] = STATE(1105), - [sym_member_expression] = STATE(739), - [sym_subscript_expression] = STATE(739), - [sym_assignment_expression] = STATE(1105), - [sym__augmented_assignment_lhs] = STATE(1920), - [sym_augmented_assignment_expression] = STATE(1105), - [sym_ternary_expression] = STATE(1105), - [sym_binary_expression] = STATE(1105), - [sym_unary_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_string] = STATE(1101), - [sym_template_string] = STATE(1101), - [sym_regex] = STATE(1101), - [sym_meta_property] = STATE(1101), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(755), - [sym_type_assertion] = STATE(1105), - [sym_as_expression] = STATE(1105), - [sym_internal_module] = STATE(1105), - [sym_type_arguments] = STATE(361), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2497), - [sym_identifier] = ACTIONS(499), - [anon_sym_export] = ACTIONS(501), - [anon_sym_namespace] = ACTIONS(507), - [anon_sym_LBRACE] = ACTIONS(509), - [anon_sym_type] = ACTIONS(501), - [anon_sym_typeof] = ACTIONS(471), - [anon_sym_import] = ACTIONS(435), - [anon_sym_BANG] = ACTIONS(437), - [anon_sym_LPAREN] = ACTIONS(515), - [anon_sym_await] = ACTIONS(443), - [anon_sym_yield] = ACTIONS(445), - [anon_sym_LBRACK] = ACTIONS(517), + [281] = { + [sym_import] = STATE(1690), + [sym_parenthesized_expression] = STATE(834), + [sym__expression] = STATE(1263), + [sym_yield_expression] = STATE(1687), + [sym_object] = STATE(1538), + [sym_array] = STATE(1543), + [sym_class] = STATE(1690), + [sym_function] = STATE(1690), + [sym_generator_function] = STATE(1690), + [sym_arrow_function] = STATE(1690), + [sym__call_signature] = STATE(3133), + [sym_call_expression] = STATE(1690), + [sym_new_expression] = STATE(1687), + [sym_await_expression] = STATE(1687), + [sym_member_expression] = STATE(834), + [sym_subscript_expression] = STATE(834), + [sym_assignment_expression] = STATE(1687), + [sym__augmented_assignment_lhs] = STATE(1921), + [sym_augmented_assignment_expression] = STATE(1687), + [sym_ternary_expression] = STATE(1687), + [sym_binary_expression] = STATE(1687), + [sym_unary_expression] = STATE(1687), + [sym_update_expression] = STATE(1687), + [sym_string] = STATE(1690), + [sym_template_string] = STATE(1690), + [sym_regex] = STATE(1690), + [sym_meta_property] = STATE(1690), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(846), + [sym_type_assertion] = STATE(1687), + [sym_as_expression] = STATE(1687), + [sym_internal_module] = STATE(1687), + [sym_type_arguments] = STATE(301), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2545), + [sym_identifier] = ACTIONS(869), + [anon_sym_export] = ACTIONS(673), + [anon_sym_namespace] = ACTIONS(675), + [anon_sym_LBRACE] = ACTIONS(1270), + [anon_sym_type] = ACTIONS(673), + [anon_sym_typeof] = ACTIONS(707), + [anon_sym_import] = ACTIONS(681), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_await] = ACTIONS(687), + [anon_sym_yield] = ACTIONS(689), + [anon_sym_LBRACK] = ACTIONS(879), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(449), - [anon_sym_class] = ACTIONS(451), - [anon_sym_async] = ACTIONS(521), - [anon_sym_function] = ACTIONS(455), - [anon_sym_new] = ACTIONS(523), - [anon_sym_PLUS] = ACTIONS(525), - [anon_sym_DASH] = ACTIONS(525), - [anon_sym_TILDE] = ACTIONS(437), - [anon_sym_void] = ACTIONS(471), - [anon_sym_delete] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(473), - [anon_sym_DASH_DASH] = ACTIONS(473), - [anon_sym_DQUOTE] = ACTIONS(475), - [anon_sym_SQUOTE] = ACTIONS(477), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(479), - [sym_number] = ACTIONS(527), - [sym_this] = ACTIONS(485), - [sym_super] = ACTIONS(485), - [sym_true] = ACTIONS(485), - [sym_false] = ACTIONS(485), - [sym_null] = ACTIONS(485), - [sym_undefined] = ACTIONS(485), + [anon_sym_SLASH] = ACTIONS(693), + [anon_sym_class] = ACTIONS(695), + [anon_sym_async] = ACTIONS(697), + [anon_sym_function] = ACTIONS(699), + [anon_sym_new] = ACTIONS(881), + [anon_sym_PLUS] = ACTIONS(883), + [anon_sym_DASH] = ACTIONS(883), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_void] = ACTIONS(707), + [anon_sym_delete] = ACTIONS(707), + [anon_sym_PLUS_PLUS] = ACTIONS(709), + [anon_sym_DASH_DASH] = ACTIONS(709), + [anon_sym_DQUOTE] = ACTIONS(711), + [anon_sym_SQUOTE] = ACTIONS(713), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(715), + [sym_number] = ACTIONS(885), + [sym_this] = ACTIONS(721), + [sym_super] = ACTIONS(721), + [sym_true] = ACTIONS(721), + [sym_false] = ACTIONS(721), + [sym_null] = ACTIONS(721), + [sym_undefined] = ACTIONS(721), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(501), - [anon_sym_get] = ACTIONS(501), - [anon_sym_set] = ACTIONS(501), - [anon_sym_declare] = ACTIONS(501), - [anon_sym_public] = ACTIONS(501), - [anon_sym_private] = ACTIONS(501), - [anon_sym_protected] = ACTIONS(501), - [anon_sym_module] = ACTIONS(501), - [anon_sym_any] = ACTIONS(501), - [anon_sym_number] = ACTIONS(501), - [anon_sym_boolean] = ACTIONS(501), - [anon_sym_string] = ACTIONS(501), - [anon_sym_symbol] = ACTIONS(501), - [sym_readonly] = ACTIONS(501), + [anon_sym_static] = ACTIONS(673), + [anon_sym_get] = ACTIONS(673), + [anon_sym_set] = ACTIONS(673), + [anon_sym_declare] = ACTIONS(673), + [anon_sym_public] = ACTIONS(673), + [anon_sym_private] = ACTIONS(673), + [anon_sym_protected] = ACTIONS(673), + [anon_sym_module] = ACTIONS(673), + [anon_sym_any] = ACTIONS(673), + [anon_sym_number] = ACTIONS(673), + [anon_sym_boolean] = ACTIONS(673), + [anon_sym_string] = ACTIONS(673), + [anon_sym_symbol] = ACTIONS(673), + [sym_readonly] = ACTIONS(673), }, - [261] = { - [sym_import] = STATE(1101), - [sym_parenthesized_expression] = STATE(739), - [sym__expression] = STATE(1094), - [sym_yield_expression] = STATE(1105), - [sym_object] = STATE(1297), - [sym_array] = STATE(1296), - [sym_class] = STATE(1101), - [sym_function] = STATE(1101), - [sym_generator_function] = STATE(1101), - [sym_arrow_function] = STATE(1101), - [sym__call_signature] = STATE(3116), - [sym_call_expression] = STATE(1101), - [sym_new_expression] = STATE(1105), - [sym_await_expression] = STATE(1105), - [sym_member_expression] = STATE(739), - [sym_subscript_expression] = STATE(739), - [sym_assignment_expression] = STATE(1105), - [sym__augmented_assignment_lhs] = STATE(1920), - [sym_augmented_assignment_expression] = STATE(1105), - [sym_ternary_expression] = STATE(1105), - [sym_binary_expression] = STATE(1105), - [sym_unary_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_string] = STATE(1101), - [sym_template_string] = STATE(1101), - [sym_regex] = STATE(1101), - [sym_meta_property] = STATE(1101), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(755), - [sym_type_assertion] = STATE(1105), - [sym_as_expression] = STATE(1105), - [sym_internal_module] = STATE(1105), - [sym_type_arguments] = STATE(361), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2497), + [282] = { + [sym_import] = STATE(1690), + [sym_parenthesized_expression] = STATE(834), + [sym__expression] = STATE(1264), + [sym_yield_expression] = STATE(1687), + [sym_object] = STATE(1538), + [sym_array] = STATE(1543), + [sym_class] = STATE(1690), + [sym_function] = STATE(1690), + [sym_generator_function] = STATE(1690), + [sym_arrow_function] = STATE(1690), + [sym__call_signature] = STATE(3133), + [sym_call_expression] = STATE(1690), + [sym_new_expression] = STATE(1687), + [sym_await_expression] = STATE(1687), + [sym_member_expression] = STATE(834), + [sym_subscript_expression] = STATE(834), + [sym_assignment_expression] = STATE(1687), + [sym__augmented_assignment_lhs] = STATE(1921), + [sym_augmented_assignment_expression] = STATE(1687), + [sym_ternary_expression] = STATE(1687), + [sym_binary_expression] = STATE(1687), + [sym_unary_expression] = STATE(1687), + [sym_update_expression] = STATE(1687), + [sym_string] = STATE(1690), + [sym_template_string] = STATE(1690), + [sym_regex] = STATE(1690), + [sym_meta_property] = STATE(1690), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(846), + [sym_type_assertion] = STATE(1687), + [sym_as_expression] = STATE(1687), + [sym_internal_module] = STATE(1687), + [sym_type_arguments] = STATE(301), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2545), + [sym_identifier] = ACTIONS(869), + [anon_sym_export] = ACTIONS(673), + [anon_sym_namespace] = ACTIONS(675), + [anon_sym_LBRACE] = ACTIONS(1270), + [anon_sym_type] = ACTIONS(673), + [anon_sym_typeof] = ACTIONS(707), + [anon_sym_import] = ACTIONS(681), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_await] = ACTIONS(687), + [anon_sym_yield] = ACTIONS(689), + [anon_sym_LBRACK] = ACTIONS(879), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(693), + [anon_sym_class] = ACTIONS(695), + [anon_sym_async] = ACTIONS(697), + [anon_sym_function] = ACTIONS(699), + [anon_sym_new] = ACTIONS(881), + [anon_sym_PLUS] = ACTIONS(883), + [anon_sym_DASH] = ACTIONS(883), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_void] = ACTIONS(707), + [anon_sym_delete] = ACTIONS(707), + [anon_sym_PLUS_PLUS] = ACTIONS(709), + [anon_sym_DASH_DASH] = ACTIONS(709), + [anon_sym_DQUOTE] = ACTIONS(711), + [anon_sym_SQUOTE] = ACTIONS(713), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(715), + [sym_number] = ACTIONS(885), + [sym_this] = ACTIONS(721), + [sym_super] = ACTIONS(721), + [sym_true] = ACTIONS(721), + [sym_false] = ACTIONS(721), + [sym_null] = ACTIONS(721), + [sym_undefined] = ACTIONS(721), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(673), + [anon_sym_get] = ACTIONS(673), + [anon_sym_set] = ACTIONS(673), + [anon_sym_declare] = ACTIONS(673), + [anon_sym_public] = ACTIONS(673), + [anon_sym_private] = ACTIONS(673), + [anon_sym_protected] = ACTIONS(673), + [anon_sym_module] = ACTIONS(673), + [anon_sym_any] = ACTIONS(673), + [anon_sym_number] = ACTIONS(673), + [anon_sym_boolean] = ACTIONS(673), + [anon_sym_string] = ACTIONS(673), + [anon_sym_symbol] = ACTIONS(673), + [sym_readonly] = ACTIONS(673), + }, + [283] = { + [sym_import] = STATE(1151), + [sym_parenthesized_expression] = STATE(759), + [sym__expression] = STATE(1032), + [sym_yield_expression] = STATE(1144), + [sym_object] = STATE(1257), + [sym_array] = STATE(1254), + [sym_class] = STATE(1151), + [sym_function] = STATE(1151), + [sym_generator_function] = STATE(1151), + [sym_arrow_function] = STATE(1151), + [sym__call_signature] = STATE(3082), + [sym_call_expression] = STATE(1151), + [sym_new_expression] = STATE(1144), + [sym_await_expression] = STATE(1144), + [sym_member_expression] = STATE(759), + [sym_subscript_expression] = STATE(759), + [sym_assignment_expression] = STATE(1144), + [sym__augmented_assignment_lhs] = STATE(1924), + [sym_augmented_assignment_expression] = STATE(1144), + [sym_ternary_expression] = STATE(1144), + [sym_binary_expression] = STATE(1144), + [sym_unary_expression] = STATE(1144), + [sym_update_expression] = STATE(1144), + [sym_string] = STATE(1151), + [sym_template_string] = STATE(1151), + [sym_regex] = STATE(1151), + [sym_meta_property] = STATE(1151), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(754), + [sym_type_assertion] = STATE(1144), + [sym_as_expression] = STATE(1144), + [sym_internal_module] = STATE(1144), + [sym_type_arguments] = STATE(326), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2580), [sym_identifier] = ACTIONS(499), [anon_sym_export] = ACTIONS(501), [anon_sym_namespace] = ACTIONS(507), @@ -36714,68 +38726,246 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(501), [sym_readonly] = ACTIONS(501), }, - [262] = { - [sym_import] = STATE(1101), - [sym_parenthesized_expression] = STATE(948), - [sym__expression] = STATE(987), - [sym_yield_expression] = STATE(1105), - [sym_object] = STATE(1654), - [sym_array] = STATE(1640), - [sym_class] = STATE(1101), - [sym_function] = STATE(1101), - [sym_generator_function] = STATE(1101), - [sym_arrow_function] = STATE(1101), - [sym__call_signature] = STATE(3002), - [sym_call_expression] = STATE(1101), - [sym_new_expression] = STATE(1105), - [sym_await_expression] = STATE(1105), - [sym_member_expression] = STATE(948), - [sym_subscript_expression] = STATE(948), - [sym_assignment_expression] = STATE(1105), - [sym__augmented_assignment_lhs] = STATE(1921), - [sym_augmented_assignment_expression] = STATE(1105), - [sym_ternary_expression] = STATE(1105), - [sym_binary_expression] = STATE(1105), - [sym_unary_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_string] = STATE(1101), - [sym_template_string] = STATE(1101), - [sym_regex] = STATE(1101), - [sym_meta_property] = STATE(1101), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(949), - [sym_type_assertion] = STATE(1105), - [sym_as_expression] = STATE(1105), - [sym_internal_module] = STATE(1105), - [sym_type_arguments] = STATE(324), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2497), - [sym_identifier] = ACTIONS(859), - [anon_sym_export] = ACTIONS(635), - [anon_sym_namespace] = ACTIONS(637), - [anon_sym_LBRACE] = ACTIONS(509), - [anon_sym_type] = ACTIONS(635), - [anon_sym_typeof] = ACTIONS(659), + [284] = { + [sym_import] = STATE(1523), + [sym_parenthesized_expression] = STATE(768), + [sym__expression] = STATE(1108), + [sym_yield_expression] = STATE(1567), + [sym_object] = STATE(1357), + [sym_array] = STATE(1360), + [sym_class] = STATE(1523), + [sym_function] = STATE(1523), + [sym_generator_function] = STATE(1523), + [sym_arrow_function] = STATE(1523), + [sym__call_signature] = STATE(3196), + [sym_call_expression] = STATE(1523), + [sym_new_expression] = STATE(1567), + [sym_await_expression] = STATE(1567), + [sym_member_expression] = STATE(768), + [sym_subscript_expression] = STATE(768), + [sym_assignment_expression] = STATE(1567), + [sym__augmented_assignment_lhs] = STATE(1928), + [sym_augmented_assignment_expression] = STATE(1567), + [sym_ternary_expression] = STATE(1567), + [sym_binary_expression] = STATE(1567), + [sym_unary_expression] = STATE(1567), + [sym_update_expression] = STATE(1567), + [sym_string] = STATE(1523), + [sym_template_string] = STATE(1523), + [sym_regex] = STATE(1523), + [sym_meta_property] = STATE(1523), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(774), + [sym_type_assertion] = STATE(1567), + [sym_as_expression] = STATE(1567), + [sym_internal_module] = STATE(1567), + [sym_type_arguments] = STATE(292), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2575), + [sym_identifier] = ACTIONS(567), + [anon_sym_export] = ACTIONS(531), + [anon_sym_namespace] = ACTIONS(533), + [anon_sym_LBRACE] = ACTIONS(571), + [anon_sym_type] = ACTIONS(531), + [anon_sym_typeof] = ACTIONS(19), + [anon_sym_import] = ACTIONS(539), + [anon_sym_BANG] = ACTIONS(29), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(39), + [anon_sym_yield] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(545), + [anon_sym_async] = ACTIONS(547), + [anon_sym_function] = ACTIONS(549), + [anon_sym_new] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(29), + [anon_sym_void] = ACTIONS(19), + [anon_sym_delete] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_DQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(85), + [sym_number] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(531), + [anon_sym_get] = ACTIONS(531), + [anon_sym_set] = ACTIONS(531), + [anon_sym_declare] = ACTIONS(531), + [anon_sym_public] = ACTIONS(531), + [anon_sym_private] = ACTIONS(531), + [anon_sym_protected] = ACTIONS(531), + [anon_sym_module] = ACTIONS(531), + [anon_sym_any] = ACTIONS(531), + [anon_sym_number] = ACTIONS(531), + [anon_sym_boolean] = ACTIONS(531), + [anon_sym_string] = ACTIONS(531), + [anon_sym_symbol] = ACTIONS(531), + [sym_readonly] = ACTIONS(531), + }, + [285] = { + [sym_import] = STATE(1523), + [sym_parenthesized_expression] = STATE(768), + [sym__expression] = STATE(1109), + [sym_yield_expression] = STATE(1567), + [sym_object] = STATE(1357), + [sym_array] = STATE(1360), + [sym_class] = STATE(1523), + [sym_function] = STATE(1523), + [sym_generator_function] = STATE(1523), + [sym_arrow_function] = STATE(1523), + [sym__call_signature] = STATE(3196), + [sym_call_expression] = STATE(1523), + [sym_new_expression] = STATE(1567), + [sym_await_expression] = STATE(1567), + [sym_member_expression] = STATE(768), + [sym_subscript_expression] = STATE(768), + [sym_assignment_expression] = STATE(1567), + [sym__augmented_assignment_lhs] = STATE(1928), + [sym_augmented_assignment_expression] = STATE(1567), + [sym_ternary_expression] = STATE(1567), + [sym_binary_expression] = STATE(1567), + [sym_unary_expression] = STATE(1567), + [sym_update_expression] = STATE(1567), + [sym_string] = STATE(1523), + [sym_template_string] = STATE(1523), + [sym_regex] = STATE(1523), + [sym_meta_property] = STATE(1523), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(774), + [sym_type_assertion] = STATE(1567), + [sym_as_expression] = STATE(1567), + [sym_internal_module] = STATE(1567), + [sym_type_arguments] = STATE(292), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2575), + [sym_identifier] = ACTIONS(567), + [anon_sym_export] = ACTIONS(531), + [anon_sym_namespace] = ACTIONS(533), + [anon_sym_LBRACE] = ACTIONS(571), + [anon_sym_type] = ACTIONS(531), + [anon_sym_typeof] = ACTIONS(19), + [anon_sym_import] = ACTIONS(539), + [anon_sym_BANG] = ACTIONS(29), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(39), + [anon_sym_yield] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(545), + [anon_sym_async] = ACTIONS(547), + [anon_sym_function] = ACTIONS(549), + [anon_sym_new] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(29), + [anon_sym_void] = ACTIONS(19), + [anon_sym_delete] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_DQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(85), + [sym_number] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(531), + [anon_sym_get] = ACTIONS(531), + [anon_sym_set] = ACTIONS(531), + [anon_sym_declare] = ACTIONS(531), + [anon_sym_public] = ACTIONS(531), + [anon_sym_private] = ACTIONS(531), + [anon_sym_protected] = ACTIONS(531), + [anon_sym_module] = ACTIONS(531), + [anon_sym_any] = ACTIONS(531), + [anon_sym_number] = ACTIONS(531), + [anon_sym_boolean] = ACTIONS(531), + [anon_sym_string] = ACTIONS(531), + [anon_sym_symbol] = ACTIONS(531), + [sym_readonly] = ACTIONS(531), + }, + [286] = { + [sym_import] = STATE(1151), + [sym_parenthesized_expression] = STATE(837), + [sym__expression] = STATE(1245), + [sym_yield_expression] = STATE(1144), + [sym_object] = STATE(1495), + [sym_array] = STATE(1493), + [sym_class] = STATE(1151), + [sym_function] = STATE(1151), + [sym_generator_function] = STATE(1151), + [sym_arrow_function] = STATE(1151), + [sym__call_signature] = STATE(3190), + [sym_call_expression] = STATE(1151), + [sym_new_expression] = STATE(1144), + [sym_await_expression] = STATE(1144), + [sym_member_expression] = STATE(837), + [sym_subscript_expression] = STATE(837), + [sym_assignment_expression] = STATE(1144), + [sym__augmented_assignment_lhs] = STATE(1927), + [sym_augmented_assignment_expression] = STATE(1144), + [sym_ternary_expression] = STATE(1144), + [sym_binary_expression] = STATE(1144), + [sym_unary_expression] = STATE(1144), + [sym_update_expression] = STATE(1144), + [sym_string] = STATE(1151), + [sym_template_string] = STATE(1151), + [sym_regex] = STATE(1151), + [sym_meta_property] = STATE(1151), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(845), + [sym_type_assertion] = STATE(1144), + [sym_as_expression] = STATE(1144), + [sym_internal_module] = STATE(1144), + [sym_type_arguments] = STATE(357), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2580), + [sym_identifier] = ACTIONS(859), + [anon_sym_export] = ACTIONS(769), + [anon_sym_namespace] = ACTIONS(771), + [anon_sym_LBRACE] = ACTIONS(509), + [anon_sym_type] = ACTIONS(769), + [anon_sym_typeof] = ACTIONS(791), [anon_sym_import] = ACTIONS(435), - [anon_sym_BANG] = ACTIONS(643), + [anon_sym_BANG] = ACTIONS(775), [anon_sym_LPAREN] = ACTIONS(515), - [anon_sym_await] = ACTIONS(645), - [anon_sym_yield] = ACTIONS(647), + [anon_sym_await] = ACTIONS(777), + [anon_sym_yield] = ACTIONS(779), [anon_sym_LBRACK] = ACTIONS(517), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(449), + [anon_sym_SLASH] = ACTIONS(781), [anon_sym_class] = ACTIONS(451), - [anon_sym_async] = ACTIONS(651), + [anon_sym_async] = ACTIONS(783), [anon_sym_function] = ACTIONS(455), [anon_sym_new] = ACTIONS(865), [anon_sym_PLUS] = ACTIONS(867), [anon_sym_DASH] = ACTIONS(867), - [anon_sym_TILDE] = ACTIONS(643), - [anon_sym_void] = ACTIONS(659), - [anon_sym_delete] = ACTIONS(659), - [anon_sym_PLUS_PLUS] = ACTIONS(661), - [anon_sym_DASH_DASH] = ACTIONS(661), + [anon_sym_TILDE] = ACTIONS(775), + [anon_sym_void] = ACTIONS(791), + [anon_sym_delete] = ACTIONS(791), + [anon_sym_PLUS_PLUS] = ACTIONS(793), + [anon_sym_DASH_DASH] = ACTIONS(793), [anon_sym_DQUOTE] = ACTIONS(475), [anon_sym_SQUOTE] = ACTIONS(477), [sym_comment] = ACTIONS(3), @@ -36788,83 +38978,83 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(485), [sym_undefined] = ACTIONS(485), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(635), - [anon_sym_get] = ACTIONS(635), - [anon_sym_set] = ACTIONS(635), - [anon_sym_declare] = ACTIONS(635), - [anon_sym_public] = ACTIONS(635), - [anon_sym_private] = ACTIONS(635), - [anon_sym_protected] = ACTIONS(635), - [anon_sym_module] = ACTIONS(635), - [anon_sym_any] = ACTIONS(635), - [anon_sym_number] = ACTIONS(635), - [anon_sym_boolean] = ACTIONS(635), - [anon_sym_string] = ACTIONS(635), - [anon_sym_symbol] = ACTIONS(635), - [sym_readonly] = ACTIONS(635), + [anon_sym_static] = ACTIONS(769), + [anon_sym_get] = ACTIONS(769), + [anon_sym_set] = ACTIONS(769), + [anon_sym_declare] = ACTIONS(769), + [anon_sym_public] = ACTIONS(769), + [anon_sym_private] = ACTIONS(769), + [anon_sym_protected] = ACTIONS(769), + [anon_sym_module] = ACTIONS(769), + [anon_sym_any] = ACTIONS(769), + [anon_sym_number] = ACTIONS(769), + [anon_sym_boolean] = ACTIONS(769), + [anon_sym_string] = ACTIONS(769), + [anon_sym_symbol] = ACTIONS(769), + [sym_readonly] = ACTIONS(769), }, - [263] = { - [sym_import] = STATE(1498), - [sym_parenthesized_expression] = STATE(952), - [sym__expression] = STATE(1112), - [sym_yield_expression] = STATE(1518), - [sym_object] = STATE(1677), - [sym_array] = STATE(1671), - [sym_class] = STATE(1498), - [sym_function] = STATE(1498), - [sym_generator_function] = STATE(1498), - [sym_arrow_function] = STATE(1498), - [sym__call_signature] = STATE(3059), - [sym_call_expression] = STATE(1498), - [sym_new_expression] = STATE(1518), - [sym_await_expression] = STATE(1518), - [sym_member_expression] = STATE(952), - [sym_subscript_expression] = STATE(952), - [sym_assignment_expression] = STATE(1518), - [sym__augmented_assignment_lhs] = STATE(1919), - [sym_augmented_assignment_expression] = STATE(1518), - [sym_ternary_expression] = STATE(1518), - [sym_binary_expression] = STATE(1518), - [sym_unary_expression] = STATE(1518), - [sym_update_expression] = STATE(1518), - [sym_string] = STATE(1498), - [sym_template_string] = STATE(1498), - [sym_regex] = STATE(1498), - [sym_meta_property] = STATE(1498), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(946), - [sym_type_assertion] = STATE(1518), - [sym_as_expression] = STATE(1518), - [sym_internal_module] = STATE(1518), - [sym_type_arguments] = STATE(263), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2554), - [sym_identifier] = ACTIONS(869), - [anon_sym_export] = ACTIONS(675), - [anon_sym_namespace] = ACTIONS(677), - [anon_sym_LBRACE] = ACTIONS(595), - [anon_sym_type] = ACTIONS(675), - [anon_sym_typeof] = ACTIONS(697), - [anon_sym_import] = ACTIONS(597), - [anon_sym_BANG] = ACTIONS(681), + [287] = { + [sym_import] = STATE(1523), + [sym_parenthesized_expression] = STATE(768), + [sym__expression] = STATE(1118), + [sym_yield_expression] = STATE(1567), + [sym_object] = STATE(1357), + [sym_array] = STATE(1360), + [sym_class] = STATE(1523), + [sym_function] = STATE(1523), + [sym_generator_function] = STATE(1523), + [sym_arrow_function] = STATE(1523), + [sym__call_signature] = STATE(3196), + [sym_call_expression] = STATE(1523), + [sym_new_expression] = STATE(1567), + [sym_await_expression] = STATE(1567), + [sym_member_expression] = STATE(768), + [sym_subscript_expression] = STATE(768), + [sym_assignment_expression] = STATE(1567), + [sym__augmented_assignment_lhs] = STATE(1928), + [sym_augmented_assignment_expression] = STATE(1567), + [sym_ternary_expression] = STATE(1567), + [sym_binary_expression] = STATE(1567), + [sym_unary_expression] = STATE(1567), + [sym_update_expression] = STATE(1567), + [sym_string] = STATE(1523), + [sym_template_string] = STATE(1523), + [sym_regex] = STATE(1523), + [sym_meta_property] = STATE(1523), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(774), + [sym_type_assertion] = STATE(1567), + [sym_as_expression] = STATE(1567), + [sym_internal_module] = STATE(1567), + [sym_type_arguments] = STATE(292), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2575), + [sym_identifier] = ACTIONS(567), + [anon_sym_export] = ACTIONS(531), + [anon_sym_namespace] = ACTIONS(533), + [anon_sym_LBRACE] = ACTIONS(571), + [anon_sym_type] = ACTIONS(531), + [anon_sym_typeof] = ACTIONS(19), + [anon_sym_import] = ACTIONS(539), + [anon_sym_BANG] = ACTIONS(29), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(683), - [anon_sym_yield] = ACTIONS(685), + [anon_sym_await] = ACTIONS(39), + [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(601), - [anon_sym_async] = ACTIONS(689), - [anon_sym_function] = ACTIONS(605), - [anon_sym_new] = ACTIONS(875), - [anon_sym_PLUS] = ACTIONS(877), - [anon_sym_DASH] = ACTIONS(877), - [anon_sym_TILDE] = ACTIONS(681), - [anon_sym_void] = ACTIONS(697), - [anon_sym_delete] = ACTIONS(697), - [anon_sym_PLUS_PLUS] = ACTIONS(699), - [anon_sym_DASH_DASH] = ACTIONS(699), + [anon_sym_class] = ACTIONS(545), + [anon_sym_async] = ACTIONS(547), + [anon_sym_function] = ACTIONS(549), + [anon_sym_new] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(29), + [anon_sym_void] = ACTIONS(19), + [anon_sym_delete] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_DQUOTE] = ACTIONS(81), [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), @@ -36877,83 +39067,83 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(675), - [anon_sym_get] = ACTIONS(675), - [anon_sym_set] = ACTIONS(675), - [anon_sym_declare] = ACTIONS(675), - [anon_sym_public] = ACTIONS(675), - [anon_sym_private] = ACTIONS(675), - [anon_sym_protected] = ACTIONS(675), - [anon_sym_module] = ACTIONS(675), - [anon_sym_any] = ACTIONS(675), - [anon_sym_number] = ACTIONS(675), - [anon_sym_boolean] = ACTIONS(675), - [anon_sym_string] = ACTIONS(675), - [anon_sym_symbol] = ACTIONS(675), - [sym_readonly] = ACTIONS(675), + [anon_sym_static] = ACTIONS(531), + [anon_sym_get] = ACTIONS(531), + [anon_sym_set] = ACTIONS(531), + [anon_sym_declare] = ACTIONS(531), + [anon_sym_public] = ACTIONS(531), + [anon_sym_private] = ACTIONS(531), + [anon_sym_protected] = ACTIONS(531), + [anon_sym_module] = ACTIONS(531), + [anon_sym_any] = ACTIONS(531), + [anon_sym_number] = ACTIONS(531), + [anon_sym_boolean] = ACTIONS(531), + [anon_sym_string] = ACTIONS(531), + [anon_sym_symbol] = ACTIONS(531), + [sym_readonly] = ACTIONS(531), }, - [264] = { - [sym_import] = STATE(1101), - [sym_parenthesized_expression] = STATE(948), - [sym__expression] = STATE(1334), - [sym_yield_expression] = STATE(1105), - [sym_object] = STATE(1654), - [sym_array] = STATE(1640), - [sym_class] = STATE(1101), - [sym_function] = STATE(1101), - [sym_generator_function] = STATE(1101), - [sym_arrow_function] = STATE(1101), - [sym__call_signature] = STATE(3002), - [sym_call_expression] = STATE(1101), - [sym_new_expression] = STATE(1105), - [sym_await_expression] = STATE(1105), - [sym_member_expression] = STATE(948), - [sym_subscript_expression] = STATE(948), - [sym_assignment_expression] = STATE(1105), - [sym__augmented_assignment_lhs] = STATE(1921), - [sym_augmented_assignment_expression] = STATE(1105), - [sym_ternary_expression] = STATE(1105), - [sym_binary_expression] = STATE(1105), - [sym_unary_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_string] = STATE(1101), - [sym_template_string] = STATE(1101), - [sym_regex] = STATE(1101), - [sym_meta_property] = STATE(1101), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(949), - [sym_type_assertion] = STATE(1105), - [sym_as_expression] = STATE(1105), - [sym_internal_module] = STATE(1105), - [sym_type_arguments] = STATE(324), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2497), + [288] = { + [sym_import] = STATE(1151), + [sym_parenthesized_expression] = STATE(837), + [sym__expression] = STATE(1215), + [sym_yield_expression] = STATE(1144), + [sym_object] = STATE(1495), + [sym_array] = STATE(1493), + [sym_class] = STATE(1151), + [sym_function] = STATE(1151), + [sym_generator_function] = STATE(1151), + [sym_arrow_function] = STATE(1151), + [sym__call_signature] = STATE(3190), + [sym_call_expression] = STATE(1151), + [sym_new_expression] = STATE(1144), + [sym_await_expression] = STATE(1144), + [sym_member_expression] = STATE(837), + [sym_subscript_expression] = STATE(837), + [sym_assignment_expression] = STATE(1144), + [sym__augmented_assignment_lhs] = STATE(1927), + [sym_augmented_assignment_expression] = STATE(1144), + [sym_ternary_expression] = STATE(1144), + [sym_binary_expression] = STATE(1144), + [sym_unary_expression] = STATE(1144), + [sym_update_expression] = STATE(1144), + [sym_string] = STATE(1151), + [sym_template_string] = STATE(1151), + [sym_regex] = STATE(1151), + [sym_meta_property] = STATE(1151), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(845), + [sym_type_assertion] = STATE(1144), + [sym_as_expression] = STATE(1144), + [sym_internal_module] = STATE(1144), + [sym_type_arguments] = STATE(357), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2580), [sym_identifier] = ACTIONS(859), - [anon_sym_export] = ACTIONS(635), - [anon_sym_namespace] = ACTIONS(637), + [anon_sym_export] = ACTIONS(769), + [anon_sym_namespace] = ACTIONS(771), [anon_sym_LBRACE] = ACTIONS(509), - [anon_sym_type] = ACTIONS(635), - [anon_sym_typeof] = ACTIONS(659), + [anon_sym_type] = ACTIONS(769), + [anon_sym_typeof] = ACTIONS(791), [anon_sym_import] = ACTIONS(435), - [anon_sym_BANG] = ACTIONS(643), + [anon_sym_BANG] = ACTIONS(775), [anon_sym_LPAREN] = ACTIONS(515), - [anon_sym_await] = ACTIONS(645), - [anon_sym_yield] = ACTIONS(647), + [anon_sym_await] = ACTIONS(777), + [anon_sym_yield] = ACTIONS(779), [anon_sym_LBRACK] = ACTIONS(517), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(449), + [anon_sym_SLASH] = ACTIONS(781), [anon_sym_class] = ACTIONS(451), - [anon_sym_async] = ACTIONS(651), + [anon_sym_async] = ACTIONS(783), [anon_sym_function] = ACTIONS(455), [anon_sym_new] = ACTIONS(865), [anon_sym_PLUS] = ACTIONS(867), [anon_sym_DASH] = ACTIONS(867), - [anon_sym_TILDE] = ACTIONS(643), - [anon_sym_void] = ACTIONS(659), - [anon_sym_delete] = ACTIONS(659), - [anon_sym_PLUS_PLUS] = ACTIONS(661), - [anon_sym_DASH_DASH] = ACTIONS(661), + [anon_sym_TILDE] = ACTIONS(775), + [anon_sym_void] = ACTIONS(791), + [anon_sym_delete] = ACTIONS(791), + [anon_sym_PLUS_PLUS] = ACTIONS(793), + [anon_sym_DASH_DASH] = ACTIONS(793), [anon_sym_DQUOTE] = ACTIONS(475), [anon_sym_SQUOTE] = ACTIONS(477), [sym_comment] = ACTIONS(3), @@ -36966,6 +39156,95 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(485), [sym_undefined] = ACTIONS(485), [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(769), + [anon_sym_get] = ACTIONS(769), + [anon_sym_set] = ACTIONS(769), + [anon_sym_declare] = ACTIONS(769), + [anon_sym_public] = ACTIONS(769), + [anon_sym_private] = ACTIONS(769), + [anon_sym_protected] = ACTIONS(769), + [anon_sym_module] = ACTIONS(769), + [anon_sym_any] = ACTIONS(769), + [anon_sym_number] = ACTIONS(769), + [anon_sym_boolean] = ACTIONS(769), + [anon_sym_string] = ACTIONS(769), + [anon_sym_symbol] = ACTIONS(769), + [sym_readonly] = ACTIONS(769), + }, + [289] = { + [sym_import] = STATE(1523), + [sym_parenthesized_expression] = STATE(955), + [sym__expression] = STATE(1398), + [sym_yield_expression] = STATE(1567), + [sym_object] = STATE(1636), + [sym_array] = STATE(1643), + [sym_class] = STATE(1523), + [sym_function] = STATE(1523), + [sym_generator_function] = STATE(1523), + [sym_arrow_function] = STATE(1523), + [sym__call_signature] = STATE(3078), + [sym_call_expression] = STATE(1523), + [sym_new_expression] = STATE(1567), + [sym_await_expression] = STATE(1567), + [sym_member_expression] = STATE(955), + [sym_subscript_expression] = STATE(955), + [sym_assignment_expression] = STATE(1567), + [sym__augmented_assignment_lhs] = STATE(1929), + [sym_augmented_assignment_expression] = STATE(1567), + [sym_ternary_expression] = STATE(1567), + [sym_binary_expression] = STATE(1567), + [sym_unary_expression] = STATE(1567), + [sym_update_expression] = STATE(1567), + [sym_string] = STATE(1523), + [sym_template_string] = STATE(1523), + [sym_regex] = STATE(1523), + [sym_meta_property] = STATE(1523), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(953), + [sym_type_assertion] = STATE(1567), + [sym_as_expression] = STATE(1567), + [sym_internal_module] = STATE(1567), + [sym_type_arguments] = STATE(384), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2575), + [sym_identifier] = ACTIONS(887), + [anon_sym_export] = ACTIONS(635), + [anon_sym_namespace] = ACTIONS(637), + [anon_sym_LBRACE] = ACTIONS(571), + [anon_sym_type] = ACTIONS(635), + [anon_sym_typeof] = ACTIONS(657), + [anon_sym_import] = ACTIONS(539), + [anon_sym_BANG] = ACTIONS(641), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(643), + [anon_sym_yield] = ACTIONS(645), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(545), + [anon_sym_async] = ACTIONS(649), + [anon_sym_function] = ACTIONS(549), + [anon_sym_new] = ACTIONS(893), + [anon_sym_PLUS] = ACTIONS(895), + [anon_sym_DASH] = ACTIONS(895), + [anon_sym_TILDE] = ACTIONS(641), + [anon_sym_void] = ACTIONS(657), + [anon_sym_delete] = ACTIONS(657), + [anon_sym_PLUS_PLUS] = ACTIONS(659), + [anon_sym_DASH_DASH] = ACTIONS(659), + [anon_sym_DQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(85), + [sym_number] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(635), [anon_sym_get] = ACTIONS(635), [anon_sym_set] = ACTIONS(635), @@ -36981,43 +39260,132 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(635), [sym_readonly] = ACTIONS(635), }, - [265] = { - [sym_import] = STATE(1101), - [sym_parenthesized_expression] = STATE(739), - [sym__expression] = STATE(1085), - [sym_yield_expression] = STATE(1105), - [sym_object] = STATE(1297), - [sym_array] = STATE(1296), - [sym_class] = STATE(1101), - [sym_function] = STATE(1101), - [sym_generator_function] = STATE(1101), - [sym_arrow_function] = STATE(1101), - [sym__call_signature] = STATE(3116), - [sym_call_expression] = STATE(1101), - [sym_new_expression] = STATE(1105), - [sym_await_expression] = STATE(1105), - [sym_member_expression] = STATE(739), - [sym_subscript_expression] = STATE(739), - [sym_assignment_expression] = STATE(1105), - [sym__augmented_assignment_lhs] = STATE(1920), - [sym_augmented_assignment_expression] = STATE(1105), - [sym_ternary_expression] = STATE(1105), - [sym_binary_expression] = STATE(1105), - [sym_unary_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_string] = STATE(1101), - [sym_template_string] = STATE(1101), - [sym_regex] = STATE(1101), - [sym_meta_property] = STATE(1101), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(755), - [sym_type_assertion] = STATE(1105), - [sym_as_expression] = STATE(1105), - [sym_internal_module] = STATE(1105), - [sym_type_arguments] = STATE(361), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2497), + [290] = { + [sym_import] = STATE(1151), + [sym_parenthesized_expression] = STATE(837), + [sym__expression] = STATE(1277), + [sym_yield_expression] = STATE(1144), + [sym_object] = STATE(1495), + [sym_array] = STATE(1493), + [sym_class] = STATE(1151), + [sym_function] = STATE(1151), + [sym_generator_function] = STATE(1151), + [sym_arrow_function] = STATE(1151), + [sym__call_signature] = STATE(3190), + [sym_call_expression] = STATE(1151), + [sym_new_expression] = STATE(1144), + [sym_await_expression] = STATE(1144), + [sym_member_expression] = STATE(837), + [sym_subscript_expression] = STATE(837), + [sym_assignment_expression] = STATE(1144), + [sym__augmented_assignment_lhs] = STATE(1927), + [sym_augmented_assignment_expression] = STATE(1144), + [sym_ternary_expression] = STATE(1144), + [sym_binary_expression] = STATE(1144), + [sym_unary_expression] = STATE(1144), + [sym_update_expression] = STATE(1144), + [sym_string] = STATE(1151), + [sym_template_string] = STATE(1151), + [sym_regex] = STATE(1151), + [sym_meta_property] = STATE(1151), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(845), + [sym_type_assertion] = STATE(1144), + [sym_as_expression] = STATE(1144), + [sym_internal_module] = STATE(1144), + [sym_type_arguments] = STATE(357), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2580), + [sym_identifier] = ACTIONS(859), + [anon_sym_export] = ACTIONS(769), + [anon_sym_namespace] = ACTIONS(771), + [anon_sym_LBRACE] = ACTIONS(509), + [anon_sym_type] = ACTIONS(769), + [anon_sym_typeof] = ACTIONS(791), + [anon_sym_import] = ACTIONS(435), + [anon_sym_BANG] = ACTIONS(775), + [anon_sym_LPAREN] = ACTIONS(515), + [anon_sym_await] = ACTIONS(777), + [anon_sym_yield] = ACTIONS(779), + [anon_sym_LBRACK] = ACTIONS(517), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(781), + [anon_sym_class] = ACTIONS(451), + [anon_sym_async] = ACTIONS(783), + [anon_sym_function] = ACTIONS(455), + [anon_sym_new] = ACTIONS(865), + [anon_sym_PLUS] = ACTIONS(867), + [anon_sym_DASH] = ACTIONS(867), + [anon_sym_TILDE] = ACTIONS(775), + [anon_sym_void] = ACTIONS(791), + [anon_sym_delete] = ACTIONS(791), + [anon_sym_PLUS_PLUS] = ACTIONS(793), + [anon_sym_DASH_DASH] = ACTIONS(793), + [anon_sym_DQUOTE] = ACTIONS(475), + [anon_sym_SQUOTE] = ACTIONS(477), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(479), + [sym_number] = ACTIONS(527), + [sym_this] = ACTIONS(485), + [sym_super] = ACTIONS(485), + [sym_true] = ACTIONS(485), + [sym_false] = ACTIONS(485), + [sym_null] = ACTIONS(485), + [sym_undefined] = ACTIONS(485), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(769), + [anon_sym_get] = ACTIONS(769), + [anon_sym_set] = ACTIONS(769), + [anon_sym_declare] = ACTIONS(769), + [anon_sym_public] = ACTIONS(769), + [anon_sym_private] = ACTIONS(769), + [anon_sym_protected] = ACTIONS(769), + [anon_sym_module] = ACTIONS(769), + [anon_sym_any] = ACTIONS(769), + [anon_sym_number] = ACTIONS(769), + [anon_sym_boolean] = ACTIONS(769), + [anon_sym_string] = ACTIONS(769), + [anon_sym_symbol] = ACTIONS(769), + [sym_readonly] = ACTIONS(769), + }, + [291] = { + [sym_import] = STATE(1151), + [sym_parenthesized_expression] = STATE(759), + [sym__expression] = STATE(1021), + [sym_yield_expression] = STATE(1144), + [sym_object] = STATE(1257), + [sym_array] = STATE(1254), + [sym_class] = STATE(1151), + [sym_function] = STATE(1151), + [sym_generator_function] = STATE(1151), + [sym_arrow_function] = STATE(1151), + [sym__call_signature] = STATE(3082), + [sym_call_expression] = STATE(1151), + [sym_new_expression] = STATE(1144), + [sym_await_expression] = STATE(1144), + [sym_member_expression] = STATE(759), + [sym_subscript_expression] = STATE(759), + [sym_assignment_expression] = STATE(1144), + [sym__augmented_assignment_lhs] = STATE(1924), + [sym_augmented_assignment_expression] = STATE(1144), + [sym_ternary_expression] = STATE(1144), + [sym_binary_expression] = STATE(1144), + [sym_unary_expression] = STATE(1144), + [sym_update_expression] = STATE(1144), + [sym_string] = STATE(1151), + [sym_template_string] = STATE(1151), + [sym_regex] = STATE(1151), + [sym_meta_property] = STATE(1151), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(754), + [sym_type_assertion] = STATE(1144), + [sym_as_expression] = STATE(1144), + [sym_internal_module] = STATE(1144), + [sym_type_arguments] = STATE(326), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2580), [sym_identifier] = ACTIONS(499), [anon_sym_export] = ACTIONS(501), [anon_sym_namespace] = ACTIONS(507), @@ -37070,139 +39438,50 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(501), [sym_readonly] = ACTIONS(501), }, - [266] = { - [ts_builtin_sym_end] = ACTIONS(1461), - [sym_identifier] = ACTIONS(1463), - [anon_sym_export] = ACTIONS(1463), - [anon_sym_default] = ACTIONS(1463), - [anon_sym_EQ] = ACTIONS(1463), - [anon_sym_namespace] = ACTIONS(1463), - [anon_sym_LBRACE] = ACTIONS(1461), - [anon_sym_COMMA] = ACTIONS(1461), - [anon_sym_RBRACE] = ACTIONS(1461), - [anon_sym_type] = ACTIONS(1463), - [anon_sym_typeof] = ACTIONS(1463), - [anon_sym_import] = ACTIONS(1463), - [anon_sym_var] = ACTIONS(1463), - [anon_sym_let] = ACTIONS(1463), - [anon_sym_const] = ACTIONS(1463), - [anon_sym_BANG] = ACTIONS(1461), - [anon_sym_else] = ACTIONS(1463), - [anon_sym_if] = ACTIONS(1463), - [anon_sym_switch] = ACTIONS(1463), - [anon_sym_for] = ACTIONS(1463), - [anon_sym_LPAREN] = ACTIONS(1461), - [anon_sym_RPAREN] = ACTIONS(1461), - [anon_sym_await] = ACTIONS(1463), - [anon_sym_while] = ACTIONS(1463), - [anon_sym_do] = ACTIONS(1463), - [anon_sym_try] = ACTIONS(1463), - [anon_sym_with] = ACTIONS(1463), - [anon_sym_break] = ACTIONS(1463), - [anon_sym_continue] = ACTIONS(1463), - [anon_sym_debugger] = ACTIONS(1463), - [anon_sym_return] = ACTIONS(1463), - [anon_sym_throw] = ACTIONS(1463), - [anon_sym_SEMI] = ACTIONS(1461), - [anon_sym_COLON] = ACTIONS(1461), - [anon_sym_case] = ACTIONS(1463), - [anon_sym_yield] = ACTIONS(1463), - [anon_sym_LBRACK] = ACTIONS(1461), - [anon_sym_RBRACK] = ACTIONS(1461), - [anon_sym_LT] = ACTIONS(1461), - [anon_sym_GT] = ACTIONS(1461), - [anon_sym_SLASH] = ACTIONS(1463), - [anon_sym_class] = ACTIONS(1463), - [anon_sym_async] = ACTIONS(1463), - [anon_sym_function] = ACTIONS(1463), - [anon_sym_EQ_GT] = ACTIONS(1461), - [anon_sym_new] = ACTIONS(1463), - [anon_sym_QMARK] = ACTIONS(1461), - [anon_sym_AMP] = ACTIONS(1461), - [anon_sym_PIPE] = ACTIONS(1461), - [anon_sym_PLUS] = ACTIONS(1463), - [anon_sym_DASH] = ACTIONS(1463), - [anon_sym_TILDE] = ACTIONS(1461), - [anon_sym_void] = ACTIONS(1463), - [anon_sym_delete] = ACTIONS(1463), - [anon_sym_PLUS_PLUS] = ACTIONS(1461), - [anon_sym_DASH_DASH] = ACTIONS(1461), - [anon_sym_DQUOTE] = ACTIONS(1461), - [anon_sym_SQUOTE] = ACTIONS(1461), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1461), - [sym_number] = ACTIONS(1461), - [sym_this] = ACTIONS(1463), - [sym_super] = ACTIONS(1463), - [sym_true] = ACTIONS(1463), - [sym_false] = ACTIONS(1463), - [sym_null] = ACTIONS(1463), - [sym_undefined] = ACTIONS(1463), - [anon_sym_AT] = ACTIONS(1461), - [anon_sym_static] = ACTIONS(1463), - [anon_sym_abstract] = ACTIONS(1463), - [anon_sym_get] = ACTIONS(1463), - [anon_sym_set] = ACTIONS(1463), - [anon_sym_declare] = ACTIONS(1463), - [anon_sym_public] = ACTIONS(1463), - [anon_sym_private] = ACTIONS(1463), - [anon_sym_protected] = ACTIONS(1463), - [anon_sym_module] = ACTIONS(1463), - [anon_sym_any] = ACTIONS(1463), - [anon_sym_number] = ACTIONS(1463), - [anon_sym_boolean] = ACTIONS(1463), - [anon_sym_string] = ACTIONS(1463), - [anon_sym_symbol] = ACTIONS(1463), - [anon_sym_implements] = ACTIONS(1463), - [anon_sym_interface] = ACTIONS(1463), - [anon_sym_extends] = ACTIONS(1463), - [anon_sym_enum] = ACTIONS(1463), - [sym_readonly] = ACTIONS(1463), - }, - [267] = { - [sym_import] = STATE(1498), - [sym_parenthesized_expression] = STATE(764), - [sym__expression] = STATE(1114), - [sym_yield_expression] = STATE(1518), - [sym_object] = STATE(1435), - [sym_array] = STATE(1433), - [sym_class] = STATE(1498), - [sym_function] = STATE(1498), - [sym_generator_function] = STATE(1498), - [sym_arrow_function] = STATE(1498), - [sym__call_signature] = STATE(3145), - [sym_call_expression] = STATE(1498), - [sym_new_expression] = STATE(1518), - [sym_await_expression] = STATE(1518), - [sym_member_expression] = STATE(764), - [sym_subscript_expression] = STATE(764), - [sym_assignment_expression] = STATE(1518), - [sym__augmented_assignment_lhs] = STATE(1925), - [sym_augmented_assignment_expression] = STATE(1518), - [sym_ternary_expression] = STATE(1518), - [sym_binary_expression] = STATE(1518), - [sym_unary_expression] = STATE(1518), - [sym_update_expression] = STATE(1518), - [sym_string] = STATE(1498), - [sym_template_string] = STATE(1498), - [sym_regex] = STATE(1498), - [sym_meta_property] = STATE(1498), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(772), - [sym_type_assertion] = STATE(1518), - [sym_as_expression] = STATE(1518), - [sym_internal_module] = STATE(1518), - [sym_type_arguments] = STATE(349), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2554), - [sym_identifier] = ACTIONS(587), - [anon_sym_export] = ACTIONS(589), - [anon_sym_namespace] = ACTIONS(593), - [anon_sym_LBRACE] = ACTIONS(595), - [anon_sym_type] = ACTIONS(589), + [292] = { + [sym_import] = STATE(1523), + [sym_parenthesized_expression] = STATE(768), + [sym__expression] = STATE(1120), + [sym_yield_expression] = STATE(1567), + [sym_object] = STATE(1357), + [sym_array] = STATE(1360), + [sym_class] = STATE(1523), + [sym_function] = STATE(1523), + [sym_generator_function] = STATE(1523), + [sym_arrow_function] = STATE(1523), + [sym__call_signature] = STATE(3196), + [sym_call_expression] = STATE(1523), + [sym_new_expression] = STATE(1567), + [sym_await_expression] = STATE(1567), + [sym_member_expression] = STATE(768), + [sym_subscript_expression] = STATE(768), + [sym_assignment_expression] = STATE(1567), + [sym__augmented_assignment_lhs] = STATE(1928), + [sym_augmented_assignment_expression] = STATE(1567), + [sym_ternary_expression] = STATE(1567), + [sym_binary_expression] = STATE(1567), + [sym_unary_expression] = STATE(1567), + [sym_update_expression] = STATE(1567), + [sym_string] = STATE(1523), + [sym_template_string] = STATE(1523), + [sym_regex] = STATE(1523), + [sym_meta_property] = STATE(1523), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(774), + [sym_type_assertion] = STATE(1567), + [sym_as_expression] = STATE(1567), + [sym_internal_module] = STATE(1567), + [sym_type_arguments] = STATE(292), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2575), + [sym_identifier] = ACTIONS(567), + [anon_sym_export] = ACTIONS(531), + [anon_sym_namespace] = ACTIONS(533), + [anon_sym_LBRACE] = ACTIONS(571), + [anon_sym_type] = ACTIONS(531), [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(597), + [anon_sym_import] = ACTIONS(539), [anon_sym_BANG] = ACTIONS(29), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_await] = ACTIONS(39), @@ -37210,9 +39489,9 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(601), - [anon_sym_async] = ACTIONS(603), - [anon_sym_function] = ACTIONS(605), + [anon_sym_class] = ACTIONS(545), + [anon_sym_async] = ACTIONS(547), + [anon_sym_function] = ACTIONS(549), [anon_sym_new] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(77), [anon_sym_DASH] = ACTIONS(77), @@ -37233,65 +39512,65 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(589), - [anon_sym_get] = ACTIONS(589), - [anon_sym_set] = ACTIONS(589), - [anon_sym_declare] = ACTIONS(589), - [anon_sym_public] = ACTIONS(589), - [anon_sym_private] = ACTIONS(589), - [anon_sym_protected] = ACTIONS(589), - [anon_sym_module] = ACTIONS(589), - [anon_sym_any] = ACTIONS(589), - [anon_sym_number] = ACTIONS(589), - [anon_sym_boolean] = ACTIONS(589), - [anon_sym_string] = ACTIONS(589), - [anon_sym_symbol] = ACTIONS(589), - [sym_readonly] = ACTIONS(589), + [anon_sym_static] = ACTIONS(531), + [anon_sym_get] = ACTIONS(531), + [anon_sym_set] = ACTIONS(531), + [anon_sym_declare] = ACTIONS(531), + [anon_sym_public] = ACTIONS(531), + [anon_sym_private] = ACTIONS(531), + [anon_sym_protected] = ACTIONS(531), + [anon_sym_module] = ACTIONS(531), + [anon_sym_any] = ACTIONS(531), + [anon_sym_number] = ACTIONS(531), + [anon_sym_boolean] = ACTIONS(531), + [anon_sym_string] = ACTIONS(531), + [anon_sym_symbol] = ACTIONS(531), + [sym_readonly] = ACTIONS(531), }, - [268] = { - [sym_import] = STATE(1498), - [sym_parenthesized_expression] = STATE(764), - [sym__expression] = STATE(1106), - [sym_yield_expression] = STATE(1518), - [sym_object] = STATE(1435), - [sym_array] = STATE(1433), - [sym_class] = STATE(1498), - [sym_function] = STATE(1498), - [sym_generator_function] = STATE(1498), - [sym_arrow_function] = STATE(1498), - [sym__call_signature] = STATE(3145), - [sym_call_expression] = STATE(1498), - [sym_new_expression] = STATE(1518), - [sym_await_expression] = STATE(1518), - [sym_member_expression] = STATE(764), - [sym_subscript_expression] = STATE(764), - [sym_assignment_expression] = STATE(1518), - [sym__augmented_assignment_lhs] = STATE(1925), - [sym_augmented_assignment_expression] = STATE(1518), - [sym_ternary_expression] = STATE(1518), - [sym_binary_expression] = STATE(1518), - [sym_unary_expression] = STATE(1518), - [sym_update_expression] = STATE(1518), - [sym_string] = STATE(1498), - [sym_template_string] = STATE(1498), - [sym_regex] = STATE(1498), - [sym_meta_property] = STATE(1498), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(772), - [sym_type_assertion] = STATE(1518), - [sym_as_expression] = STATE(1518), - [sym_internal_module] = STATE(1518), - [sym_type_arguments] = STATE(349), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2554), - [sym_identifier] = ACTIONS(587), - [anon_sym_export] = ACTIONS(589), - [anon_sym_namespace] = ACTIONS(593), - [anon_sym_LBRACE] = ACTIONS(595), - [anon_sym_type] = ACTIONS(589), + [293] = { + [sym_import] = STATE(1523), + [sym_parenthesized_expression] = STATE(768), + [sym__expression] = STATE(1128), + [sym_yield_expression] = STATE(1567), + [sym_object] = STATE(1357), + [sym_array] = STATE(1360), + [sym_class] = STATE(1523), + [sym_function] = STATE(1523), + [sym_generator_function] = STATE(1523), + [sym_arrow_function] = STATE(1523), + [sym__call_signature] = STATE(3196), + [sym_call_expression] = STATE(1523), + [sym_new_expression] = STATE(1567), + [sym_await_expression] = STATE(1567), + [sym_member_expression] = STATE(768), + [sym_subscript_expression] = STATE(768), + [sym_assignment_expression] = STATE(1567), + [sym__augmented_assignment_lhs] = STATE(1928), + [sym_augmented_assignment_expression] = STATE(1567), + [sym_ternary_expression] = STATE(1567), + [sym_binary_expression] = STATE(1567), + [sym_unary_expression] = STATE(1567), + [sym_update_expression] = STATE(1567), + [sym_string] = STATE(1523), + [sym_template_string] = STATE(1523), + [sym_regex] = STATE(1523), + [sym_meta_property] = STATE(1523), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(774), + [sym_type_assertion] = STATE(1567), + [sym_as_expression] = STATE(1567), + [sym_internal_module] = STATE(1567), + [sym_type_arguments] = STATE(292), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2575), + [sym_identifier] = ACTIONS(567), + [anon_sym_export] = ACTIONS(531), + [anon_sym_namespace] = ACTIONS(533), + [anon_sym_LBRACE] = ACTIONS(571), + [anon_sym_type] = ACTIONS(531), [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(597), + [anon_sym_import] = ACTIONS(539), [anon_sym_BANG] = ACTIONS(29), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_await] = ACTIONS(39), @@ -37299,9 +39578,9 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(601), - [anon_sym_async] = ACTIONS(603), - [anon_sym_function] = ACTIONS(605), + [anon_sym_class] = ACTIONS(545), + [anon_sym_async] = ACTIONS(547), + [anon_sym_function] = ACTIONS(549), [anon_sym_new] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(77), [anon_sym_DASH] = ACTIONS(77), @@ -37322,83 +39601,83 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(589), - [anon_sym_get] = ACTIONS(589), - [anon_sym_set] = ACTIONS(589), - [anon_sym_declare] = ACTIONS(589), - [anon_sym_public] = ACTIONS(589), - [anon_sym_private] = ACTIONS(589), - [anon_sym_protected] = ACTIONS(589), - [anon_sym_module] = ACTIONS(589), - [anon_sym_any] = ACTIONS(589), - [anon_sym_number] = ACTIONS(589), - [anon_sym_boolean] = ACTIONS(589), - [anon_sym_string] = ACTIONS(589), - [anon_sym_symbol] = ACTIONS(589), - [sym_readonly] = ACTIONS(589), + [anon_sym_static] = ACTIONS(531), + [anon_sym_get] = ACTIONS(531), + [anon_sym_set] = ACTIONS(531), + [anon_sym_declare] = ACTIONS(531), + [anon_sym_public] = ACTIONS(531), + [anon_sym_private] = ACTIONS(531), + [anon_sym_protected] = ACTIONS(531), + [anon_sym_module] = ACTIONS(531), + [anon_sym_any] = ACTIONS(531), + [anon_sym_number] = ACTIONS(531), + [anon_sym_boolean] = ACTIONS(531), + [anon_sym_string] = ACTIONS(531), + [anon_sym_symbol] = ACTIONS(531), + [sym_readonly] = ACTIONS(531), }, - [269] = { - [sym_import] = STATE(1498), - [sym_parenthesized_expression] = STATE(952), - [sym__expression] = STATE(1416), - [sym_yield_expression] = STATE(1518), - [sym_object] = STATE(1677), - [sym_array] = STATE(1671), - [sym_class] = STATE(1498), - [sym_function] = STATE(1498), - [sym_generator_function] = STATE(1498), - [sym_arrow_function] = STATE(1498), - [sym__call_signature] = STATE(3059), - [sym_call_expression] = STATE(1498), - [sym_new_expression] = STATE(1518), - [sym_await_expression] = STATE(1518), - [sym_member_expression] = STATE(952), - [sym_subscript_expression] = STATE(952), - [sym_assignment_expression] = STATE(1518), - [sym__augmented_assignment_lhs] = STATE(1919), - [sym_augmented_assignment_expression] = STATE(1518), - [sym_ternary_expression] = STATE(1518), - [sym_binary_expression] = STATE(1518), - [sym_unary_expression] = STATE(1518), - [sym_update_expression] = STATE(1518), - [sym_string] = STATE(1498), - [sym_template_string] = STATE(1498), - [sym_regex] = STATE(1498), - [sym_meta_property] = STATE(1498), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(946), - [sym_type_assertion] = STATE(1518), - [sym_as_expression] = STATE(1518), - [sym_internal_module] = STATE(1518), - [sym_type_arguments] = STATE(263), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2554), - [sym_identifier] = ACTIONS(869), - [anon_sym_export] = ACTIONS(675), - [anon_sym_namespace] = ACTIONS(677), - [anon_sym_LBRACE] = ACTIONS(595), - [anon_sym_type] = ACTIONS(675), - [anon_sym_typeof] = ACTIONS(697), - [anon_sym_import] = ACTIONS(597), - [anon_sym_BANG] = ACTIONS(681), + [294] = { + [sym_import] = STATE(1523), + [sym_parenthesized_expression] = STATE(955), + [sym__expression] = STATE(1362), + [sym_yield_expression] = STATE(1567), + [sym_object] = STATE(1636), + [sym_array] = STATE(1643), + [sym_class] = STATE(1523), + [sym_function] = STATE(1523), + [sym_generator_function] = STATE(1523), + [sym_arrow_function] = STATE(1523), + [sym__call_signature] = STATE(3078), + [sym_call_expression] = STATE(1523), + [sym_new_expression] = STATE(1567), + [sym_await_expression] = STATE(1567), + [sym_member_expression] = STATE(955), + [sym_subscript_expression] = STATE(955), + [sym_assignment_expression] = STATE(1567), + [sym__augmented_assignment_lhs] = STATE(1929), + [sym_augmented_assignment_expression] = STATE(1567), + [sym_ternary_expression] = STATE(1567), + [sym_binary_expression] = STATE(1567), + [sym_unary_expression] = STATE(1567), + [sym_update_expression] = STATE(1567), + [sym_string] = STATE(1523), + [sym_template_string] = STATE(1523), + [sym_regex] = STATE(1523), + [sym_meta_property] = STATE(1523), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(953), + [sym_type_assertion] = STATE(1567), + [sym_as_expression] = STATE(1567), + [sym_internal_module] = STATE(1567), + [sym_type_arguments] = STATE(384), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2575), + [sym_identifier] = ACTIONS(887), + [anon_sym_export] = ACTIONS(635), + [anon_sym_namespace] = ACTIONS(637), + [anon_sym_LBRACE] = ACTIONS(571), + [anon_sym_type] = ACTIONS(635), + [anon_sym_typeof] = ACTIONS(657), + [anon_sym_import] = ACTIONS(539), + [anon_sym_BANG] = ACTIONS(641), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(683), - [anon_sym_yield] = ACTIONS(685), + [anon_sym_await] = ACTIONS(643), + [anon_sym_yield] = ACTIONS(645), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(601), - [anon_sym_async] = ACTIONS(689), - [anon_sym_function] = ACTIONS(605), - [anon_sym_new] = ACTIONS(875), - [anon_sym_PLUS] = ACTIONS(877), - [anon_sym_DASH] = ACTIONS(877), - [anon_sym_TILDE] = ACTIONS(681), - [anon_sym_void] = ACTIONS(697), - [anon_sym_delete] = ACTIONS(697), - [anon_sym_PLUS_PLUS] = ACTIONS(699), - [anon_sym_DASH_DASH] = ACTIONS(699), + [anon_sym_class] = ACTIONS(545), + [anon_sym_async] = ACTIONS(649), + [anon_sym_function] = ACTIONS(549), + [anon_sym_new] = ACTIONS(893), + [anon_sym_PLUS] = ACTIONS(895), + [anon_sym_DASH] = ACTIONS(895), + [anon_sym_TILDE] = ACTIONS(641), + [anon_sym_void] = ACTIONS(657), + [anon_sym_delete] = ACTIONS(657), + [anon_sym_PLUS_PLUS] = ACTIONS(659), + [anon_sym_DASH_DASH] = ACTIONS(659), [anon_sym_DQUOTE] = ACTIONS(81), [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), @@ -37411,58 +39690,147 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(675), - [anon_sym_get] = ACTIONS(675), - [anon_sym_set] = ACTIONS(675), - [anon_sym_declare] = ACTIONS(675), - [anon_sym_public] = ACTIONS(675), - [anon_sym_private] = ACTIONS(675), - [anon_sym_protected] = ACTIONS(675), - [anon_sym_module] = ACTIONS(675), - [anon_sym_any] = ACTIONS(675), - [anon_sym_number] = ACTIONS(675), - [anon_sym_boolean] = ACTIONS(675), - [anon_sym_string] = ACTIONS(675), - [anon_sym_symbol] = ACTIONS(675), - [sym_readonly] = ACTIONS(675), + [anon_sym_static] = ACTIONS(635), + [anon_sym_get] = ACTIONS(635), + [anon_sym_set] = ACTIONS(635), + [anon_sym_declare] = ACTIONS(635), + [anon_sym_public] = ACTIONS(635), + [anon_sym_private] = ACTIONS(635), + [anon_sym_protected] = ACTIONS(635), + [anon_sym_module] = ACTIONS(635), + [anon_sym_any] = ACTIONS(635), + [anon_sym_number] = ACTIONS(635), + [anon_sym_boolean] = ACTIONS(635), + [anon_sym_string] = ACTIONS(635), + [anon_sym_symbol] = ACTIONS(635), + [sym_readonly] = ACTIONS(635), }, - [270] = { - [sym_import] = STATE(1101), - [sym_parenthesized_expression] = STATE(739), - [sym__expression] = STATE(1086), - [sym_yield_expression] = STATE(1105), - [sym_object] = STATE(1297), - [sym_array] = STATE(1296), - [sym_class] = STATE(1101), - [sym_function] = STATE(1101), - [sym_generator_function] = STATE(1101), - [sym_arrow_function] = STATE(1101), - [sym__call_signature] = STATE(3116), - [sym_call_expression] = STATE(1101), - [sym_new_expression] = STATE(1105), - [sym_await_expression] = STATE(1105), - [sym_member_expression] = STATE(739), - [sym_subscript_expression] = STATE(739), - [sym_assignment_expression] = STATE(1105), - [sym__augmented_assignment_lhs] = STATE(1920), - [sym_augmented_assignment_expression] = STATE(1105), - [sym_ternary_expression] = STATE(1105), - [sym_binary_expression] = STATE(1105), - [sym_unary_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_string] = STATE(1101), - [sym_template_string] = STATE(1101), - [sym_regex] = STATE(1101), - [sym_meta_property] = STATE(1101), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(755), - [sym_type_assertion] = STATE(1105), - [sym_as_expression] = STATE(1105), - [sym_internal_module] = STATE(1105), - [sym_type_arguments] = STATE(361), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2497), + [295] = { + [sym_import] = STATE(1151), + [sym_parenthesized_expression] = STATE(956), + [sym__expression] = STATE(1550), + [sym_yield_expression] = STATE(1144), + [sym_object] = STATE(1653), + [sym_array] = STATE(1660), + [sym_class] = STATE(1151), + [sym_function] = STATE(1151), + [sym_generator_function] = STATE(1151), + [sym_arrow_function] = STATE(1151), + [sym__call_signature] = STATE(3024), + [sym_call_expression] = STATE(1151), + [sym_new_expression] = STATE(1144), + [sym_await_expression] = STATE(1144), + [sym_member_expression] = STATE(956), + [sym_subscript_expression] = STATE(956), + [sym_assignment_expression] = STATE(1144), + [sym__augmented_assignment_lhs] = STATE(1925), + [sym_augmented_assignment_expression] = STATE(1144), + [sym_ternary_expression] = STATE(1144), + [sym_binary_expression] = STATE(1144), + [sym_unary_expression] = STATE(1144), + [sym_update_expression] = STATE(1144), + [sym_string] = STATE(1151), + [sym_template_string] = STATE(1151), + [sym_regex] = STATE(1151), + [sym_meta_property] = STATE(1151), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(950), + [sym_type_assertion] = STATE(1144), + [sym_as_expression] = STATE(1144), + [sym_internal_module] = STATE(1144), + [sym_type_arguments] = STATE(395), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2580), + [sym_identifier] = ACTIONS(897), + [anon_sym_export] = ACTIONS(577), + [anon_sym_namespace] = ACTIONS(579), + [anon_sym_LBRACE] = ACTIONS(509), + [anon_sym_type] = ACTIONS(577), + [anon_sym_typeof] = ACTIONS(601), + [anon_sym_import] = ACTIONS(435), + [anon_sym_BANG] = ACTIONS(585), + [anon_sym_LPAREN] = ACTIONS(515), + [anon_sym_await] = ACTIONS(587), + [anon_sym_yield] = ACTIONS(589), + [anon_sym_LBRACK] = ACTIONS(517), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(449), + [anon_sym_class] = ACTIONS(451), + [anon_sym_async] = ACTIONS(593), + [anon_sym_function] = ACTIONS(455), + [anon_sym_new] = ACTIONS(903), + [anon_sym_PLUS] = ACTIONS(905), + [anon_sym_DASH] = ACTIONS(905), + [anon_sym_TILDE] = ACTIONS(585), + [anon_sym_void] = ACTIONS(601), + [anon_sym_delete] = ACTIONS(601), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_DQUOTE] = ACTIONS(475), + [anon_sym_SQUOTE] = ACTIONS(477), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(479), + [sym_number] = ACTIONS(527), + [sym_this] = ACTIONS(485), + [sym_super] = ACTIONS(485), + [sym_true] = ACTIONS(485), + [sym_false] = ACTIONS(485), + [sym_null] = ACTIONS(485), + [sym_undefined] = ACTIONS(485), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(577), + [anon_sym_get] = ACTIONS(577), + [anon_sym_set] = ACTIONS(577), + [anon_sym_declare] = ACTIONS(577), + [anon_sym_public] = ACTIONS(577), + [anon_sym_private] = ACTIONS(577), + [anon_sym_protected] = ACTIONS(577), + [anon_sym_module] = ACTIONS(577), + [anon_sym_any] = ACTIONS(577), + [anon_sym_number] = ACTIONS(577), + [anon_sym_boolean] = ACTIONS(577), + [anon_sym_string] = ACTIONS(577), + [anon_sym_symbol] = ACTIONS(577), + [sym_readonly] = ACTIONS(577), + }, + [296] = { + [sym_import] = STATE(1151), + [sym_parenthesized_expression] = STATE(759), + [sym__expression] = STATE(1030), + [sym_yield_expression] = STATE(1144), + [sym_object] = STATE(1257), + [sym_array] = STATE(1254), + [sym_class] = STATE(1151), + [sym_function] = STATE(1151), + [sym_generator_function] = STATE(1151), + [sym_arrow_function] = STATE(1151), + [sym__call_signature] = STATE(3082), + [sym_call_expression] = STATE(1151), + [sym_new_expression] = STATE(1144), + [sym_await_expression] = STATE(1144), + [sym_member_expression] = STATE(759), + [sym_subscript_expression] = STATE(759), + [sym_assignment_expression] = STATE(1144), + [sym__augmented_assignment_lhs] = STATE(1924), + [sym_augmented_assignment_expression] = STATE(1144), + [sym_ternary_expression] = STATE(1144), + [sym_binary_expression] = STATE(1144), + [sym_unary_expression] = STATE(1144), + [sym_update_expression] = STATE(1144), + [sym_string] = STATE(1151), + [sym_template_string] = STATE(1151), + [sym_regex] = STATE(1151), + [sym_meta_property] = STATE(1151), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(754), + [sym_type_assertion] = STATE(1144), + [sym_as_expression] = STATE(1144), + [sym_internal_module] = STATE(1144), + [sym_type_arguments] = STATE(326), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2580), [sym_identifier] = ACTIONS(499), [anon_sym_export] = ACTIONS(501), [anon_sym_namespace] = ACTIONS(507), @@ -37515,68 +39883,68 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(501), [sym_readonly] = ACTIONS(501), }, - [271] = { - [sym_import] = STATE(1101), - [sym_parenthesized_expression] = STATE(948), - [sym__expression] = STATE(1494), - [sym_yield_expression] = STATE(1105), - [sym_object] = STATE(1654), - [sym_array] = STATE(1640), - [sym_class] = STATE(1101), - [sym_function] = STATE(1101), - [sym_generator_function] = STATE(1101), - [sym_arrow_function] = STATE(1101), - [sym__call_signature] = STATE(3002), - [sym_call_expression] = STATE(1101), - [sym_new_expression] = STATE(1105), - [sym_await_expression] = STATE(1105), - [sym_member_expression] = STATE(948), - [sym_subscript_expression] = STATE(948), - [sym_assignment_expression] = STATE(1105), - [sym__augmented_assignment_lhs] = STATE(1921), - [sym_augmented_assignment_expression] = STATE(1105), - [sym_ternary_expression] = STATE(1105), - [sym_binary_expression] = STATE(1105), - [sym_unary_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_string] = STATE(1101), - [sym_template_string] = STATE(1101), - [sym_regex] = STATE(1101), - [sym_meta_property] = STATE(1101), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(949), - [sym_type_assertion] = STATE(1105), - [sym_as_expression] = STATE(1105), - [sym_internal_module] = STATE(1105), - [sym_type_arguments] = STATE(324), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2497), + [297] = { + [sym_import] = STATE(1151), + [sym_parenthesized_expression] = STATE(837), + [sym__expression] = STATE(1244), + [sym_yield_expression] = STATE(1144), + [sym_object] = STATE(1495), + [sym_array] = STATE(1493), + [sym_class] = STATE(1151), + [sym_function] = STATE(1151), + [sym_generator_function] = STATE(1151), + [sym_arrow_function] = STATE(1151), + [sym__call_signature] = STATE(3190), + [sym_call_expression] = STATE(1151), + [sym_new_expression] = STATE(1144), + [sym_await_expression] = STATE(1144), + [sym_member_expression] = STATE(837), + [sym_subscript_expression] = STATE(837), + [sym_assignment_expression] = STATE(1144), + [sym__augmented_assignment_lhs] = STATE(1927), + [sym_augmented_assignment_expression] = STATE(1144), + [sym_ternary_expression] = STATE(1144), + [sym_binary_expression] = STATE(1144), + [sym_unary_expression] = STATE(1144), + [sym_update_expression] = STATE(1144), + [sym_string] = STATE(1151), + [sym_template_string] = STATE(1151), + [sym_regex] = STATE(1151), + [sym_meta_property] = STATE(1151), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(845), + [sym_type_assertion] = STATE(1144), + [sym_as_expression] = STATE(1144), + [sym_internal_module] = STATE(1144), + [sym_type_arguments] = STATE(357), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2580), [sym_identifier] = ACTIONS(859), - [anon_sym_export] = ACTIONS(635), - [anon_sym_namespace] = ACTIONS(637), + [anon_sym_export] = ACTIONS(769), + [anon_sym_namespace] = ACTIONS(771), [anon_sym_LBRACE] = ACTIONS(509), - [anon_sym_type] = ACTIONS(635), - [anon_sym_typeof] = ACTIONS(659), + [anon_sym_type] = ACTIONS(769), + [anon_sym_typeof] = ACTIONS(791), [anon_sym_import] = ACTIONS(435), - [anon_sym_BANG] = ACTIONS(643), + [anon_sym_BANG] = ACTIONS(775), [anon_sym_LPAREN] = ACTIONS(515), - [anon_sym_await] = ACTIONS(645), - [anon_sym_yield] = ACTIONS(647), + [anon_sym_await] = ACTIONS(777), + [anon_sym_yield] = ACTIONS(779), [anon_sym_LBRACK] = ACTIONS(517), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(449), + [anon_sym_SLASH] = ACTIONS(781), [anon_sym_class] = ACTIONS(451), - [anon_sym_async] = ACTIONS(651), + [anon_sym_async] = ACTIONS(783), [anon_sym_function] = ACTIONS(455), [anon_sym_new] = ACTIONS(865), [anon_sym_PLUS] = ACTIONS(867), [anon_sym_DASH] = ACTIONS(867), - [anon_sym_TILDE] = ACTIONS(643), - [anon_sym_void] = ACTIONS(659), - [anon_sym_delete] = ACTIONS(659), - [anon_sym_PLUS_PLUS] = ACTIONS(661), - [anon_sym_DASH_DASH] = ACTIONS(661), + [anon_sym_TILDE] = ACTIONS(775), + [anon_sym_void] = ACTIONS(791), + [anon_sym_delete] = ACTIONS(791), + [anon_sym_PLUS_PLUS] = ACTIONS(793), + [anon_sym_DASH_DASH] = ACTIONS(793), [anon_sym_DQUOTE] = ACTIONS(475), [anon_sym_SQUOTE] = ACTIONS(477), [sym_comment] = ACTIONS(3), @@ -37589,147 +39957,503 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(485), [sym_undefined] = ACTIONS(485), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(635), - [anon_sym_get] = ACTIONS(635), - [anon_sym_set] = ACTIONS(635), - [anon_sym_declare] = ACTIONS(635), - [anon_sym_public] = ACTIONS(635), - [anon_sym_private] = ACTIONS(635), - [anon_sym_protected] = ACTIONS(635), - [anon_sym_module] = ACTIONS(635), - [anon_sym_any] = ACTIONS(635), - [anon_sym_number] = ACTIONS(635), - [anon_sym_boolean] = ACTIONS(635), - [anon_sym_string] = ACTIONS(635), - [anon_sym_symbol] = ACTIONS(635), - [sym_readonly] = ACTIONS(635), + [anon_sym_static] = ACTIONS(769), + [anon_sym_get] = ACTIONS(769), + [anon_sym_set] = ACTIONS(769), + [anon_sym_declare] = ACTIONS(769), + [anon_sym_public] = ACTIONS(769), + [anon_sym_private] = ACTIONS(769), + [anon_sym_protected] = ACTIONS(769), + [anon_sym_module] = ACTIONS(769), + [anon_sym_any] = ACTIONS(769), + [anon_sym_number] = ACTIONS(769), + [anon_sym_boolean] = ACTIONS(769), + [anon_sym_string] = ACTIONS(769), + [anon_sym_symbol] = ACTIONS(769), + [sym_readonly] = ACTIONS(769), }, - [272] = { - [sym_import] = STATE(1498), - [sym_parenthesized_expression] = STATE(764), - [sym__expression] = STATE(1118), - [sym_yield_expression] = STATE(1518), - [sym_object] = STATE(1435), - [sym_array] = STATE(1433), - [sym_class] = STATE(1498), - [sym_function] = STATE(1498), - [sym_generator_function] = STATE(1498), - [sym_arrow_function] = STATE(1498), - [sym__call_signature] = STATE(3145), - [sym_call_expression] = STATE(1498), - [sym_new_expression] = STATE(1518), - [sym_await_expression] = STATE(1518), - [sym_member_expression] = STATE(764), - [sym_subscript_expression] = STATE(764), - [sym_assignment_expression] = STATE(1518), - [sym__augmented_assignment_lhs] = STATE(1925), - [sym_augmented_assignment_expression] = STATE(1518), - [sym_ternary_expression] = STATE(1518), - [sym_binary_expression] = STATE(1518), - [sym_unary_expression] = STATE(1518), - [sym_update_expression] = STATE(1518), - [sym_string] = STATE(1498), - [sym_template_string] = STATE(1498), - [sym_regex] = STATE(1498), - [sym_meta_property] = STATE(1498), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(772), - [sym_type_assertion] = STATE(1518), - [sym_as_expression] = STATE(1518), - [sym_internal_module] = STATE(1518), - [sym_type_arguments] = STATE(349), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2554), - [sym_identifier] = ACTIONS(587), - [anon_sym_export] = ACTIONS(589), - [anon_sym_namespace] = ACTIONS(593), - [anon_sym_LBRACE] = ACTIONS(595), - [anon_sym_type] = ACTIONS(589), - [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(597), - [anon_sym_BANG] = ACTIONS(29), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(39), - [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(63), + [298] = { + [sym_import] = STATE(1151), + [sym_parenthesized_expression] = STATE(837), + [sym__expression] = STATE(1242), + [sym_yield_expression] = STATE(1144), + [sym_object] = STATE(1495), + [sym_array] = STATE(1493), + [sym_class] = STATE(1151), + [sym_function] = STATE(1151), + [sym_generator_function] = STATE(1151), + [sym_arrow_function] = STATE(1151), + [sym__call_signature] = STATE(3190), + [sym_call_expression] = STATE(1151), + [sym_new_expression] = STATE(1144), + [sym_await_expression] = STATE(1144), + [sym_member_expression] = STATE(837), + [sym_subscript_expression] = STATE(837), + [sym_assignment_expression] = STATE(1144), + [sym__augmented_assignment_lhs] = STATE(1927), + [sym_augmented_assignment_expression] = STATE(1144), + [sym_ternary_expression] = STATE(1144), + [sym_binary_expression] = STATE(1144), + [sym_unary_expression] = STATE(1144), + [sym_update_expression] = STATE(1144), + [sym_string] = STATE(1151), + [sym_template_string] = STATE(1151), + [sym_regex] = STATE(1151), + [sym_meta_property] = STATE(1151), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(845), + [sym_type_assertion] = STATE(1144), + [sym_as_expression] = STATE(1144), + [sym_internal_module] = STATE(1144), + [sym_type_arguments] = STATE(357), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2580), + [sym_identifier] = ACTIONS(859), + [anon_sym_export] = ACTIONS(769), + [anon_sym_namespace] = ACTIONS(771), + [anon_sym_LBRACE] = ACTIONS(509), + [anon_sym_type] = ACTIONS(769), + [anon_sym_typeof] = ACTIONS(791), + [anon_sym_import] = ACTIONS(435), + [anon_sym_BANG] = ACTIONS(775), + [anon_sym_LPAREN] = ACTIONS(515), + [anon_sym_await] = ACTIONS(777), + [anon_sym_yield] = ACTIONS(779), + [anon_sym_LBRACK] = ACTIONS(517), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(601), - [anon_sym_async] = ACTIONS(603), - [anon_sym_function] = ACTIONS(605), - [anon_sym_new] = ACTIONS(75), - [anon_sym_PLUS] = ACTIONS(77), - [anon_sym_DASH] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(29), - [anon_sym_void] = ACTIONS(19), - [anon_sym_delete] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), + [anon_sym_SLASH] = ACTIONS(781), + [anon_sym_class] = ACTIONS(451), + [anon_sym_async] = ACTIONS(783), + [anon_sym_function] = ACTIONS(455), + [anon_sym_new] = ACTIONS(865), + [anon_sym_PLUS] = ACTIONS(867), + [anon_sym_DASH] = ACTIONS(867), + [anon_sym_TILDE] = ACTIONS(775), + [anon_sym_void] = ACTIONS(791), + [anon_sym_delete] = ACTIONS(791), + [anon_sym_PLUS_PLUS] = ACTIONS(793), + [anon_sym_DASH_DASH] = ACTIONS(793), + [anon_sym_DQUOTE] = ACTIONS(475), + [anon_sym_SQUOTE] = ACTIONS(477), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(85), - [sym_number] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), + [anon_sym_BQUOTE] = ACTIONS(479), + [sym_number] = ACTIONS(527), + [sym_this] = ACTIONS(485), + [sym_super] = ACTIONS(485), + [sym_true] = ACTIONS(485), + [sym_false] = ACTIONS(485), + [sym_null] = ACTIONS(485), + [sym_undefined] = ACTIONS(485), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(589), - [anon_sym_get] = ACTIONS(589), - [anon_sym_set] = ACTIONS(589), - [anon_sym_declare] = ACTIONS(589), - [anon_sym_public] = ACTIONS(589), - [anon_sym_private] = ACTIONS(589), - [anon_sym_protected] = ACTIONS(589), - [anon_sym_module] = ACTIONS(589), - [anon_sym_any] = ACTIONS(589), - [anon_sym_number] = ACTIONS(589), - [anon_sym_boolean] = ACTIONS(589), - [anon_sym_string] = ACTIONS(589), - [anon_sym_symbol] = ACTIONS(589), - [sym_readonly] = ACTIONS(589), + [anon_sym_static] = ACTIONS(769), + [anon_sym_get] = ACTIONS(769), + [anon_sym_set] = ACTIONS(769), + [anon_sym_declare] = ACTIONS(769), + [anon_sym_public] = ACTIONS(769), + [anon_sym_private] = ACTIONS(769), + [anon_sym_protected] = ACTIONS(769), + [anon_sym_module] = ACTIONS(769), + [anon_sym_any] = ACTIONS(769), + [anon_sym_number] = ACTIONS(769), + [anon_sym_boolean] = ACTIONS(769), + [anon_sym_string] = ACTIONS(769), + [anon_sym_symbol] = ACTIONS(769), + [sym_readonly] = ACTIONS(769), }, - [273] = { - [sym_import] = STATE(1101), - [sym_parenthesized_expression] = STATE(739), - [sym__expression] = STATE(1082), - [sym_yield_expression] = STATE(1105), - [sym_object] = STATE(1297), - [sym_array] = STATE(1296), - [sym_class] = STATE(1101), - [sym_function] = STATE(1101), - [sym_generator_function] = STATE(1101), - [sym_arrow_function] = STATE(1101), - [sym__call_signature] = STATE(3116), - [sym_call_expression] = STATE(1101), - [sym_new_expression] = STATE(1105), - [sym_await_expression] = STATE(1105), - [sym_member_expression] = STATE(739), - [sym_subscript_expression] = STATE(739), - [sym_assignment_expression] = STATE(1105), - [sym__augmented_assignment_lhs] = STATE(1920), - [sym_augmented_assignment_expression] = STATE(1105), - [sym_ternary_expression] = STATE(1105), - [sym_binary_expression] = STATE(1105), - [sym_unary_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_string] = STATE(1101), - [sym_template_string] = STATE(1101), - [sym_regex] = STATE(1101), - [sym_meta_property] = STATE(1101), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(755), - [sym_type_assertion] = STATE(1105), - [sym_as_expression] = STATE(1105), - [sym_internal_module] = STATE(1105), - [sym_type_arguments] = STATE(361), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2497), + [299] = { + [sym_import] = STATE(1690), + [sym_parenthesized_expression] = STATE(834), + [sym__expression] = STATE(1309), + [sym_yield_expression] = STATE(1687), + [sym_object] = STATE(1538), + [sym_array] = STATE(1543), + [sym_class] = STATE(1690), + [sym_function] = STATE(1690), + [sym_generator_function] = STATE(1690), + [sym_arrow_function] = STATE(1690), + [sym__call_signature] = STATE(3133), + [sym_call_expression] = STATE(1690), + [sym_new_expression] = STATE(1687), + [sym_await_expression] = STATE(1687), + [sym_member_expression] = STATE(834), + [sym_subscript_expression] = STATE(834), + [sym_assignment_expression] = STATE(1687), + [sym__augmented_assignment_lhs] = STATE(1921), + [sym_augmented_assignment_expression] = STATE(1687), + [sym_ternary_expression] = STATE(1687), + [sym_binary_expression] = STATE(1687), + [sym_unary_expression] = STATE(1687), + [sym_update_expression] = STATE(1687), + [sym_string] = STATE(1690), + [sym_template_string] = STATE(1690), + [sym_regex] = STATE(1690), + [sym_meta_property] = STATE(1690), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(846), + [sym_type_assertion] = STATE(1687), + [sym_as_expression] = STATE(1687), + [sym_internal_module] = STATE(1687), + [sym_type_arguments] = STATE(301), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2545), + [sym_identifier] = ACTIONS(869), + [anon_sym_export] = ACTIONS(673), + [anon_sym_namespace] = ACTIONS(675), + [anon_sym_LBRACE] = ACTIONS(1270), + [anon_sym_type] = ACTIONS(673), + [anon_sym_typeof] = ACTIONS(707), + [anon_sym_import] = ACTIONS(681), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_await] = ACTIONS(687), + [anon_sym_yield] = ACTIONS(689), + [anon_sym_LBRACK] = ACTIONS(879), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(693), + [anon_sym_class] = ACTIONS(695), + [anon_sym_async] = ACTIONS(697), + [anon_sym_function] = ACTIONS(699), + [anon_sym_new] = ACTIONS(881), + [anon_sym_PLUS] = ACTIONS(883), + [anon_sym_DASH] = ACTIONS(883), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_void] = ACTIONS(707), + [anon_sym_delete] = ACTIONS(707), + [anon_sym_PLUS_PLUS] = ACTIONS(709), + [anon_sym_DASH_DASH] = ACTIONS(709), + [anon_sym_DQUOTE] = ACTIONS(711), + [anon_sym_SQUOTE] = ACTIONS(713), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(715), + [sym_number] = ACTIONS(885), + [sym_this] = ACTIONS(721), + [sym_super] = ACTIONS(721), + [sym_true] = ACTIONS(721), + [sym_false] = ACTIONS(721), + [sym_null] = ACTIONS(721), + [sym_undefined] = ACTIONS(721), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(673), + [anon_sym_get] = ACTIONS(673), + [anon_sym_set] = ACTIONS(673), + [anon_sym_declare] = ACTIONS(673), + [anon_sym_public] = ACTIONS(673), + [anon_sym_private] = ACTIONS(673), + [anon_sym_protected] = ACTIONS(673), + [anon_sym_module] = ACTIONS(673), + [anon_sym_any] = ACTIONS(673), + [anon_sym_number] = ACTIONS(673), + [anon_sym_boolean] = ACTIONS(673), + [anon_sym_string] = ACTIONS(673), + [anon_sym_symbol] = ACTIONS(673), + [sym_readonly] = ACTIONS(673), + }, + [300] = { + [sym_import] = STATE(1690), + [sym_parenthesized_expression] = STATE(834), + [sym__expression] = STATE(1305), + [sym_yield_expression] = STATE(1687), + [sym_object] = STATE(1538), + [sym_array] = STATE(1543), + [sym_class] = STATE(1690), + [sym_function] = STATE(1690), + [sym_generator_function] = STATE(1690), + [sym_arrow_function] = STATE(1690), + [sym__call_signature] = STATE(3133), + [sym_call_expression] = STATE(1690), + [sym_new_expression] = STATE(1687), + [sym_await_expression] = STATE(1687), + [sym_member_expression] = STATE(834), + [sym_subscript_expression] = STATE(834), + [sym_assignment_expression] = STATE(1687), + [sym__augmented_assignment_lhs] = STATE(1921), + [sym_augmented_assignment_expression] = STATE(1687), + [sym_ternary_expression] = STATE(1687), + [sym_binary_expression] = STATE(1687), + [sym_unary_expression] = STATE(1687), + [sym_update_expression] = STATE(1687), + [sym_string] = STATE(1690), + [sym_template_string] = STATE(1690), + [sym_regex] = STATE(1690), + [sym_meta_property] = STATE(1690), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(846), + [sym_type_assertion] = STATE(1687), + [sym_as_expression] = STATE(1687), + [sym_internal_module] = STATE(1687), + [sym_type_arguments] = STATE(301), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2545), + [sym_identifier] = ACTIONS(869), + [anon_sym_export] = ACTIONS(673), + [anon_sym_namespace] = ACTIONS(675), + [anon_sym_LBRACE] = ACTIONS(1270), + [anon_sym_type] = ACTIONS(673), + [anon_sym_typeof] = ACTIONS(707), + [anon_sym_import] = ACTIONS(681), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_await] = ACTIONS(687), + [anon_sym_yield] = ACTIONS(689), + [anon_sym_LBRACK] = ACTIONS(879), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(693), + [anon_sym_class] = ACTIONS(695), + [anon_sym_async] = ACTIONS(697), + [anon_sym_function] = ACTIONS(699), + [anon_sym_new] = ACTIONS(881), + [anon_sym_PLUS] = ACTIONS(883), + [anon_sym_DASH] = ACTIONS(883), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_void] = ACTIONS(707), + [anon_sym_delete] = ACTIONS(707), + [anon_sym_PLUS_PLUS] = ACTIONS(709), + [anon_sym_DASH_DASH] = ACTIONS(709), + [anon_sym_DQUOTE] = ACTIONS(711), + [anon_sym_SQUOTE] = ACTIONS(713), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(715), + [sym_number] = ACTIONS(885), + [sym_this] = ACTIONS(721), + [sym_super] = ACTIONS(721), + [sym_true] = ACTIONS(721), + [sym_false] = ACTIONS(721), + [sym_null] = ACTIONS(721), + [sym_undefined] = ACTIONS(721), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(673), + [anon_sym_get] = ACTIONS(673), + [anon_sym_set] = ACTIONS(673), + [anon_sym_declare] = ACTIONS(673), + [anon_sym_public] = ACTIONS(673), + [anon_sym_private] = ACTIONS(673), + [anon_sym_protected] = ACTIONS(673), + [anon_sym_module] = ACTIONS(673), + [anon_sym_any] = ACTIONS(673), + [anon_sym_number] = ACTIONS(673), + [anon_sym_boolean] = ACTIONS(673), + [anon_sym_string] = ACTIONS(673), + [anon_sym_symbol] = ACTIONS(673), + [sym_readonly] = ACTIONS(673), + }, + [301] = { + [sym_import] = STATE(1690), + [sym_parenthesized_expression] = STATE(834), + [sym__expression] = STATE(1312), + [sym_yield_expression] = STATE(1687), + [sym_object] = STATE(1538), + [sym_array] = STATE(1543), + [sym_class] = STATE(1690), + [sym_function] = STATE(1690), + [sym_generator_function] = STATE(1690), + [sym_arrow_function] = STATE(1690), + [sym__call_signature] = STATE(3133), + [sym_call_expression] = STATE(1690), + [sym_new_expression] = STATE(1687), + [sym_await_expression] = STATE(1687), + [sym_member_expression] = STATE(834), + [sym_subscript_expression] = STATE(834), + [sym_assignment_expression] = STATE(1687), + [sym__augmented_assignment_lhs] = STATE(1921), + [sym_augmented_assignment_expression] = STATE(1687), + [sym_ternary_expression] = STATE(1687), + [sym_binary_expression] = STATE(1687), + [sym_unary_expression] = STATE(1687), + [sym_update_expression] = STATE(1687), + [sym_string] = STATE(1690), + [sym_template_string] = STATE(1690), + [sym_regex] = STATE(1690), + [sym_meta_property] = STATE(1690), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(846), + [sym_type_assertion] = STATE(1687), + [sym_as_expression] = STATE(1687), + [sym_internal_module] = STATE(1687), + [sym_type_arguments] = STATE(301), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2545), + [sym_identifier] = ACTIONS(869), + [anon_sym_export] = ACTIONS(673), + [anon_sym_namespace] = ACTIONS(675), + [anon_sym_LBRACE] = ACTIONS(1270), + [anon_sym_type] = ACTIONS(673), + [anon_sym_typeof] = ACTIONS(707), + [anon_sym_import] = ACTIONS(681), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_await] = ACTIONS(687), + [anon_sym_yield] = ACTIONS(689), + [anon_sym_LBRACK] = ACTIONS(879), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(693), + [anon_sym_class] = ACTIONS(695), + [anon_sym_async] = ACTIONS(697), + [anon_sym_function] = ACTIONS(699), + [anon_sym_new] = ACTIONS(881), + [anon_sym_PLUS] = ACTIONS(883), + [anon_sym_DASH] = ACTIONS(883), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_void] = ACTIONS(707), + [anon_sym_delete] = ACTIONS(707), + [anon_sym_PLUS_PLUS] = ACTIONS(709), + [anon_sym_DASH_DASH] = ACTIONS(709), + [anon_sym_DQUOTE] = ACTIONS(711), + [anon_sym_SQUOTE] = ACTIONS(713), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(715), + [sym_number] = ACTIONS(885), + [sym_this] = ACTIONS(721), + [sym_super] = ACTIONS(721), + [sym_true] = ACTIONS(721), + [sym_false] = ACTIONS(721), + [sym_null] = ACTIONS(721), + [sym_undefined] = ACTIONS(721), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(673), + [anon_sym_get] = ACTIONS(673), + [anon_sym_set] = ACTIONS(673), + [anon_sym_declare] = ACTIONS(673), + [anon_sym_public] = ACTIONS(673), + [anon_sym_private] = ACTIONS(673), + [anon_sym_protected] = ACTIONS(673), + [anon_sym_module] = ACTIONS(673), + [anon_sym_any] = ACTIONS(673), + [anon_sym_number] = ACTIONS(673), + [anon_sym_boolean] = ACTIONS(673), + [anon_sym_string] = ACTIONS(673), + [anon_sym_symbol] = ACTIONS(673), + [sym_readonly] = ACTIONS(673), + }, + [302] = { + [sym_import] = STATE(1690), + [sym_parenthesized_expression] = STATE(834), + [sym__expression] = STATE(1229), + [sym_yield_expression] = STATE(1687), + [sym_object] = STATE(1538), + [sym_array] = STATE(1543), + [sym_class] = STATE(1690), + [sym_function] = STATE(1690), + [sym_generator_function] = STATE(1690), + [sym_arrow_function] = STATE(1690), + [sym__call_signature] = STATE(3133), + [sym_call_expression] = STATE(1690), + [sym_new_expression] = STATE(1687), + [sym_await_expression] = STATE(1687), + [sym_member_expression] = STATE(834), + [sym_subscript_expression] = STATE(834), + [sym_assignment_expression] = STATE(1687), + [sym__augmented_assignment_lhs] = STATE(1921), + [sym_augmented_assignment_expression] = STATE(1687), + [sym_ternary_expression] = STATE(1687), + [sym_binary_expression] = STATE(1687), + [sym_unary_expression] = STATE(1687), + [sym_update_expression] = STATE(1687), + [sym_string] = STATE(1690), + [sym_template_string] = STATE(1690), + [sym_regex] = STATE(1690), + [sym_meta_property] = STATE(1690), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(846), + [sym_type_assertion] = STATE(1687), + [sym_as_expression] = STATE(1687), + [sym_internal_module] = STATE(1687), + [sym_type_arguments] = STATE(301), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2545), + [sym_identifier] = ACTIONS(869), + [anon_sym_export] = ACTIONS(673), + [anon_sym_namespace] = ACTIONS(675), + [anon_sym_LBRACE] = ACTIONS(1270), + [anon_sym_type] = ACTIONS(673), + [anon_sym_typeof] = ACTIONS(707), + [anon_sym_import] = ACTIONS(681), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_await] = ACTIONS(687), + [anon_sym_yield] = ACTIONS(689), + [anon_sym_LBRACK] = ACTIONS(879), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(693), + [anon_sym_class] = ACTIONS(695), + [anon_sym_async] = ACTIONS(697), + [anon_sym_function] = ACTIONS(699), + [anon_sym_new] = ACTIONS(881), + [anon_sym_PLUS] = ACTIONS(883), + [anon_sym_DASH] = ACTIONS(883), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_void] = ACTIONS(707), + [anon_sym_delete] = ACTIONS(707), + [anon_sym_PLUS_PLUS] = ACTIONS(709), + [anon_sym_DASH_DASH] = ACTIONS(709), + [anon_sym_DQUOTE] = ACTIONS(711), + [anon_sym_SQUOTE] = ACTIONS(713), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(715), + [sym_number] = ACTIONS(885), + [sym_this] = ACTIONS(721), + [sym_super] = ACTIONS(721), + [sym_true] = ACTIONS(721), + [sym_false] = ACTIONS(721), + [sym_null] = ACTIONS(721), + [sym_undefined] = ACTIONS(721), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(673), + [anon_sym_get] = ACTIONS(673), + [anon_sym_set] = ACTIONS(673), + [anon_sym_declare] = ACTIONS(673), + [anon_sym_public] = ACTIONS(673), + [anon_sym_private] = ACTIONS(673), + [anon_sym_protected] = ACTIONS(673), + [anon_sym_module] = ACTIONS(673), + [anon_sym_any] = ACTIONS(673), + [anon_sym_number] = ACTIONS(673), + [anon_sym_boolean] = ACTIONS(673), + [anon_sym_string] = ACTIONS(673), + [anon_sym_symbol] = ACTIONS(673), + [sym_readonly] = ACTIONS(673), + }, + [303] = { + [sym_import] = STATE(1151), + [sym_parenthesized_expression] = STATE(759), + [sym__expression] = STATE(1266), + [sym_yield_expression] = STATE(1144), + [sym_object] = STATE(1257), + [sym_array] = STATE(1254), + [sym_class] = STATE(1151), + [sym_function] = STATE(1151), + [sym_generator_function] = STATE(1151), + [sym_arrow_function] = STATE(1151), + [sym__call_signature] = STATE(3082), + [sym_call_expression] = STATE(1151), + [sym_new_expression] = STATE(1144), + [sym_await_expression] = STATE(1144), + [sym_member_expression] = STATE(759), + [sym_subscript_expression] = STATE(759), + [sym_assignment_expression] = STATE(1144), + [sym__augmented_assignment_lhs] = STATE(1924), + [sym_augmented_assignment_expression] = STATE(1144), + [sym_ternary_expression] = STATE(1144), + [sym_binary_expression] = STATE(1144), + [sym_unary_expression] = STATE(1144), + [sym_update_expression] = STATE(1144), + [sym_string] = STATE(1151), + [sym_template_string] = STATE(1151), + [sym_regex] = STATE(1151), + [sym_meta_property] = STATE(1151), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(754), + [sym_type_assertion] = STATE(1144), + [sym_as_expression] = STATE(1144), + [sym_internal_module] = STATE(1144), + [sym_type_arguments] = STATE(326), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2580), [sym_identifier] = ACTIONS(499), [anon_sym_export] = ACTIONS(501), [anon_sym_namespace] = ACTIONS(507), @@ -37782,68 +40506,157 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(501), [sym_readonly] = ACTIONS(501), }, - [274] = { - [sym_import] = STATE(1101), - [sym_parenthesized_expression] = STATE(948), - [sym__expression] = STATE(1502), - [sym_yield_expression] = STATE(1105), - [sym_object] = STATE(1654), - [sym_array] = STATE(1640), - [sym_class] = STATE(1101), - [sym_function] = STATE(1101), - [sym_generator_function] = STATE(1101), - [sym_arrow_function] = STATE(1101), - [sym__call_signature] = STATE(3002), - [sym_call_expression] = STATE(1101), - [sym_new_expression] = STATE(1105), - [sym_await_expression] = STATE(1105), - [sym_member_expression] = STATE(948), - [sym_subscript_expression] = STATE(948), - [sym_assignment_expression] = STATE(1105), + [304] = { + [sym_import] = STATE(1690), + [sym_parenthesized_expression] = STATE(834), + [sym__expression] = STATE(1292), + [sym_yield_expression] = STATE(1687), + [sym_object] = STATE(1538), + [sym_array] = STATE(1543), + [sym_class] = STATE(1690), + [sym_function] = STATE(1690), + [sym_generator_function] = STATE(1690), + [sym_arrow_function] = STATE(1690), + [sym__call_signature] = STATE(3133), + [sym_call_expression] = STATE(1690), + [sym_new_expression] = STATE(1687), + [sym_await_expression] = STATE(1687), + [sym_member_expression] = STATE(834), + [sym_subscript_expression] = STATE(834), + [sym_assignment_expression] = STATE(1687), [sym__augmented_assignment_lhs] = STATE(1921), - [sym_augmented_assignment_expression] = STATE(1105), - [sym_ternary_expression] = STATE(1105), - [sym_binary_expression] = STATE(1105), - [sym_unary_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_string] = STATE(1101), - [sym_template_string] = STATE(1101), - [sym_regex] = STATE(1101), - [sym_meta_property] = STATE(1101), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(949), - [sym_type_assertion] = STATE(1105), - [sym_as_expression] = STATE(1105), - [sym_internal_module] = STATE(1105), - [sym_type_arguments] = STATE(324), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2497), + [sym_augmented_assignment_expression] = STATE(1687), + [sym_ternary_expression] = STATE(1687), + [sym_binary_expression] = STATE(1687), + [sym_unary_expression] = STATE(1687), + [sym_update_expression] = STATE(1687), + [sym_string] = STATE(1690), + [sym_template_string] = STATE(1690), + [sym_regex] = STATE(1690), + [sym_meta_property] = STATE(1690), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(846), + [sym_type_assertion] = STATE(1687), + [sym_as_expression] = STATE(1687), + [sym_internal_module] = STATE(1687), + [sym_type_arguments] = STATE(301), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2545), + [sym_identifier] = ACTIONS(869), + [anon_sym_export] = ACTIONS(673), + [anon_sym_namespace] = ACTIONS(675), + [anon_sym_LBRACE] = ACTIONS(1270), + [anon_sym_type] = ACTIONS(673), + [anon_sym_typeof] = ACTIONS(707), + [anon_sym_import] = ACTIONS(681), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_await] = ACTIONS(687), + [anon_sym_yield] = ACTIONS(689), + [anon_sym_LBRACK] = ACTIONS(879), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(693), + [anon_sym_class] = ACTIONS(695), + [anon_sym_async] = ACTIONS(697), + [anon_sym_function] = ACTIONS(699), + [anon_sym_new] = ACTIONS(881), + [anon_sym_PLUS] = ACTIONS(883), + [anon_sym_DASH] = ACTIONS(883), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_void] = ACTIONS(707), + [anon_sym_delete] = ACTIONS(707), + [anon_sym_PLUS_PLUS] = ACTIONS(709), + [anon_sym_DASH_DASH] = ACTIONS(709), + [anon_sym_DQUOTE] = ACTIONS(711), + [anon_sym_SQUOTE] = ACTIONS(713), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(715), + [sym_number] = ACTIONS(885), + [sym_this] = ACTIONS(721), + [sym_super] = ACTIONS(721), + [sym_true] = ACTIONS(721), + [sym_false] = ACTIONS(721), + [sym_null] = ACTIONS(721), + [sym_undefined] = ACTIONS(721), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(673), + [anon_sym_get] = ACTIONS(673), + [anon_sym_set] = ACTIONS(673), + [anon_sym_declare] = ACTIONS(673), + [anon_sym_public] = ACTIONS(673), + [anon_sym_private] = ACTIONS(673), + [anon_sym_protected] = ACTIONS(673), + [anon_sym_module] = ACTIONS(673), + [anon_sym_any] = ACTIONS(673), + [anon_sym_number] = ACTIONS(673), + [anon_sym_boolean] = ACTIONS(673), + [anon_sym_string] = ACTIONS(673), + [anon_sym_symbol] = ACTIONS(673), + [sym_readonly] = ACTIONS(673), + }, + [305] = { + [sym_import] = STATE(1151), + [sym_parenthesized_expression] = STATE(837), + [sym__expression] = STATE(1240), + [sym_yield_expression] = STATE(1144), + [sym_object] = STATE(1495), + [sym_array] = STATE(1493), + [sym_class] = STATE(1151), + [sym_function] = STATE(1151), + [sym_generator_function] = STATE(1151), + [sym_arrow_function] = STATE(1151), + [sym__call_signature] = STATE(3190), + [sym_call_expression] = STATE(1151), + [sym_new_expression] = STATE(1144), + [sym_await_expression] = STATE(1144), + [sym_member_expression] = STATE(837), + [sym_subscript_expression] = STATE(837), + [sym_assignment_expression] = STATE(1144), + [sym__augmented_assignment_lhs] = STATE(1927), + [sym_augmented_assignment_expression] = STATE(1144), + [sym_ternary_expression] = STATE(1144), + [sym_binary_expression] = STATE(1144), + [sym_unary_expression] = STATE(1144), + [sym_update_expression] = STATE(1144), + [sym_string] = STATE(1151), + [sym_template_string] = STATE(1151), + [sym_regex] = STATE(1151), + [sym_meta_property] = STATE(1151), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(845), + [sym_type_assertion] = STATE(1144), + [sym_as_expression] = STATE(1144), + [sym_internal_module] = STATE(1144), + [sym_type_arguments] = STATE(357), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2580), [sym_identifier] = ACTIONS(859), - [anon_sym_export] = ACTIONS(635), - [anon_sym_namespace] = ACTIONS(637), + [anon_sym_export] = ACTIONS(769), + [anon_sym_namespace] = ACTIONS(771), [anon_sym_LBRACE] = ACTIONS(509), - [anon_sym_type] = ACTIONS(635), - [anon_sym_typeof] = ACTIONS(659), + [anon_sym_type] = ACTIONS(769), + [anon_sym_typeof] = ACTIONS(791), [anon_sym_import] = ACTIONS(435), - [anon_sym_BANG] = ACTIONS(643), + [anon_sym_BANG] = ACTIONS(775), [anon_sym_LPAREN] = ACTIONS(515), - [anon_sym_await] = ACTIONS(645), - [anon_sym_yield] = ACTIONS(647), + [anon_sym_await] = ACTIONS(777), + [anon_sym_yield] = ACTIONS(779), [anon_sym_LBRACK] = ACTIONS(517), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(449), + [anon_sym_SLASH] = ACTIONS(781), [anon_sym_class] = ACTIONS(451), - [anon_sym_async] = ACTIONS(651), + [anon_sym_async] = ACTIONS(783), [anon_sym_function] = ACTIONS(455), [anon_sym_new] = ACTIONS(865), [anon_sym_PLUS] = ACTIONS(867), [anon_sym_DASH] = ACTIONS(867), - [anon_sym_TILDE] = ACTIONS(643), - [anon_sym_void] = ACTIONS(659), - [anon_sym_delete] = ACTIONS(659), - [anon_sym_PLUS_PLUS] = ACTIONS(661), - [anon_sym_DASH_DASH] = ACTIONS(661), + [anon_sym_TILDE] = ACTIONS(775), + [anon_sym_void] = ACTIONS(791), + [anon_sym_delete] = ACTIONS(791), + [anon_sym_PLUS_PLUS] = ACTIONS(793), + [anon_sym_DASH_DASH] = ACTIONS(793), [anon_sym_DQUOTE] = ACTIONS(475), [anon_sym_SQUOTE] = ACTIONS(477), [sym_comment] = ACTIONS(3), @@ -37856,83 +40669,83 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(485), [sym_undefined] = ACTIONS(485), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(635), - [anon_sym_get] = ACTIONS(635), - [anon_sym_set] = ACTIONS(635), - [anon_sym_declare] = ACTIONS(635), - [anon_sym_public] = ACTIONS(635), - [anon_sym_private] = ACTIONS(635), - [anon_sym_protected] = ACTIONS(635), - [anon_sym_module] = ACTIONS(635), - [anon_sym_any] = ACTIONS(635), - [anon_sym_number] = ACTIONS(635), - [anon_sym_boolean] = ACTIONS(635), - [anon_sym_string] = ACTIONS(635), - [anon_sym_symbol] = ACTIONS(635), - [sym_readonly] = ACTIONS(635), + [anon_sym_static] = ACTIONS(769), + [anon_sym_get] = ACTIONS(769), + [anon_sym_set] = ACTIONS(769), + [anon_sym_declare] = ACTIONS(769), + [anon_sym_public] = ACTIONS(769), + [anon_sym_private] = ACTIONS(769), + [anon_sym_protected] = ACTIONS(769), + [anon_sym_module] = ACTIONS(769), + [anon_sym_any] = ACTIONS(769), + [anon_sym_number] = ACTIONS(769), + [anon_sym_boolean] = ACTIONS(769), + [anon_sym_string] = ACTIONS(769), + [anon_sym_symbol] = ACTIONS(769), + [sym_readonly] = ACTIONS(769), }, - [275] = { - [sym_import] = STATE(1101), - [sym_parenthesized_expression] = STATE(948), - [sym__expression] = STATE(1486), - [sym_yield_expression] = STATE(1105), - [sym_object] = STATE(1654), - [sym_array] = STATE(1640), - [sym_class] = STATE(1101), - [sym_function] = STATE(1101), - [sym_generator_function] = STATE(1101), - [sym_arrow_function] = STATE(1101), - [sym__call_signature] = STATE(3002), - [sym_call_expression] = STATE(1101), - [sym_new_expression] = STATE(1105), - [sym_await_expression] = STATE(1105), - [sym_member_expression] = STATE(948), - [sym_subscript_expression] = STATE(948), - [sym_assignment_expression] = STATE(1105), - [sym__augmented_assignment_lhs] = STATE(1921), - [sym_augmented_assignment_expression] = STATE(1105), - [sym_ternary_expression] = STATE(1105), - [sym_binary_expression] = STATE(1105), - [sym_unary_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_string] = STATE(1101), - [sym_template_string] = STATE(1101), - [sym_regex] = STATE(1101), - [sym_meta_property] = STATE(1101), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(949), - [sym_type_assertion] = STATE(1105), - [sym_as_expression] = STATE(1105), - [sym_internal_module] = STATE(1105), - [sym_type_arguments] = STATE(324), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2497), - [sym_identifier] = ACTIONS(859), - [anon_sym_export] = ACTIONS(635), - [anon_sym_namespace] = ACTIONS(637), + [306] = { + [sym_import] = STATE(1151), + [sym_parenthesized_expression] = STATE(956), + [sym__expression] = STATE(1356), + [sym_yield_expression] = STATE(1144), + [sym_object] = STATE(1653), + [sym_array] = STATE(1660), + [sym_class] = STATE(1151), + [sym_function] = STATE(1151), + [sym_generator_function] = STATE(1151), + [sym_arrow_function] = STATE(1151), + [sym__call_signature] = STATE(3024), + [sym_call_expression] = STATE(1151), + [sym_new_expression] = STATE(1144), + [sym_await_expression] = STATE(1144), + [sym_member_expression] = STATE(956), + [sym_subscript_expression] = STATE(956), + [sym_assignment_expression] = STATE(1144), + [sym__augmented_assignment_lhs] = STATE(1925), + [sym_augmented_assignment_expression] = STATE(1144), + [sym_ternary_expression] = STATE(1144), + [sym_binary_expression] = STATE(1144), + [sym_unary_expression] = STATE(1144), + [sym_update_expression] = STATE(1144), + [sym_string] = STATE(1151), + [sym_template_string] = STATE(1151), + [sym_regex] = STATE(1151), + [sym_meta_property] = STATE(1151), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(950), + [sym_type_assertion] = STATE(1144), + [sym_as_expression] = STATE(1144), + [sym_internal_module] = STATE(1144), + [sym_type_arguments] = STATE(395), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2580), + [sym_identifier] = ACTIONS(897), + [anon_sym_export] = ACTIONS(577), + [anon_sym_namespace] = ACTIONS(579), [anon_sym_LBRACE] = ACTIONS(509), - [anon_sym_type] = ACTIONS(635), - [anon_sym_typeof] = ACTIONS(659), + [anon_sym_type] = ACTIONS(577), + [anon_sym_typeof] = ACTIONS(601), [anon_sym_import] = ACTIONS(435), - [anon_sym_BANG] = ACTIONS(643), + [anon_sym_BANG] = ACTIONS(585), [anon_sym_LPAREN] = ACTIONS(515), - [anon_sym_await] = ACTIONS(645), - [anon_sym_yield] = ACTIONS(647), + [anon_sym_await] = ACTIONS(587), + [anon_sym_yield] = ACTIONS(589), [anon_sym_LBRACK] = ACTIONS(517), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(449), [anon_sym_class] = ACTIONS(451), - [anon_sym_async] = ACTIONS(651), + [anon_sym_async] = ACTIONS(593), [anon_sym_function] = ACTIONS(455), - [anon_sym_new] = ACTIONS(865), - [anon_sym_PLUS] = ACTIONS(867), - [anon_sym_DASH] = ACTIONS(867), - [anon_sym_TILDE] = ACTIONS(643), - [anon_sym_void] = ACTIONS(659), - [anon_sym_delete] = ACTIONS(659), - [anon_sym_PLUS_PLUS] = ACTIONS(661), - [anon_sym_DASH_DASH] = ACTIONS(661), + [anon_sym_new] = ACTIONS(903), + [anon_sym_PLUS] = ACTIONS(905), + [anon_sym_DASH] = ACTIONS(905), + [anon_sym_TILDE] = ACTIONS(585), + [anon_sym_void] = ACTIONS(601), + [anon_sym_delete] = ACTIONS(601), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(603), [anon_sym_DQUOTE] = ACTIONS(475), [anon_sym_SQUOTE] = ACTIONS(477), [sym_comment] = ACTIONS(3), @@ -37945,528 +40758,172 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(485), [sym_undefined] = ACTIONS(485), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(635), - [anon_sym_get] = ACTIONS(635), - [anon_sym_set] = ACTIONS(635), - [anon_sym_declare] = ACTIONS(635), - [anon_sym_public] = ACTIONS(635), - [anon_sym_private] = ACTIONS(635), - [anon_sym_protected] = ACTIONS(635), - [anon_sym_module] = ACTIONS(635), - [anon_sym_any] = ACTIONS(635), - [anon_sym_number] = ACTIONS(635), - [anon_sym_boolean] = ACTIONS(635), - [anon_sym_string] = ACTIONS(635), - [anon_sym_symbol] = ACTIONS(635), - [sym_readonly] = ACTIONS(635), + [anon_sym_static] = ACTIONS(577), + [anon_sym_get] = ACTIONS(577), + [anon_sym_set] = ACTIONS(577), + [anon_sym_declare] = ACTIONS(577), + [anon_sym_public] = ACTIONS(577), + [anon_sym_private] = ACTIONS(577), + [anon_sym_protected] = ACTIONS(577), + [anon_sym_module] = ACTIONS(577), + [anon_sym_any] = ACTIONS(577), + [anon_sym_number] = ACTIONS(577), + [anon_sym_boolean] = ACTIONS(577), + [anon_sym_string] = ACTIONS(577), + [anon_sym_symbol] = ACTIONS(577), + [sym_readonly] = ACTIONS(577), }, - [276] = { - [sym_import] = STATE(1498), - [sym_parenthesized_expression] = STATE(764), - [sym__expression] = STATE(1142), - [sym_yield_expression] = STATE(1518), - [sym_object] = STATE(1435), - [sym_array] = STATE(1433), - [sym_class] = STATE(1498), - [sym_function] = STATE(1498), - [sym_generator_function] = STATE(1498), - [sym_arrow_function] = STATE(1498), - [sym__call_signature] = STATE(3145), - [sym_call_expression] = STATE(1498), - [sym_new_expression] = STATE(1518), - [sym_await_expression] = STATE(1518), - [sym_member_expression] = STATE(764), - [sym_subscript_expression] = STATE(764), - [sym_assignment_expression] = STATE(1518), + [307] = { + [sym_import] = STATE(1151), + [sym_parenthesized_expression] = STATE(956), + [sym__expression] = STATE(1365), + [sym_yield_expression] = STATE(1144), + [sym_object] = STATE(1653), + [sym_array] = STATE(1660), + [sym_class] = STATE(1151), + [sym_function] = STATE(1151), + [sym_generator_function] = STATE(1151), + [sym_arrow_function] = STATE(1151), + [sym__call_signature] = STATE(3024), + [sym_call_expression] = STATE(1151), + [sym_new_expression] = STATE(1144), + [sym_await_expression] = STATE(1144), + [sym_member_expression] = STATE(956), + [sym_subscript_expression] = STATE(956), + [sym_assignment_expression] = STATE(1144), [sym__augmented_assignment_lhs] = STATE(1925), - [sym_augmented_assignment_expression] = STATE(1518), - [sym_ternary_expression] = STATE(1518), - [sym_binary_expression] = STATE(1518), - [sym_unary_expression] = STATE(1518), - [sym_update_expression] = STATE(1518), - [sym_string] = STATE(1498), - [sym_template_string] = STATE(1498), - [sym_regex] = STATE(1498), - [sym_meta_property] = STATE(1498), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(772), - [sym_type_assertion] = STATE(1518), - [sym_as_expression] = STATE(1518), - [sym_internal_module] = STATE(1518), - [sym_type_arguments] = STATE(349), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2554), - [sym_identifier] = ACTIONS(587), - [anon_sym_export] = ACTIONS(589), - [anon_sym_namespace] = ACTIONS(593), - [anon_sym_LBRACE] = ACTIONS(595), - [anon_sym_type] = ACTIONS(589), - [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(597), - [anon_sym_BANG] = ACTIONS(29), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(39), - [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(63), + [sym_augmented_assignment_expression] = STATE(1144), + [sym_ternary_expression] = STATE(1144), + [sym_binary_expression] = STATE(1144), + [sym_unary_expression] = STATE(1144), + [sym_update_expression] = STATE(1144), + [sym_string] = STATE(1151), + [sym_template_string] = STATE(1151), + [sym_regex] = STATE(1151), + [sym_meta_property] = STATE(1151), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(950), + [sym_type_assertion] = STATE(1144), + [sym_as_expression] = STATE(1144), + [sym_internal_module] = STATE(1144), + [sym_type_arguments] = STATE(395), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2580), + [sym_identifier] = ACTIONS(897), + [anon_sym_export] = ACTIONS(577), + [anon_sym_namespace] = ACTIONS(579), + [anon_sym_LBRACE] = ACTIONS(509), + [anon_sym_type] = ACTIONS(577), + [anon_sym_typeof] = ACTIONS(601), + [anon_sym_import] = ACTIONS(435), + [anon_sym_BANG] = ACTIONS(585), + [anon_sym_LPAREN] = ACTIONS(515), + [anon_sym_await] = ACTIONS(587), + [anon_sym_yield] = ACTIONS(589), + [anon_sym_LBRACK] = ACTIONS(517), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(601), - [anon_sym_async] = ACTIONS(603), - [anon_sym_function] = ACTIONS(605), - [anon_sym_new] = ACTIONS(75), - [anon_sym_PLUS] = ACTIONS(77), - [anon_sym_DASH] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(29), - [anon_sym_void] = ACTIONS(19), - [anon_sym_delete] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(85), - [sym_number] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(589), - [anon_sym_get] = ACTIONS(589), - [anon_sym_set] = ACTIONS(589), - [anon_sym_declare] = ACTIONS(589), - [anon_sym_public] = ACTIONS(589), - [anon_sym_private] = ACTIONS(589), - [anon_sym_protected] = ACTIONS(589), - [anon_sym_module] = ACTIONS(589), - [anon_sym_any] = ACTIONS(589), - [anon_sym_number] = ACTIONS(589), - [anon_sym_boolean] = ACTIONS(589), - [anon_sym_string] = ACTIONS(589), - [anon_sym_symbol] = ACTIONS(589), - [sym_readonly] = ACTIONS(589), - }, - [277] = { - [sym_import] = STATE(1498), - [sym_parenthesized_expression] = STATE(764), - [sym__expression] = STATE(1119), - [sym_yield_expression] = STATE(1518), - [sym_object] = STATE(1435), - [sym_array] = STATE(1433), - [sym_class] = STATE(1498), - [sym_function] = STATE(1498), - [sym_generator_function] = STATE(1498), - [sym_arrow_function] = STATE(1498), - [sym__call_signature] = STATE(3145), - [sym_call_expression] = STATE(1498), - [sym_new_expression] = STATE(1518), - [sym_await_expression] = STATE(1518), - [sym_member_expression] = STATE(764), - [sym_subscript_expression] = STATE(764), - [sym_assignment_expression] = STATE(1518), - [sym__augmented_assignment_lhs] = STATE(1925), - [sym_augmented_assignment_expression] = STATE(1518), - [sym_ternary_expression] = STATE(1518), - [sym_binary_expression] = STATE(1518), - [sym_unary_expression] = STATE(1518), - [sym_update_expression] = STATE(1518), - [sym_string] = STATE(1498), - [sym_template_string] = STATE(1498), - [sym_regex] = STATE(1498), - [sym_meta_property] = STATE(1498), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(772), - [sym_type_assertion] = STATE(1518), - [sym_as_expression] = STATE(1518), - [sym_internal_module] = STATE(1518), - [sym_type_arguments] = STATE(349), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2554), - [sym_identifier] = ACTIONS(587), - [anon_sym_export] = ACTIONS(589), - [anon_sym_namespace] = ACTIONS(593), - [anon_sym_LBRACE] = ACTIONS(595), - [anon_sym_type] = ACTIONS(589), - [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(597), - [anon_sym_BANG] = ACTIONS(29), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(39), - [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(601), - [anon_sym_async] = ACTIONS(603), - [anon_sym_function] = ACTIONS(605), - [anon_sym_new] = ACTIONS(75), - [anon_sym_PLUS] = ACTIONS(77), - [anon_sym_DASH] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(29), - [anon_sym_void] = ACTIONS(19), - [anon_sym_delete] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(85), - [sym_number] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(589), - [anon_sym_get] = ACTIONS(589), - [anon_sym_set] = ACTIONS(589), - [anon_sym_declare] = ACTIONS(589), - [anon_sym_public] = ACTIONS(589), - [anon_sym_private] = ACTIONS(589), - [anon_sym_protected] = ACTIONS(589), - [anon_sym_module] = ACTIONS(589), - [anon_sym_any] = ACTIONS(589), - [anon_sym_number] = ACTIONS(589), - [anon_sym_boolean] = ACTIONS(589), - [anon_sym_string] = ACTIONS(589), - [anon_sym_symbol] = ACTIONS(589), - [sym_readonly] = ACTIONS(589), - }, - [278] = { - [sym_import] = STATE(1498), - [sym_parenthesized_expression] = STATE(764), - [sym__expression] = STATE(1120), - [sym_yield_expression] = STATE(1518), - [sym_object] = STATE(1435), - [sym_array] = STATE(1433), - [sym_class] = STATE(1498), - [sym_function] = STATE(1498), - [sym_generator_function] = STATE(1498), - [sym_arrow_function] = STATE(1498), - [sym__call_signature] = STATE(3145), - [sym_call_expression] = STATE(1498), - [sym_new_expression] = STATE(1518), - [sym_await_expression] = STATE(1518), - [sym_member_expression] = STATE(764), - [sym_subscript_expression] = STATE(764), - [sym_assignment_expression] = STATE(1518), - [sym__augmented_assignment_lhs] = STATE(1925), - [sym_augmented_assignment_expression] = STATE(1518), - [sym_ternary_expression] = STATE(1518), - [sym_binary_expression] = STATE(1518), - [sym_unary_expression] = STATE(1518), - [sym_update_expression] = STATE(1518), - [sym_string] = STATE(1498), - [sym_template_string] = STATE(1498), - [sym_regex] = STATE(1498), - [sym_meta_property] = STATE(1498), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(772), - [sym_type_assertion] = STATE(1518), - [sym_as_expression] = STATE(1518), - [sym_internal_module] = STATE(1518), - [sym_type_arguments] = STATE(349), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2554), - [sym_identifier] = ACTIONS(587), - [anon_sym_export] = ACTIONS(589), - [anon_sym_namespace] = ACTIONS(593), - [anon_sym_LBRACE] = ACTIONS(595), - [anon_sym_type] = ACTIONS(589), - [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(597), - [anon_sym_BANG] = ACTIONS(29), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(39), - [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(601), - [anon_sym_async] = ACTIONS(603), - [anon_sym_function] = ACTIONS(605), - [anon_sym_new] = ACTIONS(75), - [anon_sym_PLUS] = ACTIONS(77), - [anon_sym_DASH] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(29), - [anon_sym_void] = ACTIONS(19), - [anon_sym_delete] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(85), - [sym_number] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(589), - [anon_sym_get] = ACTIONS(589), - [anon_sym_set] = ACTIONS(589), - [anon_sym_declare] = ACTIONS(589), - [anon_sym_public] = ACTIONS(589), - [anon_sym_private] = ACTIONS(589), - [anon_sym_protected] = ACTIONS(589), - [anon_sym_module] = ACTIONS(589), - [anon_sym_any] = ACTIONS(589), - [anon_sym_number] = ACTIONS(589), - [anon_sym_boolean] = ACTIONS(589), - [anon_sym_string] = ACTIONS(589), - [anon_sym_symbol] = ACTIONS(589), - [sym_readonly] = ACTIONS(589), - }, - [279] = { - [sym_import] = STATE(1498), - [sym_parenthesized_expression] = STATE(764), - [sym__expression] = STATE(1121), - [sym_yield_expression] = STATE(1518), - [sym_object] = STATE(1435), - [sym_array] = STATE(1433), - [sym_class] = STATE(1498), - [sym_function] = STATE(1498), - [sym_generator_function] = STATE(1498), - [sym_arrow_function] = STATE(1498), - [sym__call_signature] = STATE(3145), - [sym_call_expression] = STATE(1498), - [sym_new_expression] = STATE(1518), - [sym_await_expression] = STATE(1518), - [sym_member_expression] = STATE(764), - [sym_subscript_expression] = STATE(764), - [sym_assignment_expression] = STATE(1518), - [sym__augmented_assignment_lhs] = STATE(1925), - [sym_augmented_assignment_expression] = STATE(1518), - [sym_ternary_expression] = STATE(1518), - [sym_binary_expression] = STATE(1518), - [sym_unary_expression] = STATE(1518), - [sym_update_expression] = STATE(1518), - [sym_string] = STATE(1498), - [sym_template_string] = STATE(1498), - [sym_regex] = STATE(1498), - [sym_meta_property] = STATE(1498), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(772), - [sym_type_assertion] = STATE(1518), - [sym_as_expression] = STATE(1518), - [sym_internal_module] = STATE(1518), - [sym_type_arguments] = STATE(349), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2554), - [sym_identifier] = ACTIONS(587), - [anon_sym_export] = ACTIONS(589), - [anon_sym_namespace] = ACTIONS(593), - [anon_sym_LBRACE] = ACTIONS(595), - [anon_sym_type] = ACTIONS(589), - [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(597), - [anon_sym_BANG] = ACTIONS(29), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(39), - [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(601), - [anon_sym_async] = ACTIONS(603), - [anon_sym_function] = ACTIONS(605), - [anon_sym_new] = ACTIONS(75), - [anon_sym_PLUS] = ACTIONS(77), - [anon_sym_DASH] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(29), - [anon_sym_void] = ACTIONS(19), - [anon_sym_delete] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), + [anon_sym_SLASH] = ACTIONS(449), + [anon_sym_class] = ACTIONS(451), + [anon_sym_async] = ACTIONS(593), + [anon_sym_function] = ACTIONS(455), + [anon_sym_new] = ACTIONS(903), + [anon_sym_PLUS] = ACTIONS(905), + [anon_sym_DASH] = ACTIONS(905), + [anon_sym_TILDE] = ACTIONS(585), + [anon_sym_void] = ACTIONS(601), + [anon_sym_delete] = ACTIONS(601), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_DQUOTE] = ACTIONS(475), + [anon_sym_SQUOTE] = ACTIONS(477), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(85), - [sym_number] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), + [anon_sym_BQUOTE] = ACTIONS(479), + [sym_number] = ACTIONS(527), + [sym_this] = ACTIONS(485), + [sym_super] = ACTIONS(485), + [sym_true] = ACTIONS(485), + [sym_false] = ACTIONS(485), + [sym_null] = ACTIONS(485), + [sym_undefined] = ACTIONS(485), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(589), - [anon_sym_get] = ACTIONS(589), - [anon_sym_set] = ACTIONS(589), - [anon_sym_declare] = ACTIONS(589), - [anon_sym_public] = ACTIONS(589), - [anon_sym_private] = ACTIONS(589), - [anon_sym_protected] = ACTIONS(589), - [anon_sym_module] = ACTIONS(589), - [anon_sym_any] = ACTIONS(589), - [anon_sym_number] = ACTIONS(589), - [anon_sym_boolean] = ACTIONS(589), - [anon_sym_string] = ACTIONS(589), - [anon_sym_symbol] = ACTIONS(589), - [sym_readonly] = ACTIONS(589), + [anon_sym_static] = ACTIONS(577), + [anon_sym_get] = ACTIONS(577), + [anon_sym_set] = ACTIONS(577), + [anon_sym_declare] = ACTIONS(577), + [anon_sym_public] = ACTIONS(577), + [anon_sym_private] = ACTIONS(577), + [anon_sym_protected] = ACTIONS(577), + [anon_sym_module] = ACTIONS(577), + [anon_sym_any] = ACTIONS(577), + [anon_sym_number] = ACTIONS(577), + [anon_sym_boolean] = ACTIONS(577), + [anon_sym_string] = ACTIONS(577), + [anon_sym_symbol] = ACTIONS(577), + [sym_readonly] = ACTIONS(577), }, - [280] = { - [sym_import] = STATE(1498), - [sym_parenthesized_expression] = STATE(764), - [sym__expression] = STATE(1122), - [sym_yield_expression] = STATE(1518), - [sym_object] = STATE(1435), - [sym_array] = STATE(1433), - [sym_class] = STATE(1498), - [sym_function] = STATE(1498), - [sym_generator_function] = STATE(1498), - [sym_arrow_function] = STATE(1498), - [sym__call_signature] = STATE(3145), - [sym_call_expression] = STATE(1498), - [sym_new_expression] = STATE(1518), - [sym_await_expression] = STATE(1518), - [sym_member_expression] = STATE(764), - [sym_subscript_expression] = STATE(764), - [sym_assignment_expression] = STATE(1518), + [308] = { + [sym_import] = STATE(1151), + [sym_parenthesized_expression] = STATE(956), + [sym__expression] = STATE(1377), + [sym_yield_expression] = STATE(1144), + [sym_object] = STATE(1653), + [sym_array] = STATE(1660), + [sym_class] = STATE(1151), + [sym_function] = STATE(1151), + [sym_generator_function] = STATE(1151), + [sym_arrow_function] = STATE(1151), + [sym__call_signature] = STATE(3024), + [sym_call_expression] = STATE(1151), + [sym_new_expression] = STATE(1144), + [sym_await_expression] = STATE(1144), + [sym_member_expression] = STATE(956), + [sym_subscript_expression] = STATE(956), + [sym_assignment_expression] = STATE(1144), [sym__augmented_assignment_lhs] = STATE(1925), - [sym_augmented_assignment_expression] = STATE(1518), - [sym_ternary_expression] = STATE(1518), - [sym_binary_expression] = STATE(1518), - [sym_unary_expression] = STATE(1518), - [sym_update_expression] = STATE(1518), - [sym_string] = STATE(1498), - [sym_template_string] = STATE(1498), - [sym_regex] = STATE(1498), - [sym_meta_property] = STATE(1498), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(772), - [sym_type_assertion] = STATE(1518), - [sym_as_expression] = STATE(1518), - [sym_internal_module] = STATE(1518), - [sym_type_arguments] = STATE(349), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2554), - [sym_identifier] = ACTIONS(587), - [anon_sym_export] = ACTIONS(589), - [anon_sym_namespace] = ACTIONS(593), - [anon_sym_LBRACE] = ACTIONS(595), - [anon_sym_type] = ACTIONS(589), - [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(597), - [anon_sym_BANG] = ACTIONS(29), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(39), - [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(601), - [anon_sym_async] = ACTIONS(603), - [anon_sym_function] = ACTIONS(605), - [anon_sym_new] = ACTIONS(75), - [anon_sym_PLUS] = ACTIONS(77), - [anon_sym_DASH] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(29), - [anon_sym_void] = ACTIONS(19), - [anon_sym_delete] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(85), - [sym_number] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(589), - [anon_sym_get] = ACTIONS(589), - [anon_sym_set] = ACTIONS(589), - [anon_sym_declare] = ACTIONS(589), - [anon_sym_public] = ACTIONS(589), - [anon_sym_private] = ACTIONS(589), - [anon_sym_protected] = ACTIONS(589), - [anon_sym_module] = ACTIONS(589), - [anon_sym_any] = ACTIONS(589), - [anon_sym_number] = ACTIONS(589), - [anon_sym_boolean] = ACTIONS(589), - [anon_sym_string] = ACTIONS(589), - [anon_sym_symbol] = ACTIONS(589), - [sym_readonly] = ACTIONS(589), - }, - [281] = { - [sym_import] = STATE(1101), - [sym_parenthesized_expression] = STATE(921), - [sym__expression] = STATE(1300), - [sym_yield_expression] = STATE(1105), - [sym_object] = STATE(1531), - [sym_array] = STATE(1536), - [sym_class] = STATE(1101), - [sym_function] = STATE(1101), - [sym_generator_function] = STATE(1101), - [sym_arrow_function] = STATE(1101), - [sym__call_signature] = STATE(3170), - [sym_call_expression] = STATE(1101), - [sym_new_expression] = STATE(1105), - [sym_await_expression] = STATE(1105), - [sym_member_expression] = STATE(921), - [sym_subscript_expression] = STATE(921), - [sym_assignment_expression] = STATE(1105), - [sym__augmented_assignment_lhs] = STATE(1917), - [sym_augmented_assignment_expression] = STATE(1105), - [sym_ternary_expression] = STATE(1105), - [sym_binary_expression] = STATE(1105), - [sym_unary_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_string] = STATE(1101), - [sym_template_string] = STATE(1101), - [sym_regex] = STATE(1101), - [sym_meta_property] = STATE(1101), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(882), - [sym_type_assertion] = STATE(1105), - [sym_as_expression] = STATE(1105), - [sym_internal_module] = STATE(1105), - [sym_type_arguments] = STATE(355), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2497), + [sym_augmented_assignment_expression] = STATE(1144), + [sym_ternary_expression] = STATE(1144), + [sym_binary_expression] = STATE(1144), + [sym_unary_expression] = STATE(1144), + [sym_update_expression] = STATE(1144), + [sym_string] = STATE(1151), + [sym_template_string] = STATE(1151), + [sym_regex] = STATE(1151), + [sym_meta_property] = STATE(1151), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(950), + [sym_type_assertion] = STATE(1144), + [sym_as_expression] = STATE(1144), + [sym_internal_module] = STATE(1144), + [sym_type_arguments] = STATE(395), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2580), [sym_identifier] = ACTIONS(897), - [anon_sym_export] = ACTIONS(751), - [anon_sym_namespace] = ACTIONS(753), + [anon_sym_export] = ACTIONS(577), + [anon_sym_namespace] = ACTIONS(579), [anon_sym_LBRACE] = ACTIONS(509), - [anon_sym_type] = ACTIONS(751), - [anon_sym_typeof] = ACTIONS(775), + [anon_sym_type] = ACTIONS(577), + [anon_sym_typeof] = ACTIONS(601), [anon_sym_import] = ACTIONS(435), - [anon_sym_BANG] = ACTIONS(757), + [anon_sym_BANG] = ACTIONS(585), [anon_sym_LPAREN] = ACTIONS(515), - [anon_sym_await] = ACTIONS(759), - [anon_sym_yield] = ACTIONS(761), + [anon_sym_await] = ACTIONS(587), + [anon_sym_yield] = ACTIONS(589), [anon_sym_LBRACK] = ACTIONS(517), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(765), + [anon_sym_SLASH] = ACTIONS(449), [anon_sym_class] = ACTIONS(451), - [anon_sym_async] = ACTIONS(767), + [anon_sym_async] = ACTIONS(593), [anon_sym_function] = ACTIONS(455), [anon_sym_new] = ACTIONS(903), [anon_sym_PLUS] = ACTIONS(905), [anon_sym_DASH] = ACTIONS(905), - [anon_sym_TILDE] = ACTIONS(757), - [anon_sym_void] = ACTIONS(775), - [anon_sym_delete] = ACTIONS(775), - [anon_sym_PLUS_PLUS] = ACTIONS(777), - [anon_sym_DASH_DASH] = ACTIONS(777), + [anon_sym_TILDE] = ACTIONS(585), + [anon_sym_void] = ACTIONS(601), + [anon_sym_delete] = ACTIONS(601), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(603), [anon_sym_DQUOTE] = ACTIONS(475), [anon_sym_SQUOTE] = ACTIONS(477), [sym_comment] = ACTIONS(3), @@ -38479,147 +40936,58 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(485), [sym_undefined] = ACTIONS(485), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(751), - [anon_sym_get] = ACTIONS(751), - [anon_sym_set] = ACTIONS(751), - [anon_sym_declare] = ACTIONS(751), - [anon_sym_public] = ACTIONS(751), - [anon_sym_private] = ACTIONS(751), - [anon_sym_protected] = ACTIONS(751), - [anon_sym_module] = ACTIONS(751), - [anon_sym_any] = ACTIONS(751), - [anon_sym_number] = ACTIONS(751), - [anon_sym_boolean] = ACTIONS(751), - [anon_sym_string] = ACTIONS(751), - [anon_sym_symbol] = ACTIONS(751), - [sym_readonly] = ACTIONS(751), - }, - [282] = { - [sym_import] = STATE(1498), - [sym_parenthesized_expression] = STATE(952), - [sym__expression] = STATE(1443), - [sym_yield_expression] = STATE(1518), - [sym_object] = STATE(1677), - [sym_array] = STATE(1671), - [sym_class] = STATE(1498), - [sym_function] = STATE(1498), - [sym_generator_function] = STATE(1498), - [sym_arrow_function] = STATE(1498), - [sym__call_signature] = STATE(3059), - [sym_call_expression] = STATE(1498), - [sym_new_expression] = STATE(1518), - [sym_await_expression] = STATE(1518), - [sym_member_expression] = STATE(952), - [sym_subscript_expression] = STATE(952), - [sym_assignment_expression] = STATE(1518), - [sym__augmented_assignment_lhs] = STATE(1919), - [sym_augmented_assignment_expression] = STATE(1518), - [sym_ternary_expression] = STATE(1518), - [sym_binary_expression] = STATE(1518), - [sym_unary_expression] = STATE(1518), - [sym_update_expression] = STATE(1518), - [sym_string] = STATE(1498), - [sym_template_string] = STATE(1498), - [sym_regex] = STATE(1498), - [sym_meta_property] = STATE(1498), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(946), - [sym_type_assertion] = STATE(1518), - [sym_as_expression] = STATE(1518), - [sym_internal_module] = STATE(1518), - [sym_type_arguments] = STATE(263), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2554), - [sym_identifier] = ACTIONS(869), - [anon_sym_export] = ACTIONS(675), - [anon_sym_namespace] = ACTIONS(677), - [anon_sym_LBRACE] = ACTIONS(595), - [anon_sym_type] = ACTIONS(675), - [anon_sym_typeof] = ACTIONS(697), - [anon_sym_import] = ACTIONS(597), - [anon_sym_BANG] = ACTIONS(681), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(683), - [anon_sym_yield] = ACTIONS(685), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(601), - [anon_sym_async] = ACTIONS(689), - [anon_sym_function] = ACTIONS(605), - [anon_sym_new] = ACTIONS(875), - [anon_sym_PLUS] = ACTIONS(877), - [anon_sym_DASH] = ACTIONS(877), - [anon_sym_TILDE] = ACTIONS(681), - [anon_sym_void] = ACTIONS(697), - [anon_sym_delete] = ACTIONS(697), - [anon_sym_PLUS_PLUS] = ACTIONS(699), - [anon_sym_DASH_DASH] = ACTIONS(699), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(85), - [sym_number] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(675), - [anon_sym_get] = ACTIONS(675), - [anon_sym_set] = ACTIONS(675), - [anon_sym_declare] = ACTIONS(675), - [anon_sym_public] = ACTIONS(675), - [anon_sym_private] = ACTIONS(675), - [anon_sym_protected] = ACTIONS(675), - [anon_sym_module] = ACTIONS(675), - [anon_sym_any] = ACTIONS(675), - [anon_sym_number] = ACTIONS(675), - [anon_sym_boolean] = ACTIONS(675), - [anon_sym_string] = ACTIONS(675), - [anon_sym_symbol] = ACTIONS(675), - [sym_readonly] = ACTIONS(675), + [anon_sym_static] = ACTIONS(577), + [anon_sym_get] = ACTIONS(577), + [anon_sym_set] = ACTIONS(577), + [anon_sym_declare] = ACTIONS(577), + [anon_sym_public] = ACTIONS(577), + [anon_sym_private] = ACTIONS(577), + [anon_sym_protected] = ACTIONS(577), + [anon_sym_module] = ACTIONS(577), + [anon_sym_any] = ACTIONS(577), + [anon_sym_number] = ACTIONS(577), + [anon_sym_boolean] = ACTIONS(577), + [anon_sym_string] = ACTIONS(577), + [anon_sym_symbol] = ACTIONS(577), + [sym_readonly] = ACTIONS(577), }, - [283] = { - [sym_import] = STATE(1101), - [sym_parenthesized_expression] = STATE(739), - [sym__expression] = STATE(1079), - [sym_yield_expression] = STATE(1105), - [sym_object] = STATE(1297), - [sym_array] = STATE(1296), - [sym_class] = STATE(1101), - [sym_function] = STATE(1101), - [sym_generator_function] = STATE(1101), - [sym_arrow_function] = STATE(1101), - [sym__call_signature] = STATE(3116), - [sym_call_expression] = STATE(1101), - [sym_new_expression] = STATE(1105), - [sym_await_expression] = STATE(1105), - [sym_member_expression] = STATE(739), - [sym_subscript_expression] = STATE(739), - [sym_assignment_expression] = STATE(1105), - [sym__augmented_assignment_lhs] = STATE(1920), - [sym_augmented_assignment_expression] = STATE(1105), - [sym_ternary_expression] = STATE(1105), - [sym_binary_expression] = STATE(1105), - [sym_unary_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_string] = STATE(1101), - [sym_template_string] = STATE(1101), - [sym_regex] = STATE(1101), - [sym_meta_property] = STATE(1101), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(755), - [sym_type_assertion] = STATE(1105), - [sym_as_expression] = STATE(1105), - [sym_internal_module] = STATE(1105), - [sym_type_arguments] = STATE(361), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2497), + [309] = { + [sym_import] = STATE(1151), + [sym_parenthesized_expression] = STATE(759), + [sym__expression] = STATE(1055), + [sym_yield_expression] = STATE(1144), + [sym_object] = STATE(1257), + [sym_array] = STATE(1254), + [sym_class] = STATE(1151), + [sym_function] = STATE(1151), + [sym_generator_function] = STATE(1151), + [sym_arrow_function] = STATE(1151), + [sym__call_signature] = STATE(3082), + [sym_call_expression] = STATE(1151), + [sym_new_expression] = STATE(1144), + [sym_await_expression] = STATE(1144), + [sym_member_expression] = STATE(759), + [sym_subscript_expression] = STATE(759), + [sym_assignment_expression] = STATE(1144), + [sym__augmented_assignment_lhs] = STATE(1924), + [sym_augmented_assignment_expression] = STATE(1144), + [sym_ternary_expression] = STATE(1144), + [sym_binary_expression] = STATE(1144), + [sym_unary_expression] = STATE(1144), + [sym_update_expression] = STATE(1144), + [sym_string] = STATE(1151), + [sym_template_string] = STATE(1151), + [sym_regex] = STATE(1151), + [sym_meta_property] = STATE(1151), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(754), + [sym_type_assertion] = STATE(1144), + [sym_as_expression] = STATE(1144), + [sym_internal_module] = STATE(1144), + [sym_type_arguments] = STATE(326), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2580), [sym_identifier] = ACTIONS(499), [anon_sym_export] = ACTIONS(501), [anon_sym_namespace] = ACTIONS(507), @@ -38649,7 +41017,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(477), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(479), - [sym_number] = ACTIONS(527), + [sym_number] = ACTIONS(1459), [sym_this] = ACTIONS(485), [sym_super] = ACTIONS(485), [sym_true] = ACTIONS(485), @@ -38672,246 +41040,157 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(501), [sym_readonly] = ACTIONS(501), }, - [284] = { - [sym_import] = STATE(1498), - [sym_parenthesized_expression] = STATE(764), - [sym__expression] = STATE(1123), - [sym_yield_expression] = STATE(1518), - [sym_object] = STATE(1435), - [sym_array] = STATE(1433), - [sym_class] = STATE(1498), - [sym_function] = STATE(1498), - [sym_generator_function] = STATE(1498), - [sym_arrow_function] = STATE(1498), - [sym__call_signature] = STATE(3145), - [sym_call_expression] = STATE(1498), - [sym_new_expression] = STATE(1518), - [sym_await_expression] = STATE(1518), - [sym_member_expression] = STATE(764), - [sym_subscript_expression] = STATE(764), - [sym_assignment_expression] = STATE(1518), - [sym__augmented_assignment_lhs] = STATE(1925), - [sym_augmented_assignment_expression] = STATE(1518), - [sym_ternary_expression] = STATE(1518), - [sym_binary_expression] = STATE(1518), - [sym_unary_expression] = STATE(1518), - [sym_update_expression] = STATE(1518), - [sym_string] = STATE(1498), - [sym_template_string] = STATE(1498), - [sym_regex] = STATE(1498), - [sym_meta_property] = STATE(1498), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(772), - [sym_type_assertion] = STATE(1518), - [sym_as_expression] = STATE(1518), - [sym_internal_module] = STATE(1518), - [sym_type_arguments] = STATE(349), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2554), - [sym_identifier] = ACTIONS(587), - [anon_sym_export] = ACTIONS(589), - [anon_sym_namespace] = ACTIONS(593), - [anon_sym_LBRACE] = ACTIONS(595), - [anon_sym_type] = ACTIONS(589), - [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(597), - [anon_sym_BANG] = ACTIONS(29), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(39), - [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(63), + [310] = { + [sym_import] = STATE(1151), + [sym_parenthesized_expression] = STATE(837), + [sym__expression] = STATE(1239), + [sym_yield_expression] = STATE(1144), + [sym_object] = STATE(1495), + [sym_array] = STATE(1493), + [sym_class] = STATE(1151), + [sym_function] = STATE(1151), + [sym_generator_function] = STATE(1151), + [sym_arrow_function] = STATE(1151), + [sym__call_signature] = STATE(3190), + [sym_call_expression] = STATE(1151), + [sym_new_expression] = STATE(1144), + [sym_await_expression] = STATE(1144), + [sym_member_expression] = STATE(837), + [sym_subscript_expression] = STATE(837), + [sym_assignment_expression] = STATE(1144), + [sym__augmented_assignment_lhs] = STATE(1927), + [sym_augmented_assignment_expression] = STATE(1144), + [sym_ternary_expression] = STATE(1144), + [sym_binary_expression] = STATE(1144), + [sym_unary_expression] = STATE(1144), + [sym_update_expression] = STATE(1144), + [sym_string] = STATE(1151), + [sym_template_string] = STATE(1151), + [sym_regex] = STATE(1151), + [sym_meta_property] = STATE(1151), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(845), + [sym_type_assertion] = STATE(1144), + [sym_as_expression] = STATE(1144), + [sym_internal_module] = STATE(1144), + [sym_type_arguments] = STATE(357), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2580), + [sym_identifier] = ACTIONS(859), + [anon_sym_export] = ACTIONS(769), + [anon_sym_namespace] = ACTIONS(771), + [anon_sym_LBRACE] = ACTIONS(509), + [anon_sym_type] = ACTIONS(769), + [anon_sym_typeof] = ACTIONS(791), + [anon_sym_import] = ACTIONS(435), + [anon_sym_BANG] = ACTIONS(775), + [anon_sym_LPAREN] = ACTIONS(515), + [anon_sym_await] = ACTIONS(777), + [anon_sym_yield] = ACTIONS(779), + [anon_sym_LBRACK] = ACTIONS(517), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(601), - [anon_sym_async] = ACTIONS(603), - [anon_sym_function] = ACTIONS(605), - [anon_sym_new] = ACTIONS(75), - [anon_sym_PLUS] = ACTIONS(77), - [anon_sym_DASH] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(29), - [anon_sym_void] = ACTIONS(19), - [anon_sym_delete] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), + [anon_sym_SLASH] = ACTIONS(781), + [anon_sym_class] = ACTIONS(451), + [anon_sym_async] = ACTIONS(783), + [anon_sym_function] = ACTIONS(455), + [anon_sym_new] = ACTIONS(865), + [anon_sym_PLUS] = ACTIONS(867), + [anon_sym_DASH] = ACTIONS(867), + [anon_sym_TILDE] = ACTIONS(775), + [anon_sym_void] = ACTIONS(791), + [anon_sym_delete] = ACTIONS(791), + [anon_sym_PLUS_PLUS] = ACTIONS(793), + [anon_sym_DASH_DASH] = ACTIONS(793), + [anon_sym_DQUOTE] = ACTIONS(475), + [anon_sym_SQUOTE] = ACTIONS(477), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(85), - [sym_number] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), + [anon_sym_BQUOTE] = ACTIONS(479), + [sym_number] = ACTIONS(527), + [sym_this] = ACTIONS(485), + [sym_super] = ACTIONS(485), + [sym_true] = ACTIONS(485), + [sym_false] = ACTIONS(485), + [sym_null] = ACTIONS(485), + [sym_undefined] = ACTIONS(485), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(589), - [anon_sym_get] = ACTIONS(589), - [anon_sym_set] = ACTIONS(589), - [anon_sym_declare] = ACTIONS(589), - [anon_sym_public] = ACTIONS(589), - [anon_sym_private] = ACTIONS(589), - [anon_sym_protected] = ACTIONS(589), - [anon_sym_module] = ACTIONS(589), - [anon_sym_any] = ACTIONS(589), - [anon_sym_number] = ACTIONS(589), - [anon_sym_boolean] = ACTIONS(589), - [anon_sym_string] = ACTIONS(589), - [anon_sym_symbol] = ACTIONS(589), - [sym_readonly] = ACTIONS(589), + [anon_sym_static] = ACTIONS(769), + [anon_sym_get] = ACTIONS(769), + [anon_sym_set] = ACTIONS(769), + [anon_sym_declare] = ACTIONS(769), + [anon_sym_public] = ACTIONS(769), + [anon_sym_private] = ACTIONS(769), + [anon_sym_protected] = ACTIONS(769), + [anon_sym_module] = ACTIONS(769), + [anon_sym_any] = ACTIONS(769), + [anon_sym_number] = ACTIONS(769), + [anon_sym_boolean] = ACTIONS(769), + [anon_sym_string] = ACTIONS(769), + [anon_sym_symbol] = ACTIONS(769), + [sym_readonly] = ACTIONS(769), }, - [285] = { - [sym_import] = STATE(1498), - [sym_parenthesized_expression] = STATE(764), - [sym__expression] = STATE(1124), - [sym_yield_expression] = STATE(1518), - [sym_object] = STATE(1435), - [sym_array] = STATE(1433), - [sym_class] = STATE(1498), - [sym_function] = STATE(1498), - [sym_generator_function] = STATE(1498), - [sym_arrow_function] = STATE(1498), - [sym__call_signature] = STATE(3145), - [sym_call_expression] = STATE(1498), - [sym_new_expression] = STATE(1518), - [sym_await_expression] = STATE(1518), - [sym_member_expression] = STATE(764), - [sym_subscript_expression] = STATE(764), - [sym_assignment_expression] = STATE(1518), + [311] = { + [sym_import] = STATE(1151), + [sym_parenthesized_expression] = STATE(956), + [sym__expression] = STATE(1425), + [sym_yield_expression] = STATE(1144), + [sym_object] = STATE(1653), + [sym_array] = STATE(1660), + [sym_class] = STATE(1151), + [sym_function] = STATE(1151), + [sym_generator_function] = STATE(1151), + [sym_arrow_function] = STATE(1151), + [sym__call_signature] = STATE(3024), + [sym_call_expression] = STATE(1151), + [sym_new_expression] = STATE(1144), + [sym_await_expression] = STATE(1144), + [sym_member_expression] = STATE(956), + [sym_subscript_expression] = STATE(956), + [sym_assignment_expression] = STATE(1144), [sym__augmented_assignment_lhs] = STATE(1925), - [sym_augmented_assignment_expression] = STATE(1518), - [sym_ternary_expression] = STATE(1518), - [sym_binary_expression] = STATE(1518), - [sym_unary_expression] = STATE(1518), - [sym_update_expression] = STATE(1518), - [sym_string] = STATE(1498), - [sym_template_string] = STATE(1498), - [sym_regex] = STATE(1498), - [sym_meta_property] = STATE(1498), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(772), - [sym_type_assertion] = STATE(1518), - [sym_as_expression] = STATE(1518), - [sym_internal_module] = STATE(1518), - [sym_type_arguments] = STATE(349), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2554), - [sym_identifier] = ACTIONS(587), - [anon_sym_export] = ACTIONS(589), - [anon_sym_namespace] = ACTIONS(593), - [anon_sym_LBRACE] = ACTIONS(595), - [anon_sym_type] = ACTIONS(589), - [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(597), - [anon_sym_BANG] = ACTIONS(29), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(39), - [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(601), - [anon_sym_async] = ACTIONS(603), - [anon_sym_function] = ACTIONS(605), - [anon_sym_new] = ACTIONS(75), - [anon_sym_PLUS] = ACTIONS(77), - [anon_sym_DASH] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(29), - [anon_sym_void] = ACTIONS(19), - [anon_sym_delete] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(85), - [sym_number] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(589), - [anon_sym_get] = ACTIONS(589), - [anon_sym_set] = ACTIONS(589), - [anon_sym_declare] = ACTIONS(589), - [anon_sym_public] = ACTIONS(589), - [anon_sym_private] = ACTIONS(589), - [anon_sym_protected] = ACTIONS(589), - [anon_sym_module] = ACTIONS(589), - [anon_sym_any] = ACTIONS(589), - [anon_sym_number] = ACTIONS(589), - [anon_sym_boolean] = ACTIONS(589), - [anon_sym_string] = ACTIONS(589), - [anon_sym_symbol] = ACTIONS(589), - [sym_readonly] = ACTIONS(589), - }, - [286] = { - [sym_import] = STATE(1101), - [sym_parenthesized_expression] = STATE(921), - [sym__expression] = STATE(1299), - [sym_yield_expression] = STATE(1105), - [sym_object] = STATE(1531), - [sym_array] = STATE(1536), - [sym_class] = STATE(1101), - [sym_function] = STATE(1101), - [sym_generator_function] = STATE(1101), - [sym_arrow_function] = STATE(1101), - [sym__call_signature] = STATE(3170), - [sym_call_expression] = STATE(1101), - [sym_new_expression] = STATE(1105), - [sym_await_expression] = STATE(1105), - [sym_member_expression] = STATE(921), - [sym_subscript_expression] = STATE(921), - [sym_assignment_expression] = STATE(1105), - [sym__augmented_assignment_lhs] = STATE(1917), - [sym_augmented_assignment_expression] = STATE(1105), - [sym_ternary_expression] = STATE(1105), - [sym_binary_expression] = STATE(1105), - [sym_unary_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_string] = STATE(1101), - [sym_template_string] = STATE(1101), - [sym_regex] = STATE(1101), - [sym_meta_property] = STATE(1101), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(882), - [sym_type_assertion] = STATE(1105), - [sym_as_expression] = STATE(1105), - [sym_internal_module] = STATE(1105), - [sym_type_arguments] = STATE(355), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2497), + [sym_augmented_assignment_expression] = STATE(1144), + [sym_ternary_expression] = STATE(1144), + [sym_binary_expression] = STATE(1144), + [sym_unary_expression] = STATE(1144), + [sym_update_expression] = STATE(1144), + [sym_string] = STATE(1151), + [sym_template_string] = STATE(1151), + [sym_regex] = STATE(1151), + [sym_meta_property] = STATE(1151), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(950), + [sym_type_assertion] = STATE(1144), + [sym_as_expression] = STATE(1144), + [sym_internal_module] = STATE(1144), + [sym_type_arguments] = STATE(395), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2580), [sym_identifier] = ACTIONS(897), - [anon_sym_export] = ACTIONS(751), - [anon_sym_namespace] = ACTIONS(753), + [anon_sym_export] = ACTIONS(577), + [anon_sym_namespace] = ACTIONS(579), [anon_sym_LBRACE] = ACTIONS(509), - [anon_sym_type] = ACTIONS(751), - [anon_sym_typeof] = ACTIONS(775), + [anon_sym_type] = ACTIONS(577), + [anon_sym_typeof] = ACTIONS(601), [anon_sym_import] = ACTIONS(435), - [anon_sym_BANG] = ACTIONS(757), + [anon_sym_BANG] = ACTIONS(585), [anon_sym_LPAREN] = ACTIONS(515), - [anon_sym_await] = ACTIONS(759), - [anon_sym_yield] = ACTIONS(761), + [anon_sym_await] = ACTIONS(587), + [anon_sym_yield] = ACTIONS(589), [anon_sym_LBRACK] = ACTIONS(517), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(765), + [anon_sym_SLASH] = ACTIONS(449), [anon_sym_class] = ACTIONS(451), - [anon_sym_async] = ACTIONS(767), + [anon_sym_async] = ACTIONS(593), [anon_sym_function] = ACTIONS(455), [anon_sym_new] = ACTIONS(903), [anon_sym_PLUS] = ACTIONS(905), [anon_sym_DASH] = ACTIONS(905), - [anon_sym_TILDE] = ACTIONS(757), - [anon_sym_void] = ACTIONS(775), - [anon_sym_delete] = ACTIONS(775), - [anon_sym_PLUS_PLUS] = ACTIONS(777), - [anon_sym_DASH_DASH] = ACTIONS(777), + [anon_sym_TILDE] = ACTIONS(585), + [anon_sym_void] = ACTIONS(601), + [anon_sym_delete] = ACTIONS(601), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(603), [anon_sym_DQUOTE] = ACTIONS(475), [anon_sym_SQUOTE] = ACTIONS(477), [sym_comment] = ACTIONS(3), @@ -38924,65 +41203,154 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(485), [sym_undefined] = ACTIONS(485), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(751), - [anon_sym_get] = ACTIONS(751), - [anon_sym_set] = ACTIONS(751), - [anon_sym_declare] = ACTIONS(751), - [anon_sym_public] = ACTIONS(751), - [anon_sym_private] = ACTIONS(751), - [anon_sym_protected] = ACTIONS(751), - [anon_sym_module] = ACTIONS(751), - [anon_sym_any] = ACTIONS(751), - [anon_sym_number] = ACTIONS(751), - [anon_sym_boolean] = ACTIONS(751), - [anon_sym_string] = ACTIONS(751), - [anon_sym_symbol] = ACTIONS(751), - [sym_readonly] = ACTIONS(751), + [anon_sym_static] = ACTIONS(577), + [anon_sym_get] = ACTIONS(577), + [anon_sym_set] = ACTIONS(577), + [anon_sym_declare] = ACTIONS(577), + [anon_sym_public] = ACTIONS(577), + [anon_sym_private] = ACTIONS(577), + [anon_sym_protected] = ACTIONS(577), + [anon_sym_module] = ACTIONS(577), + [anon_sym_any] = ACTIONS(577), + [anon_sym_number] = ACTIONS(577), + [anon_sym_boolean] = ACTIONS(577), + [anon_sym_string] = ACTIONS(577), + [anon_sym_symbol] = ACTIONS(577), + [sym_readonly] = ACTIONS(577), }, - [287] = { - [sym_import] = STATE(1498), - [sym_parenthesized_expression] = STATE(764), - [sym__expression] = STATE(1127), - [sym_yield_expression] = STATE(1518), - [sym_object] = STATE(1435), - [sym_array] = STATE(1433), - [sym_class] = STATE(1498), - [sym_function] = STATE(1498), - [sym_generator_function] = STATE(1498), - [sym_arrow_function] = STATE(1498), - [sym__call_signature] = STATE(3145), - [sym_call_expression] = STATE(1498), - [sym_new_expression] = STATE(1518), - [sym_await_expression] = STATE(1518), - [sym_member_expression] = STATE(764), - [sym_subscript_expression] = STATE(764), - [sym_assignment_expression] = STATE(1518), - [sym__augmented_assignment_lhs] = STATE(1925), - [sym_augmented_assignment_expression] = STATE(1518), - [sym_ternary_expression] = STATE(1518), - [sym_binary_expression] = STATE(1518), - [sym_unary_expression] = STATE(1518), - [sym_update_expression] = STATE(1518), - [sym_string] = STATE(1498), - [sym_template_string] = STATE(1498), - [sym_regex] = STATE(1498), - [sym_meta_property] = STATE(1498), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(772), - [sym_type_assertion] = STATE(1518), - [sym_as_expression] = STATE(1518), - [sym_internal_module] = STATE(1518), - [sym_type_arguments] = STATE(349), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2554), - [sym_identifier] = ACTIONS(587), - [anon_sym_export] = ACTIONS(589), - [anon_sym_namespace] = ACTIONS(593), - [anon_sym_LBRACE] = ACTIONS(595), - [anon_sym_type] = ACTIONS(589), + [312] = { + [sym_import] = STATE(1151), + [sym_parenthesized_expression] = STATE(837), + [sym__expression] = STATE(1214), + [sym_yield_expression] = STATE(1144), + [sym_object] = STATE(1495), + [sym_array] = STATE(1493), + [sym_class] = STATE(1151), + [sym_function] = STATE(1151), + [sym_generator_function] = STATE(1151), + [sym_arrow_function] = STATE(1151), + [sym__call_signature] = STATE(3190), + [sym_call_expression] = STATE(1151), + [sym_new_expression] = STATE(1144), + [sym_await_expression] = STATE(1144), + [sym_member_expression] = STATE(837), + [sym_subscript_expression] = STATE(837), + [sym_assignment_expression] = STATE(1144), + [sym__augmented_assignment_lhs] = STATE(1927), + [sym_augmented_assignment_expression] = STATE(1144), + [sym_ternary_expression] = STATE(1144), + [sym_binary_expression] = STATE(1144), + [sym_unary_expression] = STATE(1144), + [sym_update_expression] = STATE(1144), + [sym_string] = STATE(1151), + [sym_template_string] = STATE(1151), + [sym_regex] = STATE(1151), + [sym_meta_property] = STATE(1151), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(845), + [sym_type_assertion] = STATE(1144), + [sym_as_expression] = STATE(1144), + [sym_internal_module] = STATE(1144), + [sym_type_arguments] = STATE(357), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2580), + [sym_identifier] = ACTIONS(859), + [anon_sym_export] = ACTIONS(769), + [anon_sym_namespace] = ACTIONS(771), + [anon_sym_LBRACE] = ACTIONS(509), + [anon_sym_type] = ACTIONS(769), + [anon_sym_typeof] = ACTIONS(791), + [anon_sym_import] = ACTIONS(435), + [anon_sym_BANG] = ACTIONS(775), + [anon_sym_LPAREN] = ACTIONS(515), + [anon_sym_await] = ACTIONS(777), + [anon_sym_yield] = ACTIONS(779), + [anon_sym_LBRACK] = ACTIONS(517), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(781), + [anon_sym_class] = ACTIONS(451), + [anon_sym_async] = ACTIONS(783), + [anon_sym_function] = ACTIONS(455), + [anon_sym_new] = ACTIONS(865), + [anon_sym_PLUS] = ACTIONS(867), + [anon_sym_DASH] = ACTIONS(867), + [anon_sym_TILDE] = ACTIONS(775), + [anon_sym_void] = ACTIONS(791), + [anon_sym_delete] = ACTIONS(791), + [anon_sym_PLUS_PLUS] = ACTIONS(793), + [anon_sym_DASH_DASH] = ACTIONS(793), + [anon_sym_DQUOTE] = ACTIONS(475), + [anon_sym_SQUOTE] = ACTIONS(477), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(479), + [sym_number] = ACTIONS(527), + [sym_this] = ACTIONS(485), + [sym_super] = ACTIONS(485), + [sym_true] = ACTIONS(485), + [sym_false] = ACTIONS(485), + [sym_null] = ACTIONS(485), + [sym_undefined] = ACTIONS(485), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(769), + [anon_sym_get] = ACTIONS(769), + [anon_sym_set] = ACTIONS(769), + [anon_sym_declare] = ACTIONS(769), + [anon_sym_public] = ACTIONS(769), + [anon_sym_private] = ACTIONS(769), + [anon_sym_protected] = ACTIONS(769), + [anon_sym_module] = ACTIONS(769), + [anon_sym_any] = ACTIONS(769), + [anon_sym_number] = ACTIONS(769), + [anon_sym_boolean] = ACTIONS(769), + [anon_sym_string] = ACTIONS(769), + [anon_sym_symbol] = ACTIONS(769), + [sym_readonly] = ACTIONS(769), + }, + [313] = { + [sym_import] = STATE(1523), + [sym_parenthesized_expression] = STATE(768), + [sym__expression] = STATE(1128), + [sym_yield_expression] = STATE(1567), + [sym_object] = STATE(1357), + [sym_array] = STATE(1360), + [sym_class] = STATE(1523), + [sym_function] = STATE(1523), + [sym_generator_function] = STATE(1523), + [sym_arrow_function] = STATE(1523), + [sym__call_signature] = STATE(3196), + [sym_call_expression] = STATE(1523), + [sym_new_expression] = STATE(1567), + [sym_await_expression] = STATE(1567), + [sym_member_expression] = STATE(768), + [sym_subscript_expression] = STATE(768), + [sym_assignment_expression] = STATE(1567), + [sym__augmented_assignment_lhs] = STATE(1928), + [sym_augmented_assignment_expression] = STATE(1567), + [sym_ternary_expression] = STATE(1567), + [sym_binary_expression] = STATE(1567), + [sym_unary_expression] = STATE(1567), + [sym_update_expression] = STATE(1567), + [sym_string] = STATE(1523), + [sym_template_string] = STATE(1523), + [sym_regex] = STATE(1523), + [sym_meta_property] = STATE(1523), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(774), + [sym_type_assertion] = STATE(1567), + [sym_as_expression] = STATE(1567), + [sym_internal_module] = STATE(1567), + [sym_type_arguments] = STATE(292), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2575), + [sym_identifier] = ACTIONS(567), + [anon_sym_export] = ACTIONS(531), + [anon_sym_namespace] = ACTIONS(533), + [anon_sym_LBRACE] = ACTIONS(571), + [anon_sym_type] = ACTIONS(531), [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(597), + [anon_sym_import] = ACTIONS(539), [anon_sym_BANG] = ACTIONS(29), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_await] = ACTIONS(39), @@ -38990,9 +41358,9 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(601), - [anon_sym_async] = ACTIONS(603), - [anon_sym_function] = ACTIONS(605), + [anon_sym_class] = ACTIONS(545), + [anon_sym_async] = ACTIONS(547), + [anon_sym_function] = ACTIONS(549), [anon_sym_new] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(77), [anon_sym_DASH] = ACTIONS(77), @@ -39005,7 +41373,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(85), - [sym_number] = ACTIONS(87), + [sym_number] = ACTIONS(1461), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), @@ -39013,58 +41381,58 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(589), - [anon_sym_get] = ACTIONS(589), - [anon_sym_set] = ACTIONS(589), - [anon_sym_declare] = ACTIONS(589), - [anon_sym_public] = ACTIONS(589), - [anon_sym_private] = ACTIONS(589), - [anon_sym_protected] = ACTIONS(589), - [anon_sym_module] = ACTIONS(589), - [anon_sym_any] = ACTIONS(589), - [anon_sym_number] = ACTIONS(589), - [anon_sym_boolean] = ACTIONS(589), - [anon_sym_string] = ACTIONS(589), - [anon_sym_symbol] = ACTIONS(589), - [sym_readonly] = ACTIONS(589), + [anon_sym_static] = ACTIONS(531), + [anon_sym_get] = ACTIONS(531), + [anon_sym_set] = ACTIONS(531), + [anon_sym_declare] = ACTIONS(531), + [anon_sym_public] = ACTIONS(531), + [anon_sym_private] = ACTIONS(531), + [anon_sym_protected] = ACTIONS(531), + [anon_sym_module] = ACTIONS(531), + [anon_sym_any] = ACTIONS(531), + [anon_sym_number] = ACTIONS(531), + [anon_sym_boolean] = ACTIONS(531), + [anon_sym_string] = ACTIONS(531), + [anon_sym_symbol] = ACTIONS(531), + [sym_readonly] = ACTIONS(531), }, - [288] = { - [sym_import] = STATE(1101), - [sym_parenthesized_expression] = STATE(739), - [sym__expression] = STATE(1076), - [sym_yield_expression] = STATE(1105), - [sym_object] = STATE(1297), - [sym_array] = STATE(1296), - [sym_class] = STATE(1101), - [sym_function] = STATE(1101), - [sym_generator_function] = STATE(1101), - [sym_arrow_function] = STATE(1101), - [sym__call_signature] = STATE(3116), - [sym_call_expression] = STATE(1101), - [sym_new_expression] = STATE(1105), - [sym_await_expression] = STATE(1105), - [sym_member_expression] = STATE(739), - [sym_subscript_expression] = STATE(739), - [sym_assignment_expression] = STATE(1105), - [sym__augmented_assignment_lhs] = STATE(1920), - [sym_augmented_assignment_expression] = STATE(1105), - [sym_ternary_expression] = STATE(1105), - [sym_binary_expression] = STATE(1105), - [sym_unary_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_string] = STATE(1101), - [sym_template_string] = STATE(1101), - [sym_regex] = STATE(1101), - [sym_meta_property] = STATE(1101), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(755), - [sym_type_assertion] = STATE(1105), - [sym_as_expression] = STATE(1105), - [sym_internal_module] = STATE(1105), - [sym_type_arguments] = STATE(361), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2497), + [314] = { + [sym_import] = STATE(1151), + [sym_parenthesized_expression] = STATE(759), + [sym__expression] = STATE(1072), + [sym_yield_expression] = STATE(1144), + [sym_object] = STATE(1257), + [sym_array] = STATE(1254), + [sym_class] = STATE(1151), + [sym_function] = STATE(1151), + [sym_generator_function] = STATE(1151), + [sym_arrow_function] = STATE(1151), + [sym__call_signature] = STATE(3082), + [sym_call_expression] = STATE(1151), + [sym_new_expression] = STATE(1144), + [sym_await_expression] = STATE(1144), + [sym_member_expression] = STATE(759), + [sym_subscript_expression] = STATE(759), + [sym_assignment_expression] = STATE(1144), + [sym__augmented_assignment_lhs] = STATE(1924), + [sym_augmented_assignment_expression] = STATE(1144), + [sym_ternary_expression] = STATE(1144), + [sym_binary_expression] = STATE(1144), + [sym_unary_expression] = STATE(1144), + [sym_update_expression] = STATE(1144), + [sym_string] = STATE(1151), + [sym_template_string] = STATE(1151), + [sym_regex] = STATE(1151), + [sym_meta_property] = STATE(1151), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(754), + [sym_type_assertion] = STATE(1144), + [sym_as_expression] = STATE(1144), + [sym_internal_module] = STATE(1144), + [sym_type_arguments] = STATE(326), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2580), [sym_identifier] = ACTIONS(499), [anon_sym_export] = ACTIONS(501), [anon_sym_namespace] = ACTIONS(507), @@ -39117,780 +41485,68 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(501), [sym_readonly] = ACTIONS(501), }, - [289] = { - [sym_import] = STATE(1498), - [sym_parenthesized_expression] = STATE(952), - [sym__expression] = STATE(1458), - [sym_yield_expression] = STATE(1518), - [sym_object] = STATE(1677), - [sym_array] = STATE(1671), - [sym_class] = STATE(1498), - [sym_function] = STATE(1498), - [sym_generator_function] = STATE(1498), - [sym_arrow_function] = STATE(1498), - [sym__call_signature] = STATE(3059), - [sym_call_expression] = STATE(1498), - [sym_new_expression] = STATE(1518), - [sym_await_expression] = STATE(1518), - [sym_member_expression] = STATE(952), - [sym_subscript_expression] = STATE(952), - [sym_assignment_expression] = STATE(1518), - [sym__augmented_assignment_lhs] = STATE(1919), - [sym_augmented_assignment_expression] = STATE(1518), - [sym_ternary_expression] = STATE(1518), - [sym_binary_expression] = STATE(1518), - [sym_unary_expression] = STATE(1518), - [sym_update_expression] = STATE(1518), - [sym_string] = STATE(1498), - [sym_template_string] = STATE(1498), - [sym_regex] = STATE(1498), - [sym_meta_property] = STATE(1498), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(946), - [sym_type_assertion] = STATE(1518), - [sym_as_expression] = STATE(1518), - [sym_internal_module] = STATE(1518), - [sym_type_arguments] = STATE(263), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2554), - [sym_identifier] = ACTIONS(869), - [anon_sym_export] = ACTIONS(675), - [anon_sym_namespace] = ACTIONS(677), - [anon_sym_LBRACE] = ACTIONS(595), - [anon_sym_type] = ACTIONS(675), - [anon_sym_typeof] = ACTIONS(697), - [anon_sym_import] = ACTIONS(597), - [anon_sym_BANG] = ACTIONS(681), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(683), - [anon_sym_yield] = ACTIONS(685), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(601), - [anon_sym_async] = ACTIONS(689), - [anon_sym_function] = ACTIONS(605), - [anon_sym_new] = ACTIONS(875), - [anon_sym_PLUS] = ACTIONS(877), - [anon_sym_DASH] = ACTIONS(877), - [anon_sym_TILDE] = ACTIONS(681), - [anon_sym_void] = ACTIONS(697), - [anon_sym_delete] = ACTIONS(697), - [anon_sym_PLUS_PLUS] = ACTIONS(699), - [anon_sym_DASH_DASH] = ACTIONS(699), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(85), - [sym_number] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(675), - [anon_sym_get] = ACTIONS(675), - [anon_sym_set] = ACTIONS(675), - [anon_sym_declare] = ACTIONS(675), - [anon_sym_public] = ACTIONS(675), - [anon_sym_private] = ACTIONS(675), - [anon_sym_protected] = ACTIONS(675), - [anon_sym_module] = ACTIONS(675), - [anon_sym_any] = ACTIONS(675), - [anon_sym_number] = ACTIONS(675), - [anon_sym_boolean] = ACTIONS(675), - [anon_sym_string] = ACTIONS(675), - [anon_sym_symbol] = ACTIONS(675), - [sym_readonly] = ACTIONS(675), - }, - [290] = { - [sym_import] = STATE(1498), - [sym_parenthesized_expression] = STATE(952), - [sym__expression] = STATE(1455), - [sym_yield_expression] = STATE(1518), - [sym_object] = STATE(1677), - [sym_array] = STATE(1671), - [sym_class] = STATE(1498), - [sym_function] = STATE(1498), - [sym_generator_function] = STATE(1498), - [sym_arrow_function] = STATE(1498), - [sym__call_signature] = STATE(3059), - [sym_call_expression] = STATE(1498), - [sym_new_expression] = STATE(1518), - [sym_await_expression] = STATE(1518), - [sym_member_expression] = STATE(952), - [sym_subscript_expression] = STATE(952), - [sym_assignment_expression] = STATE(1518), - [sym__augmented_assignment_lhs] = STATE(1919), - [sym_augmented_assignment_expression] = STATE(1518), - [sym_ternary_expression] = STATE(1518), - [sym_binary_expression] = STATE(1518), - [sym_unary_expression] = STATE(1518), - [sym_update_expression] = STATE(1518), - [sym_string] = STATE(1498), - [sym_template_string] = STATE(1498), - [sym_regex] = STATE(1498), - [sym_meta_property] = STATE(1498), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(946), - [sym_type_assertion] = STATE(1518), - [sym_as_expression] = STATE(1518), - [sym_internal_module] = STATE(1518), - [sym_type_arguments] = STATE(263), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2554), - [sym_identifier] = ACTIONS(869), - [anon_sym_export] = ACTIONS(675), - [anon_sym_namespace] = ACTIONS(677), - [anon_sym_LBRACE] = ACTIONS(595), - [anon_sym_type] = ACTIONS(675), - [anon_sym_typeof] = ACTIONS(697), - [anon_sym_import] = ACTIONS(597), - [anon_sym_BANG] = ACTIONS(681), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(683), - [anon_sym_yield] = ACTIONS(685), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(601), - [anon_sym_async] = ACTIONS(689), - [anon_sym_function] = ACTIONS(605), - [anon_sym_new] = ACTIONS(875), - [anon_sym_PLUS] = ACTIONS(877), - [anon_sym_DASH] = ACTIONS(877), - [anon_sym_TILDE] = ACTIONS(681), - [anon_sym_void] = ACTIONS(697), - [anon_sym_delete] = ACTIONS(697), - [anon_sym_PLUS_PLUS] = ACTIONS(699), - [anon_sym_DASH_DASH] = ACTIONS(699), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(85), - [sym_number] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(675), - [anon_sym_get] = ACTIONS(675), - [anon_sym_set] = ACTIONS(675), - [anon_sym_declare] = ACTIONS(675), - [anon_sym_public] = ACTIONS(675), - [anon_sym_private] = ACTIONS(675), - [anon_sym_protected] = ACTIONS(675), - [anon_sym_module] = ACTIONS(675), - [anon_sym_any] = ACTIONS(675), - [anon_sym_number] = ACTIONS(675), - [anon_sym_boolean] = ACTIONS(675), - [anon_sym_string] = ACTIONS(675), - [anon_sym_symbol] = ACTIONS(675), - [sym_readonly] = ACTIONS(675), - }, - [291] = { - [sym_import] = STATE(1498), - [sym_parenthesized_expression] = STATE(952), - [sym__expression] = STATE(1451), - [sym_yield_expression] = STATE(1518), - [sym_object] = STATE(1677), - [sym_array] = STATE(1671), - [sym_class] = STATE(1498), - [sym_function] = STATE(1498), - [sym_generator_function] = STATE(1498), - [sym_arrow_function] = STATE(1498), - [sym__call_signature] = STATE(3059), - [sym_call_expression] = STATE(1498), - [sym_new_expression] = STATE(1518), - [sym_await_expression] = STATE(1518), - [sym_member_expression] = STATE(952), - [sym_subscript_expression] = STATE(952), - [sym_assignment_expression] = STATE(1518), - [sym__augmented_assignment_lhs] = STATE(1919), - [sym_augmented_assignment_expression] = STATE(1518), - [sym_ternary_expression] = STATE(1518), - [sym_binary_expression] = STATE(1518), - [sym_unary_expression] = STATE(1518), - [sym_update_expression] = STATE(1518), - [sym_string] = STATE(1498), - [sym_template_string] = STATE(1498), - [sym_regex] = STATE(1498), - [sym_meta_property] = STATE(1498), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(946), - [sym_type_assertion] = STATE(1518), - [sym_as_expression] = STATE(1518), - [sym_internal_module] = STATE(1518), - [sym_type_arguments] = STATE(263), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2554), - [sym_identifier] = ACTIONS(869), - [anon_sym_export] = ACTIONS(675), - [anon_sym_namespace] = ACTIONS(677), - [anon_sym_LBRACE] = ACTIONS(595), - [anon_sym_type] = ACTIONS(675), - [anon_sym_typeof] = ACTIONS(697), - [anon_sym_import] = ACTIONS(597), - [anon_sym_BANG] = ACTIONS(681), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(683), - [anon_sym_yield] = ACTIONS(685), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(601), - [anon_sym_async] = ACTIONS(689), - [anon_sym_function] = ACTIONS(605), - [anon_sym_new] = ACTIONS(875), - [anon_sym_PLUS] = ACTIONS(877), - [anon_sym_DASH] = ACTIONS(877), - [anon_sym_TILDE] = ACTIONS(681), - [anon_sym_void] = ACTIONS(697), - [anon_sym_delete] = ACTIONS(697), - [anon_sym_PLUS_PLUS] = ACTIONS(699), - [anon_sym_DASH_DASH] = ACTIONS(699), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(85), - [sym_number] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(675), - [anon_sym_get] = ACTIONS(675), - [anon_sym_set] = ACTIONS(675), - [anon_sym_declare] = ACTIONS(675), - [anon_sym_public] = ACTIONS(675), - [anon_sym_private] = ACTIONS(675), - [anon_sym_protected] = ACTIONS(675), - [anon_sym_module] = ACTIONS(675), - [anon_sym_any] = ACTIONS(675), - [anon_sym_number] = ACTIONS(675), - [anon_sym_boolean] = ACTIONS(675), - [anon_sym_string] = ACTIONS(675), - [anon_sym_symbol] = ACTIONS(675), - [sym_readonly] = ACTIONS(675), - }, - [292] = { - [sym_import] = STATE(1498), - [sym_parenthesized_expression] = STATE(952), - [sym__expression] = STATE(1409), - [sym_yield_expression] = STATE(1518), - [sym_object] = STATE(1677), - [sym_array] = STATE(1671), - [sym_class] = STATE(1498), - [sym_function] = STATE(1498), - [sym_generator_function] = STATE(1498), - [sym_arrow_function] = STATE(1498), - [sym__call_signature] = STATE(3059), - [sym_call_expression] = STATE(1498), - [sym_new_expression] = STATE(1518), - [sym_await_expression] = STATE(1518), - [sym_member_expression] = STATE(952), - [sym_subscript_expression] = STATE(952), - [sym_assignment_expression] = STATE(1518), - [sym__augmented_assignment_lhs] = STATE(1919), - [sym_augmented_assignment_expression] = STATE(1518), - [sym_ternary_expression] = STATE(1518), - [sym_binary_expression] = STATE(1518), - [sym_unary_expression] = STATE(1518), - [sym_update_expression] = STATE(1518), - [sym_string] = STATE(1498), - [sym_template_string] = STATE(1498), - [sym_regex] = STATE(1498), - [sym_meta_property] = STATE(1498), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(946), - [sym_type_assertion] = STATE(1518), - [sym_as_expression] = STATE(1518), - [sym_internal_module] = STATE(1518), - [sym_type_arguments] = STATE(263), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2554), - [sym_identifier] = ACTIONS(869), - [anon_sym_export] = ACTIONS(675), - [anon_sym_namespace] = ACTIONS(677), - [anon_sym_LBRACE] = ACTIONS(595), - [anon_sym_type] = ACTIONS(675), - [anon_sym_typeof] = ACTIONS(697), - [anon_sym_import] = ACTIONS(597), - [anon_sym_BANG] = ACTIONS(681), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(683), - [anon_sym_yield] = ACTIONS(685), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(601), - [anon_sym_async] = ACTIONS(689), - [anon_sym_function] = ACTIONS(605), - [anon_sym_new] = ACTIONS(875), - [anon_sym_PLUS] = ACTIONS(877), - [anon_sym_DASH] = ACTIONS(877), - [anon_sym_TILDE] = ACTIONS(681), - [anon_sym_void] = ACTIONS(697), - [anon_sym_delete] = ACTIONS(697), - [anon_sym_PLUS_PLUS] = ACTIONS(699), - [anon_sym_DASH_DASH] = ACTIONS(699), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(85), - [sym_number] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(675), - [anon_sym_get] = ACTIONS(675), - [anon_sym_set] = ACTIONS(675), - [anon_sym_declare] = ACTIONS(675), - [anon_sym_public] = ACTIONS(675), - [anon_sym_private] = ACTIONS(675), - [anon_sym_protected] = ACTIONS(675), - [anon_sym_module] = ACTIONS(675), - [anon_sym_any] = ACTIONS(675), - [anon_sym_number] = ACTIONS(675), - [anon_sym_boolean] = ACTIONS(675), - [anon_sym_string] = ACTIONS(675), - [anon_sym_symbol] = ACTIONS(675), - [sym_readonly] = ACTIONS(675), - }, - [293] = { - [sym_import] = STATE(1498), - [sym_parenthesized_expression] = STATE(952), - [sym__expression] = STATE(1448), - [sym_yield_expression] = STATE(1518), - [sym_object] = STATE(1677), - [sym_array] = STATE(1671), - [sym_class] = STATE(1498), - [sym_function] = STATE(1498), - [sym_generator_function] = STATE(1498), - [sym_arrow_function] = STATE(1498), - [sym__call_signature] = STATE(3059), - [sym_call_expression] = STATE(1498), - [sym_new_expression] = STATE(1518), - [sym_await_expression] = STATE(1518), - [sym_member_expression] = STATE(952), - [sym_subscript_expression] = STATE(952), - [sym_assignment_expression] = STATE(1518), - [sym__augmented_assignment_lhs] = STATE(1919), - [sym_augmented_assignment_expression] = STATE(1518), - [sym_ternary_expression] = STATE(1518), - [sym_binary_expression] = STATE(1518), - [sym_unary_expression] = STATE(1518), - [sym_update_expression] = STATE(1518), - [sym_string] = STATE(1498), - [sym_template_string] = STATE(1498), - [sym_regex] = STATE(1498), - [sym_meta_property] = STATE(1498), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(946), - [sym_type_assertion] = STATE(1518), - [sym_as_expression] = STATE(1518), - [sym_internal_module] = STATE(1518), - [sym_type_arguments] = STATE(263), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2554), - [sym_identifier] = ACTIONS(869), - [anon_sym_export] = ACTIONS(675), - [anon_sym_namespace] = ACTIONS(677), - [anon_sym_LBRACE] = ACTIONS(595), - [anon_sym_type] = ACTIONS(675), - [anon_sym_typeof] = ACTIONS(697), - [anon_sym_import] = ACTIONS(597), - [anon_sym_BANG] = ACTIONS(681), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(683), - [anon_sym_yield] = ACTIONS(685), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(601), - [anon_sym_async] = ACTIONS(689), - [anon_sym_function] = ACTIONS(605), - [anon_sym_new] = ACTIONS(875), - [anon_sym_PLUS] = ACTIONS(877), - [anon_sym_DASH] = ACTIONS(877), - [anon_sym_TILDE] = ACTIONS(681), - [anon_sym_void] = ACTIONS(697), - [anon_sym_delete] = ACTIONS(697), - [anon_sym_PLUS_PLUS] = ACTIONS(699), - [anon_sym_DASH_DASH] = ACTIONS(699), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(85), - [sym_number] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(675), - [anon_sym_get] = ACTIONS(675), - [anon_sym_set] = ACTIONS(675), - [anon_sym_declare] = ACTIONS(675), - [anon_sym_public] = ACTIONS(675), - [anon_sym_private] = ACTIONS(675), - [anon_sym_protected] = ACTIONS(675), - [anon_sym_module] = ACTIONS(675), - [anon_sym_any] = ACTIONS(675), - [anon_sym_number] = ACTIONS(675), - [anon_sym_boolean] = ACTIONS(675), - [anon_sym_string] = ACTIONS(675), - [anon_sym_symbol] = ACTIONS(675), - [sym_readonly] = ACTIONS(675), - }, - [294] = { - [sym_import] = STATE(1498), - [sym_parenthesized_expression] = STATE(952), - [sym__expression] = STATE(1444), - [sym_yield_expression] = STATE(1518), - [sym_object] = STATE(1677), - [sym_array] = STATE(1671), - [sym_class] = STATE(1498), - [sym_function] = STATE(1498), - [sym_generator_function] = STATE(1498), - [sym_arrow_function] = STATE(1498), - [sym__call_signature] = STATE(3059), - [sym_call_expression] = STATE(1498), - [sym_new_expression] = STATE(1518), - [sym_await_expression] = STATE(1518), - [sym_member_expression] = STATE(952), - [sym_subscript_expression] = STATE(952), - [sym_assignment_expression] = STATE(1518), - [sym__augmented_assignment_lhs] = STATE(1919), - [sym_augmented_assignment_expression] = STATE(1518), - [sym_ternary_expression] = STATE(1518), - [sym_binary_expression] = STATE(1518), - [sym_unary_expression] = STATE(1518), - [sym_update_expression] = STATE(1518), - [sym_string] = STATE(1498), - [sym_template_string] = STATE(1498), - [sym_regex] = STATE(1498), - [sym_meta_property] = STATE(1498), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(946), - [sym_type_assertion] = STATE(1518), - [sym_as_expression] = STATE(1518), - [sym_internal_module] = STATE(1518), - [sym_type_arguments] = STATE(263), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2554), - [sym_identifier] = ACTIONS(869), - [anon_sym_export] = ACTIONS(675), - [anon_sym_namespace] = ACTIONS(677), - [anon_sym_LBRACE] = ACTIONS(595), - [anon_sym_type] = ACTIONS(675), - [anon_sym_typeof] = ACTIONS(697), - [anon_sym_import] = ACTIONS(597), - [anon_sym_BANG] = ACTIONS(681), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(683), - [anon_sym_yield] = ACTIONS(685), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(601), - [anon_sym_async] = ACTIONS(689), - [anon_sym_function] = ACTIONS(605), - [anon_sym_new] = ACTIONS(875), - [anon_sym_PLUS] = ACTIONS(877), - [anon_sym_DASH] = ACTIONS(877), - [anon_sym_TILDE] = ACTIONS(681), - [anon_sym_void] = ACTIONS(697), - [anon_sym_delete] = ACTIONS(697), - [anon_sym_PLUS_PLUS] = ACTIONS(699), - [anon_sym_DASH_DASH] = ACTIONS(699), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(85), - [sym_number] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(675), - [anon_sym_get] = ACTIONS(675), - [anon_sym_set] = ACTIONS(675), - [anon_sym_declare] = ACTIONS(675), - [anon_sym_public] = ACTIONS(675), - [anon_sym_private] = ACTIONS(675), - [anon_sym_protected] = ACTIONS(675), - [anon_sym_module] = ACTIONS(675), - [anon_sym_any] = ACTIONS(675), - [anon_sym_number] = ACTIONS(675), - [anon_sym_boolean] = ACTIONS(675), - [anon_sym_string] = ACTIONS(675), - [anon_sym_symbol] = ACTIONS(675), - [sym_readonly] = ACTIONS(675), - }, - [295] = { - [sym_import] = STATE(1498), - [sym_parenthesized_expression] = STATE(952), - [sym__expression] = STATE(1462), - [sym_yield_expression] = STATE(1518), - [sym_object] = STATE(1677), - [sym_array] = STATE(1671), - [sym_class] = STATE(1498), - [sym_function] = STATE(1498), - [sym_generator_function] = STATE(1498), - [sym_arrow_function] = STATE(1498), - [sym__call_signature] = STATE(3059), - [sym_call_expression] = STATE(1498), - [sym_new_expression] = STATE(1518), - [sym_await_expression] = STATE(1518), - [sym_member_expression] = STATE(952), - [sym_subscript_expression] = STATE(952), - [sym_assignment_expression] = STATE(1518), - [sym__augmented_assignment_lhs] = STATE(1919), - [sym_augmented_assignment_expression] = STATE(1518), - [sym_ternary_expression] = STATE(1518), - [sym_binary_expression] = STATE(1518), - [sym_unary_expression] = STATE(1518), - [sym_update_expression] = STATE(1518), - [sym_string] = STATE(1498), - [sym_template_string] = STATE(1498), - [sym_regex] = STATE(1498), - [sym_meta_property] = STATE(1498), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(946), - [sym_type_assertion] = STATE(1518), - [sym_as_expression] = STATE(1518), - [sym_internal_module] = STATE(1518), - [sym_type_arguments] = STATE(263), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2554), - [sym_identifier] = ACTIONS(869), - [anon_sym_export] = ACTIONS(675), - [anon_sym_namespace] = ACTIONS(677), - [anon_sym_LBRACE] = ACTIONS(595), - [anon_sym_type] = ACTIONS(675), - [anon_sym_typeof] = ACTIONS(697), - [anon_sym_import] = ACTIONS(597), - [anon_sym_BANG] = ACTIONS(681), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(683), - [anon_sym_yield] = ACTIONS(685), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(601), - [anon_sym_async] = ACTIONS(689), - [anon_sym_function] = ACTIONS(605), - [anon_sym_new] = ACTIONS(875), - [anon_sym_PLUS] = ACTIONS(877), - [anon_sym_DASH] = ACTIONS(877), - [anon_sym_TILDE] = ACTIONS(681), - [anon_sym_void] = ACTIONS(697), - [anon_sym_delete] = ACTIONS(697), - [anon_sym_PLUS_PLUS] = ACTIONS(699), - [anon_sym_DASH_DASH] = ACTIONS(699), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(85), - [sym_number] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(675), - [anon_sym_get] = ACTIONS(675), - [anon_sym_set] = ACTIONS(675), - [anon_sym_declare] = ACTIONS(675), - [anon_sym_public] = ACTIONS(675), - [anon_sym_private] = ACTIONS(675), - [anon_sym_protected] = ACTIONS(675), - [anon_sym_module] = ACTIONS(675), - [anon_sym_any] = ACTIONS(675), - [anon_sym_number] = ACTIONS(675), - [anon_sym_boolean] = ACTIONS(675), - [anon_sym_string] = ACTIONS(675), - [anon_sym_symbol] = ACTIONS(675), - [sym_readonly] = ACTIONS(675), - }, - [296] = { - [sym_import] = STATE(1498), - [sym_parenthesized_expression] = STATE(952), - [sym__expression] = STATE(1457), - [sym_yield_expression] = STATE(1518), - [sym_object] = STATE(1677), - [sym_array] = STATE(1671), - [sym_class] = STATE(1498), - [sym_function] = STATE(1498), - [sym_generator_function] = STATE(1498), - [sym_arrow_function] = STATE(1498), - [sym__call_signature] = STATE(3059), - [sym_call_expression] = STATE(1498), - [sym_new_expression] = STATE(1518), - [sym_await_expression] = STATE(1518), - [sym_member_expression] = STATE(952), - [sym_subscript_expression] = STATE(952), - [sym_assignment_expression] = STATE(1518), - [sym__augmented_assignment_lhs] = STATE(1919), - [sym_augmented_assignment_expression] = STATE(1518), - [sym_ternary_expression] = STATE(1518), - [sym_binary_expression] = STATE(1518), - [sym_unary_expression] = STATE(1518), - [sym_update_expression] = STATE(1518), - [sym_string] = STATE(1498), - [sym_template_string] = STATE(1498), - [sym_regex] = STATE(1498), - [sym_meta_property] = STATE(1498), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(946), - [sym_type_assertion] = STATE(1518), - [sym_as_expression] = STATE(1518), - [sym_internal_module] = STATE(1518), - [sym_type_arguments] = STATE(263), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2554), - [sym_identifier] = ACTIONS(869), - [anon_sym_export] = ACTIONS(675), - [anon_sym_namespace] = ACTIONS(677), - [anon_sym_LBRACE] = ACTIONS(595), - [anon_sym_type] = ACTIONS(675), - [anon_sym_typeof] = ACTIONS(697), - [anon_sym_import] = ACTIONS(597), - [anon_sym_BANG] = ACTIONS(681), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(683), - [anon_sym_yield] = ACTIONS(685), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(601), - [anon_sym_async] = ACTIONS(689), - [anon_sym_function] = ACTIONS(605), - [anon_sym_new] = ACTIONS(875), - [anon_sym_PLUS] = ACTIONS(877), - [anon_sym_DASH] = ACTIONS(877), - [anon_sym_TILDE] = ACTIONS(681), - [anon_sym_void] = ACTIONS(697), - [anon_sym_delete] = ACTIONS(697), - [anon_sym_PLUS_PLUS] = ACTIONS(699), - [anon_sym_DASH_DASH] = ACTIONS(699), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(85), - [sym_number] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(675), - [anon_sym_get] = ACTIONS(675), - [anon_sym_set] = ACTIONS(675), - [anon_sym_declare] = ACTIONS(675), - [anon_sym_public] = ACTIONS(675), - [anon_sym_private] = ACTIONS(675), - [anon_sym_protected] = ACTIONS(675), - [anon_sym_module] = ACTIONS(675), - [anon_sym_any] = ACTIONS(675), - [anon_sym_number] = ACTIONS(675), - [anon_sym_boolean] = ACTIONS(675), - [anon_sym_string] = ACTIONS(675), - [anon_sym_symbol] = ACTIONS(675), - [sym_readonly] = ACTIONS(675), - }, - [297] = { - [sym_import] = STATE(1101), - [sym_parenthesized_expression] = STATE(948), - [sym__expression] = STATE(1485), - [sym_yield_expression] = STATE(1105), - [sym_object] = STATE(1654), - [sym_array] = STATE(1640), - [sym_class] = STATE(1101), - [sym_function] = STATE(1101), - [sym_generator_function] = STATE(1101), - [sym_arrow_function] = STATE(1101), - [sym__call_signature] = STATE(3002), - [sym_call_expression] = STATE(1101), - [sym_new_expression] = STATE(1105), - [sym_await_expression] = STATE(1105), - [sym_member_expression] = STATE(948), - [sym_subscript_expression] = STATE(948), - [sym_assignment_expression] = STATE(1105), - [sym__augmented_assignment_lhs] = STATE(1921), - [sym_augmented_assignment_expression] = STATE(1105), - [sym_ternary_expression] = STATE(1105), - [sym_binary_expression] = STATE(1105), - [sym_unary_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_string] = STATE(1101), - [sym_template_string] = STATE(1101), - [sym_regex] = STATE(1101), - [sym_meta_property] = STATE(1101), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(949), - [sym_type_assertion] = STATE(1105), - [sym_as_expression] = STATE(1105), - [sym_internal_module] = STATE(1105), - [sym_type_arguments] = STATE(324), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2497), + [315] = { + [sym_import] = STATE(1151), + [sym_parenthesized_expression] = STATE(837), + [sym__expression] = STATE(1234), + [sym_yield_expression] = STATE(1144), + [sym_object] = STATE(1495), + [sym_array] = STATE(1493), + [sym_class] = STATE(1151), + [sym_function] = STATE(1151), + [sym_generator_function] = STATE(1151), + [sym_arrow_function] = STATE(1151), + [sym__call_signature] = STATE(3190), + [sym_call_expression] = STATE(1151), + [sym_new_expression] = STATE(1144), + [sym_await_expression] = STATE(1144), + [sym_member_expression] = STATE(837), + [sym_subscript_expression] = STATE(837), + [sym_assignment_expression] = STATE(1144), + [sym__augmented_assignment_lhs] = STATE(1927), + [sym_augmented_assignment_expression] = STATE(1144), + [sym_ternary_expression] = STATE(1144), + [sym_binary_expression] = STATE(1144), + [sym_unary_expression] = STATE(1144), + [sym_update_expression] = STATE(1144), + [sym_string] = STATE(1151), + [sym_template_string] = STATE(1151), + [sym_regex] = STATE(1151), + [sym_meta_property] = STATE(1151), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(845), + [sym_type_assertion] = STATE(1144), + [sym_as_expression] = STATE(1144), + [sym_internal_module] = STATE(1144), + [sym_type_arguments] = STATE(357), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2580), [sym_identifier] = ACTIONS(859), - [anon_sym_export] = ACTIONS(635), - [anon_sym_namespace] = ACTIONS(637), + [anon_sym_export] = ACTIONS(769), + [anon_sym_namespace] = ACTIONS(771), [anon_sym_LBRACE] = ACTIONS(509), - [anon_sym_type] = ACTIONS(635), - [anon_sym_typeof] = ACTIONS(659), + [anon_sym_type] = ACTIONS(769), + [anon_sym_typeof] = ACTIONS(791), [anon_sym_import] = ACTIONS(435), - [anon_sym_BANG] = ACTIONS(643), + [anon_sym_BANG] = ACTIONS(775), [anon_sym_LPAREN] = ACTIONS(515), - [anon_sym_await] = ACTIONS(645), - [anon_sym_yield] = ACTIONS(647), + [anon_sym_await] = ACTIONS(777), + [anon_sym_yield] = ACTIONS(779), [anon_sym_LBRACK] = ACTIONS(517), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(449), + [anon_sym_SLASH] = ACTIONS(781), [anon_sym_class] = ACTIONS(451), - [anon_sym_async] = ACTIONS(651), + [anon_sym_async] = ACTIONS(783), [anon_sym_function] = ACTIONS(455), [anon_sym_new] = ACTIONS(865), [anon_sym_PLUS] = ACTIONS(867), [anon_sym_DASH] = ACTIONS(867), - [anon_sym_TILDE] = ACTIONS(643), - [anon_sym_void] = ACTIONS(659), - [anon_sym_delete] = ACTIONS(659), - [anon_sym_PLUS_PLUS] = ACTIONS(661), - [anon_sym_DASH_DASH] = ACTIONS(661), + [anon_sym_TILDE] = ACTIONS(775), + [anon_sym_void] = ACTIONS(791), + [anon_sym_delete] = ACTIONS(791), + [anon_sym_PLUS_PLUS] = ACTIONS(793), + [anon_sym_DASH_DASH] = ACTIONS(793), [anon_sym_DQUOTE] = ACTIONS(475), [anon_sym_SQUOTE] = ACTIONS(477), [sym_comment] = ACTIONS(3), @@ -39903,177 +41559,88 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(485), [sym_undefined] = ACTIONS(485), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(635), - [anon_sym_get] = ACTIONS(635), - [anon_sym_set] = ACTIONS(635), - [anon_sym_declare] = ACTIONS(635), - [anon_sym_public] = ACTIONS(635), - [anon_sym_private] = ACTIONS(635), - [anon_sym_protected] = ACTIONS(635), - [anon_sym_module] = ACTIONS(635), - [anon_sym_any] = ACTIONS(635), - [anon_sym_number] = ACTIONS(635), - [anon_sym_boolean] = ACTIONS(635), - [anon_sym_string] = ACTIONS(635), - [anon_sym_symbol] = ACTIONS(635), - [sym_readonly] = ACTIONS(635), + [anon_sym_static] = ACTIONS(769), + [anon_sym_get] = ACTIONS(769), + [anon_sym_set] = ACTIONS(769), + [anon_sym_declare] = ACTIONS(769), + [anon_sym_public] = ACTIONS(769), + [anon_sym_private] = ACTIONS(769), + [anon_sym_protected] = ACTIONS(769), + [anon_sym_module] = ACTIONS(769), + [anon_sym_any] = ACTIONS(769), + [anon_sym_number] = ACTIONS(769), + [anon_sym_boolean] = ACTIONS(769), + [anon_sym_string] = ACTIONS(769), + [anon_sym_symbol] = ACTIONS(769), + [sym_readonly] = ACTIONS(769), }, - [298] = { - [sym_import] = STATE(1498), - [sym_parenthesized_expression] = STATE(952), - [sym__expression] = STATE(1445), - [sym_yield_expression] = STATE(1518), - [sym_object] = STATE(1677), - [sym_array] = STATE(1671), - [sym_class] = STATE(1498), - [sym_function] = STATE(1498), - [sym_generator_function] = STATE(1498), - [sym_arrow_function] = STATE(1498), - [sym__call_signature] = STATE(3059), - [sym_call_expression] = STATE(1498), - [sym_new_expression] = STATE(1518), - [sym_await_expression] = STATE(1518), - [sym_member_expression] = STATE(952), - [sym_subscript_expression] = STATE(952), - [sym_assignment_expression] = STATE(1518), - [sym__augmented_assignment_lhs] = STATE(1919), - [sym_augmented_assignment_expression] = STATE(1518), - [sym_ternary_expression] = STATE(1518), - [sym_binary_expression] = STATE(1518), - [sym_unary_expression] = STATE(1518), - [sym_update_expression] = STATE(1518), - [sym_string] = STATE(1498), - [sym_template_string] = STATE(1498), - [sym_regex] = STATE(1498), - [sym_meta_property] = STATE(1498), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(946), - [sym_type_assertion] = STATE(1518), - [sym_as_expression] = STATE(1518), - [sym_internal_module] = STATE(1518), - [sym_type_arguments] = STATE(263), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2554), - [sym_identifier] = ACTIONS(869), - [anon_sym_export] = ACTIONS(675), - [anon_sym_namespace] = ACTIONS(677), - [anon_sym_LBRACE] = ACTIONS(595), - [anon_sym_type] = ACTIONS(675), - [anon_sym_typeof] = ACTIONS(697), - [anon_sym_import] = ACTIONS(597), - [anon_sym_BANG] = ACTIONS(681), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(683), - [anon_sym_yield] = ACTIONS(685), - [anon_sym_LBRACK] = ACTIONS(63), + [316] = { + [sym_import] = STATE(1151), + [sym_parenthesized_expression] = STATE(956), + [sym__expression] = STATE(1351), + [sym_yield_expression] = STATE(1144), + [sym_object] = STATE(1653), + [sym_array] = STATE(1660), + [sym_class] = STATE(1151), + [sym_function] = STATE(1151), + [sym_generator_function] = STATE(1151), + [sym_arrow_function] = STATE(1151), + [sym__call_signature] = STATE(3024), + [sym_call_expression] = STATE(1151), + [sym_new_expression] = STATE(1144), + [sym_await_expression] = STATE(1144), + [sym_member_expression] = STATE(956), + [sym_subscript_expression] = STATE(956), + [sym_assignment_expression] = STATE(1144), + [sym__augmented_assignment_lhs] = STATE(1925), + [sym_augmented_assignment_expression] = STATE(1144), + [sym_ternary_expression] = STATE(1144), + [sym_binary_expression] = STATE(1144), + [sym_unary_expression] = STATE(1144), + [sym_update_expression] = STATE(1144), + [sym_string] = STATE(1151), + [sym_template_string] = STATE(1151), + [sym_regex] = STATE(1151), + [sym_meta_property] = STATE(1151), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(950), + [sym_type_assertion] = STATE(1144), + [sym_as_expression] = STATE(1144), + [sym_internal_module] = STATE(1144), + [sym_type_arguments] = STATE(395), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2580), + [sym_identifier] = ACTIONS(897), + [anon_sym_export] = ACTIONS(577), + [anon_sym_namespace] = ACTIONS(579), + [anon_sym_LBRACE] = ACTIONS(509), + [anon_sym_type] = ACTIONS(577), + [anon_sym_typeof] = ACTIONS(601), + [anon_sym_import] = ACTIONS(435), + [anon_sym_BANG] = ACTIONS(585), + [anon_sym_LPAREN] = ACTIONS(515), + [anon_sym_await] = ACTIONS(587), + [anon_sym_yield] = ACTIONS(589), + [anon_sym_LBRACK] = ACTIONS(517), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(601), - [anon_sym_async] = ACTIONS(689), - [anon_sym_function] = ACTIONS(605), - [anon_sym_new] = ACTIONS(875), - [anon_sym_PLUS] = ACTIONS(877), - [anon_sym_DASH] = ACTIONS(877), - [anon_sym_TILDE] = ACTIONS(681), - [anon_sym_void] = ACTIONS(697), - [anon_sym_delete] = ACTIONS(697), - [anon_sym_PLUS_PLUS] = ACTIONS(699), - [anon_sym_DASH_DASH] = ACTIONS(699), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(85), - [sym_number] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(675), - [anon_sym_get] = ACTIONS(675), - [anon_sym_set] = ACTIONS(675), - [anon_sym_declare] = ACTIONS(675), - [anon_sym_public] = ACTIONS(675), - [anon_sym_private] = ACTIONS(675), - [anon_sym_protected] = ACTIONS(675), - [anon_sym_module] = ACTIONS(675), - [anon_sym_any] = ACTIONS(675), - [anon_sym_number] = ACTIONS(675), - [anon_sym_boolean] = ACTIONS(675), - [anon_sym_string] = ACTIONS(675), - [anon_sym_symbol] = ACTIONS(675), - [sym_readonly] = ACTIONS(675), - }, - [299] = { - [sym_import] = STATE(1101), - [sym_parenthesized_expression] = STATE(739), - [sym__expression] = STATE(1060), - [sym_yield_expression] = STATE(1105), - [sym_object] = STATE(1297), - [sym_array] = STATE(1296), - [sym_class] = STATE(1101), - [sym_function] = STATE(1101), - [sym_generator_function] = STATE(1101), - [sym_arrow_function] = STATE(1101), - [sym__call_signature] = STATE(3116), - [sym_call_expression] = STATE(1101), - [sym_new_expression] = STATE(1105), - [sym_await_expression] = STATE(1105), - [sym_member_expression] = STATE(739), - [sym_subscript_expression] = STATE(739), - [sym_assignment_expression] = STATE(1105), - [sym__augmented_assignment_lhs] = STATE(1920), - [sym_augmented_assignment_expression] = STATE(1105), - [sym_ternary_expression] = STATE(1105), - [sym_binary_expression] = STATE(1105), - [sym_unary_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_string] = STATE(1101), - [sym_template_string] = STATE(1101), - [sym_regex] = STATE(1101), - [sym_meta_property] = STATE(1101), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(755), - [sym_type_assertion] = STATE(1105), - [sym_as_expression] = STATE(1105), - [sym_internal_module] = STATE(1105), - [sym_type_arguments] = STATE(361), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2497), - [sym_identifier] = ACTIONS(499), - [anon_sym_export] = ACTIONS(501), - [anon_sym_namespace] = ACTIONS(507), - [anon_sym_LBRACE] = ACTIONS(509), - [anon_sym_type] = ACTIONS(501), - [anon_sym_typeof] = ACTIONS(471), - [anon_sym_import] = ACTIONS(435), - [anon_sym_BANG] = ACTIONS(437), - [anon_sym_LPAREN] = ACTIONS(515), - [anon_sym_await] = ACTIONS(443), - [anon_sym_yield] = ACTIONS(445), - [anon_sym_LBRACK] = ACTIONS(517), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(449), - [anon_sym_class] = ACTIONS(451), - [anon_sym_async] = ACTIONS(521), - [anon_sym_function] = ACTIONS(455), - [anon_sym_new] = ACTIONS(523), - [anon_sym_PLUS] = ACTIONS(525), - [anon_sym_DASH] = ACTIONS(525), - [anon_sym_TILDE] = ACTIONS(437), - [anon_sym_void] = ACTIONS(471), - [anon_sym_delete] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(473), - [anon_sym_DASH_DASH] = ACTIONS(473), - [anon_sym_DQUOTE] = ACTIONS(475), - [anon_sym_SQUOTE] = ACTIONS(477), + [anon_sym_SLASH] = ACTIONS(449), + [anon_sym_class] = ACTIONS(451), + [anon_sym_async] = ACTIONS(593), + [anon_sym_function] = ACTIONS(455), + [anon_sym_new] = ACTIONS(903), + [anon_sym_PLUS] = ACTIONS(905), + [anon_sym_DASH] = ACTIONS(905), + [anon_sym_TILDE] = ACTIONS(585), + [anon_sym_void] = ACTIONS(601), + [anon_sym_delete] = ACTIONS(601), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_DQUOTE] = ACTIONS(475), + [anon_sym_SQUOTE] = ACTIONS(477), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(479), - [sym_number] = ACTIONS(527), + [sym_number] = ACTIONS(1463), [sym_this] = ACTIONS(485), [sym_super] = ACTIONS(485), [sym_true] = ACTIONS(485), @@ -40081,111 +41648,22 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(485), [sym_undefined] = ACTIONS(485), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(501), - [anon_sym_get] = ACTIONS(501), - [anon_sym_set] = ACTIONS(501), - [anon_sym_declare] = ACTIONS(501), - [anon_sym_public] = ACTIONS(501), - [anon_sym_private] = ACTIONS(501), - [anon_sym_protected] = ACTIONS(501), - [anon_sym_module] = ACTIONS(501), - [anon_sym_any] = ACTIONS(501), - [anon_sym_number] = ACTIONS(501), - [anon_sym_boolean] = ACTIONS(501), - [anon_sym_string] = ACTIONS(501), - [anon_sym_symbol] = ACTIONS(501), - [sym_readonly] = ACTIONS(501), - }, - [300] = { - [sym_import] = STATE(1498), - [sym_parenthesized_expression] = STATE(952), - [sym__expression] = STATE(1432), - [sym_yield_expression] = STATE(1518), - [sym_object] = STATE(1677), - [sym_array] = STATE(1671), - [sym_class] = STATE(1498), - [sym_function] = STATE(1498), - [sym_generator_function] = STATE(1498), - [sym_arrow_function] = STATE(1498), - [sym__call_signature] = STATE(3059), - [sym_call_expression] = STATE(1498), - [sym_new_expression] = STATE(1518), - [sym_await_expression] = STATE(1518), - [sym_member_expression] = STATE(952), - [sym_subscript_expression] = STATE(952), - [sym_assignment_expression] = STATE(1518), - [sym__augmented_assignment_lhs] = STATE(1919), - [sym_augmented_assignment_expression] = STATE(1518), - [sym_ternary_expression] = STATE(1518), - [sym_binary_expression] = STATE(1518), - [sym_unary_expression] = STATE(1518), - [sym_update_expression] = STATE(1518), - [sym_string] = STATE(1498), - [sym_template_string] = STATE(1498), - [sym_regex] = STATE(1498), - [sym_meta_property] = STATE(1498), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(946), - [sym_type_assertion] = STATE(1518), - [sym_as_expression] = STATE(1518), - [sym_internal_module] = STATE(1518), - [sym_type_arguments] = STATE(263), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2554), - [sym_identifier] = ACTIONS(869), - [anon_sym_export] = ACTIONS(675), - [anon_sym_namespace] = ACTIONS(677), - [anon_sym_LBRACE] = ACTIONS(595), - [anon_sym_type] = ACTIONS(675), - [anon_sym_typeof] = ACTIONS(697), - [anon_sym_import] = ACTIONS(597), - [anon_sym_BANG] = ACTIONS(681), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(683), - [anon_sym_yield] = ACTIONS(685), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(601), - [anon_sym_async] = ACTIONS(689), - [anon_sym_function] = ACTIONS(605), - [anon_sym_new] = ACTIONS(875), - [anon_sym_PLUS] = ACTIONS(877), - [anon_sym_DASH] = ACTIONS(877), - [anon_sym_TILDE] = ACTIONS(681), - [anon_sym_void] = ACTIONS(697), - [anon_sym_delete] = ACTIONS(697), - [anon_sym_PLUS_PLUS] = ACTIONS(699), - [anon_sym_DASH_DASH] = ACTIONS(699), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(85), - [sym_number] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(675), - [anon_sym_get] = ACTIONS(675), - [anon_sym_set] = ACTIONS(675), - [anon_sym_declare] = ACTIONS(675), - [anon_sym_public] = ACTIONS(675), - [anon_sym_private] = ACTIONS(675), - [anon_sym_protected] = ACTIONS(675), - [anon_sym_module] = ACTIONS(675), - [anon_sym_any] = ACTIONS(675), - [anon_sym_number] = ACTIONS(675), - [anon_sym_boolean] = ACTIONS(675), - [anon_sym_string] = ACTIONS(675), - [anon_sym_symbol] = ACTIONS(675), - [sym_readonly] = ACTIONS(675), + [anon_sym_static] = ACTIONS(577), + [anon_sym_get] = ACTIONS(577), + [anon_sym_set] = ACTIONS(577), + [anon_sym_declare] = ACTIONS(577), + [anon_sym_public] = ACTIONS(577), + [anon_sym_private] = ACTIONS(577), + [anon_sym_protected] = ACTIONS(577), + [anon_sym_module] = ACTIONS(577), + [anon_sym_any] = ACTIONS(577), + [anon_sym_number] = ACTIONS(577), + [anon_sym_boolean] = ACTIONS(577), + [anon_sym_string] = ACTIONS(577), + [anon_sym_symbol] = ACTIONS(577), + [sym_readonly] = ACTIONS(577), }, - [301] = { + [317] = { [ts_builtin_sym_end] = ACTIONS(1465), [sym_identifier] = ACTIONS(1467), [anon_sym_export] = ACTIONS(1467), @@ -40274,68 +41752,157 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(1467), [sym_readonly] = ACTIONS(1467), }, - [302] = { - [sym_import] = STATE(1498), - [sym_parenthesized_expression] = STATE(952), - [sym__expression] = STATE(1417), - [sym_yield_expression] = STATE(1518), - [sym_object] = STATE(1677), - [sym_array] = STATE(1671), - [sym_class] = STATE(1498), - [sym_function] = STATE(1498), - [sym_generator_function] = STATE(1498), - [sym_arrow_function] = STATE(1498), - [sym__call_signature] = STATE(3059), - [sym_call_expression] = STATE(1498), - [sym_new_expression] = STATE(1518), - [sym_await_expression] = STATE(1518), - [sym_member_expression] = STATE(952), - [sym_subscript_expression] = STATE(952), - [sym_assignment_expression] = STATE(1518), - [sym__augmented_assignment_lhs] = STATE(1919), - [sym_augmented_assignment_expression] = STATE(1518), - [sym_ternary_expression] = STATE(1518), - [sym_binary_expression] = STATE(1518), - [sym_unary_expression] = STATE(1518), - [sym_update_expression] = STATE(1518), - [sym_string] = STATE(1498), - [sym_template_string] = STATE(1498), - [sym_regex] = STATE(1498), - [sym_meta_property] = STATE(1498), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(946), - [sym_type_assertion] = STATE(1518), - [sym_as_expression] = STATE(1518), - [sym_internal_module] = STATE(1518), - [sym_type_arguments] = STATE(263), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2554), - [sym_identifier] = ACTIONS(869), - [anon_sym_export] = ACTIONS(675), - [anon_sym_namespace] = ACTIONS(677), - [anon_sym_LBRACE] = ACTIONS(595), - [anon_sym_type] = ACTIONS(675), - [anon_sym_typeof] = ACTIONS(697), - [anon_sym_import] = ACTIONS(597), - [anon_sym_BANG] = ACTIONS(681), + [318] = { + [sym_import] = STATE(1151), + [sym_parenthesized_expression] = STATE(837), + [sym__expression] = STATE(1300), + [sym_yield_expression] = STATE(1144), + [sym_object] = STATE(1495), + [sym_array] = STATE(1493), + [sym_class] = STATE(1151), + [sym_function] = STATE(1151), + [sym_generator_function] = STATE(1151), + [sym_arrow_function] = STATE(1151), + [sym__call_signature] = STATE(3190), + [sym_call_expression] = STATE(1151), + [sym_new_expression] = STATE(1144), + [sym_await_expression] = STATE(1144), + [sym_member_expression] = STATE(837), + [sym_subscript_expression] = STATE(837), + [sym_assignment_expression] = STATE(1144), + [sym__augmented_assignment_lhs] = STATE(1927), + [sym_augmented_assignment_expression] = STATE(1144), + [sym_ternary_expression] = STATE(1144), + [sym_binary_expression] = STATE(1144), + [sym_unary_expression] = STATE(1144), + [sym_update_expression] = STATE(1144), + [sym_string] = STATE(1151), + [sym_template_string] = STATE(1151), + [sym_regex] = STATE(1151), + [sym_meta_property] = STATE(1151), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(845), + [sym_type_assertion] = STATE(1144), + [sym_as_expression] = STATE(1144), + [sym_internal_module] = STATE(1144), + [sym_type_arguments] = STATE(357), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2580), + [sym_identifier] = ACTIONS(859), + [anon_sym_export] = ACTIONS(769), + [anon_sym_namespace] = ACTIONS(771), + [anon_sym_LBRACE] = ACTIONS(509), + [anon_sym_type] = ACTIONS(769), + [anon_sym_typeof] = ACTIONS(791), + [anon_sym_import] = ACTIONS(435), + [anon_sym_BANG] = ACTIONS(775), + [anon_sym_LPAREN] = ACTIONS(515), + [anon_sym_await] = ACTIONS(777), + [anon_sym_yield] = ACTIONS(779), + [anon_sym_LBRACK] = ACTIONS(517), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(781), + [anon_sym_class] = ACTIONS(451), + [anon_sym_async] = ACTIONS(783), + [anon_sym_function] = ACTIONS(455), + [anon_sym_new] = ACTIONS(865), + [anon_sym_PLUS] = ACTIONS(867), + [anon_sym_DASH] = ACTIONS(867), + [anon_sym_TILDE] = ACTIONS(775), + [anon_sym_void] = ACTIONS(791), + [anon_sym_delete] = ACTIONS(791), + [anon_sym_PLUS_PLUS] = ACTIONS(793), + [anon_sym_DASH_DASH] = ACTIONS(793), + [anon_sym_DQUOTE] = ACTIONS(475), + [anon_sym_SQUOTE] = ACTIONS(477), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(479), + [sym_number] = ACTIONS(1463), + [sym_this] = ACTIONS(485), + [sym_super] = ACTIONS(485), + [sym_true] = ACTIONS(485), + [sym_false] = ACTIONS(485), + [sym_null] = ACTIONS(485), + [sym_undefined] = ACTIONS(485), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(769), + [anon_sym_get] = ACTIONS(769), + [anon_sym_set] = ACTIONS(769), + [anon_sym_declare] = ACTIONS(769), + [anon_sym_public] = ACTIONS(769), + [anon_sym_private] = ACTIONS(769), + [anon_sym_protected] = ACTIONS(769), + [anon_sym_module] = ACTIONS(769), + [anon_sym_any] = ACTIONS(769), + [anon_sym_number] = ACTIONS(769), + [anon_sym_boolean] = ACTIONS(769), + [anon_sym_string] = ACTIONS(769), + [anon_sym_symbol] = ACTIONS(769), + [sym_readonly] = ACTIONS(769), + }, + [319] = { + [sym_import] = STATE(1523), + [sym_parenthesized_expression] = STATE(768), + [sym__expression] = STATE(1169), + [sym_yield_expression] = STATE(1567), + [sym_object] = STATE(1357), + [sym_array] = STATE(1360), + [sym_class] = STATE(1523), + [sym_function] = STATE(1523), + [sym_generator_function] = STATE(1523), + [sym_arrow_function] = STATE(1523), + [sym__call_signature] = STATE(3196), + [sym_call_expression] = STATE(1523), + [sym_new_expression] = STATE(1567), + [sym_await_expression] = STATE(1567), + [sym_member_expression] = STATE(768), + [sym_subscript_expression] = STATE(768), + [sym_assignment_expression] = STATE(1567), + [sym__augmented_assignment_lhs] = STATE(1928), + [sym_augmented_assignment_expression] = STATE(1567), + [sym_ternary_expression] = STATE(1567), + [sym_binary_expression] = STATE(1567), + [sym_unary_expression] = STATE(1567), + [sym_update_expression] = STATE(1567), + [sym_string] = STATE(1523), + [sym_template_string] = STATE(1523), + [sym_regex] = STATE(1523), + [sym_meta_property] = STATE(1523), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(774), + [sym_type_assertion] = STATE(1567), + [sym_as_expression] = STATE(1567), + [sym_internal_module] = STATE(1567), + [sym_type_arguments] = STATE(292), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2575), + [sym_identifier] = ACTIONS(567), + [anon_sym_export] = ACTIONS(531), + [anon_sym_namespace] = ACTIONS(533), + [anon_sym_LBRACE] = ACTIONS(571), + [anon_sym_type] = ACTIONS(531), + [anon_sym_typeof] = ACTIONS(19), + [anon_sym_import] = ACTIONS(539), + [anon_sym_BANG] = ACTIONS(29), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(683), - [anon_sym_yield] = ACTIONS(685), + [anon_sym_await] = ACTIONS(39), + [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(601), - [anon_sym_async] = ACTIONS(689), - [anon_sym_function] = ACTIONS(605), - [anon_sym_new] = ACTIONS(875), - [anon_sym_PLUS] = ACTIONS(877), - [anon_sym_DASH] = ACTIONS(877), - [anon_sym_TILDE] = ACTIONS(681), - [anon_sym_void] = ACTIONS(697), - [anon_sym_delete] = ACTIONS(697), - [anon_sym_PLUS_PLUS] = ACTIONS(699), - [anon_sym_DASH_DASH] = ACTIONS(699), + [anon_sym_class] = ACTIONS(545), + [anon_sym_async] = ACTIONS(547), + [anon_sym_function] = ACTIONS(549), + [anon_sym_new] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(29), + [anon_sym_void] = ACTIONS(19), + [anon_sym_delete] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_DQUOTE] = ACTIONS(81), [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), @@ -40348,83 +41915,83 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(675), - [anon_sym_get] = ACTIONS(675), - [anon_sym_set] = ACTIONS(675), - [anon_sym_declare] = ACTIONS(675), - [anon_sym_public] = ACTIONS(675), - [anon_sym_private] = ACTIONS(675), - [anon_sym_protected] = ACTIONS(675), - [anon_sym_module] = ACTIONS(675), - [anon_sym_any] = ACTIONS(675), - [anon_sym_number] = ACTIONS(675), - [anon_sym_boolean] = ACTIONS(675), - [anon_sym_string] = ACTIONS(675), - [anon_sym_symbol] = ACTIONS(675), - [sym_readonly] = ACTIONS(675), + [anon_sym_static] = ACTIONS(531), + [anon_sym_get] = ACTIONS(531), + [anon_sym_set] = ACTIONS(531), + [anon_sym_declare] = ACTIONS(531), + [anon_sym_public] = ACTIONS(531), + [anon_sym_private] = ACTIONS(531), + [anon_sym_protected] = ACTIONS(531), + [anon_sym_module] = ACTIONS(531), + [anon_sym_any] = ACTIONS(531), + [anon_sym_number] = ACTIONS(531), + [anon_sym_boolean] = ACTIONS(531), + [anon_sym_string] = ACTIONS(531), + [anon_sym_symbol] = ACTIONS(531), + [sym_readonly] = ACTIONS(531), }, - [303] = { - [sym_import] = STATE(1101), - [sym_parenthesized_expression] = STATE(739), - [sym__expression] = STATE(1053), - [sym_yield_expression] = STATE(1105), - [sym_object] = STATE(1297), - [sym_array] = STATE(1296), - [sym_class] = STATE(1101), - [sym_function] = STATE(1101), - [sym_generator_function] = STATE(1101), - [sym_arrow_function] = STATE(1101), - [sym__call_signature] = STATE(3116), - [sym_call_expression] = STATE(1101), - [sym_new_expression] = STATE(1105), - [sym_await_expression] = STATE(1105), - [sym_member_expression] = STATE(739), - [sym_subscript_expression] = STATE(739), - [sym_assignment_expression] = STATE(1105), - [sym__augmented_assignment_lhs] = STATE(1920), - [sym_augmented_assignment_expression] = STATE(1105), - [sym_ternary_expression] = STATE(1105), - [sym_binary_expression] = STATE(1105), - [sym_unary_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_string] = STATE(1101), - [sym_template_string] = STATE(1101), - [sym_regex] = STATE(1101), - [sym_meta_property] = STATE(1101), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(755), - [sym_type_assertion] = STATE(1105), - [sym_as_expression] = STATE(1105), - [sym_internal_module] = STATE(1105), - [sym_type_arguments] = STATE(361), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2497), - [sym_identifier] = ACTIONS(499), - [anon_sym_export] = ACTIONS(501), - [anon_sym_namespace] = ACTIONS(507), + [320] = { + [sym_import] = STATE(1151), + [sym_parenthesized_expression] = STATE(837), + [sym__expression] = STATE(1249), + [sym_yield_expression] = STATE(1144), + [sym_object] = STATE(1495), + [sym_array] = STATE(1493), + [sym_class] = STATE(1151), + [sym_function] = STATE(1151), + [sym_generator_function] = STATE(1151), + [sym_arrow_function] = STATE(1151), + [sym__call_signature] = STATE(3190), + [sym_call_expression] = STATE(1151), + [sym_new_expression] = STATE(1144), + [sym_await_expression] = STATE(1144), + [sym_member_expression] = STATE(837), + [sym_subscript_expression] = STATE(837), + [sym_assignment_expression] = STATE(1144), + [sym__augmented_assignment_lhs] = STATE(1927), + [sym_augmented_assignment_expression] = STATE(1144), + [sym_ternary_expression] = STATE(1144), + [sym_binary_expression] = STATE(1144), + [sym_unary_expression] = STATE(1144), + [sym_update_expression] = STATE(1144), + [sym_string] = STATE(1151), + [sym_template_string] = STATE(1151), + [sym_regex] = STATE(1151), + [sym_meta_property] = STATE(1151), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(845), + [sym_type_assertion] = STATE(1144), + [sym_as_expression] = STATE(1144), + [sym_internal_module] = STATE(1144), + [sym_type_arguments] = STATE(357), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2580), + [sym_identifier] = ACTIONS(859), + [anon_sym_export] = ACTIONS(769), + [anon_sym_namespace] = ACTIONS(771), [anon_sym_LBRACE] = ACTIONS(509), - [anon_sym_type] = ACTIONS(501), - [anon_sym_typeof] = ACTIONS(471), + [anon_sym_type] = ACTIONS(769), + [anon_sym_typeof] = ACTIONS(791), [anon_sym_import] = ACTIONS(435), - [anon_sym_BANG] = ACTIONS(437), + [anon_sym_BANG] = ACTIONS(775), [anon_sym_LPAREN] = ACTIONS(515), - [anon_sym_await] = ACTIONS(443), - [anon_sym_yield] = ACTIONS(445), + [anon_sym_await] = ACTIONS(777), + [anon_sym_yield] = ACTIONS(779), [anon_sym_LBRACK] = ACTIONS(517), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(449), + [anon_sym_SLASH] = ACTIONS(781), [anon_sym_class] = ACTIONS(451), - [anon_sym_async] = ACTIONS(521), + [anon_sym_async] = ACTIONS(783), [anon_sym_function] = ACTIONS(455), - [anon_sym_new] = ACTIONS(523), - [anon_sym_PLUS] = ACTIONS(525), - [anon_sym_DASH] = ACTIONS(525), - [anon_sym_TILDE] = ACTIONS(437), - [anon_sym_void] = ACTIONS(471), - [anon_sym_delete] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(473), - [anon_sym_DASH_DASH] = ACTIONS(473), + [anon_sym_new] = ACTIONS(865), + [anon_sym_PLUS] = ACTIONS(867), + [anon_sym_DASH] = ACTIONS(867), + [anon_sym_TILDE] = ACTIONS(775), + [anon_sym_void] = ACTIONS(791), + [anon_sym_delete] = ACTIONS(791), + [anon_sym_PLUS_PLUS] = ACTIONS(793), + [anon_sym_DASH_DASH] = ACTIONS(793), [anon_sym_DQUOTE] = ACTIONS(475), [anon_sym_SQUOTE] = ACTIONS(477), [sym_comment] = ACTIONS(3), @@ -40437,172 +42004,172 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(485), [sym_undefined] = ACTIONS(485), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(501), - [anon_sym_get] = ACTIONS(501), - [anon_sym_set] = ACTIONS(501), - [anon_sym_declare] = ACTIONS(501), - [anon_sym_public] = ACTIONS(501), - [anon_sym_private] = ACTIONS(501), - [anon_sym_protected] = ACTIONS(501), - [anon_sym_module] = ACTIONS(501), - [anon_sym_any] = ACTIONS(501), - [anon_sym_number] = ACTIONS(501), - [anon_sym_boolean] = ACTIONS(501), - [anon_sym_string] = ACTIONS(501), - [anon_sym_symbol] = ACTIONS(501), - [sym_readonly] = ACTIONS(501), + [anon_sym_static] = ACTIONS(769), + [anon_sym_get] = ACTIONS(769), + [anon_sym_set] = ACTIONS(769), + [anon_sym_declare] = ACTIONS(769), + [anon_sym_public] = ACTIONS(769), + [anon_sym_private] = ACTIONS(769), + [anon_sym_protected] = ACTIONS(769), + [anon_sym_module] = ACTIONS(769), + [anon_sym_any] = ACTIONS(769), + [anon_sym_number] = ACTIONS(769), + [anon_sym_boolean] = ACTIONS(769), + [anon_sym_string] = ACTIONS(769), + [anon_sym_symbol] = ACTIONS(769), + [sym_readonly] = ACTIONS(769), }, - [304] = { - [sym_import] = STATE(1498), - [sym_parenthesized_expression] = STATE(952), - [sym__expression] = STATE(1106), - [sym_yield_expression] = STATE(1518), - [sym_object] = STATE(1677), - [sym_array] = STATE(1671), - [sym_class] = STATE(1498), - [sym_function] = STATE(1498), - [sym_generator_function] = STATE(1498), - [sym_arrow_function] = STATE(1498), - [sym__call_signature] = STATE(3059), - [sym_call_expression] = STATE(1498), - [sym_new_expression] = STATE(1518), - [sym_await_expression] = STATE(1518), - [sym_member_expression] = STATE(952), - [sym_subscript_expression] = STATE(952), - [sym_assignment_expression] = STATE(1518), - [sym__augmented_assignment_lhs] = STATE(1919), - [sym_augmented_assignment_expression] = STATE(1518), - [sym_ternary_expression] = STATE(1518), - [sym_binary_expression] = STATE(1518), - [sym_unary_expression] = STATE(1518), - [sym_update_expression] = STATE(1518), - [sym_string] = STATE(1498), - [sym_template_string] = STATE(1498), - [sym_regex] = STATE(1498), - [sym_meta_property] = STATE(1498), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(946), - [sym_type_assertion] = STATE(1518), - [sym_as_expression] = STATE(1518), - [sym_internal_module] = STATE(1518), - [sym_type_arguments] = STATE(263), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2554), - [sym_identifier] = ACTIONS(869), - [anon_sym_export] = ACTIONS(675), - [anon_sym_namespace] = ACTIONS(677), - [anon_sym_LBRACE] = ACTIONS(595), - [anon_sym_type] = ACTIONS(675), - [anon_sym_typeof] = ACTIONS(697), - [anon_sym_import] = ACTIONS(597), - [anon_sym_BANG] = ACTIONS(681), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(683), - [anon_sym_yield] = ACTIONS(685), - [anon_sym_LBRACK] = ACTIONS(63), + [321] = { + [sym_import] = STATE(1151), + [sym_parenthesized_expression] = STATE(960), + [sym__expression] = STATE(1661), + [sym_yield_expression] = STATE(1144), + [sym_object] = STATE(1719), + [sym_array] = STATE(1722), + [sym_class] = STATE(1151), + [sym_function] = STATE(1151), + [sym_generator_function] = STATE(1151), + [sym_arrow_function] = STATE(1151), + [sym__call_signature] = STATE(3024), + [sym_call_expression] = STATE(1151), + [sym_new_expression] = STATE(1144), + [sym_await_expression] = STATE(1144), + [sym_member_expression] = STATE(960), + [sym_subscript_expression] = STATE(960), + [sym_assignment_expression] = STATE(1144), + [sym__augmented_assignment_lhs] = STATE(1925), + [sym_augmented_assignment_expression] = STATE(1144), + [sym_ternary_expression] = STATE(1144), + [sym_binary_expression] = STATE(1144), + [sym_unary_expression] = STATE(1144), + [sym_update_expression] = STATE(1144), + [sym_string] = STATE(1151), + [sym_template_string] = STATE(1151), + [sym_regex] = STATE(1151), + [sym_meta_property] = STATE(1151), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(957), + [sym_type_assertion] = STATE(1144), + [sym_as_expression] = STATE(1144), + [sym_internal_module] = STATE(1144), + [sym_type_arguments] = STATE(395), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2580), + [sym_identifier] = ACTIONS(1469), + [anon_sym_export] = ACTIONS(1433), + [anon_sym_namespace] = ACTIONS(1435), + [anon_sym_LBRACE] = ACTIONS(509), + [anon_sym_type] = ACTIONS(1433), + [anon_sym_typeof] = ACTIONS(601), + [anon_sym_import] = ACTIONS(435), + [anon_sym_BANG] = ACTIONS(585), + [anon_sym_LPAREN] = ACTIONS(515), + [anon_sym_await] = ACTIONS(587), + [anon_sym_yield] = ACTIONS(589), + [anon_sym_LBRACK] = ACTIONS(517), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(601), - [anon_sym_async] = ACTIONS(689), - [anon_sym_function] = ACTIONS(605), - [anon_sym_new] = ACTIONS(875), - [anon_sym_PLUS] = ACTIONS(877), - [anon_sym_DASH] = ACTIONS(877), - [anon_sym_TILDE] = ACTIONS(681), - [anon_sym_void] = ACTIONS(697), - [anon_sym_delete] = ACTIONS(697), - [anon_sym_PLUS_PLUS] = ACTIONS(699), - [anon_sym_DASH_DASH] = ACTIONS(699), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), + [anon_sym_SLASH] = ACTIONS(449), + [anon_sym_class] = ACTIONS(451), + [anon_sym_async] = ACTIONS(1437), + [anon_sym_function] = ACTIONS(455), + [anon_sym_new] = ACTIONS(903), + [anon_sym_PLUS] = ACTIONS(905), + [anon_sym_DASH] = ACTIONS(905), + [anon_sym_TILDE] = ACTIONS(585), + [anon_sym_void] = ACTIONS(601), + [anon_sym_delete] = ACTIONS(601), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_DQUOTE] = ACTIONS(475), + [anon_sym_SQUOTE] = ACTIONS(477), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(85), - [sym_number] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), + [anon_sym_BQUOTE] = ACTIONS(479), + [sym_number] = ACTIONS(527), + [sym_this] = ACTIONS(485), + [sym_super] = ACTIONS(485), + [sym_true] = ACTIONS(485), + [sym_false] = ACTIONS(485), + [sym_null] = ACTIONS(485), + [sym_undefined] = ACTIONS(485), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(675), - [anon_sym_get] = ACTIONS(675), - [anon_sym_set] = ACTIONS(675), - [anon_sym_declare] = ACTIONS(675), - [anon_sym_public] = ACTIONS(675), - [anon_sym_private] = ACTIONS(675), - [anon_sym_protected] = ACTIONS(675), - [anon_sym_module] = ACTIONS(675), - [anon_sym_any] = ACTIONS(675), - [anon_sym_number] = ACTIONS(675), - [anon_sym_boolean] = ACTIONS(675), - [anon_sym_string] = ACTIONS(675), - [anon_sym_symbol] = ACTIONS(675), - [sym_readonly] = ACTIONS(675), + [anon_sym_static] = ACTIONS(1433), + [anon_sym_get] = ACTIONS(1433), + [anon_sym_set] = ACTIONS(1433), + [anon_sym_declare] = ACTIONS(1433), + [anon_sym_public] = ACTIONS(1433), + [anon_sym_private] = ACTIONS(1433), + [anon_sym_protected] = ACTIONS(1433), + [anon_sym_module] = ACTIONS(1433), + [anon_sym_any] = ACTIONS(1433), + [anon_sym_number] = ACTIONS(1433), + [anon_sym_boolean] = ACTIONS(1433), + [anon_sym_string] = ACTIONS(1433), + [anon_sym_symbol] = ACTIONS(1433), + [sym_readonly] = ACTIONS(1433), }, - [305] = { - [sym_import] = STATE(1101), - [sym_parenthesized_expression] = STATE(739), - [sym__expression] = STATE(1052), - [sym_yield_expression] = STATE(1105), - [sym_object] = STATE(1297), - [sym_array] = STATE(1296), - [sym_class] = STATE(1101), - [sym_function] = STATE(1101), - [sym_generator_function] = STATE(1101), - [sym_arrow_function] = STATE(1101), - [sym__call_signature] = STATE(3116), - [sym_call_expression] = STATE(1101), - [sym_new_expression] = STATE(1105), - [sym_await_expression] = STATE(1105), - [sym_member_expression] = STATE(739), - [sym_subscript_expression] = STATE(739), - [sym_assignment_expression] = STATE(1105), - [sym__augmented_assignment_lhs] = STATE(1920), - [sym_augmented_assignment_expression] = STATE(1105), - [sym_ternary_expression] = STATE(1105), - [sym_binary_expression] = STATE(1105), - [sym_unary_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_string] = STATE(1101), - [sym_template_string] = STATE(1101), - [sym_regex] = STATE(1101), - [sym_meta_property] = STATE(1101), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(755), - [sym_type_assertion] = STATE(1105), - [sym_as_expression] = STATE(1105), - [sym_internal_module] = STATE(1105), - [sym_type_arguments] = STATE(361), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2497), - [sym_identifier] = ACTIONS(499), - [anon_sym_export] = ACTIONS(501), - [anon_sym_namespace] = ACTIONS(507), + [322] = { + [sym_import] = STATE(1151), + [sym_parenthesized_expression] = STATE(837), + [sym__expression] = STATE(1241), + [sym_yield_expression] = STATE(1144), + [sym_object] = STATE(1495), + [sym_array] = STATE(1493), + [sym_class] = STATE(1151), + [sym_function] = STATE(1151), + [sym_generator_function] = STATE(1151), + [sym_arrow_function] = STATE(1151), + [sym__call_signature] = STATE(3190), + [sym_call_expression] = STATE(1151), + [sym_new_expression] = STATE(1144), + [sym_await_expression] = STATE(1144), + [sym_member_expression] = STATE(837), + [sym_subscript_expression] = STATE(837), + [sym_assignment_expression] = STATE(1144), + [sym__augmented_assignment_lhs] = STATE(1927), + [sym_augmented_assignment_expression] = STATE(1144), + [sym_ternary_expression] = STATE(1144), + [sym_binary_expression] = STATE(1144), + [sym_unary_expression] = STATE(1144), + [sym_update_expression] = STATE(1144), + [sym_string] = STATE(1151), + [sym_template_string] = STATE(1151), + [sym_regex] = STATE(1151), + [sym_meta_property] = STATE(1151), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(845), + [sym_type_assertion] = STATE(1144), + [sym_as_expression] = STATE(1144), + [sym_internal_module] = STATE(1144), + [sym_type_arguments] = STATE(357), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2580), + [sym_identifier] = ACTIONS(859), + [anon_sym_export] = ACTIONS(769), + [anon_sym_namespace] = ACTIONS(771), [anon_sym_LBRACE] = ACTIONS(509), - [anon_sym_type] = ACTIONS(501), - [anon_sym_typeof] = ACTIONS(471), + [anon_sym_type] = ACTIONS(769), + [anon_sym_typeof] = ACTIONS(791), [anon_sym_import] = ACTIONS(435), - [anon_sym_BANG] = ACTIONS(437), + [anon_sym_BANG] = ACTIONS(775), [anon_sym_LPAREN] = ACTIONS(515), - [anon_sym_await] = ACTIONS(443), - [anon_sym_yield] = ACTIONS(445), + [anon_sym_await] = ACTIONS(777), + [anon_sym_yield] = ACTIONS(779), [anon_sym_LBRACK] = ACTIONS(517), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(449), + [anon_sym_SLASH] = ACTIONS(781), [anon_sym_class] = ACTIONS(451), - [anon_sym_async] = ACTIONS(521), + [anon_sym_async] = ACTIONS(783), [anon_sym_function] = ACTIONS(455), - [anon_sym_new] = ACTIONS(523), - [anon_sym_PLUS] = ACTIONS(525), - [anon_sym_DASH] = ACTIONS(525), - [anon_sym_TILDE] = ACTIONS(437), - [anon_sym_void] = ACTIONS(471), - [anon_sym_delete] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(473), - [anon_sym_DASH_DASH] = ACTIONS(473), + [anon_sym_new] = ACTIONS(865), + [anon_sym_PLUS] = ACTIONS(867), + [anon_sym_DASH] = ACTIONS(867), + [anon_sym_TILDE] = ACTIONS(775), + [anon_sym_void] = ACTIONS(791), + [anon_sym_delete] = ACTIONS(791), + [anon_sym_PLUS_PLUS] = ACTIONS(793), + [anon_sym_DASH_DASH] = ACTIONS(793), [anon_sym_DQUOTE] = ACTIONS(475), [anon_sym_SQUOTE] = ACTIONS(477), [sym_comment] = ACTIONS(3), @@ -40615,58 +42182,58 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(485), [sym_undefined] = ACTIONS(485), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(501), - [anon_sym_get] = ACTIONS(501), - [anon_sym_set] = ACTIONS(501), - [anon_sym_declare] = ACTIONS(501), - [anon_sym_public] = ACTIONS(501), - [anon_sym_private] = ACTIONS(501), - [anon_sym_protected] = ACTIONS(501), - [anon_sym_module] = ACTIONS(501), - [anon_sym_any] = ACTIONS(501), - [anon_sym_number] = ACTIONS(501), - [anon_sym_boolean] = ACTIONS(501), - [anon_sym_string] = ACTIONS(501), - [anon_sym_symbol] = ACTIONS(501), - [sym_readonly] = ACTIONS(501), + [anon_sym_static] = ACTIONS(769), + [anon_sym_get] = ACTIONS(769), + [anon_sym_set] = ACTIONS(769), + [anon_sym_declare] = ACTIONS(769), + [anon_sym_public] = ACTIONS(769), + [anon_sym_private] = ACTIONS(769), + [anon_sym_protected] = ACTIONS(769), + [anon_sym_module] = ACTIONS(769), + [anon_sym_any] = ACTIONS(769), + [anon_sym_number] = ACTIONS(769), + [anon_sym_boolean] = ACTIONS(769), + [anon_sym_string] = ACTIONS(769), + [anon_sym_symbol] = ACTIONS(769), + [sym_readonly] = ACTIONS(769), }, - [306] = { - [sym_import] = STATE(1101), - [sym_parenthesized_expression] = STATE(739), - [sym__expression] = STATE(1049), - [sym_yield_expression] = STATE(1105), - [sym_object] = STATE(1297), - [sym_array] = STATE(1296), - [sym_class] = STATE(1101), - [sym_function] = STATE(1101), - [sym_generator_function] = STATE(1101), - [sym_arrow_function] = STATE(1101), - [sym__call_signature] = STATE(3116), - [sym_call_expression] = STATE(1101), - [sym_new_expression] = STATE(1105), - [sym_await_expression] = STATE(1105), - [sym_member_expression] = STATE(739), - [sym_subscript_expression] = STATE(739), - [sym_assignment_expression] = STATE(1105), - [sym__augmented_assignment_lhs] = STATE(1920), - [sym_augmented_assignment_expression] = STATE(1105), - [sym_ternary_expression] = STATE(1105), - [sym_binary_expression] = STATE(1105), - [sym_unary_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_string] = STATE(1101), - [sym_template_string] = STATE(1101), - [sym_regex] = STATE(1101), - [sym_meta_property] = STATE(1101), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(755), - [sym_type_assertion] = STATE(1105), - [sym_as_expression] = STATE(1105), - [sym_internal_module] = STATE(1105), - [sym_type_arguments] = STATE(361), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2497), + [323] = { + [sym_import] = STATE(1151), + [sym_parenthesized_expression] = STATE(759), + [sym__expression] = STATE(1055), + [sym_yield_expression] = STATE(1144), + [sym_object] = STATE(1257), + [sym_array] = STATE(1254), + [sym_class] = STATE(1151), + [sym_function] = STATE(1151), + [sym_generator_function] = STATE(1151), + [sym_arrow_function] = STATE(1151), + [sym__call_signature] = STATE(3082), + [sym_call_expression] = STATE(1151), + [sym_new_expression] = STATE(1144), + [sym_await_expression] = STATE(1144), + [sym_member_expression] = STATE(759), + [sym_subscript_expression] = STATE(759), + [sym_assignment_expression] = STATE(1144), + [sym__augmented_assignment_lhs] = STATE(1924), + [sym_augmented_assignment_expression] = STATE(1144), + [sym_ternary_expression] = STATE(1144), + [sym_binary_expression] = STATE(1144), + [sym_unary_expression] = STATE(1144), + [sym_update_expression] = STATE(1144), + [sym_string] = STATE(1151), + [sym_template_string] = STATE(1151), + [sym_regex] = STATE(1151), + [sym_meta_property] = STATE(1151), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(754), + [sym_type_assertion] = STATE(1144), + [sym_as_expression] = STATE(1144), + [sym_internal_module] = STATE(1144), + [sym_type_arguments] = STATE(326), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2580), [sym_identifier] = ACTIONS(499), [anon_sym_export] = ACTIONS(501), [anon_sym_namespace] = ACTIONS(507), @@ -40696,7 +42263,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(477), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(479), - [sym_number] = ACTIONS(527), + [sym_number] = ACTIONS(1471), [sym_this] = ACTIONS(485), [sym_super] = ACTIONS(485), [sym_true] = ACTIONS(485), @@ -40719,132 +42286,43 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(501), [sym_readonly] = ACTIONS(501), }, - [307] = { - [sym_import] = STATE(1498), - [sym_parenthesized_expression] = STATE(952), - [sym__expression] = STATE(1413), - [sym_yield_expression] = STATE(1518), - [sym_object] = STATE(1677), - [sym_array] = STATE(1671), - [sym_class] = STATE(1498), - [sym_function] = STATE(1498), - [sym_generator_function] = STATE(1498), - [sym_arrow_function] = STATE(1498), - [sym__call_signature] = STATE(3059), - [sym_call_expression] = STATE(1498), - [sym_new_expression] = STATE(1518), - [sym_await_expression] = STATE(1518), - [sym_member_expression] = STATE(952), - [sym_subscript_expression] = STATE(952), - [sym_assignment_expression] = STATE(1518), - [sym__augmented_assignment_lhs] = STATE(1919), - [sym_augmented_assignment_expression] = STATE(1518), - [sym_ternary_expression] = STATE(1518), - [sym_binary_expression] = STATE(1518), - [sym_unary_expression] = STATE(1518), - [sym_update_expression] = STATE(1518), - [sym_string] = STATE(1498), - [sym_template_string] = STATE(1498), - [sym_regex] = STATE(1498), - [sym_meta_property] = STATE(1498), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(946), - [sym_type_assertion] = STATE(1518), - [sym_as_expression] = STATE(1518), - [sym_internal_module] = STATE(1518), - [sym_type_arguments] = STATE(263), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2554), - [sym_identifier] = ACTIONS(869), - [anon_sym_export] = ACTIONS(675), - [anon_sym_namespace] = ACTIONS(677), - [anon_sym_LBRACE] = ACTIONS(595), - [anon_sym_type] = ACTIONS(675), - [anon_sym_typeof] = ACTIONS(697), - [anon_sym_import] = ACTIONS(597), - [anon_sym_BANG] = ACTIONS(681), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(683), - [anon_sym_yield] = ACTIONS(685), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(601), - [anon_sym_async] = ACTIONS(689), - [anon_sym_function] = ACTIONS(605), - [anon_sym_new] = ACTIONS(875), - [anon_sym_PLUS] = ACTIONS(877), - [anon_sym_DASH] = ACTIONS(877), - [anon_sym_TILDE] = ACTIONS(681), - [anon_sym_void] = ACTIONS(697), - [anon_sym_delete] = ACTIONS(697), - [anon_sym_PLUS_PLUS] = ACTIONS(699), - [anon_sym_DASH_DASH] = ACTIONS(699), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(85), - [sym_number] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(675), - [anon_sym_get] = ACTIONS(675), - [anon_sym_set] = ACTIONS(675), - [anon_sym_declare] = ACTIONS(675), - [anon_sym_public] = ACTIONS(675), - [anon_sym_private] = ACTIONS(675), - [anon_sym_protected] = ACTIONS(675), - [anon_sym_module] = ACTIONS(675), - [anon_sym_any] = ACTIONS(675), - [anon_sym_number] = ACTIONS(675), - [anon_sym_boolean] = ACTIONS(675), - [anon_sym_string] = ACTIONS(675), - [anon_sym_symbol] = ACTIONS(675), - [sym_readonly] = ACTIONS(675), - }, - [308] = { - [sym_import] = STATE(1101), - [sym_parenthesized_expression] = STATE(739), - [sym__expression] = STATE(1044), - [sym_yield_expression] = STATE(1105), - [sym_object] = STATE(1297), - [sym_array] = STATE(1296), - [sym_class] = STATE(1101), - [sym_function] = STATE(1101), - [sym_generator_function] = STATE(1101), - [sym_arrow_function] = STATE(1101), - [sym__call_signature] = STATE(3116), - [sym_call_expression] = STATE(1101), - [sym_new_expression] = STATE(1105), - [sym_await_expression] = STATE(1105), - [sym_member_expression] = STATE(739), - [sym_subscript_expression] = STATE(739), - [sym_assignment_expression] = STATE(1105), - [sym__augmented_assignment_lhs] = STATE(1920), - [sym_augmented_assignment_expression] = STATE(1105), - [sym_ternary_expression] = STATE(1105), - [sym_binary_expression] = STATE(1105), - [sym_unary_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_string] = STATE(1101), - [sym_template_string] = STATE(1101), - [sym_regex] = STATE(1101), - [sym_meta_property] = STATE(1101), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(755), - [sym_type_assertion] = STATE(1105), - [sym_as_expression] = STATE(1105), - [sym_internal_module] = STATE(1105), - [sym_type_arguments] = STATE(361), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2497), + [324] = { + [sym_import] = STATE(1151), + [sym_parenthesized_expression] = STATE(759), + [sym__expression] = STATE(1088), + [sym_yield_expression] = STATE(1144), + [sym_object] = STATE(1257), + [sym_array] = STATE(1254), + [sym_class] = STATE(1151), + [sym_function] = STATE(1151), + [sym_generator_function] = STATE(1151), + [sym_arrow_function] = STATE(1151), + [sym__call_signature] = STATE(3082), + [sym_call_expression] = STATE(1151), + [sym_new_expression] = STATE(1144), + [sym_await_expression] = STATE(1144), + [sym_member_expression] = STATE(759), + [sym_subscript_expression] = STATE(759), + [sym_assignment_expression] = STATE(1144), + [sym__augmented_assignment_lhs] = STATE(1924), + [sym_augmented_assignment_expression] = STATE(1144), + [sym_ternary_expression] = STATE(1144), + [sym_binary_expression] = STATE(1144), + [sym_unary_expression] = STATE(1144), + [sym_update_expression] = STATE(1144), + [sym_string] = STATE(1151), + [sym_template_string] = STATE(1151), + [sym_regex] = STATE(1151), + [sym_meta_property] = STATE(1151), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(754), + [sym_type_assertion] = STATE(1144), + [sym_as_expression] = STATE(1144), + [sym_internal_module] = STATE(1144), + [sym_type_arguments] = STATE(326), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2580), [sym_identifier] = ACTIONS(499), [anon_sym_export] = ACTIONS(501), [anon_sym_namespace] = ACTIONS(507), @@ -40897,157 +42375,68 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(501), [sym_readonly] = ACTIONS(501), }, - [309] = { - [sym_import] = STATE(1498), - [sym_parenthesized_expression] = STATE(952), - [sym__expression] = STATE(1350), - [sym_yield_expression] = STATE(1518), - [sym_object] = STATE(1677), - [sym_array] = STATE(1671), - [sym_class] = STATE(1498), - [sym_function] = STATE(1498), - [sym_generator_function] = STATE(1498), - [sym_arrow_function] = STATE(1498), - [sym__call_signature] = STATE(3059), - [sym_call_expression] = STATE(1498), - [sym_new_expression] = STATE(1518), - [sym_await_expression] = STATE(1518), - [sym_member_expression] = STATE(952), - [sym_subscript_expression] = STATE(952), - [sym_assignment_expression] = STATE(1518), - [sym__augmented_assignment_lhs] = STATE(1919), - [sym_augmented_assignment_expression] = STATE(1518), - [sym_ternary_expression] = STATE(1518), - [sym_binary_expression] = STATE(1518), - [sym_unary_expression] = STATE(1518), - [sym_update_expression] = STATE(1518), - [sym_string] = STATE(1498), - [sym_template_string] = STATE(1498), - [sym_regex] = STATE(1498), - [sym_meta_property] = STATE(1498), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(946), - [sym_type_assertion] = STATE(1518), - [sym_as_expression] = STATE(1518), - [sym_internal_module] = STATE(1518), - [sym_type_arguments] = STATE(263), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2554), - [sym_identifier] = ACTIONS(869), - [anon_sym_export] = ACTIONS(675), - [anon_sym_namespace] = ACTIONS(677), - [anon_sym_LBRACE] = ACTIONS(595), - [anon_sym_type] = ACTIONS(675), - [anon_sym_typeof] = ACTIONS(697), - [anon_sym_import] = ACTIONS(597), - [anon_sym_BANG] = ACTIONS(681), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(683), - [anon_sym_yield] = ACTIONS(685), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(601), - [anon_sym_async] = ACTIONS(689), - [anon_sym_function] = ACTIONS(605), - [anon_sym_new] = ACTIONS(875), - [anon_sym_PLUS] = ACTIONS(877), - [anon_sym_DASH] = ACTIONS(877), - [anon_sym_TILDE] = ACTIONS(681), - [anon_sym_void] = ACTIONS(697), - [anon_sym_delete] = ACTIONS(697), - [anon_sym_PLUS_PLUS] = ACTIONS(699), - [anon_sym_DASH_DASH] = ACTIONS(699), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(85), - [sym_number] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(675), - [anon_sym_get] = ACTIONS(675), - [anon_sym_set] = ACTIONS(675), - [anon_sym_declare] = ACTIONS(675), - [anon_sym_public] = ACTIONS(675), - [anon_sym_private] = ACTIONS(675), - [anon_sym_protected] = ACTIONS(675), - [anon_sym_module] = ACTIONS(675), - [anon_sym_any] = ACTIONS(675), - [anon_sym_number] = ACTIONS(675), - [anon_sym_boolean] = ACTIONS(675), - [anon_sym_string] = ACTIONS(675), - [anon_sym_symbol] = ACTIONS(675), - [sym_readonly] = ACTIONS(675), - }, - [310] = { - [sym_import] = STATE(1498), - [sym_parenthesized_expression] = STATE(952), - [sym__expression] = STATE(1419), - [sym_yield_expression] = STATE(1518), - [sym_object] = STATE(1677), - [sym_array] = STATE(1671), - [sym_class] = STATE(1498), - [sym_function] = STATE(1498), - [sym_generator_function] = STATE(1498), - [sym_arrow_function] = STATE(1498), - [sym__call_signature] = STATE(3059), - [sym_call_expression] = STATE(1498), - [sym_new_expression] = STATE(1518), - [sym_await_expression] = STATE(1518), - [sym_member_expression] = STATE(952), - [sym_subscript_expression] = STATE(952), - [sym_assignment_expression] = STATE(1518), - [sym__augmented_assignment_lhs] = STATE(1919), - [sym_augmented_assignment_expression] = STATE(1518), - [sym_ternary_expression] = STATE(1518), - [sym_binary_expression] = STATE(1518), - [sym_unary_expression] = STATE(1518), - [sym_update_expression] = STATE(1518), - [sym_string] = STATE(1498), - [sym_template_string] = STATE(1498), - [sym_regex] = STATE(1498), - [sym_meta_property] = STATE(1498), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(946), - [sym_type_assertion] = STATE(1518), - [sym_as_expression] = STATE(1518), - [sym_internal_module] = STATE(1518), - [sym_type_arguments] = STATE(263), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2554), - [sym_identifier] = ACTIONS(869), - [anon_sym_export] = ACTIONS(675), - [anon_sym_namespace] = ACTIONS(677), - [anon_sym_LBRACE] = ACTIONS(595), - [anon_sym_type] = ACTIONS(675), - [anon_sym_typeof] = ACTIONS(697), - [anon_sym_import] = ACTIONS(597), - [anon_sym_BANG] = ACTIONS(681), + [325] = { + [sym_import] = STATE(1523), + [sym_parenthesized_expression] = STATE(955), + [sym__expression] = STATE(1367), + [sym_yield_expression] = STATE(1567), + [sym_object] = STATE(1636), + [sym_array] = STATE(1643), + [sym_class] = STATE(1523), + [sym_function] = STATE(1523), + [sym_generator_function] = STATE(1523), + [sym_arrow_function] = STATE(1523), + [sym__call_signature] = STATE(3078), + [sym_call_expression] = STATE(1523), + [sym_new_expression] = STATE(1567), + [sym_await_expression] = STATE(1567), + [sym_member_expression] = STATE(955), + [sym_subscript_expression] = STATE(955), + [sym_assignment_expression] = STATE(1567), + [sym__augmented_assignment_lhs] = STATE(1929), + [sym_augmented_assignment_expression] = STATE(1567), + [sym_ternary_expression] = STATE(1567), + [sym_binary_expression] = STATE(1567), + [sym_unary_expression] = STATE(1567), + [sym_update_expression] = STATE(1567), + [sym_string] = STATE(1523), + [sym_template_string] = STATE(1523), + [sym_regex] = STATE(1523), + [sym_meta_property] = STATE(1523), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(953), + [sym_type_assertion] = STATE(1567), + [sym_as_expression] = STATE(1567), + [sym_internal_module] = STATE(1567), + [sym_type_arguments] = STATE(384), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2575), + [sym_identifier] = ACTIONS(887), + [anon_sym_export] = ACTIONS(635), + [anon_sym_namespace] = ACTIONS(637), + [anon_sym_LBRACE] = ACTIONS(571), + [anon_sym_type] = ACTIONS(635), + [anon_sym_typeof] = ACTIONS(657), + [anon_sym_import] = ACTIONS(539), + [anon_sym_BANG] = ACTIONS(641), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(683), - [anon_sym_yield] = ACTIONS(685), + [anon_sym_await] = ACTIONS(643), + [anon_sym_yield] = ACTIONS(645), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(601), - [anon_sym_async] = ACTIONS(689), - [anon_sym_function] = ACTIONS(605), - [anon_sym_new] = ACTIONS(875), - [anon_sym_PLUS] = ACTIONS(877), - [anon_sym_DASH] = ACTIONS(877), - [anon_sym_TILDE] = ACTIONS(681), - [anon_sym_void] = ACTIONS(697), - [anon_sym_delete] = ACTIONS(697), - [anon_sym_PLUS_PLUS] = ACTIONS(699), - [anon_sym_DASH_DASH] = ACTIONS(699), + [anon_sym_class] = ACTIONS(545), + [anon_sym_async] = ACTIONS(649), + [anon_sym_function] = ACTIONS(549), + [anon_sym_new] = ACTIONS(893), + [anon_sym_PLUS] = ACTIONS(895), + [anon_sym_DASH] = ACTIONS(895), + [anon_sym_TILDE] = ACTIONS(641), + [anon_sym_void] = ACTIONS(657), + [anon_sym_delete] = ACTIONS(657), + [anon_sym_PLUS_PLUS] = ACTIONS(659), + [anon_sym_DASH_DASH] = ACTIONS(659), [anon_sym_DQUOTE] = ACTIONS(81), [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), @@ -41060,58 +42449,58 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(675), - [anon_sym_get] = ACTIONS(675), - [anon_sym_set] = ACTIONS(675), - [anon_sym_declare] = ACTIONS(675), - [anon_sym_public] = ACTIONS(675), - [anon_sym_private] = ACTIONS(675), - [anon_sym_protected] = ACTIONS(675), - [anon_sym_module] = ACTIONS(675), - [anon_sym_any] = ACTIONS(675), - [anon_sym_number] = ACTIONS(675), - [anon_sym_boolean] = ACTIONS(675), - [anon_sym_string] = ACTIONS(675), - [anon_sym_symbol] = ACTIONS(675), - [sym_readonly] = ACTIONS(675), + [anon_sym_static] = ACTIONS(635), + [anon_sym_get] = ACTIONS(635), + [anon_sym_set] = ACTIONS(635), + [anon_sym_declare] = ACTIONS(635), + [anon_sym_public] = ACTIONS(635), + [anon_sym_private] = ACTIONS(635), + [anon_sym_protected] = ACTIONS(635), + [anon_sym_module] = ACTIONS(635), + [anon_sym_any] = ACTIONS(635), + [anon_sym_number] = ACTIONS(635), + [anon_sym_boolean] = ACTIONS(635), + [anon_sym_string] = ACTIONS(635), + [anon_sym_symbol] = ACTIONS(635), + [sym_readonly] = ACTIONS(635), }, - [311] = { - [sym_import] = STATE(1101), - [sym_parenthesized_expression] = STATE(739), - [sym__expression] = STATE(1054), - [sym_yield_expression] = STATE(1105), - [sym_object] = STATE(1297), - [sym_array] = STATE(1296), - [sym_class] = STATE(1101), - [sym_function] = STATE(1101), - [sym_generator_function] = STATE(1101), - [sym_arrow_function] = STATE(1101), - [sym__call_signature] = STATE(3116), - [sym_call_expression] = STATE(1101), - [sym_new_expression] = STATE(1105), - [sym_await_expression] = STATE(1105), - [sym_member_expression] = STATE(739), - [sym_subscript_expression] = STATE(739), - [sym_assignment_expression] = STATE(1105), - [sym__augmented_assignment_lhs] = STATE(1920), - [sym_augmented_assignment_expression] = STATE(1105), - [sym_ternary_expression] = STATE(1105), - [sym_binary_expression] = STATE(1105), - [sym_unary_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_string] = STATE(1101), - [sym_template_string] = STATE(1101), - [sym_regex] = STATE(1101), - [sym_meta_property] = STATE(1101), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(755), - [sym_type_assertion] = STATE(1105), - [sym_as_expression] = STATE(1105), - [sym_internal_module] = STATE(1105), - [sym_type_arguments] = STATE(361), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2497), + [326] = { + [sym_import] = STATE(1151), + [sym_parenthesized_expression] = STATE(759), + [sym__expression] = STATE(990), + [sym_yield_expression] = STATE(1144), + [sym_object] = STATE(1257), + [sym_array] = STATE(1254), + [sym_class] = STATE(1151), + [sym_function] = STATE(1151), + [sym_generator_function] = STATE(1151), + [sym_arrow_function] = STATE(1151), + [sym__call_signature] = STATE(3082), + [sym_call_expression] = STATE(1151), + [sym_new_expression] = STATE(1144), + [sym_await_expression] = STATE(1144), + [sym_member_expression] = STATE(759), + [sym_subscript_expression] = STATE(759), + [sym_assignment_expression] = STATE(1144), + [sym__augmented_assignment_lhs] = STATE(1924), + [sym_augmented_assignment_expression] = STATE(1144), + [sym_ternary_expression] = STATE(1144), + [sym_binary_expression] = STATE(1144), + [sym_unary_expression] = STATE(1144), + [sym_update_expression] = STATE(1144), + [sym_string] = STATE(1151), + [sym_template_string] = STATE(1151), + [sym_regex] = STATE(1151), + [sym_meta_property] = STATE(1151), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(754), + [sym_type_assertion] = STATE(1144), + [sym_as_expression] = STATE(1144), + [sym_internal_module] = STATE(1144), + [sym_type_arguments] = STATE(326), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2580), [sym_identifier] = ACTIONS(499), [anon_sym_export] = ACTIONS(501), [anon_sym_namespace] = ACTIONS(507), @@ -41164,68 +42553,68 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(501), [sym_readonly] = ACTIONS(501), }, - [312] = { - [sym_import] = STATE(1498), - [sym_parenthesized_expression] = STATE(952), - [sym__expression] = STATE(1424), - [sym_yield_expression] = STATE(1518), - [sym_object] = STATE(1677), - [sym_array] = STATE(1671), - [sym_class] = STATE(1498), - [sym_function] = STATE(1498), - [sym_generator_function] = STATE(1498), - [sym_arrow_function] = STATE(1498), - [sym__call_signature] = STATE(3059), - [sym_call_expression] = STATE(1498), - [sym_new_expression] = STATE(1518), - [sym_await_expression] = STATE(1518), - [sym_member_expression] = STATE(952), - [sym_subscript_expression] = STATE(952), - [sym_assignment_expression] = STATE(1518), - [sym__augmented_assignment_lhs] = STATE(1919), - [sym_augmented_assignment_expression] = STATE(1518), - [sym_ternary_expression] = STATE(1518), - [sym_binary_expression] = STATE(1518), - [sym_unary_expression] = STATE(1518), - [sym_update_expression] = STATE(1518), - [sym_string] = STATE(1498), - [sym_template_string] = STATE(1498), - [sym_regex] = STATE(1498), - [sym_meta_property] = STATE(1498), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(946), - [sym_type_assertion] = STATE(1518), - [sym_as_expression] = STATE(1518), - [sym_internal_module] = STATE(1518), - [sym_type_arguments] = STATE(263), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2554), - [sym_identifier] = ACTIONS(869), - [anon_sym_export] = ACTIONS(675), - [anon_sym_namespace] = ACTIONS(677), - [anon_sym_LBRACE] = ACTIONS(595), - [anon_sym_type] = ACTIONS(675), - [anon_sym_typeof] = ACTIONS(697), - [anon_sym_import] = ACTIONS(597), - [anon_sym_BANG] = ACTIONS(681), + [327] = { + [sym_import] = STATE(1523), + [sym_parenthesized_expression] = STATE(768), + [sym__expression] = STATE(1130), + [sym_yield_expression] = STATE(1567), + [sym_object] = STATE(1357), + [sym_array] = STATE(1360), + [sym_class] = STATE(1523), + [sym_function] = STATE(1523), + [sym_generator_function] = STATE(1523), + [sym_arrow_function] = STATE(1523), + [sym__call_signature] = STATE(3196), + [sym_call_expression] = STATE(1523), + [sym_new_expression] = STATE(1567), + [sym_await_expression] = STATE(1567), + [sym_member_expression] = STATE(768), + [sym_subscript_expression] = STATE(768), + [sym_assignment_expression] = STATE(1567), + [sym__augmented_assignment_lhs] = STATE(1928), + [sym_augmented_assignment_expression] = STATE(1567), + [sym_ternary_expression] = STATE(1567), + [sym_binary_expression] = STATE(1567), + [sym_unary_expression] = STATE(1567), + [sym_update_expression] = STATE(1567), + [sym_string] = STATE(1523), + [sym_template_string] = STATE(1523), + [sym_regex] = STATE(1523), + [sym_meta_property] = STATE(1523), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(774), + [sym_type_assertion] = STATE(1567), + [sym_as_expression] = STATE(1567), + [sym_internal_module] = STATE(1567), + [sym_type_arguments] = STATE(292), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2575), + [sym_identifier] = ACTIONS(1473), + [anon_sym_export] = ACTIONS(531), + [anon_sym_namespace] = ACTIONS(533), + [anon_sym_LBRACE] = ACTIONS(571), + [anon_sym_type] = ACTIONS(531), + [anon_sym_typeof] = ACTIONS(19), + [anon_sym_import] = ACTIONS(539), + [anon_sym_BANG] = ACTIONS(29), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(683), - [anon_sym_yield] = ACTIONS(685), + [anon_sym_await] = ACTIONS(39), + [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(601), - [anon_sym_async] = ACTIONS(689), - [anon_sym_function] = ACTIONS(605), - [anon_sym_new] = ACTIONS(875), - [anon_sym_PLUS] = ACTIONS(877), - [anon_sym_DASH] = ACTIONS(877), - [anon_sym_TILDE] = ACTIONS(681), - [anon_sym_void] = ACTIONS(697), - [anon_sym_delete] = ACTIONS(697), - [anon_sym_PLUS_PLUS] = ACTIONS(699), - [anon_sym_DASH_DASH] = ACTIONS(699), + [anon_sym_class] = ACTIONS(545), + [anon_sym_async] = ACTIONS(547), + [anon_sym_function] = ACTIONS(549), + [anon_sym_new] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(29), + [anon_sym_void] = ACTIONS(19), + [anon_sym_delete] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_DQUOTE] = ACTIONS(81), [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), @@ -41238,147 +42627,58 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(675), - [anon_sym_get] = ACTIONS(675), - [anon_sym_set] = ACTIONS(675), - [anon_sym_declare] = ACTIONS(675), - [anon_sym_public] = ACTIONS(675), - [anon_sym_private] = ACTIONS(675), - [anon_sym_protected] = ACTIONS(675), - [anon_sym_module] = ACTIONS(675), - [anon_sym_any] = ACTIONS(675), - [anon_sym_number] = ACTIONS(675), - [anon_sym_boolean] = ACTIONS(675), - [anon_sym_string] = ACTIONS(675), - [anon_sym_symbol] = ACTIONS(675), - [sym_readonly] = ACTIONS(675), - }, - [313] = { - [ts_builtin_sym_end] = ACTIONS(1469), - [sym_identifier] = ACTIONS(1471), - [anon_sym_export] = ACTIONS(1471), - [anon_sym_default] = ACTIONS(1471), - [anon_sym_EQ] = ACTIONS(1471), - [anon_sym_namespace] = ACTIONS(1471), - [anon_sym_LBRACE] = ACTIONS(1469), - [anon_sym_COMMA] = ACTIONS(1469), - [anon_sym_RBRACE] = ACTIONS(1469), - [anon_sym_type] = ACTIONS(1471), - [anon_sym_typeof] = ACTIONS(1471), - [anon_sym_import] = ACTIONS(1471), - [anon_sym_var] = ACTIONS(1471), - [anon_sym_let] = ACTIONS(1471), - [anon_sym_const] = ACTIONS(1471), - [anon_sym_BANG] = ACTIONS(1469), - [anon_sym_else] = ACTIONS(1471), - [anon_sym_if] = ACTIONS(1471), - [anon_sym_switch] = ACTIONS(1471), - [anon_sym_for] = ACTIONS(1471), - [anon_sym_LPAREN] = ACTIONS(1469), - [anon_sym_RPAREN] = ACTIONS(1469), - [anon_sym_await] = ACTIONS(1471), - [anon_sym_while] = ACTIONS(1471), - [anon_sym_do] = ACTIONS(1471), - [anon_sym_try] = ACTIONS(1471), - [anon_sym_with] = ACTIONS(1471), - [anon_sym_break] = ACTIONS(1471), - [anon_sym_continue] = ACTIONS(1471), - [anon_sym_debugger] = ACTIONS(1471), - [anon_sym_return] = ACTIONS(1471), - [anon_sym_throw] = ACTIONS(1471), - [anon_sym_SEMI] = ACTIONS(1469), - [anon_sym_COLON] = ACTIONS(1469), - [anon_sym_case] = ACTIONS(1471), - [anon_sym_yield] = ACTIONS(1471), - [anon_sym_LBRACK] = ACTIONS(1469), - [anon_sym_RBRACK] = ACTIONS(1469), - [anon_sym_LT] = ACTIONS(1469), - [anon_sym_GT] = ACTIONS(1469), - [anon_sym_SLASH] = ACTIONS(1471), - [anon_sym_class] = ACTIONS(1471), - [anon_sym_async] = ACTIONS(1471), - [anon_sym_function] = ACTIONS(1471), - [anon_sym_EQ_GT] = ACTIONS(1469), - [anon_sym_new] = ACTIONS(1471), - [anon_sym_QMARK] = ACTIONS(1469), - [anon_sym_AMP] = ACTIONS(1469), - [anon_sym_PIPE] = ACTIONS(1469), - [anon_sym_PLUS] = ACTIONS(1471), - [anon_sym_DASH] = ACTIONS(1471), - [anon_sym_TILDE] = ACTIONS(1469), - [anon_sym_void] = ACTIONS(1471), - [anon_sym_delete] = ACTIONS(1471), - [anon_sym_PLUS_PLUS] = ACTIONS(1469), - [anon_sym_DASH_DASH] = ACTIONS(1469), - [anon_sym_DQUOTE] = ACTIONS(1469), - [anon_sym_SQUOTE] = ACTIONS(1469), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1469), - [sym_number] = ACTIONS(1469), - [sym_this] = ACTIONS(1471), - [sym_super] = ACTIONS(1471), - [sym_true] = ACTIONS(1471), - [sym_false] = ACTIONS(1471), - [sym_null] = ACTIONS(1471), - [sym_undefined] = ACTIONS(1471), - [anon_sym_AT] = ACTIONS(1469), - [anon_sym_static] = ACTIONS(1471), - [anon_sym_abstract] = ACTIONS(1471), - [anon_sym_get] = ACTIONS(1471), - [anon_sym_set] = ACTIONS(1471), - [anon_sym_declare] = ACTIONS(1471), - [anon_sym_public] = ACTIONS(1471), - [anon_sym_private] = ACTIONS(1471), - [anon_sym_protected] = ACTIONS(1471), - [anon_sym_module] = ACTIONS(1471), - [anon_sym_any] = ACTIONS(1471), - [anon_sym_number] = ACTIONS(1471), - [anon_sym_boolean] = ACTIONS(1471), - [anon_sym_string] = ACTIONS(1471), - [anon_sym_symbol] = ACTIONS(1471), - [anon_sym_implements] = ACTIONS(1471), - [anon_sym_interface] = ACTIONS(1471), - [anon_sym_extends] = ACTIONS(1471), - [anon_sym_enum] = ACTIONS(1471), - [sym_readonly] = ACTIONS(1471), + [anon_sym_static] = ACTIONS(531), + [anon_sym_get] = ACTIONS(531), + [anon_sym_set] = ACTIONS(531), + [anon_sym_declare] = ACTIONS(531), + [anon_sym_public] = ACTIONS(531), + [anon_sym_private] = ACTIONS(531), + [anon_sym_protected] = ACTIONS(531), + [anon_sym_module] = ACTIONS(531), + [anon_sym_any] = ACTIONS(531), + [anon_sym_number] = ACTIONS(531), + [anon_sym_boolean] = ACTIONS(531), + [anon_sym_string] = ACTIONS(531), + [anon_sym_symbol] = ACTIONS(531), + [sym_readonly] = ACTIONS(531), }, - [314] = { - [sym_import] = STATE(1101), - [sym_parenthesized_expression] = STATE(739), - [sym__expression] = STATE(1016), - [sym_yield_expression] = STATE(1105), - [sym_object] = STATE(1297), - [sym_array] = STATE(1296), - [sym_class] = STATE(1101), - [sym_function] = STATE(1101), - [sym_generator_function] = STATE(1101), - [sym_arrow_function] = STATE(1101), - [sym__call_signature] = STATE(3116), - [sym_call_expression] = STATE(1101), - [sym_new_expression] = STATE(1105), - [sym_await_expression] = STATE(1105), - [sym_member_expression] = STATE(739), - [sym_subscript_expression] = STATE(739), - [sym_assignment_expression] = STATE(1105), - [sym__augmented_assignment_lhs] = STATE(1920), - [sym_augmented_assignment_expression] = STATE(1105), - [sym_ternary_expression] = STATE(1105), - [sym_binary_expression] = STATE(1105), - [sym_unary_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_string] = STATE(1101), - [sym_template_string] = STATE(1101), - [sym_regex] = STATE(1101), - [sym_meta_property] = STATE(1101), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(755), - [sym_type_assertion] = STATE(1105), - [sym_as_expression] = STATE(1105), - [sym_internal_module] = STATE(1105), - [sym_type_arguments] = STATE(361), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2497), + [328] = { + [sym_import] = STATE(1151), + [sym_parenthesized_expression] = STATE(759), + [sym__expression] = STATE(993), + [sym_yield_expression] = STATE(1144), + [sym_object] = STATE(1257), + [sym_array] = STATE(1254), + [sym_class] = STATE(1151), + [sym_function] = STATE(1151), + [sym_generator_function] = STATE(1151), + [sym_arrow_function] = STATE(1151), + [sym__call_signature] = STATE(3082), + [sym_call_expression] = STATE(1151), + [sym_new_expression] = STATE(1144), + [sym_await_expression] = STATE(1144), + [sym_member_expression] = STATE(759), + [sym_subscript_expression] = STATE(759), + [sym_assignment_expression] = STATE(1144), + [sym__augmented_assignment_lhs] = STATE(1924), + [sym_augmented_assignment_expression] = STATE(1144), + [sym_ternary_expression] = STATE(1144), + [sym_binary_expression] = STATE(1144), + [sym_unary_expression] = STATE(1144), + [sym_update_expression] = STATE(1144), + [sym_string] = STATE(1151), + [sym_template_string] = STATE(1151), + [sym_regex] = STATE(1151), + [sym_meta_property] = STATE(1151), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(754), + [sym_type_assertion] = STATE(1144), + [sym_as_expression] = STATE(1144), + [sym_internal_module] = STATE(1144), + [sym_type_arguments] = STATE(326), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2580), [sym_identifier] = ACTIONS(499), [anon_sym_export] = ACTIONS(501), [anon_sym_namespace] = ACTIONS(507), @@ -41431,157 +42731,157 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(501), [sym_readonly] = ACTIONS(501), }, - [315] = { - [sym_import] = STATE(1498), - [sym_parenthesized_expression] = STATE(952), - [sym__expression] = STATE(1425), - [sym_yield_expression] = STATE(1518), - [sym_object] = STATE(1677), - [sym_array] = STATE(1671), - [sym_class] = STATE(1498), - [sym_function] = STATE(1498), - [sym_generator_function] = STATE(1498), - [sym_arrow_function] = STATE(1498), - [sym__call_signature] = STATE(3059), - [sym_call_expression] = STATE(1498), - [sym_new_expression] = STATE(1518), - [sym_await_expression] = STATE(1518), - [sym_member_expression] = STATE(952), - [sym_subscript_expression] = STATE(952), - [sym_assignment_expression] = STATE(1518), - [sym__augmented_assignment_lhs] = STATE(1919), - [sym_augmented_assignment_expression] = STATE(1518), - [sym_ternary_expression] = STATE(1518), - [sym_binary_expression] = STATE(1518), - [sym_unary_expression] = STATE(1518), - [sym_update_expression] = STATE(1518), - [sym_string] = STATE(1498), - [sym_template_string] = STATE(1498), - [sym_regex] = STATE(1498), - [sym_meta_property] = STATE(1498), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(946), - [sym_type_assertion] = STATE(1518), - [sym_as_expression] = STATE(1518), - [sym_internal_module] = STATE(1518), - [sym_type_arguments] = STATE(263), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2554), + [329] = { + [sym_import] = STATE(1690), + [sym_parenthesized_expression] = STATE(834), + [sym__expression] = STATE(1210), + [sym_yield_expression] = STATE(1687), + [sym_object] = STATE(1538), + [sym_array] = STATE(1543), + [sym_class] = STATE(1690), + [sym_function] = STATE(1690), + [sym_generator_function] = STATE(1690), + [sym_arrow_function] = STATE(1690), + [sym__call_signature] = STATE(3133), + [sym_call_expression] = STATE(1690), + [sym_new_expression] = STATE(1687), + [sym_await_expression] = STATE(1687), + [sym_member_expression] = STATE(834), + [sym_subscript_expression] = STATE(834), + [sym_assignment_expression] = STATE(1687), + [sym__augmented_assignment_lhs] = STATE(1921), + [sym_augmented_assignment_expression] = STATE(1687), + [sym_ternary_expression] = STATE(1687), + [sym_binary_expression] = STATE(1687), + [sym_unary_expression] = STATE(1687), + [sym_update_expression] = STATE(1687), + [sym_string] = STATE(1690), + [sym_template_string] = STATE(1690), + [sym_regex] = STATE(1690), + [sym_meta_property] = STATE(1690), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(846), + [sym_type_assertion] = STATE(1687), + [sym_as_expression] = STATE(1687), + [sym_internal_module] = STATE(1687), + [sym_type_arguments] = STATE(301), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2545), [sym_identifier] = ACTIONS(869), - [anon_sym_export] = ACTIONS(675), - [anon_sym_namespace] = ACTIONS(677), - [anon_sym_LBRACE] = ACTIONS(595), - [anon_sym_type] = ACTIONS(675), - [anon_sym_typeof] = ACTIONS(697), - [anon_sym_import] = ACTIONS(597), - [anon_sym_BANG] = ACTIONS(681), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(683), - [anon_sym_yield] = ACTIONS(685), - [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_export] = ACTIONS(673), + [anon_sym_namespace] = ACTIONS(675), + [anon_sym_LBRACE] = ACTIONS(1270), + [anon_sym_type] = ACTIONS(673), + [anon_sym_typeof] = ACTIONS(707), + [anon_sym_import] = ACTIONS(681), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_await] = ACTIONS(687), + [anon_sym_yield] = ACTIONS(689), + [anon_sym_LBRACK] = ACTIONS(879), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(601), - [anon_sym_async] = ACTIONS(689), - [anon_sym_function] = ACTIONS(605), - [anon_sym_new] = ACTIONS(875), - [anon_sym_PLUS] = ACTIONS(877), - [anon_sym_DASH] = ACTIONS(877), - [anon_sym_TILDE] = ACTIONS(681), - [anon_sym_void] = ACTIONS(697), - [anon_sym_delete] = ACTIONS(697), - [anon_sym_PLUS_PLUS] = ACTIONS(699), - [anon_sym_DASH_DASH] = ACTIONS(699), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(85), - [sym_number] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), + [anon_sym_SLASH] = ACTIONS(693), + [anon_sym_class] = ACTIONS(695), + [anon_sym_async] = ACTIONS(697), + [anon_sym_function] = ACTIONS(699), + [anon_sym_new] = ACTIONS(881), + [anon_sym_PLUS] = ACTIONS(883), + [anon_sym_DASH] = ACTIONS(883), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_void] = ACTIONS(707), + [anon_sym_delete] = ACTIONS(707), + [anon_sym_PLUS_PLUS] = ACTIONS(709), + [anon_sym_DASH_DASH] = ACTIONS(709), + [anon_sym_DQUOTE] = ACTIONS(711), + [anon_sym_SQUOTE] = ACTIONS(713), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(715), + [sym_number] = ACTIONS(885), + [sym_this] = ACTIONS(721), + [sym_super] = ACTIONS(721), + [sym_true] = ACTIONS(721), + [sym_false] = ACTIONS(721), + [sym_null] = ACTIONS(721), + [sym_undefined] = ACTIONS(721), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(675), - [anon_sym_get] = ACTIONS(675), - [anon_sym_set] = ACTIONS(675), - [anon_sym_declare] = ACTIONS(675), - [anon_sym_public] = ACTIONS(675), - [anon_sym_private] = ACTIONS(675), - [anon_sym_protected] = ACTIONS(675), - [anon_sym_module] = ACTIONS(675), - [anon_sym_any] = ACTIONS(675), - [anon_sym_number] = ACTIONS(675), - [anon_sym_boolean] = ACTIONS(675), - [anon_sym_string] = ACTIONS(675), - [anon_sym_symbol] = ACTIONS(675), - [sym_readonly] = ACTIONS(675), + [anon_sym_static] = ACTIONS(673), + [anon_sym_get] = ACTIONS(673), + [anon_sym_set] = ACTIONS(673), + [anon_sym_declare] = ACTIONS(673), + [anon_sym_public] = ACTIONS(673), + [anon_sym_private] = ACTIONS(673), + [anon_sym_protected] = ACTIONS(673), + [anon_sym_module] = ACTIONS(673), + [anon_sym_any] = ACTIONS(673), + [anon_sym_number] = ACTIONS(673), + [anon_sym_boolean] = ACTIONS(673), + [anon_sym_string] = ACTIONS(673), + [anon_sym_symbol] = ACTIONS(673), + [sym_readonly] = ACTIONS(673), }, - [316] = { - [sym_import] = STATE(1498), - [sym_parenthesized_expression] = STATE(952), - [sym__expression] = STATE(1317), - [sym_yield_expression] = STATE(1518), - [sym_object] = STATE(1677), - [sym_array] = STATE(1671), - [sym_class] = STATE(1498), - [sym_function] = STATE(1498), - [sym_generator_function] = STATE(1498), - [sym_arrow_function] = STATE(1498), - [sym__call_signature] = STATE(3059), - [sym_call_expression] = STATE(1498), - [sym_new_expression] = STATE(1518), - [sym_await_expression] = STATE(1518), - [sym_member_expression] = STATE(952), - [sym_subscript_expression] = STATE(952), - [sym_assignment_expression] = STATE(1518), - [sym__augmented_assignment_lhs] = STATE(1919), - [sym_augmented_assignment_expression] = STATE(1518), - [sym_ternary_expression] = STATE(1518), - [sym_binary_expression] = STATE(1518), - [sym_unary_expression] = STATE(1518), - [sym_update_expression] = STATE(1518), - [sym_string] = STATE(1498), - [sym_template_string] = STATE(1498), - [sym_regex] = STATE(1498), - [sym_meta_property] = STATE(1498), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(946), - [sym_type_assertion] = STATE(1518), - [sym_as_expression] = STATE(1518), - [sym_internal_module] = STATE(1518), - [sym_type_arguments] = STATE(263), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2554), - [sym_identifier] = ACTIONS(869), - [anon_sym_export] = ACTIONS(675), - [anon_sym_namespace] = ACTIONS(677), - [anon_sym_LBRACE] = ACTIONS(595), - [anon_sym_type] = ACTIONS(675), - [anon_sym_typeof] = ACTIONS(697), - [anon_sym_import] = ACTIONS(597), - [anon_sym_BANG] = ACTIONS(681), + [330] = { + [sym_import] = STATE(1523), + [sym_parenthesized_expression] = STATE(955), + [sym__expression] = STATE(1381), + [sym_yield_expression] = STATE(1567), + [sym_object] = STATE(1636), + [sym_array] = STATE(1643), + [sym_class] = STATE(1523), + [sym_function] = STATE(1523), + [sym_generator_function] = STATE(1523), + [sym_arrow_function] = STATE(1523), + [sym__call_signature] = STATE(3078), + [sym_call_expression] = STATE(1523), + [sym_new_expression] = STATE(1567), + [sym_await_expression] = STATE(1567), + [sym_member_expression] = STATE(955), + [sym_subscript_expression] = STATE(955), + [sym_assignment_expression] = STATE(1567), + [sym__augmented_assignment_lhs] = STATE(1929), + [sym_augmented_assignment_expression] = STATE(1567), + [sym_ternary_expression] = STATE(1567), + [sym_binary_expression] = STATE(1567), + [sym_unary_expression] = STATE(1567), + [sym_update_expression] = STATE(1567), + [sym_string] = STATE(1523), + [sym_template_string] = STATE(1523), + [sym_regex] = STATE(1523), + [sym_meta_property] = STATE(1523), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(953), + [sym_type_assertion] = STATE(1567), + [sym_as_expression] = STATE(1567), + [sym_internal_module] = STATE(1567), + [sym_type_arguments] = STATE(384), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2575), + [sym_identifier] = ACTIONS(887), + [anon_sym_export] = ACTIONS(635), + [anon_sym_namespace] = ACTIONS(637), + [anon_sym_LBRACE] = ACTIONS(571), + [anon_sym_type] = ACTIONS(635), + [anon_sym_typeof] = ACTIONS(657), + [anon_sym_import] = ACTIONS(539), + [anon_sym_BANG] = ACTIONS(641), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(683), - [anon_sym_yield] = ACTIONS(685), + [anon_sym_await] = ACTIONS(643), + [anon_sym_yield] = ACTIONS(645), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(601), - [anon_sym_async] = ACTIONS(689), - [anon_sym_function] = ACTIONS(605), - [anon_sym_new] = ACTIONS(875), - [anon_sym_PLUS] = ACTIONS(877), - [anon_sym_DASH] = ACTIONS(877), - [anon_sym_TILDE] = ACTIONS(681), - [anon_sym_void] = ACTIONS(697), - [anon_sym_delete] = ACTIONS(697), - [anon_sym_PLUS_PLUS] = ACTIONS(699), - [anon_sym_DASH_DASH] = ACTIONS(699), + [anon_sym_class] = ACTIONS(545), + [anon_sym_async] = ACTIONS(649), + [anon_sym_function] = ACTIONS(549), + [anon_sym_new] = ACTIONS(893), + [anon_sym_PLUS] = ACTIONS(895), + [anon_sym_DASH] = ACTIONS(895), + [anon_sym_TILDE] = ACTIONS(641), + [anon_sym_void] = ACTIONS(657), + [anon_sym_delete] = ACTIONS(657), + [anon_sym_PLUS_PLUS] = ACTIONS(659), + [anon_sym_DASH_DASH] = ACTIONS(659), [anon_sym_DQUOTE] = ACTIONS(81), [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), @@ -41594,83 +42894,83 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(675), - [anon_sym_get] = ACTIONS(675), - [anon_sym_set] = ACTIONS(675), - [anon_sym_declare] = ACTIONS(675), - [anon_sym_public] = ACTIONS(675), - [anon_sym_private] = ACTIONS(675), - [anon_sym_protected] = ACTIONS(675), - [anon_sym_module] = ACTIONS(675), - [anon_sym_any] = ACTIONS(675), - [anon_sym_number] = ACTIONS(675), - [anon_sym_boolean] = ACTIONS(675), - [anon_sym_string] = ACTIONS(675), - [anon_sym_symbol] = ACTIONS(675), - [sym_readonly] = ACTIONS(675), + [anon_sym_static] = ACTIONS(635), + [anon_sym_get] = ACTIONS(635), + [anon_sym_set] = ACTIONS(635), + [anon_sym_declare] = ACTIONS(635), + [anon_sym_public] = ACTIONS(635), + [anon_sym_private] = ACTIONS(635), + [anon_sym_protected] = ACTIONS(635), + [anon_sym_module] = ACTIONS(635), + [anon_sym_any] = ACTIONS(635), + [anon_sym_number] = ACTIONS(635), + [anon_sym_boolean] = ACTIONS(635), + [anon_sym_string] = ACTIONS(635), + [anon_sym_symbol] = ACTIONS(635), + [sym_readonly] = ACTIONS(635), }, - [317] = { - [sym_import] = STATE(1101), - [sym_parenthesized_expression] = STATE(948), - [sym__expression] = STATE(1406), - [sym_yield_expression] = STATE(1105), - [sym_object] = STATE(1654), - [sym_array] = STATE(1640), - [sym_class] = STATE(1101), - [sym_function] = STATE(1101), - [sym_generator_function] = STATE(1101), - [sym_arrow_function] = STATE(1101), - [sym__call_signature] = STATE(3002), - [sym_call_expression] = STATE(1101), - [sym_new_expression] = STATE(1105), - [sym_await_expression] = STATE(1105), - [sym_member_expression] = STATE(948), - [sym_subscript_expression] = STATE(948), - [sym_assignment_expression] = STATE(1105), - [sym__augmented_assignment_lhs] = STATE(1921), - [sym_augmented_assignment_expression] = STATE(1105), - [sym_ternary_expression] = STATE(1105), - [sym_binary_expression] = STATE(1105), - [sym_unary_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_string] = STATE(1101), - [sym_template_string] = STATE(1101), - [sym_regex] = STATE(1101), - [sym_meta_property] = STATE(1101), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(949), - [sym_type_assertion] = STATE(1105), - [sym_as_expression] = STATE(1105), - [sym_internal_module] = STATE(1105), - [sym_type_arguments] = STATE(324), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2497), - [sym_identifier] = ACTIONS(859), - [anon_sym_export] = ACTIONS(635), - [anon_sym_namespace] = ACTIONS(637), + [331] = { + [sym_import] = STATE(1151), + [sym_parenthesized_expression] = STATE(956), + [sym__expression] = STATE(1497), + [sym_yield_expression] = STATE(1144), + [sym_object] = STATE(1653), + [sym_array] = STATE(1660), + [sym_class] = STATE(1151), + [sym_function] = STATE(1151), + [sym_generator_function] = STATE(1151), + [sym_arrow_function] = STATE(1151), + [sym__call_signature] = STATE(3024), + [sym_call_expression] = STATE(1151), + [sym_new_expression] = STATE(1144), + [sym_await_expression] = STATE(1144), + [sym_member_expression] = STATE(956), + [sym_subscript_expression] = STATE(956), + [sym_assignment_expression] = STATE(1144), + [sym__augmented_assignment_lhs] = STATE(1925), + [sym_augmented_assignment_expression] = STATE(1144), + [sym_ternary_expression] = STATE(1144), + [sym_binary_expression] = STATE(1144), + [sym_unary_expression] = STATE(1144), + [sym_update_expression] = STATE(1144), + [sym_string] = STATE(1151), + [sym_template_string] = STATE(1151), + [sym_regex] = STATE(1151), + [sym_meta_property] = STATE(1151), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(950), + [sym_type_assertion] = STATE(1144), + [sym_as_expression] = STATE(1144), + [sym_internal_module] = STATE(1144), + [sym_type_arguments] = STATE(395), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2580), + [sym_identifier] = ACTIONS(897), + [anon_sym_export] = ACTIONS(577), + [anon_sym_namespace] = ACTIONS(579), [anon_sym_LBRACE] = ACTIONS(509), - [anon_sym_type] = ACTIONS(635), - [anon_sym_typeof] = ACTIONS(659), + [anon_sym_type] = ACTIONS(577), + [anon_sym_typeof] = ACTIONS(601), [anon_sym_import] = ACTIONS(435), - [anon_sym_BANG] = ACTIONS(643), + [anon_sym_BANG] = ACTIONS(585), [anon_sym_LPAREN] = ACTIONS(515), - [anon_sym_await] = ACTIONS(645), - [anon_sym_yield] = ACTIONS(647), + [anon_sym_await] = ACTIONS(587), + [anon_sym_yield] = ACTIONS(589), [anon_sym_LBRACK] = ACTIONS(517), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(449), [anon_sym_class] = ACTIONS(451), - [anon_sym_async] = ACTIONS(651), + [anon_sym_async] = ACTIONS(593), [anon_sym_function] = ACTIONS(455), - [anon_sym_new] = ACTIONS(865), - [anon_sym_PLUS] = ACTIONS(867), - [anon_sym_DASH] = ACTIONS(867), - [anon_sym_TILDE] = ACTIONS(643), - [anon_sym_void] = ACTIONS(659), - [anon_sym_delete] = ACTIONS(659), - [anon_sym_PLUS_PLUS] = ACTIONS(661), - [anon_sym_DASH_DASH] = ACTIONS(661), + [anon_sym_new] = ACTIONS(903), + [anon_sym_PLUS] = ACTIONS(905), + [anon_sym_DASH] = ACTIONS(905), + [anon_sym_TILDE] = ACTIONS(585), + [anon_sym_void] = ACTIONS(601), + [anon_sym_delete] = ACTIONS(601), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(603), [anon_sym_DQUOTE] = ACTIONS(475), [anon_sym_SQUOTE] = ACTIONS(477), [sym_comment] = ACTIONS(3), @@ -41683,65 +42983,154 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(485), [sym_undefined] = ACTIONS(485), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(635), - [anon_sym_get] = ACTIONS(635), - [anon_sym_set] = ACTIONS(635), - [anon_sym_declare] = ACTIONS(635), - [anon_sym_public] = ACTIONS(635), - [anon_sym_private] = ACTIONS(635), - [anon_sym_protected] = ACTIONS(635), - [anon_sym_module] = ACTIONS(635), - [anon_sym_any] = ACTIONS(635), - [anon_sym_number] = ACTIONS(635), - [anon_sym_boolean] = ACTIONS(635), - [anon_sym_string] = ACTIONS(635), - [anon_sym_symbol] = ACTIONS(635), - [sym_readonly] = ACTIONS(635), + [anon_sym_static] = ACTIONS(577), + [anon_sym_get] = ACTIONS(577), + [anon_sym_set] = ACTIONS(577), + [anon_sym_declare] = ACTIONS(577), + [anon_sym_public] = ACTIONS(577), + [anon_sym_private] = ACTIONS(577), + [anon_sym_protected] = ACTIONS(577), + [anon_sym_module] = ACTIONS(577), + [anon_sym_any] = ACTIONS(577), + [anon_sym_number] = ACTIONS(577), + [anon_sym_boolean] = ACTIONS(577), + [anon_sym_string] = ACTIONS(577), + [anon_sym_symbol] = ACTIONS(577), + [sym_readonly] = ACTIONS(577), }, - [318] = { - [sym_import] = STATE(1498), - [sym_parenthesized_expression] = STATE(764), - [sym__expression] = STATE(1264), - [sym_yield_expression] = STATE(1518), - [sym_object] = STATE(1435), - [sym_array] = STATE(1433), - [sym_class] = STATE(1498), - [sym_function] = STATE(1498), - [sym_generator_function] = STATE(1498), - [sym_arrow_function] = STATE(1498), - [sym__call_signature] = STATE(3145), - [sym_call_expression] = STATE(1498), - [sym_new_expression] = STATE(1518), - [sym_await_expression] = STATE(1518), - [sym_member_expression] = STATE(764), - [sym_subscript_expression] = STATE(764), - [sym_assignment_expression] = STATE(1518), + [332] = { + [sym_import] = STATE(1151), + [sym_parenthesized_expression] = STATE(956), + [sym__expression] = STATE(1421), + [sym_yield_expression] = STATE(1144), + [sym_object] = STATE(1653), + [sym_array] = STATE(1660), + [sym_class] = STATE(1151), + [sym_function] = STATE(1151), + [sym_generator_function] = STATE(1151), + [sym_arrow_function] = STATE(1151), + [sym__call_signature] = STATE(3024), + [sym_call_expression] = STATE(1151), + [sym_new_expression] = STATE(1144), + [sym_await_expression] = STATE(1144), + [sym_member_expression] = STATE(956), + [sym_subscript_expression] = STATE(956), + [sym_assignment_expression] = STATE(1144), [sym__augmented_assignment_lhs] = STATE(1925), - [sym_augmented_assignment_expression] = STATE(1518), - [sym_ternary_expression] = STATE(1518), - [sym_binary_expression] = STATE(1518), - [sym_unary_expression] = STATE(1518), - [sym_update_expression] = STATE(1518), - [sym_string] = STATE(1498), - [sym_template_string] = STATE(1498), - [sym_regex] = STATE(1498), - [sym_meta_property] = STATE(1498), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(772), - [sym_type_assertion] = STATE(1518), - [sym_as_expression] = STATE(1518), - [sym_internal_module] = STATE(1518), - [sym_type_arguments] = STATE(349), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2554), - [sym_identifier] = ACTIONS(587), - [anon_sym_export] = ACTIONS(589), - [anon_sym_namespace] = ACTIONS(593), - [anon_sym_LBRACE] = ACTIONS(595), - [anon_sym_type] = ACTIONS(589), + [sym_augmented_assignment_expression] = STATE(1144), + [sym_ternary_expression] = STATE(1144), + [sym_binary_expression] = STATE(1144), + [sym_unary_expression] = STATE(1144), + [sym_update_expression] = STATE(1144), + [sym_string] = STATE(1151), + [sym_template_string] = STATE(1151), + [sym_regex] = STATE(1151), + [sym_meta_property] = STATE(1151), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(950), + [sym_type_assertion] = STATE(1144), + [sym_as_expression] = STATE(1144), + [sym_internal_module] = STATE(1144), + [sym_type_arguments] = STATE(395), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2580), + [sym_identifier] = ACTIONS(897), + [anon_sym_export] = ACTIONS(577), + [anon_sym_namespace] = ACTIONS(579), + [anon_sym_LBRACE] = ACTIONS(509), + [anon_sym_type] = ACTIONS(577), + [anon_sym_typeof] = ACTIONS(601), + [anon_sym_import] = ACTIONS(435), + [anon_sym_BANG] = ACTIONS(585), + [anon_sym_LPAREN] = ACTIONS(515), + [anon_sym_await] = ACTIONS(587), + [anon_sym_yield] = ACTIONS(589), + [anon_sym_LBRACK] = ACTIONS(517), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(449), + [anon_sym_class] = ACTIONS(451), + [anon_sym_async] = ACTIONS(593), + [anon_sym_function] = ACTIONS(455), + [anon_sym_new] = ACTIONS(903), + [anon_sym_PLUS] = ACTIONS(905), + [anon_sym_DASH] = ACTIONS(905), + [anon_sym_TILDE] = ACTIONS(585), + [anon_sym_void] = ACTIONS(601), + [anon_sym_delete] = ACTIONS(601), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_DQUOTE] = ACTIONS(475), + [anon_sym_SQUOTE] = ACTIONS(477), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(479), + [sym_number] = ACTIONS(527), + [sym_this] = ACTIONS(485), + [sym_super] = ACTIONS(485), + [sym_true] = ACTIONS(485), + [sym_false] = ACTIONS(485), + [sym_null] = ACTIONS(485), + [sym_undefined] = ACTIONS(485), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(577), + [anon_sym_get] = ACTIONS(577), + [anon_sym_set] = ACTIONS(577), + [anon_sym_declare] = ACTIONS(577), + [anon_sym_public] = ACTIONS(577), + [anon_sym_private] = ACTIONS(577), + [anon_sym_protected] = ACTIONS(577), + [anon_sym_module] = ACTIONS(577), + [anon_sym_any] = ACTIONS(577), + [anon_sym_number] = ACTIONS(577), + [anon_sym_boolean] = ACTIONS(577), + [anon_sym_string] = ACTIONS(577), + [anon_sym_symbol] = ACTIONS(577), + [sym_readonly] = ACTIONS(577), + }, + [333] = { + [sym_import] = STATE(1523), + [sym_parenthesized_expression] = STATE(768), + [sym__expression] = STATE(1130), + [sym_yield_expression] = STATE(1567), + [sym_object] = STATE(1357), + [sym_array] = STATE(1360), + [sym_class] = STATE(1523), + [sym_function] = STATE(1523), + [sym_generator_function] = STATE(1523), + [sym_arrow_function] = STATE(1523), + [sym__call_signature] = STATE(3196), + [sym_call_expression] = STATE(1523), + [sym_new_expression] = STATE(1567), + [sym_await_expression] = STATE(1567), + [sym_member_expression] = STATE(768), + [sym_subscript_expression] = STATE(768), + [sym_assignment_expression] = STATE(1567), + [sym__augmented_assignment_lhs] = STATE(1928), + [sym_augmented_assignment_expression] = STATE(1567), + [sym_ternary_expression] = STATE(1567), + [sym_binary_expression] = STATE(1567), + [sym_unary_expression] = STATE(1567), + [sym_update_expression] = STATE(1567), + [sym_string] = STATE(1523), + [sym_template_string] = STATE(1523), + [sym_regex] = STATE(1523), + [sym_meta_property] = STATE(1523), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(774), + [sym_type_assertion] = STATE(1567), + [sym_as_expression] = STATE(1567), + [sym_internal_module] = STATE(1567), + [sym_type_arguments] = STATE(292), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2575), + [sym_identifier] = ACTIONS(567), + [anon_sym_export] = ACTIONS(531), + [anon_sym_namespace] = ACTIONS(533), + [anon_sym_LBRACE] = ACTIONS(571), + [anon_sym_type] = ACTIONS(531), [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(597), + [anon_sym_import] = ACTIONS(539), [anon_sym_BANG] = ACTIONS(29), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_await] = ACTIONS(39), @@ -41749,9 +43138,9 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(601), - [anon_sym_async] = ACTIONS(603), - [anon_sym_function] = ACTIONS(605), + [anon_sym_class] = ACTIONS(545), + [anon_sym_async] = ACTIONS(547), + [anon_sym_function] = ACTIONS(549), [anon_sym_new] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(77), [anon_sym_DASH] = ACTIONS(77), @@ -41772,88 +43161,88 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(589), - [anon_sym_get] = ACTIONS(589), - [anon_sym_set] = ACTIONS(589), - [anon_sym_declare] = ACTIONS(589), - [anon_sym_public] = ACTIONS(589), - [anon_sym_private] = ACTIONS(589), - [anon_sym_protected] = ACTIONS(589), - [anon_sym_module] = ACTIONS(589), - [anon_sym_any] = ACTIONS(589), - [anon_sym_number] = ACTIONS(589), - [anon_sym_boolean] = ACTIONS(589), - [anon_sym_string] = ACTIONS(589), - [anon_sym_symbol] = ACTIONS(589), - [sym_readonly] = ACTIONS(589), + [anon_sym_static] = ACTIONS(531), + [anon_sym_get] = ACTIONS(531), + [anon_sym_set] = ACTIONS(531), + [anon_sym_declare] = ACTIONS(531), + [anon_sym_public] = ACTIONS(531), + [anon_sym_private] = ACTIONS(531), + [anon_sym_protected] = ACTIONS(531), + [anon_sym_module] = ACTIONS(531), + [anon_sym_any] = ACTIONS(531), + [anon_sym_number] = ACTIONS(531), + [anon_sym_boolean] = ACTIONS(531), + [anon_sym_string] = ACTIONS(531), + [anon_sym_symbol] = ACTIONS(531), + [sym_readonly] = ACTIONS(531), }, - [319] = { - [sym_import] = STATE(1498), - [sym_parenthesized_expression] = STATE(764), - [sym__expression] = STATE(1104), - [sym_yield_expression] = STATE(1518), - [sym_object] = STATE(1435), - [sym_array] = STATE(1433), - [sym_class] = STATE(1498), - [sym_function] = STATE(1498), - [sym_generator_function] = STATE(1498), - [sym_arrow_function] = STATE(1498), - [sym__call_signature] = STATE(3145), - [sym_call_expression] = STATE(1498), - [sym_new_expression] = STATE(1518), - [sym_await_expression] = STATE(1518), - [sym_member_expression] = STATE(764), - [sym_subscript_expression] = STATE(764), - [sym_assignment_expression] = STATE(1518), - [sym__augmented_assignment_lhs] = STATE(1925), - [sym_augmented_assignment_expression] = STATE(1518), - [sym_ternary_expression] = STATE(1518), - [sym_binary_expression] = STATE(1518), - [sym_unary_expression] = STATE(1518), - [sym_update_expression] = STATE(1518), - [sym_string] = STATE(1498), - [sym_template_string] = STATE(1498), - [sym_regex] = STATE(1498), - [sym_meta_property] = STATE(1498), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(772), - [sym_type_assertion] = STATE(1518), - [sym_as_expression] = STATE(1518), - [sym_internal_module] = STATE(1518), - [sym_type_arguments] = STATE(349), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2554), - [sym_identifier] = ACTIONS(587), - [anon_sym_export] = ACTIONS(589), - [anon_sym_namespace] = ACTIONS(593), - [anon_sym_LBRACE] = ACTIONS(595), - [anon_sym_type] = ACTIONS(589), - [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(597), - [anon_sym_BANG] = ACTIONS(29), + [334] = { + [sym_import] = STATE(1523), + [sym_parenthesized_expression] = STATE(955), + [sym__expression] = STATE(1438), + [sym_yield_expression] = STATE(1567), + [sym_object] = STATE(1636), + [sym_array] = STATE(1643), + [sym_class] = STATE(1523), + [sym_function] = STATE(1523), + [sym_generator_function] = STATE(1523), + [sym_arrow_function] = STATE(1523), + [sym__call_signature] = STATE(3078), + [sym_call_expression] = STATE(1523), + [sym_new_expression] = STATE(1567), + [sym_await_expression] = STATE(1567), + [sym_member_expression] = STATE(955), + [sym_subscript_expression] = STATE(955), + [sym_assignment_expression] = STATE(1567), + [sym__augmented_assignment_lhs] = STATE(1929), + [sym_augmented_assignment_expression] = STATE(1567), + [sym_ternary_expression] = STATE(1567), + [sym_binary_expression] = STATE(1567), + [sym_unary_expression] = STATE(1567), + [sym_update_expression] = STATE(1567), + [sym_string] = STATE(1523), + [sym_template_string] = STATE(1523), + [sym_regex] = STATE(1523), + [sym_meta_property] = STATE(1523), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(953), + [sym_type_assertion] = STATE(1567), + [sym_as_expression] = STATE(1567), + [sym_internal_module] = STATE(1567), + [sym_type_arguments] = STATE(384), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2575), + [sym_identifier] = ACTIONS(887), + [anon_sym_export] = ACTIONS(635), + [anon_sym_namespace] = ACTIONS(637), + [anon_sym_LBRACE] = ACTIONS(571), + [anon_sym_type] = ACTIONS(635), + [anon_sym_typeof] = ACTIONS(657), + [anon_sym_import] = ACTIONS(539), + [anon_sym_BANG] = ACTIONS(641), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(39), - [anon_sym_yield] = ACTIONS(61), + [anon_sym_await] = ACTIONS(643), + [anon_sym_yield] = ACTIONS(645), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(601), - [anon_sym_async] = ACTIONS(603), - [anon_sym_function] = ACTIONS(605), - [anon_sym_new] = ACTIONS(75), - [anon_sym_PLUS] = ACTIONS(77), - [anon_sym_DASH] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(29), - [anon_sym_void] = ACTIONS(19), - [anon_sym_delete] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_class] = ACTIONS(545), + [anon_sym_async] = ACTIONS(649), + [anon_sym_function] = ACTIONS(549), + [anon_sym_new] = ACTIONS(893), + [anon_sym_PLUS] = ACTIONS(895), + [anon_sym_DASH] = ACTIONS(895), + [anon_sym_TILDE] = ACTIONS(641), + [anon_sym_void] = ACTIONS(657), + [anon_sym_delete] = ACTIONS(657), + [anon_sym_PLUS_PLUS] = ACTIONS(659), + [anon_sym_DASH_DASH] = ACTIONS(659), [anon_sym_DQUOTE] = ACTIONS(81), [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(85), - [sym_number] = ACTIONS(1459), + [sym_number] = ACTIONS(87), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), @@ -41861,83 +43250,83 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(589), - [anon_sym_get] = ACTIONS(589), - [anon_sym_set] = ACTIONS(589), - [anon_sym_declare] = ACTIONS(589), - [anon_sym_public] = ACTIONS(589), - [anon_sym_private] = ACTIONS(589), - [anon_sym_protected] = ACTIONS(589), - [anon_sym_module] = ACTIONS(589), - [anon_sym_any] = ACTIONS(589), - [anon_sym_number] = ACTIONS(589), - [anon_sym_boolean] = ACTIONS(589), - [anon_sym_string] = ACTIONS(589), - [anon_sym_symbol] = ACTIONS(589), - [sym_readonly] = ACTIONS(589), - }, - [320] = { - [sym_import] = STATE(1101), - [sym_parenthesized_expression] = STATE(921), - [sym__expression] = STATE(1302), - [sym_yield_expression] = STATE(1105), - [sym_object] = STATE(1531), - [sym_array] = STATE(1536), - [sym_class] = STATE(1101), - [sym_function] = STATE(1101), - [sym_generator_function] = STATE(1101), - [sym_arrow_function] = STATE(1101), - [sym__call_signature] = STATE(3170), - [sym_call_expression] = STATE(1101), - [sym_new_expression] = STATE(1105), - [sym_await_expression] = STATE(1105), - [sym_member_expression] = STATE(921), - [sym_subscript_expression] = STATE(921), - [sym_assignment_expression] = STATE(1105), - [sym__augmented_assignment_lhs] = STATE(1917), - [sym_augmented_assignment_expression] = STATE(1105), - [sym_ternary_expression] = STATE(1105), - [sym_binary_expression] = STATE(1105), - [sym_unary_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_string] = STATE(1101), - [sym_template_string] = STATE(1101), - [sym_regex] = STATE(1101), - [sym_meta_property] = STATE(1101), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(882), - [sym_type_assertion] = STATE(1105), - [sym_as_expression] = STATE(1105), - [sym_internal_module] = STATE(1105), - [sym_type_arguments] = STATE(355), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2497), + [anon_sym_static] = ACTIONS(635), + [anon_sym_get] = ACTIONS(635), + [anon_sym_set] = ACTIONS(635), + [anon_sym_declare] = ACTIONS(635), + [anon_sym_public] = ACTIONS(635), + [anon_sym_private] = ACTIONS(635), + [anon_sym_protected] = ACTIONS(635), + [anon_sym_module] = ACTIONS(635), + [anon_sym_any] = ACTIONS(635), + [anon_sym_number] = ACTIONS(635), + [anon_sym_boolean] = ACTIONS(635), + [anon_sym_string] = ACTIONS(635), + [anon_sym_symbol] = ACTIONS(635), + [sym_readonly] = ACTIONS(635), + }, + [335] = { + [sym_import] = STATE(1151), + [sym_parenthesized_expression] = STATE(956), + [sym__expression] = STATE(1419), + [sym_yield_expression] = STATE(1144), + [sym_object] = STATE(1653), + [sym_array] = STATE(1660), + [sym_class] = STATE(1151), + [sym_function] = STATE(1151), + [sym_generator_function] = STATE(1151), + [sym_arrow_function] = STATE(1151), + [sym__call_signature] = STATE(3024), + [sym_call_expression] = STATE(1151), + [sym_new_expression] = STATE(1144), + [sym_await_expression] = STATE(1144), + [sym_member_expression] = STATE(956), + [sym_subscript_expression] = STATE(956), + [sym_assignment_expression] = STATE(1144), + [sym__augmented_assignment_lhs] = STATE(1925), + [sym_augmented_assignment_expression] = STATE(1144), + [sym_ternary_expression] = STATE(1144), + [sym_binary_expression] = STATE(1144), + [sym_unary_expression] = STATE(1144), + [sym_update_expression] = STATE(1144), + [sym_string] = STATE(1151), + [sym_template_string] = STATE(1151), + [sym_regex] = STATE(1151), + [sym_meta_property] = STATE(1151), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(950), + [sym_type_assertion] = STATE(1144), + [sym_as_expression] = STATE(1144), + [sym_internal_module] = STATE(1144), + [sym_type_arguments] = STATE(395), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2580), [sym_identifier] = ACTIONS(897), - [anon_sym_export] = ACTIONS(751), - [anon_sym_namespace] = ACTIONS(753), + [anon_sym_export] = ACTIONS(577), + [anon_sym_namespace] = ACTIONS(579), [anon_sym_LBRACE] = ACTIONS(509), - [anon_sym_type] = ACTIONS(751), - [anon_sym_typeof] = ACTIONS(775), + [anon_sym_type] = ACTIONS(577), + [anon_sym_typeof] = ACTIONS(601), [anon_sym_import] = ACTIONS(435), - [anon_sym_BANG] = ACTIONS(757), + [anon_sym_BANG] = ACTIONS(585), [anon_sym_LPAREN] = ACTIONS(515), - [anon_sym_await] = ACTIONS(759), - [anon_sym_yield] = ACTIONS(761), + [anon_sym_await] = ACTIONS(587), + [anon_sym_yield] = ACTIONS(589), [anon_sym_LBRACK] = ACTIONS(517), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(765), + [anon_sym_SLASH] = ACTIONS(449), [anon_sym_class] = ACTIONS(451), - [anon_sym_async] = ACTIONS(767), + [anon_sym_async] = ACTIONS(593), [anon_sym_function] = ACTIONS(455), [anon_sym_new] = ACTIONS(903), [anon_sym_PLUS] = ACTIONS(905), [anon_sym_DASH] = ACTIONS(905), - [anon_sym_TILDE] = ACTIONS(757), - [anon_sym_void] = ACTIONS(775), - [anon_sym_delete] = ACTIONS(775), - [anon_sym_PLUS_PLUS] = ACTIONS(777), - [anon_sym_DASH_DASH] = ACTIONS(777), + [anon_sym_TILDE] = ACTIONS(585), + [anon_sym_void] = ACTIONS(601), + [anon_sym_delete] = ACTIONS(601), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(603), [anon_sym_DQUOTE] = ACTIONS(475), [anon_sym_SQUOTE] = ACTIONS(477), [sym_comment] = ACTIONS(3), @@ -41950,261 +43339,172 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(485), [sym_undefined] = ACTIONS(485), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(751), - [anon_sym_get] = ACTIONS(751), - [anon_sym_set] = ACTIONS(751), - [anon_sym_declare] = ACTIONS(751), - [anon_sym_public] = ACTIONS(751), - [anon_sym_private] = ACTIONS(751), - [anon_sym_protected] = ACTIONS(751), - [anon_sym_module] = ACTIONS(751), - [anon_sym_any] = ACTIONS(751), - [anon_sym_number] = ACTIONS(751), - [anon_sym_boolean] = ACTIONS(751), - [anon_sym_string] = ACTIONS(751), - [anon_sym_symbol] = ACTIONS(751), - [sym_readonly] = ACTIONS(751), - }, - [321] = { - [sym_import] = STATE(1498), - [sym_parenthesized_expression] = STATE(952), - [sym__expression] = STATE(1316), - [sym_yield_expression] = STATE(1518), - [sym_object] = STATE(1677), - [sym_array] = STATE(1671), - [sym_class] = STATE(1498), - [sym_function] = STATE(1498), - [sym_generator_function] = STATE(1498), - [sym_arrow_function] = STATE(1498), - [sym__call_signature] = STATE(3059), - [sym_call_expression] = STATE(1498), - [sym_new_expression] = STATE(1518), - [sym_await_expression] = STATE(1518), - [sym_member_expression] = STATE(952), - [sym_subscript_expression] = STATE(952), - [sym_assignment_expression] = STATE(1518), - [sym__augmented_assignment_lhs] = STATE(1919), - [sym_augmented_assignment_expression] = STATE(1518), - [sym_ternary_expression] = STATE(1518), - [sym_binary_expression] = STATE(1518), - [sym_unary_expression] = STATE(1518), - [sym_update_expression] = STATE(1518), - [sym_string] = STATE(1498), - [sym_template_string] = STATE(1498), - [sym_regex] = STATE(1498), - [sym_meta_property] = STATE(1498), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(946), - [sym_type_assertion] = STATE(1518), - [sym_as_expression] = STATE(1518), - [sym_internal_module] = STATE(1518), - [sym_type_arguments] = STATE(263), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2554), - [sym_identifier] = ACTIONS(869), - [anon_sym_export] = ACTIONS(675), - [anon_sym_namespace] = ACTIONS(677), - [anon_sym_LBRACE] = ACTIONS(595), - [anon_sym_type] = ACTIONS(675), - [anon_sym_typeof] = ACTIONS(697), - [anon_sym_import] = ACTIONS(597), - [anon_sym_BANG] = ACTIONS(681), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(683), - [anon_sym_yield] = ACTIONS(685), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(601), - [anon_sym_async] = ACTIONS(689), - [anon_sym_function] = ACTIONS(605), - [anon_sym_new] = ACTIONS(875), - [anon_sym_PLUS] = ACTIONS(877), - [anon_sym_DASH] = ACTIONS(877), - [anon_sym_TILDE] = ACTIONS(681), - [anon_sym_void] = ACTIONS(697), - [anon_sym_delete] = ACTIONS(697), - [anon_sym_PLUS_PLUS] = ACTIONS(699), - [anon_sym_DASH_DASH] = ACTIONS(699), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(85), - [sym_number] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(675), - [anon_sym_get] = ACTIONS(675), - [anon_sym_set] = ACTIONS(675), - [anon_sym_declare] = ACTIONS(675), - [anon_sym_public] = ACTIONS(675), - [anon_sym_private] = ACTIONS(675), - [anon_sym_protected] = ACTIONS(675), - [anon_sym_module] = ACTIONS(675), - [anon_sym_any] = ACTIONS(675), - [anon_sym_number] = ACTIONS(675), - [anon_sym_boolean] = ACTIONS(675), - [anon_sym_string] = ACTIONS(675), - [anon_sym_symbol] = ACTIONS(675), - [sym_readonly] = ACTIONS(675), + [anon_sym_static] = ACTIONS(577), + [anon_sym_get] = ACTIONS(577), + [anon_sym_set] = ACTIONS(577), + [anon_sym_declare] = ACTIONS(577), + [anon_sym_public] = ACTIONS(577), + [anon_sym_private] = ACTIONS(577), + [anon_sym_protected] = ACTIONS(577), + [anon_sym_module] = ACTIONS(577), + [anon_sym_any] = ACTIONS(577), + [anon_sym_number] = ACTIONS(577), + [anon_sym_boolean] = ACTIONS(577), + [anon_sym_string] = ACTIONS(577), + [anon_sym_symbol] = ACTIONS(577), + [sym_readonly] = ACTIONS(577), }, - [322] = { - [sym_import] = STATE(1498), - [sym_parenthesized_expression] = STATE(764), - [sym__expression] = STATE(1263), - [sym_yield_expression] = STATE(1518), - [sym_object] = STATE(1435), - [sym_array] = STATE(1433), - [sym_class] = STATE(1498), - [sym_function] = STATE(1498), - [sym_generator_function] = STATE(1498), - [sym_arrow_function] = STATE(1498), - [sym__call_signature] = STATE(3145), - [sym_call_expression] = STATE(1498), - [sym_new_expression] = STATE(1518), - [sym_await_expression] = STATE(1518), - [sym_member_expression] = STATE(764), - [sym_subscript_expression] = STATE(764), - [sym_assignment_expression] = STATE(1518), + [336] = { + [sym_import] = STATE(1151), + [sym_parenthesized_expression] = STATE(956), + [sym__expression] = STATE(1418), + [sym_yield_expression] = STATE(1144), + [sym_object] = STATE(1653), + [sym_array] = STATE(1660), + [sym_class] = STATE(1151), + [sym_function] = STATE(1151), + [sym_generator_function] = STATE(1151), + [sym_arrow_function] = STATE(1151), + [sym__call_signature] = STATE(3024), + [sym_call_expression] = STATE(1151), + [sym_new_expression] = STATE(1144), + [sym_await_expression] = STATE(1144), + [sym_member_expression] = STATE(956), + [sym_subscript_expression] = STATE(956), + [sym_assignment_expression] = STATE(1144), [sym__augmented_assignment_lhs] = STATE(1925), - [sym_augmented_assignment_expression] = STATE(1518), - [sym_ternary_expression] = STATE(1518), - [sym_binary_expression] = STATE(1518), - [sym_unary_expression] = STATE(1518), - [sym_update_expression] = STATE(1518), - [sym_string] = STATE(1498), - [sym_template_string] = STATE(1498), - [sym_regex] = STATE(1498), - [sym_meta_property] = STATE(1498), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(772), - [sym_type_assertion] = STATE(1518), - [sym_as_expression] = STATE(1518), - [sym_internal_module] = STATE(1518), - [sym_type_arguments] = STATE(349), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2554), - [sym_identifier] = ACTIONS(587), - [anon_sym_export] = ACTIONS(589), - [anon_sym_namespace] = ACTIONS(593), - [anon_sym_LBRACE] = ACTIONS(595), - [anon_sym_type] = ACTIONS(589), - [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(597), - [anon_sym_BANG] = ACTIONS(29), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(39), - [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(63), + [sym_augmented_assignment_expression] = STATE(1144), + [sym_ternary_expression] = STATE(1144), + [sym_binary_expression] = STATE(1144), + [sym_unary_expression] = STATE(1144), + [sym_update_expression] = STATE(1144), + [sym_string] = STATE(1151), + [sym_template_string] = STATE(1151), + [sym_regex] = STATE(1151), + [sym_meta_property] = STATE(1151), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(950), + [sym_type_assertion] = STATE(1144), + [sym_as_expression] = STATE(1144), + [sym_internal_module] = STATE(1144), + [sym_type_arguments] = STATE(395), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2580), + [sym_identifier] = ACTIONS(897), + [anon_sym_export] = ACTIONS(577), + [anon_sym_namespace] = ACTIONS(579), + [anon_sym_LBRACE] = ACTIONS(509), + [anon_sym_type] = ACTIONS(577), + [anon_sym_typeof] = ACTIONS(601), + [anon_sym_import] = ACTIONS(435), + [anon_sym_BANG] = ACTIONS(585), + [anon_sym_LPAREN] = ACTIONS(515), + [anon_sym_await] = ACTIONS(587), + [anon_sym_yield] = ACTIONS(589), + [anon_sym_LBRACK] = ACTIONS(517), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(601), - [anon_sym_async] = ACTIONS(603), - [anon_sym_function] = ACTIONS(605), - [anon_sym_new] = ACTIONS(75), - [anon_sym_PLUS] = ACTIONS(77), - [anon_sym_DASH] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(29), - [anon_sym_void] = ACTIONS(19), - [anon_sym_delete] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), + [anon_sym_SLASH] = ACTIONS(449), + [anon_sym_class] = ACTIONS(451), + [anon_sym_async] = ACTIONS(593), + [anon_sym_function] = ACTIONS(455), + [anon_sym_new] = ACTIONS(903), + [anon_sym_PLUS] = ACTIONS(905), + [anon_sym_DASH] = ACTIONS(905), + [anon_sym_TILDE] = ACTIONS(585), + [anon_sym_void] = ACTIONS(601), + [anon_sym_delete] = ACTIONS(601), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_DQUOTE] = ACTIONS(475), + [anon_sym_SQUOTE] = ACTIONS(477), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(85), - [sym_number] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), + [anon_sym_BQUOTE] = ACTIONS(479), + [sym_number] = ACTIONS(527), + [sym_this] = ACTIONS(485), + [sym_super] = ACTIONS(485), + [sym_true] = ACTIONS(485), + [sym_false] = ACTIONS(485), + [sym_null] = ACTIONS(485), + [sym_undefined] = ACTIONS(485), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(589), - [anon_sym_get] = ACTIONS(589), - [anon_sym_set] = ACTIONS(589), - [anon_sym_declare] = ACTIONS(589), - [anon_sym_public] = ACTIONS(589), - [anon_sym_private] = ACTIONS(589), - [anon_sym_protected] = ACTIONS(589), - [anon_sym_module] = ACTIONS(589), - [anon_sym_any] = ACTIONS(589), - [anon_sym_number] = ACTIONS(589), - [anon_sym_boolean] = ACTIONS(589), - [anon_sym_string] = ACTIONS(589), - [anon_sym_symbol] = ACTIONS(589), - [sym_readonly] = ACTIONS(589), + [anon_sym_static] = ACTIONS(577), + [anon_sym_get] = ACTIONS(577), + [anon_sym_set] = ACTIONS(577), + [anon_sym_declare] = ACTIONS(577), + [anon_sym_public] = ACTIONS(577), + [anon_sym_private] = ACTIONS(577), + [anon_sym_protected] = ACTIONS(577), + [anon_sym_module] = ACTIONS(577), + [anon_sym_any] = ACTIONS(577), + [anon_sym_number] = ACTIONS(577), + [anon_sym_boolean] = ACTIONS(577), + [anon_sym_string] = ACTIONS(577), + [anon_sym_symbol] = ACTIONS(577), + [sym_readonly] = ACTIONS(577), }, - [323] = { - [sym_import] = STATE(1101), - [sym_parenthesized_expression] = STATE(739), - [sym__expression] = STATE(1243), - [sym_yield_expression] = STATE(1105), - [sym_object] = STATE(1297), - [sym_array] = STATE(1296), - [sym_class] = STATE(1101), - [sym_function] = STATE(1101), - [sym_generator_function] = STATE(1101), - [sym_arrow_function] = STATE(1101), - [sym__call_signature] = STATE(3116), - [sym_call_expression] = STATE(1101), - [sym_new_expression] = STATE(1105), - [sym_await_expression] = STATE(1105), - [sym_member_expression] = STATE(739), - [sym_subscript_expression] = STATE(739), - [sym_assignment_expression] = STATE(1105), - [sym__augmented_assignment_lhs] = STATE(1920), - [sym_augmented_assignment_expression] = STATE(1105), - [sym_ternary_expression] = STATE(1105), - [sym_binary_expression] = STATE(1105), - [sym_unary_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_string] = STATE(1101), - [sym_template_string] = STATE(1101), - [sym_regex] = STATE(1101), - [sym_meta_property] = STATE(1101), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(755), - [sym_type_assertion] = STATE(1105), - [sym_as_expression] = STATE(1105), - [sym_internal_module] = STATE(1105), - [sym_type_arguments] = STATE(361), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2497), - [sym_identifier] = ACTIONS(499), - [anon_sym_export] = ACTIONS(501), - [anon_sym_namespace] = ACTIONS(507), + [337] = { + [sym_import] = STATE(1151), + [sym_parenthesized_expression] = STATE(956), + [sym__expression] = STATE(1417), + [sym_yield_expression] = STATE(1144), + [sym_object] = STATE(1653), + [sym_array] = STATE(1660), + [sym_class] = STATE(1151), + [sym_function] = STATE(1151), + [sym_generator_function] = STATE(1151), + [sym_arrow_function] = STATE(1151), + [sym__call_signature] = STATE(3024), + [sym_call_expression] = STATE(1151), + [sym_new_expression] = STATE(1144), + [sym_await_expression] = STATE(1144), + [sym_member_expression] = STATE(956), + [sym_subscript_expression] = STATE(956), + [sym_assignment_expression] = STATE(1144), + [sym__augmented_assignment_lhs] = STATE(1925), + [sym_augmented_assignment_expression] = STATE(1144), + [sym_ternary_expression] = STATE(1144), + [sym_binary_expression] = STATE(1144), + [sym_unary_expression] = STATE(1144), + [sym_update_expression] = STATE(1144), + [sym_string] = STATE(1151), + [sym_template_string] = STATE(1151), + [sym_regex] = STATE(1151), + [sym_meta_property] = STATE(1151), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(950), + [sym_type_assertion] = STATE(1144), + [sym_as_expression] = STATE(1144), + [sym_internal_module] = STATE(1144), + [sym_type_arguments] = STATE(395), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2580), + [sym_identifier] = ACTIONS(897), + [anon_sym_export] = ACTIONS(577), + [anon_sym_namespace] = ACTIONS(579), [anon_sym_LBRACE] = ACTIONS(509), - [anon_sym_type] = ACTIONS(501), - [anon_sym_typeof] = ACTIONS(471), + [anon_sym_type] = ACTIONS(577), + [anon_sym_typeof] = ACTIONS(601), [anon_sym_import] = ACTIONS(435), - [anon_sym_BANG] = ACTIONS(437), + [anon_sym_BANG] = ACTIONS(585), [anon_sym_LPAREN] = ACTIONS(515), - [anon_sym_await] = ACTIONS(443), - [anon_sym_yield] = ACTIONS(445), + [anon_sym_await] = ACTIONS(587), + [anon_sym_yield] = ACTIONS(589), [anon_sym_LBRACK] = ACTIONS(517), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(449), [anon_sym_class] = ACTIONS(451), - [anon_sym_async] = ACTIONS(521), + [anon_sym_async] = ACTIONS(593), [anon_sym_function] = ACTIONS(455), - [anon_sym_new] = ACTIONS(523), - [anon_sym_PLUS] = ACTIONS(525), - [anon_sym_DASH] = ACTIONS(525), - [anon_sym_TILDE] = ACTIONS(437), - [anon_sym_void] = ACTIONS(471), - [anon_sym_delete] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(473), - [anon_sym_DASH_DASH] = ACTIONS(473), + [anon_sym_new] = ACTIONS(903), + [anon_sym_PLUS] = ACTIONS(905), + [anon_sym_DASH] = ACTIONS(905), + [anon_sym_TILDE] = ACTIONS(585), + [anon_sym_void] = ACTIONS(601), + [anon_sym_delete] = ACTIONS(601), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(603), [anon_sym_DQUOTE] = ACTIONS(475), [anon_sym_SQUOTE] = ACTIONS(477), [sym_comment] = ACTIONS(3), @@ -42217,83 +43517,83 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(485), [sym_undefined] = ACTIONS(485), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(501), - [anon_sym_get] = ACTIONS(501), - [anon_sym_set] = ACTIONS(501), - [anon_sym_declare] = ACTIONS(501), - [anon_sym_public] = ACTIONS(501), - [anon_sym_private] = ACTIONS(501), - [anon_sym_protected] = ACTIONS(501), - [anon_sym_module] = ACTIONS(501), - [anon_sym_any] = ACTIONS(501), - [anon_sym_number] = ACTIONS(501), - [anon_sym_boolean] = ACTIONS(501), - [anon_sym_string] = ACTIONS(501), - [anon_sym_symbol] = ACTIONS(501), - [sym_readonly] = ACTIONS(501), + [anon_sym_static] = ACTIONS(577), + [anon_sym_get] = ACTIONS(577), + [anon_sym_set] = ACTIONS(577), + [anon_sym_declare] = ACTIONS(577), + [anon_sym_public] = ACTIONS(577), + [anon_sym_private] = ACTIONS(577), + [anon_sym_protected] = ACTIONS(577), + [anon_sym_module] = ACTIONS(577), + [anon_sym_any] = ACTIONS(577), + [anon_sym_number] = ACTIONS(577), + [anon_sym_boolean] = ACTIONS(577), + [anon_sym_string] = ACTIONS(577), + [anon_sym_symbol] = ACTIONS(577), + [sym_readonly] = ACTIONS(577), }, - [324] = { - [sym_import] = STATE(1101), - [sym_parenthesized_expression] = STATE(948), - [sym__expression] = STATE(989), - [sym_yield_expression] = STATE(1105), - [sym_object] = STATE(1654), - [sym_array] = STATE(1640), - [sym_class] = STATE(1101), - [sym_function] = STATE(1101), - [sym_generator_function] = STATE(1101), - [sym_arrow_function] = STATE(1101), - [sym__call_signature] = STATE(3002), - [sym_call_expression] = STATE(1101), - [sym_new_expression] = STATE(1105), - [sym_await_expression] = STATE(1105), - [sym_member_expression] = STATE(948), - [sym_subscript_expression] = STATE(948), - [sym_assignment_expression] = STATE(1105), - [sym__augmented_assignment_lhs] = STATE(1921), - [sym_augmented_assignment_expression] = STATE(1105), - [sym_ternary_expression] = STATE(1105), - [sym_binary_expression] = STATE(1105), - [sym_unary_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_string] = STATE(1101), - [sym_template_string] = STATE(1101), - [sym_regex] = STATE(1101), - [sym_meta_property] = STATE(1101), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(949), - [sym_type_assertion] = STATE(1105), - [sym_as_expression] = STATE(1105), - [sym_internal_module] = STATE(1105), - [sym_type_arguments] = STATE(324), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2497), - [sym_identifier] = ACTIONS(859), - [anon_sym_export] = ACTIONS(635), - [anon_sym_namespace] = ACTIONS(637), + [338] = { + [sym_import] = STATE(1151), + [sym_parenthesized_expression] = STATE(956), + [sym__expression] = STATE(1416), + [sym_yield_expression] = STATE(1144), + [sym_object] = STATE(1653), + [sym_array] = STATE(1660), + [sym_class] = STATE(1151), + [sym_function] = STATE(1151), + [sym_generator_function] = STATE(1151), + [sym_arrow_function] = STATE(1151), + [sym__call_signature] = STATE(3024), + [sym_call_expression] = STATE(1151), + [sym_new_expression] = STATE(1144), + [sym_await_expression] = STATE(1144), + [sym_member_expression] = STATE(956), + [sym_subscript_expression] = STATE(956), + [sym_assignment_expression] = STATE(1144), + [sym__augmented_assignment_lhs] = STATE(1925), + [sym_augmented_assignment_expression] = STATE(1144), + [sym_ternary_expression] = STATE(1144), + [sym_binary_expression] = STATE(1144), + [sym_unary_expression] = STATE(1144), + [sym_update_expression] = STATE(1144), + [sym_string] = STATE(1151), + [sym_template_string] = STATE(1151), + [sym_regex] = STATE(1151), + [sym_meta_property] = STATE(1151), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(950), + [sym_type_assertion] = STATE(1144), + [sym_as_expression] = STATE(1144), + [sym_internal_module] = STATE(1144), + [sym_type_arguments] = STATE(395), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2580), + [sym_identifier] = ACTIONS(897), + [anon_sym_export] = ACTIONS(577), + [anon_sym_namespace] = ACTIONS(579), [anon_sym_LBRACE] = ACTIONS(509), - [anon_sym_type] = ACTIONS(635), - [anon_sym_typeof] = ACTIONS(659), + [anon_sym_type] = ACTIONS(577), + [anon_sym_typeof] = ACTIONS(601), [anon_sym_import] = ACTIONS(435), - [anon_sym_BANG] = ACTIONS(643), + [anon_sym_BANG] = ACTIONS(585), [anon_sym_LPAREN] = ACTIONS(515), - [anon_sym_await] = ACTIONS(645), - [anon_sym_yield] = ACTIONS(647), + [anon_sym_await] = ACTIONS(587), + [anon_sym_yield] = ACTIONS(589), [anon_sym_LBRACK] = ACTIONS(517), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(449), [anon_sym_class] = ACTIONS(451), - [anon_sym_async] = ACTIONS(651), + [anon_sym_async] = ACTIONS(593), [anon_sym_function] = ACTIONS(455), - [anon_sym_new] = ACTIONS(865), - [anon_sym_PLUS] = ACTIONS(867), - [anon_sym_DASH] = ACTIONS(867), - [anon_sym_TILDE] = ACTIONS(643), - [anon_sym_void] = ACTIONS(659), - [anon_sym_delete] = ACTIONS(659), - [anon_sym_PLUS_PLUS] = ACTIONS(661), - [anon_sym_DASH_DASH] = ACTIONS(661), + [anon_sym_new] = ACTIONS(903), + [anon_sym_PLUS] = ACTIONS(905), + [anon_sym_DASH] = ACTIONS(905), + [anon_sym_TILDE] = ACTIONS(585), + [anon_sym_void] = ACTIONS(601), + [anon_sym_delete] = ACTIONS(601), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(603), [anon_sym_DQUOTE] = ACTIONS(475), [anon_sym_SQUOTE] = ACTIONS(477), [sym_comment] = ACTIONS(3), @@ -42306,83 +43606,83 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(485), [sym_undefined] = ACTIONS(485), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(635), - [anon_sym_get] = ACTIONS(635), - [anon_sym_set] = ACTIONS(635), - [anon_sym_declare] = ACTIONS(635), - [anon_sym_public] = ACTIONS(635), - [anon_sym_private] = ACTIONS(635), - [anon_sym_protected] = ACTIONS(635), - [anon_sym_module] = ACTIONS(635), - [anon_sym_any] = ACTIONS(635), - [anon_sym_number] = ACTIONS(635), - [anon_sym_boolean] = ACTIONS(635), - [anon_sym_string] = ACTIONS(635), - [anon_sym_symbol] = ACTIONS(635), - [sym_readonly] = ACTIONS(635), + [anon_sym_static] = ACTIONS(577), + [anon_sym_get] = ACTIONS(577), + [anon_sym_set] = ACTIONS(577), + [anon_sym_declare] = ACTIONS(577), + [anon_sym_public] = ACTIONS(577), + [anon_sym_private] = ACTIONS(577), + [anon_sym_protected] = ACTIONS(577), + [anon_sym_module] = ACTIONS(577), + [anon_sym_any] = ACTIONS(577), + [anon_sym_number] = ACTIONS(577), + [anon_sym_boolean] = ACTIONS(577), + [anon_sym_string] = ACTIONS(577), + [anon_sym_symbol] = ACTIONS(577), + [sym_readonly] = ACTIONS(577), }, - [325] = { - [sym_import] = STATE(1101), - [sym_parenthesized_expression] = STATE(948), - [sym__expression] = STATE(1404), - [sym_yield_expression] = STATE(1105), - [sym_object] = STATE(1654), - [sym_array] = STATE(1640), - [sym_class] = STATE(1101), - [sym_function] = STATE(1101), - [sym_generator_function] = STATE(1101), - [sym_arrow_function] = STATE(1101), - [sym__call_signature] = STATE(3002), - [sym_call_expression] = STATE(1101), - [sym_new_expression] = STATE(1105), - [sym_await_expression] = STATE(1105), - [sym_member_expression] = STATE(948), - [sym_subscript_expression] = STATE(948), - [sym_assignment_expression] = STATE(1105), - [sym__augmented_assignment_lhs] = STATE(1921), - [sym_augmented_assignment_expression] = STATE(1105), - [sym_ternary_expression] = STATE(1105), - [sym_binary_expression] = STATE(1105), - [sym_unary_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_string] = STATE(1101), - [sym_template_string] = STATE(1101), - [sym_regex] = STATE(1101), - [sym_meta_property] = STATE(1101), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(949), - [sym_type_assertion] = STATE(1105), - [sym_as_expression] = STATE(1105), - [sym_internal_module] = STATE(1105), - [sym_type_arguments] = STATE(324), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2497), - [sym_identifier] = ACTIONS(859), - [anon_sym_export] = ACTIONS(635), - [anon_sym_namespace] = ACTIONS(637), + [339] = { + [sym_import] = STATE(1151), + [sym_parenthesized_expression] = STATE(956), + [sym__expression] = STATE(1415), + [sym_yield_expression] = STATE(1144), + [sym_object] = STATE(1653), + [sym_array] = STATE(1660), + [sym_class] = STATE(1151), + [sym_function] = STATE(1151), + [sym_generator_function] = STATE(1151), + [sym_arrow_function] = STATE(1151), + [sym__call_signature] = STATE(3024), + [sym_call_expression] = STATE(1151), + [sym_new_expression] = STATE(1144), + [sym_await_expression] = STATE(1144), + [sym_member_expression] = STATE(956), + [sym_subscript_expression] = STATE(956), + [sym_assignment_expression] = STATE(1144), + [sym__augmented_assignment_lhs] = STATE(1925), + [sym_augmented_assignment_expression] = STATE(1144), + [sym_ternary_expression] = STATE(1144), + [sym_binary_expression] = STATE(1144), + [sym_unary_expression] = STATE(1144), + [sym_update_expression] = STATE(1144), + [sym_string] = STATE(1151), + [sym_template_string] = STATE(1151), + [sym_regex] = STATE(1151), + [sym_meta_property] = STATE(1151), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(950), + [sym_type_assertion] = STATE(1144), + [sym_as_expression] = STATE(1144), + [sym_internal_module] = STATE(1144), + [sym_type_arguments] = STATE(395), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2580), + [sym_identifier] = ACTIONS(897), + [anon_sym_export] = ACTIONS(577), + [anon_sym_namespace] = ACTIONS(579), [anon_sym_LBRACE] = ACTIONS(509), - [anon_sym_type] = ACTIONS(635), - [anon_sym_typeof] = ACTIONS(659), + [anon_sym_type] = ACTIONS(577), + [anon_sym_typeof] = ACTIONS(601), [anon_sym_import] = ACTIONS(435), - [anon_sym_BANG] = ACTIONS(643), + [anon_sym_BANG] = ACTIONS(585), [anon_sym_LPAREN] = ACTIONS(515), - [anon_sym_await] = ACTIONS(645), - [anon_sym_yield] = ACTIONS(647), + [anon_sym_await] = ACTIONS(587), + [anon_sym_yield] = ACTIONS(589), [anon_sym_LBRACK] = ACTIONS(517), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(449), [anon_sym_class] = ACTIONS(451), - [anon_sym_async] = ACTIONS(651), + [anon_sym_async] = ACTIONS(593), [anon_sym_function] = ACTIONS(455), - [anon_sym_new] = ACTIONS(865), - [anon_sym_PLUS] = ACTIONS(867), - [anon_sym_DASH] = ACTIONS(867), - [anon_sym_TILDE] = ACTIONS(643), - [anon_sym_void] = ACTIONS(659), - [anon_sym_delete] = ACTIONS(659), - [anon_sym_PLUS_PLUS] = ACTIONS(661), - [anon_sym_DASH_DASH] = ACTIONS(661), + [anon_sym_new] = ACTIONS(903), + [anon_sym_PLUS] = ACTIONS(905), + [anon_sym_DASH] = ACTIONS(905), + [anon_sym_TILDE] = ACTIONS(585), + [anon_sym_void] = ACTIONS(601), + [anon_sym_delete] = ACTIONS(601), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(603), [anon_sym_DQUOTE] = ACTIONS(475), [anon_sym_SQUOTE] = ACTIONS(477), [sym_comment] = ACTIONS(3), @@ -42395,261 +43695,261 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(485), [sym_undefined] = ACTIONS(485), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(635), - [anon_sym_get] = ACTIONS(635), - [anon_sym_set] = ACTIONS(635), - [anon_sym_declare] = ACTIONS(635), - [anon_sym_public] = ACTIONS(635), - [anon_sym_private] = ACTIONS(635), - [anon_sym_protected] = ACTIONS(635), - [anon_sym_module] = ACTIONS(635), - [anon_sym_any] = ACTIONS(635), - [anon_sym_number] = ACTIONS(635), - [anon_sym_boolean] = ACTIONS(635), - [anon_sym_string] = ACTIONS(635), - [anon_sym_symbol] = ACTIONS(635), - [sym_readonly] = ACTIONS(635), + [anon_sym_static] = ACTIONS(577), + [anon_sym_get] = ACTIONS(577), + [anon_sym_set] = ACTIONS(577), + [anon_sym_declare] = ACTIONS(577), + [anon_sym_public] = ACTIONS(577), + [anon_sym_private] = ACTIONS(577), + [anon_sym_protected] = ACTIONS(577), + [anon_sym_module] = ACTIONS(577), + [anon_sym_any] = ACTIONS(577), + [anon_sym_number] = ACTIONS(577), + [anon_sym_boolean] = ACTIONS(577), + [anon_sym_string] = ACTIONS(577), + [anon_sym_symbol] = ACTIONS(577), + [sym_readonly] = ACTIONS(577), }, - [326] = { - [sym_import] = STATE(1498), - [sym_parenthesized_expression] = STATE(764), - [sym__expression] = STATE(1144), - [sym_yield_expression] = STATE(1518), - [sym_object] = STATE(1435), - [sym_array] = STATE(1433), - [sym_class] = STATE(1498), - [sym_function] = STATE(1498), - [sym_generator_function] = STATE(1498), - [sym_arrow_function] = STATE(1498), - [sym__call_signature] = STATE(3145), - [sym_call_expression] = STATE(1498), - [sym_new_expression] = STATE(1518), - [sym_await_expression] = STATE(1518), - [sym_member_expression] = STATE(764), - [sym_subscript_expression] = STATE(764), - [sym_assignment_expression] = STATE(1518), + [340] = { + [sym_import] = STATE(1151), + [sym_parenthesized_expression] = STATE(956), + [sym__expression] = STATE(1407), + [sym_yield_expression] = STATE(1144), + [sym_object] = STATE(1653), + [sym_array] = STATE(1660), + [sym_class] = STATE(1151), + [sym_function] = STATE(1151), + [sym_generator_function] = STATE(1151), + [sym_arrow_function] = STATE(1151), + [sym__call_signature] = STATE(3024), + [sym_call_expression] = STATE(1151), + [sym_new_expression] = STATE(1144), + [sym_await_expression] = STATE(1144), + [sym_member_expression] = STATE(956), + [sym_subscript_expression] = STATE(956), + [sym_assignment_expression] = STATE(1144), [sym__augmented_assignment_lhs] = STATE(1925), - [sym_augmented_assignment_expression] = STATE(1518), - [sym_ternary_expression] = STATE(1518), - [sym_binary_expression] = STATE(1518), - [sym_unary_expression] = STATE(1518), - [sym_update_expression] = STATE(1518), - [sym_string] = STATE(1498), - [sym_template_string] = STATE(1498), - [sym_regex] = STATE(1498), - [sym_meta_property] = STATE(1498), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(772), - [sym_type_assertion] = STATE(1518), - [sym_as_expression] = STATE(1518), - [sym_internal_module] = STATE(1518), - [sym_type_arguments] = STATE(349), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2554), - [sym_identifier] = ACTIONS(1473), - [anon_sym_export] = ACTIONS(589), - [anon_sym_namespace] = ACTIONS(593), - [anon_sym_LBRACE] = ACTIONS(595), - [anon_sym_type] = ACTIONS(589), - [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(597), - [anon_sym_BANG] = ACTIONS(29), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(39), - [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(63), + [sym_augmented_assignment_expression] = STATE(1144), + [sym_ternary_expression] = STATE(1144), + [sym_binary_expression] = STATE(1144), + [sym_unary_expression] = STATE(1144), + [sym_update_expression] = STATE(1144), + [sym_string] = STATE(1151), + [sym_template_string] = STATE(1151), + [sym_regex] = STATE(1151), + [sym_meta_property] = STATE(1151), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(950), + [sym_type_assertion] = STATE(1144), + [sym_as_expression] = STATE(1144), + [sym_internal_module] = STATE(1144), + [sym_type_arguments] = STATE(395), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2580), + [sym_identifier] = ACTIONS(897), + [anon_sym_export] = ACTIONS(577), + [anon_sym_namespace] = ACTIONS(579), + [anon_sym_LBRACE] = ACTIONS(509), + [anon_sym_type] = ACTIONS(577), + [anon_sym_typeof] = ACTIONS(601), + [anon_sym_import] = ACTIONS(435), + [anon_sym_BANG] = ACTIONS(585), + [anon_sym_LPAREN] = ACTIONS(515), + [anon_sym_await] = ACTIONS(587), + [anon_sym_yield] = ACTIONS(589), + [anon_sym_LBRACK] = ACTIONS(517), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(601), - [anon_sym_async] = ACTIONS(603), - [anon_sym_function] = ACTIONS(605), - [anon_sym_new] = ACTIONS(75), - [anon_sym_PLUS] = ACTIONS(77), - [anon_sym_DASH] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(29), - [anon_sym_void] = ACTIONS(19), - [anon_sym_delete] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), + [anon_sym_SLASH] = ACTIONS(449), + [anon_sym_class] = ACTIONS(451), + [anon_sym_async] = ACTIONS(593), + [anon_sym_function] = ACTIONS(455), + [anon_sym_new] = ACTIONS(903), + [anon_sym_PLUS] = ACTIONS(905), + [anon_sym_DASH] = ACTIONS(905), + [anon_sym_TILDE] = ACTIONS(585), + [anon_sym_void] = ACTIONS(601), + [anon_sym_delete] = ACTIONS(601), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_DQUOTE] = ACTIONS(475), + [anon_sym_SQUOTE] = ACTIONS(477), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(85), - [sym_number] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), + [anon_sym_BQUOTE] = ACTIONS(479), + [sym_number] = ACTIONS(527), + [sym_this] = ACTIONS(485), + [sym_super] = ACTIONS(485), + [sym_true] = ACTIONS(485), + [sym_false] = ACTIONS(485), + [sym_null] = ACTIONS(485), + [sym_undefined] = ACTIONS(485), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(589), - [anon_sym_get] = ACTIONS(589), - [anon_sym_set] = ACTIONS(589), - [anon_sym_declare] = ACTIONS(589), - [anon_sym_public] = ACTIONS(589), - [anon_sym_private] = ACTIONS(589), - [anon_sym_protected] = ACTIONS(589), - [anon_sym_module] = ACTIONS(589), - [anon_sym_any] = ACTIONS(589), - [anon_sym_number] = ACTIONS(589), - [anon_sym_boolean] = ACTIONS(589), - [anon_sym_string] = ACTIONS(589), - [anon_sym_symbol] = ACTIONS(589), - [sym_readonly] = ACTIONS(589), + [anon_sym_static] = ACTIONS(577), + [anon_sym_get] = ACTIONS(577), + [anon_sym_set] = ACTIONS(577), + [anon_sym_declare] = ACTIONS(577), + [anon_sym_public] = ACTIONS(577), + [anon_sym_private] = ACTIONS(577), + [anon_sym_protected] = ACTIONS(577), + [anon_sym_module] = ACTIONS(577), + [anon_sym_any] = ACTIONS(577), + [anon_sym_number] = ACTIONS(577), + [anon_sym_boolean] = ACTIONS(577), + [anon_sym_string] = ACTIONS(577), + [anon_sym_symbol] = ACTIONS(577), + [sym_readonly] = ACTIONS(577), }, - [327] = { - [sym_import] = STATE(1498), - [sym_parenthesized_expression] = STATE(764), - [sym__expression] = STATE(1135), - [sym_yield_expression] = STATE(1518), - [sym_object] = STATE(1435), - [sym_array] = STATE(1433), - [sym_class] = STATE(1498), - [sym_function] = STATE(1498), - [sym_generator_function] = STATE(1498), - [sym_arrow_function] = STATE(1498), - [sym__call_signature] = STATE(3145), - [sym_call_expression] = STATE(1498), - [sym_new_expression] = STATE(1518), - [sym_await_expression] = STATE(1518), - [sym_member_expression] = STATE(764), - [sym_subscript_expression] = STATE(764), - [sym_assignment_expression] = STATE(1518), + [341] = { + [sym_import] = STATE(1151), + [sym_parenthesized_expression] = STATE(956), + [sym__expression] = STATE(1406), + [sym_yield_expression] = STATE(1144), + [sym_object] = STATE(1653), + [sym_array] = STATE(1660), + [sym_class] = STATE(1151), + [sym_function] = STATE(1151), + [sym_generator_function] = STATE(1151), + [sym_arrow_function] = STATE(1151), + [sym__call_signature] = STATE(3024), + [sym_call_expression] = STATE(1151), + [sym_new_expression] = STATE(1144), + [sym_await_expression] = STATE(1144), + [sym_member_expression] = STATE(956), + [sym_subscript_expression] = STATE(956), + [sym_assignment_expression] = STATE(1144), [sym__augmented_assignment_lhs] = STATE(1925), - [sym_augmented_assignment_expression] = STATE(1518), - [sym_ternary_expression] = STATE(1518), - [sym_binary_expression] = STATE(1518), - [sym_unary_expression] = STATE(1518), - [sym_update_expression] = STATE(1518), - [sym_string] = STATE(1498), - [sym_template_string] = STATE(1498), - [sym_regex] = STATE(1498), - [sym_meta_property] = STATE(1498), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(772), - [sym_type_assertion] = STATE(1518), - [sym_as_expression] = STATE(1518), - [sym_internal_module] = STATE(1518), - [sym_type_arguments] = STATE(349), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2554), - [sym_identifier] = ACTIONS(587), - [anon_sym_export] = ACTIONS(589), - [anon_sym_namespace] = ACTIONS(593), - [anon_sym_LBRACE] = ACTIONS(595), - [anon_sym_type] = ACTIONS(589), - [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(597), - [anon_sym_BANG] = ACTIONS(29), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(39), - [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(63), + [sym_augmented_assignment_expression] = STATE(1144), + [sym_ternary_expression] = STATE(1144), + [sym_binary_expression] = STATE(1144), + [sym_unary_expression] = STATE(1144), + [sym_update_expression] = STATE(1144), + [sym_string] = STATE(1151), + [sym_template_string] = STATE(1151), + [sym_regex] = STATE(1151), + [sym_meta_property] = STATE(1151), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(950), + [sym_type_assertion] = STATE(1144), + [sym_as_expression] = STATE(1144), + [sym_internal_module] = STATE(1144), + [sym_type_arguments] = STATE(395), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2580), + [sym_identifier] = ACTIONS(897), + [anon_sym_export] = ACTIONS(577), + [anon_sym_namespace] = ACTIONS(579), + [anon_sym_LBRACE] = ACTIONS(509), + [anon_sym_type] = ACTIONS(577), + [anon_sym_typeof] = ACTIONS(601), + [anon_sym_import] = ACTIONS(435), + [anon_sym_BANG] = ACTIONS(585), + [anon_sym_LPAREN] = ACTIONS(515), + [anon_sym_await] = ACTIONS(587), + [anon_sym_yield] = ACTIONS(589), + [anon_sym_LBRACK] = ACTIONS(517), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(601), - [anon_sym_async] = ACTIONS(603), - [anon_sym_function] = ACTIONS(605), - [anon_sym_new] = ACTIONS(75), - [anon_sym_PLUS] = ACTIONS(77), - [anon_sym_DASH] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(29), - [anon_sym_void] = ACTIONS(19), - [anon_sym_delete] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), + [anon_sym_SLASH] = ACTIONS(449), + [anon_sym_class] = ACTIONS(451), + [anon_sym_async] = ACTIONS(593), + [anon_sym_function] = ACTIONS(455), + [anon_sym_new] = ACTIONS(903), + [anon_sym_PLUS] = ACTIONS(905), + [anon_sym_DASH] = ACTIONS(905), + [anon_sym_TILDE] = ACTIONS(585), + [anon_sym_void] = ACTIONS(601), + [anon_sym_delete] = ACTIONS(601), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_DQUOTE] = ACTIONS(475), + [anon_sym_SQUOTE] = ACTIONS(477), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(85), - [sym_number] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), + [anon_sym_BQUOTE] = ACTIONS(479), + [sym_number] = ACTIONS(527), + [sym_this] = ACTIONS(485), + [sym_super] = ACTIONS(485), + [sym_true] = ACTIONS(485), + [sym_false] = ACTIONS(485), + [sym_null] = ACTIONS(485), + [sym_undefined] = ACTIONS(485), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(589), - [anon_sym_get] = ACTIONS(589), - [anon_sym_set] = ACTIONS(589), - [anon_sym_declare] = ACTIONS(589), - [anon_sym_public] = ACTIONS(589), - [anon_sym_private] = ACTIONS(589), - [anon_sym_protected] = ACTIONS(589), - [anon_sym_module] = ACTIONS(589), - [anon_sym_any] = ACTIONS(589), - [anon_sym_number] = ACTIONS(589), - [anon_sym_boolean] = ACTIONS(589), - [anon_sym_string] = ACTIONS(589), - [anon_sym_symbol] = ACTIONS(589), - [sym_readonly] = ACTIONS(589), + [anon_sym_static] = ACTIONS(577), + [anon_sym_get] = ACTIONS(577), + [anon_sym_set] = ACTIONS(577), + [anon_sym_declare] = ACTIONS(577), + [anon_sym_public] = ACTIONS(577), + [anon_sym_private] = ACTIONS(577), + [anon_sym_protected] = ACTIONS(577), + [anon_sym_module] = ACTIONS(577), + [anon_sym_any] = ACTIONS(577), + [anon_sym_number] = ACTIONS(577), + [anon_sym_boolean] = ACTIONS(577), + [anon_sym_string] = ACTIONS(577), + [anon_sym_symbol] = ACTIONS(577), + [sym_readonly] = ACTIONS(577), }, - [328] = { - [sym_import] = STATE(1101), - [sym_parenthesized_expression] = STATE(921), - [sym__expression] = STATE(1298), - [sym_yield_expression] = STATE(1105), - [sym_object] = STATE(1531), - [sym_array] = STATE(1536), - [sym_class] = STATE(1101), - [sym_function] = STATE(1101), - [sym_generator_function] = STATE(1101), - [sym_arrow_function] = STATE(1101), - [sym__call_signature] = STATE(3170), - [sym_call_expression] = STATE(1101), - [sym_new_expression] = STATE(1105), - [sym_await_expression] = STATE(1105), - [sym_member_expression] = STATE(921), - [sym_subscript_expression] = STATE(921), - [sym_assignment_expression] = STATE(1105), - [sym__augmented_assignment_lhs] = STATE(1917), - [sym_augmented_assignment_expression] = STATE(1105), - [sym_ternary_expression] = STATE(1105), - [sym_binary_expression] = STATE(1105), - [sym_unary_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_string] = STATE(1101), - [sym_template_string] = STATE(1101), - [sym_regex] = STATE(1101), - [sym_meta_property] = STATE(1101), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(882), - [sym_type_assertion] = STATE(1105), - [sym_as_expression] = STATE(1105), - [sym_internal_module] = STATE(1105), - [sym_type_arguments] = STATE(355), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2497), + [342] = { + [sym_import] = STATE(1151), + [sym_parenthesized_expression] = STATE(956), + [sym__expression] = STATE(1402), + [sym_yield_expression] = STATE(1144), + [sym_object] = STATE(1653), + [sym_array] = STATE(1660), + [sym_class] = STATE(1151), + [sym_function] = STATE(1151), + [sym_generator_function] = STATE(1151), + [sym_arrow_function] = STATE(1151), + [sym__call_signature] = STATE(3024), + [sym_call_expression] = STATE(1151), + [sym_new_expression] = STATE(1144), + [sym_await_expression] = STATE(1144), + [sym_member_expression] = STATE(956), + [sym_subscript_expression] = STATE(956), + [sym_assignment_expression] = STATE(1144), + [sym__augmented_assignment_lhs] = STATE(1925), + [sym_augmented_assignment_expression] = STATE(1144), + [sym_ternary_expression] = STATE(1144), + [sym_binary_expression] = STATE(1144), + [sym_unary_expression] = STATE(1144), + [sym_update_expression] = STATE(1144), + [sym_string] = STATE(1151), + [sym_template_string] = STATE(1151), + [sym_regex] = STATE(1151), + [sym_meta_property] = STATE(1151), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(950), + [sym_type_assertion] = STATE(1144), + [sym_as_expression] = STATE(1144), + [sym_internal_module] = STATE(1144), + [sym_type_arguments] = STATE(395), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2580), [sym_identifier] = ACTIONS(897), - [anon_sym_export] = ACTIONS(751), - [anon_sym_namespace] = ACTIONS(753), + [anon_sym_export] = ACTIONS(577), + [anon_sym_namespace] = ACTIONS(579), [anon_sym_LBRACE] = ACTIONS(509), - [anon_sym_type] = ACTIONS(751), - [anon_sym_typeof] = ACTIONS(775), + [anon_sym_type] = ACTIONS(577), + [anon_sym_typeof] = ACTIONS(601), [anon_sym_import] = ACTIONS(435), - [anon_sym_BANG] = ACTIONS(757), + [anon_sym_BANG] = ACTIONS(585), [anon_sym_LPAREN] = ACTIONS(515), - [anon_sym_await] = ACTIONS(759), - [anon_sym_yield] = ACTIONS(761), + [anon_sym_await] = ACTIONS(587), + [anon_sym_yield] = ACTIONS(589), [anon_sym_LBRACK] = ACTIONS(517), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(765), + [anon_sym_SLASH] = ACTIONS(449), [anon_sym_class] = ACTIONS(451), - [anon_sym_async] = ACTIONS(767), + [anon_sym_async] = ACTIONS(593), [anon_sym_function] = ACTIONS(455), [anon_sym_new] = ACTIONS(903), [anon_sym_PLUS] = ACTIONS(905), [anon_sym_DASH] = ACTIONS(905), - [anon_sym_TILDE] = ACTIONS(757), - [anon_sym_void] = ACTIONS(775), - [anon_sym_delete] = ACTIONS(775), - [anon_sym_PLUS_PLUS] = ACTIONS(777), - [anon_sym_DASH_DASH] = ACTIONS(777), + [anon_sym_TILDE] = ACTIONS(585), + [anon_sym_void] = ACTIONS(601), + [anon_sym_delete] = ACTIONS(601), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(603), [anon_sym_DQUOTE] = ACTIONS(475), [anon_sym_SQUOTE] = ACTIONS(477), [sym_comment] = ACTIONS(3), @@ -42662,177 +43962,177 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(485), [sym_undefined] = ACTIONS(485), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(751), - [anon_sym_get] = ACTIONS(751), - [anon_sym_set] = ACTIONS(751), - [anon_sym_declare] = ACTIONS(751), - [anon_sym_public] = ACTIONS(751), - [anon_sym_private] = ACTIONS(751), - [anon_sym_protected] = ACTIONS(751), - [anon_sym_module] = ACTIONS(751), - [anon_sym_any] = ACTIONS(751), - [anon_sym_number] = ACTIONS(751), - [anon_sym_boolean] = ACTIONS(751), - [anon_sym_string] = ACTIONS(751), - [anon_sym_symbol] = ACTIONS(751), - [sym_readonly] = ACTIONS(751), + [anon_sym_static] = ACTIONS(577), + [anon_sym_get] = ACTIONS(577), + [anon_sym_set] = ACTIONS(577), + [anon_sym_declare] = ACTIONS(577), + [anon_sym_public] = ACTIONS(577), + [anon_sym_private] = ACTIONS(577), + [anon_sym_protected] = ACTIONS(577), + [anon_sym_module] = ACTIONS(577), + [anon_sym_any] = ACTIONS(577), + [anon_sym_number] = ACTIONS(577), + [anon_sym_boolean] = ACTIONS(577), + [anon_sym_string] = ACTIONS(577), + [anon_sym_symbol] = ACTIONS(577), + [sym_readonly] = ACTIONS(577), }, - [329] = { - [sym_import] = STATE(1498), - [sym_parenthesized_expression] = STATE(952), - [sym__expression] = STATE(1442), - [sym_yield_expression] = STATE(1518), - [sym_object] = STATE(1677), - [sym_array] = STATE(1671), - [sym_class] = STATE(1498), - [sym_function] = STATE(1498), - [sym_generator_function] = STATE(1498), - [sym_arrow_function] = STATE(1498), - [sym__call_signature] = STATE(3059), - [sym_call_expression] = STATE(1498), - [sym_new_expression] = STATE(1518), - [sym_await_expression] = STATE(1518), - [sym_member_expression] = STATE(952), - [sym_subscript_expression] = STATE(952), - [sym_assignment_expression] = STATE(1518), - [sym__augmented_assignment_lhs] = STATE(1919), - [sym_augmented_assignment_expression] = STATE(1518), - [sym_ternary_expression] = STATE(1518), - [sym_binary_expression] = STATE(1518), - [sym_unary_expression] = STATE(1518), - [sym_update_expression] = STATE(1518), - [sym_string] = STATE(1498), - [sym_template_string] = STATE(1498), - [sym_regex] = STATE(1498), - [sym_meta_property] = STATE(1498), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(946), - [sym_type_assertion] = STATE(1518), - [sym_as_expression] = STATE(1518), - [sym_internal_module] = STATE(1518), - [sym_type_arguments] = STATE(263), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2554), - [sym_identifier] = ACTIONS(869), - [anon_sym_export] = ACTIONS(675), - [anon_sym_namespace] = ACTIONS(677), - [anon_sym_LBRACE] = ACTIONS(595), - [anon_sym_type] = ACTIONS(675), - [anon_sym_typeof] = ACTIONS(697), - [anon_sym_import] = ACTIONS(597), - [anon_sym_BANG] = ACTIONS(681), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(683), - [anon_sym_yield] = ACTIONS(685), - [anon_sym_LBRACK] = ACTIONS(63), + [343] = { + [sym_import] = STATE(1151), + [sym_parenthesized_expression] = STATE(759), + [sym__expression] = STATE(1055), + [sym_yield_expression] = STATE(1144), + [sym_object] = STATE(1257), + [sym_array] = STATE(1254), + [sym_class] = STATE(1151), + [sym_function] = STATE(1151), + [sym_generator_function] = STATE(1151), + [sym_arrow_function] = STATE(1151), + [sym__call_signature] = STATE(3082), + [sym_call_expression] = STATE(1151), + [sym_new_expression] = STATE(1144), + [sym_await_expression] = STATE(1144), + [sym_member_expression] = STATE(759), + [sym_subscript_expression] = STATE(759), + [sym_assignment_expression] = STATE(1144), + [sym__augmented_assignment_lhs] = STATE(1924), + [sym_augmented_assignment_expression] = STATE(1144), + [sym_ternary_expression] = STATE(1144), + [sym_binary_expression] = STATE(1144), + [sym_unary_expression] = STATE(1144), + [sym_update_expression] = STATE(1144), + [sym_string] = STATE(1151), + [sym_template_string] = STATE(1151), + [sym_regex] = STATE(1151), + [sym_meta_property] = STATE(1151), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(754), + [sym_type_assertion] = STATE(1144), + [sym_as_expression] = STATE(1144), + [sym_internal_module] = STATE(1144), + [sym_type_arguments] = STATE(326), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2580), + [sym_identifier] = ACTIONS(499), + [anon_sym_export] = ACTIONS(501), + [anon_sym_namespace] = ACTIONS(507), + [anon_sym_LBRACE] = ACTIONS(509), + [anon_sym_type] = ACTIONS(501), + [anon_sym_typeof] = ACTIONS(471), + [anon_sym_import] = ACTIONS(435), + [anon_sym_BANG] = ACTIONS(437), + [anon_sym_LPAREN] = ACTIONS(515), + [anon_sym_await] = ACTIONS(443), + [anon_sym_yield] = ACTIONS(445), + [anon_sym_LBRACK] = ACTIONS(517), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(601), - [anon_sym_async] = ACTIONS(689), - [anon_sym_function] = ACTIONS(605), - [anon_sym_new] = ACTIONS(875), - [anon_sym_PLUS] = ACTIONS(877), - [anon_sym_DASH] = ACTIONS(877), - [anon_sym_TILDE] = ACTIONS(681), - [anon_sym_void] = ACTIONS(697), - [anon_sym_delete] = ACTIONS(697), - [anon_sym_PLUS_PLUS] = ACTIONS(699), - [anon_sym_DASH_DASH] = ACTIONS(699), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), + [anon_sym_SLASH] = ACTIONS(449), + [anon_sym_class] = ACTIONS(451), + [anon_sym_async] = ACTIONS(521), + [anon_sym_function] = ACTIONS(455), + [anon_sym_new] = ACTIONS(523), + [anon_sym_PLUS] = ACTIONS(525), + [anon_sym_DASH] = ACTIONS(525), + [anon_sym_TILDE] = ACTIONS(437), + [anon_sym_void] = ACTIONS(471), + [anon_sym_delete] = ACTIONS(471), + [anon_sym_PLUS_PLUS] = ACTIONS(473), + [anon_sym_DASH_DASH] = ACTIONS(473), + [anon_sym_DQUOTE] = ACTIONS(475), + [anon_sym_SQUOTE] = ACTIONS(477), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(85), - [sym_number] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), + [anon_sym_BQUOTE] = ACTIONS(479), + [sym_number] = ACTIONS(527), + [sym_this] = ACTIONS(485), + [sym_super] = ACTIONS(485), + [sym_true] = ACTIONS(485), + [sym_false] = ACTIONS(485), + [sym_null] = ACTIONS(485), + [sym_undefined] = ACTIONS(485), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(675), - [anon_sym_get] = ACTIONS(675), - [anon_sym_set] = ACTIONS(675), - [anon_sym_declare] = ACTIONS(675), - [anon_sym_public] = ACTIONS(675), - [anon_sym_private] = ACTIONS(675), - [anon_sym_protected] = ACTIONS(675), - [anon_sym_module] = ACTIONS(675), - [anon_sym_any] = ACTIONS(675), - [anon_sym_number] = ACTIONS(675), - [anon_sym_boolean] = ACTIONS(675), - [anon_sym_string] = ACTIONS(675), - [anon_sym_symbol] = ACTIONS(675), - [sym_readonly] = ACTIONS(675), + [anon_sym_static] = ACTIONS(501), + [anon_sym_get] = ACTIONS(501), + [anon_sym_set] = ACTIONS(501), + [anon_sym_declare] = ACTIONS(501), + [anon_sym_public] = ACTIONS(501), + [anon_sym_private] = ACTIONS(501), + [anon_sym_protected] = ACTIONS(501), + [anon_sym_module] = ACTIONS(501), + [anon_sym_any] = ACTIONS(501), + [anon_sym_number] = ACTIONS(501), + [anon_sym_boolean] = ACTIONS(501), + [anon_sym_string] = ACTIONS(501), + [anon_sym_symbol] = ACTIONS(501), + [sym_readonly] = ACTIONS(501), }, - [330] = { - [sym_import] = STATE(1101), - [sym_parenthesized_expression] = STATE(948), - [sym__expression] = STATE(1514), - [sym_yield_expression] = STATE(1105), - [sym_object] = STATE(1654), - [sym_array] = STATE(1640), - [sym_class] = STATE(1101), - [sym_function] = STATE(1101), - [sym_generator_function] = STATE(1101), - [sym_arrow_function] = STATE(1101), - [sym__call_signature] = STATE(3002), - [sym_call_expression] = STATE(1101), - [sym_new_expression] = STATE(1105), - [sym_await_expression] = STATE(1105), - [sym_member_expression] = STATE(948), - [sym_subscript_expression] = STATE(948), - [sym_assignment_expression] = STATE(1105), - [sym__augmented_assignment_lhs] = STATE(1921), - [sym_augmented_assignment_expression] = STATE(1105), - [sym_ternary_expression] = STATE(1105), - [sym_binary_expression] = STATE(1105), - [sym_unary_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_string] = STATE(1101), - [sym_template_string] = STATE(1101), - [sym_regex] = STATE(1101), - [sym_meta_property] = STATE(1101), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(949), - [sym_type_assertion] = STATE(1105), - [sym_as_expression] = STATE(1105), - [sym_internal_module] = STATE(1105), - [sym_type_arguments] = STATE(324), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2497), - [sym_identifier] = ACTIONS(859), - [anon_sym_export] = ACTIONS(635), - [anon_sym_namespace] = ACTIONS(637), + [344] = { + [sym_import] = STATE(1151), + [sym_parenthesized_expression] = STATE(759), + [sym__expression] = STATE(1055), + [sym_yield_expression] = STATE(1144), + [sym_object] = STATE(1257), + [sym_array] = STATE(1254), + [sym_class] = STATE(1151), + [sym_function] = STATE(1151), + [sym_generator_function] = STATE(1151), + [sym_arrow_function] = STATE(1151), + [sym__call_signature] = STATE(3082), + [sym_call_expression] = STATE(1151), + [sym_new_expression] = STATE(1144), + [sym_await_expression] = STATE(1144), + [sym_member_expression] = STATE(759), + [sym_subscript_expression] = STATE(759), + [sym_assignment_expression] = STATE(1144), + [sym__augmented_assignment_lhs] = STATE(1924), + [sym_augmented_assignment_expression] = STATE(1144), + [sym_ternary_expression] = STATE(1144), + [sym_binary_expression] = STATE(1144), + [sym_unary_expression] = STATE(1144), + [sym_update_expression] = STATE(1144), + [sym_string] = STATE(1151), + [sym_template_string] = STATE(1151), + [sym_regex] = STATE(1151), + [sym_meta_property] = STATE(1151), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(754), + [sym_type_assertion] = STATE(1144), + [sym_as_expression] = STATE(1144), + [sym_internal_module] = STATE(1144), + [sym_type_arguments] = STATE(326), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2580), + [sym_identifier] = ACTIONS(499), + [anon_sym_export] = ACTIONS(501), + [anon_sym_namespace] = ACTIONS(507), [anon_sym_LBRACE] = ACTIONS(509), - [anon_sym_type] = ACTIONS(635), - [anon_sym_typeof] = ACTIONS(659), + [anon_sym_type] = ACTIONS(501), + [anon_sym_typeof] = ACTIONS(471), [anon_sym_import] = ACTIONS(435), - [anon_sym_BANG] = ACTIONS(643), + [anon_sym_BANG] = ACTIONS(437), [anon_sym_LPAREN] = ACTIONS(515), - [anon_sym_await] = ACTIONS(645), - [anon_sym_yield] = ACTIONS(647), + [anon_sym_await] = ACTIONS(443), + [anon_sym_yield] = ACTIONS(445), [anon_sym_LBRACK] = ACTIONS(517), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(449), [anon_sym_class] = ACTIONS(451), - [anon_sym_async] = ACTIONS(651), + [anon_sym_async] = ACTIONS(521), [anon_sym_function] = ACTIONS(455), - [anon_sym_new] = ACTIONS(865), - [anon_sym_PLUS] = ACTIONS(867), - [anon_sym_DASH] = ACTIONS(867), - [anon_sym_TILDE] = ACTIONS(643), - [anon_sym_void] = ACTIONS(659), - [anon_sym_delete] = ACTIONS(659), - [anon_sym_PLUS_PLUS] = ACTIONS(661), - [anon_sym_DASH_DASH] = ACTIONS(661), + [anon_sym_new] = ACTIONS(523), + [anon_sym_PLUS] = ACTIONS(525), + [anon_sym_DASH] = ACTIONS(525), + [anon_sym_TILDE] = ACTIONS(437), + [anon_sym_void] = ACTIONS(471), + [anon_sym_delete] = ACTIONS(471), + [anon_sym_PLUS_PLUS] = ACTIONS(473), + [anon_sym_DASH_DASH] = ACTIONS(473), [anon_sym_DQUOTE] = ACTIONS(475), [anon_sym_SQUOTE] = ACTIONS(477), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(479), - [sym_number] = ACTIONS(527), + [sym_number] = ACTIONS(1463), [sym_this] = ACTIONS(485), [sym_super] = ACTIONS(485), [sym_true] = ACTIONS(485), @@ -42840,83 +44140,83 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(485), [sym_undefined] = ACTIONS(485), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(635), - [anon_sym_get] = ACTIONS(635), - [anon_sym_set] = ACTIONS(635), - [anon_sym_declare] = ACTIONS(635), - [anon_sym_public] = ACTIONS(635), - [anon_sym_private] = ACTIONS(635), - [anon_sym_protected] = ACTIONS(635), - [anon_sym_module] = ACTIONS(635), - [anon_sym_any] = ACTIONS(635), - [anon_sym_number] = ACTIONS(635), - [anon_sym_boolean] = ACTIONS(635), - [anon_sym_string] = ACTIONS(635), - [anon_sym_symbol] = ACTIONS(635), - [sym_readonly] = ACTIONS(635), + [anon_sym_static] = ACTIONS(501), + [anon_sym_get] = ACTIONS(501), + [anon_sym_set] = ACTIONS(501), + [anon_sym_declare] = ACTIONS(501), + [anon_sym_public] = ACTIONS(501), + [anon_sym_private] = ACTIONS(501), + [anon_sym_protected] = ACTIONS(501), + [anon_sym_module] = ACTIONS(501), + [anon_sym_any] = ACTIONS(501), + [anon_sym_number] = ACTIONS(501), + [anon_sym_boolean] = ACTIONS(501), + [anon_sym_string] = ACTIONS(501), + [anon_sym_symbol] = ACTIONS(501), + [sym_readonly] = ACTIONS(501), }, - [331] = { - [sym_import] = STATE(1101), - [sym_parenthesized_expression] = STATE(921), - [sym__expression] = STATE(1235), - [sym_yield_expression] = STATE(1105), - [sym_object] = STATE(1531), - [sym_array] = STATE(1536), - [sym_class] = STATE(1101), - [sym_function] = STATE(1101), - [sym_generator_function] = STATE(1101), - [sym_arrow_function] = STATE(1101), - [sym__call_signature] = STATE(3170), - [sym_call_expression] = STATE(1101), - [sym_new_expression] = STATE(1105), - [sym_await_expression] = STATE(1105), - [sym_member_expression] = STATE(921), - [sym_subscript_expression] = STATE(921), - [sym_assignment_expression] = STATE(1105), - [sym__augmented_assignment_lhs] = STATE(1917), - [sym_augmented_assignment_expression] = STATE(1105), - [sym_ternary_expression] = STATE(1105), - [sym_binary_expression] = STATE(1105), - [sym_unary_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_string] = STATE(1101), - [sym_template_string] = STATE(1101), - [sym_regex] = STATE(1101), - [sym_meta_property] = STATE(1101), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(882), - [sym_type_assertion] = STATE(1105), - [sym_as_expression] = STATE(1105), - [sym_internal_module] = STATE(1105), - [sym_type_arguments] = STATE(355), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2497), + [345] = { + [sym_import] = STATE(1151), + [sym_parenthesized_expression] = STATE(956), + [sym__expression] = STATE(1401), + [sym_yield_expression] = STATE(1144), + [sym_object] = STATE(1653), + [sym_array] = STATE(1660), + [sym_class] = STATE(1151), + [sym_function] = STATE(1151), + [sym_generator_function] = STATE(1151), + [sym_arrow_function] = STATE(1151), + [sym__call_signature] = STATE(3024), + [sym_call_expression] = STATE(1151), + [sym_new_expression] = STATE(1144), + [sym_await_expression] = STATE(1144), + [sym_member_expression] = STATE(956), + [sym_subscript_expression] = STATE(956), + [sym_assignment_expression] = STATE(1144), + [sym__augmented_assignment_lhs] = STATE(1925), + [sym_augmented_assignment_expression] = STATE(1144), + [sym_ternary_expression] = STATE(1144), + [sym_binary_expression] = STATE(1144), + [sym_unary_expression] = STATE(1144), + [sym_update_expression] = STATE(1144), + [sym_string] = STATE(1151), + [sym_template_string] = STATE(1151), + [sym_regex] = STATE(1151), + [sym_meta_property] = STATE(1151), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(950), + [sym_type_assertion] = STATE(1144), + [sym_as_expression] = STATE(1144), + [sym_internal_module] = STATE(1144), + [sym_type_arguments] = STATE(395), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2580), [sym_identifier] = ACTIONS(897), - [anon_sym_export] = ACTIONS(751), - [anon_sym_namespace] = ACTIONS(753), + [anon_sym_export] = ACTIONS(577), + [anon_sym_namespace] = ACTIONS(579), [anon_sym_LBRACE] = ACTIONS(509), - [anon_sym_type] = ACTIONS(751), - [anon_sym_typeof] = ACTIONS(775), + [anon_sym_type] = ACTIONS(577), + [anon_sym_typeof] = ACTIONS(601), [anon_sym_import] = ACTIONS(435), - [anon_sym_BANG] = ACTIONS(757), + [anon_sym_BANG] = ACTIONS(585), [anon_sym_LPAREN] = ACTIONS(515), - [anon_sym_await] = ACTIONS(759), - [anon_sym_yield] = ACTIONS(761), + [anon_sym_await] = ACTIONS(587), + [anon_sym_yield] = ACTIONS(589), [anon_sym_LBRACK] = ACTIONS(517), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(765), + [anon_sym_SLASH] = ACTIONS(449), [anon_sym_class] = ACTIONS(451), - [anon_sym_async] = ACTIONS(767), + [anon_sym_async] = ACTIONS(593), [anon_sym_function] = ACTIONS(455), [anon_sym_new] = ACTIONS(903), [anon_sym_PLUS] = ACTIONS(905), [anon_sym_DASH] = ACTIONS(905), - [anon_sym_TILDE] = ACTIONS(757), - [anon_sym_void] = ACTIONS(775), - [anon_sym_delete] = ACTIONS(775), - [anon_sym_PLUS_PLUS] = ACTIONS(777), - [anon_sym_DASH_DASH] = ACTIONS(777), + [anon_sym_TILDE] = ACTIONS(585), + [anon_sym_void] = ACTIONS(601), + [anon_sym_delete] = ACTIONS(601), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(603), [anon_sym_DQUOTE] = ACTIONS(475), [anon_sym_SQUOTE] = ACTIONS(477), [sym_comment] = ACTIONS(3), @@ -42929,83 +44229,83 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(485), [sym_undefined] = ACTIONS(485), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(751), - [anon_sym_get] = ACTIONS(751), - [anon_sym_set] = ACTIONS(751), - [anon_sym_declare] = ACTIONS(751), - [anon_sym_public] = ACTIONS(751), - [anon_sym_private] = ACTIONS(751), - [anon_sym_protected] = ACTIONS(751), - [anon_sym_module] = ACTIONS(751), - [anon_sym_any] = ACTIONS(751), - [anon_sym_number] = ACTIONS(751), - [anon_sym_boolean] = ACTIONS(751), - [anon_sym_string] = ACTIONS(751), - [anon_sym_symbol] = ACTIONS(751), - [sym_readonly] = ACTIONS(751), + [anon_sym_static] = ACTIONS(577), + [anon_sym_get] = ACTIONS(577), + [anon_sym_set] = ACTIONS(577), + [anon_sym_declare] = ACTIONS(577), + [anon_sym_public] = ACTIONS(577), + [anon_sym_private] = ACTIONS(577), + [anon_sym_protected] = ACTIONS(577), + [anon_sym_module] = ACTIONS(577), + [anon_sym_any] = ACTIONS(577), + [anon_sym_number] = ACTIONS(577), + [anon_sym_boolean] = ACTIONS(577), + [anon_sym_string] = ACTIONS(577), + [anon_sym_symbol] = ACTIONS(577), + [sym_readonly] = ACTIONS(577), }, - [332] = { - [sym_import] = STATE(1498), - [sym_parenthesized_expression] = STATE(764), - [sym__expression] = STATE(1144), - [sym_yield_expression] = STATE(1518), - [sym_object] = STATE(1435), - [sym_array] = STATE(1433), - [sym_class] = STATE(1498), - [sym_function] = STATE(1498), - [sym_generator_function] = STATE(1498), - [sym_arrow_function] = STATE(1498), - [sym__call_signature] = STATE(3145), - [sym_call_expression] = STATE(1498), - [sym_new_expression] = STATE(1518), - [sym_await_expression] = STATE(1518), - [sym_member_expression] = STATE(764), - [sym_subscript_expression] = STATE(764), - [sym_assignment_expression] = STATE(1518), - [sym__augmented_assignment_lhs] = STATE(1925), - [sym_augmented_assignment_expression] = STATE(1518), - [sym_ternary_expression] = STATE(1518), - [sym_binary_expression] = STATE(1518), - [sym_unary_expression] = STATE(1518), - [sym_update_expression] = STATE(1518), - [sym_string] = STATE(1498), - [sym_template_string] = STATE(1498), - [sym_regex] = STATE(1498), - [sym_meta_property] = STATE(1498), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(772), - [sym_type_assertion] = STATE(1518), - [sym_as_expression] = STATE(1518), - [sym_internal_module] = STATE(1518), - [sym_type_arguments] = STATE(349), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2554), - [sym_identifier] = ACTIONS(587), - [anon_sym_export] = ACTIONS(589), - [anon_sym_namespace] = ACTIONS(593), - [anon_sym_LBRACE] = ACTIONS(595), - [anon_sym_type] = ACTIONS(589), - [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(597), - [anon_sym_BANG] = ACTIONS(29), + [346] = { + [sym_import] = STATE(1523), + [sym_parenthesized_expression] = STATE(955), + [sym__expression] = STATE(1121), + [sym_yield_expression] = STATE(1567), + [sym_object] = STATE(1636), + [sym_array] = STATE(1643), + [sym_class] = STATE(1523), + [sym_function] = STATE(1523), + [sym_generator_function] = STATE(1523), + [sym_arrow_function] = STATE(1523), + [sym__call_signature] = STATE(3078), + [sym_call_expression] = STATE(1523), + [sym_new_expression] = STATE(1567), + [sym_await_expression] = STATE(1567), + [sym_member_expression] = STATE(955), + [sym_subscript_expression] = STATE(955), + [sym_assignment_expression] = STATE(1567), + [sym__augmented_assignment_lhs] = STATE(1929), + [sym_augmented_assignment_expression] = STATE(1567), + [sym_ternary_expression] = STATE(1567), + [sym_binary_expression] = STATE(1567), + [sym_unary_expression] = STATE(1567), + [sym_update_expression] = STATE(1567), + [sym_string] = STATE(1523), + [sym_template_string] = STATE(1523), + [sym_regex] = STATE(1523), + [sym_meta_property] = STATE(1523), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(953), + [sym_type_assertion] = STATE(1567), + [sym_as_expression] = STATE(1567), + [sym_internal_module] = STATE(1567), + [sym_type_arguments] = STATE(384), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2575), + [sym_identifier] = ACTIONS(887), + [anon_sym_export] = ACTIONS(635), + [anon_sym_namespace] = ACTIONS(637), + [anon_sym_LBRACE] = ACTIONS(571), + [anon_sym_type] = ACTIONS(635), + [anon_sym_typeof] = ACTIONS(657), + [anon_sym_import] = ACTIONS(539), + [anon_sym_BANG] = ACTIONS(641), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(39), - [anon_sym_yield] = ACTIONS(61), + [anon_sym_await] = ACTIONS(643), + [anon_sym_yield] = ACTIONS(645), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(601), - [anon_sym_async] = ACTIONS(603), - [anon_sym_function] = ACTIONS(605), - [anon_sym_new] = ACTIONS(75), - [anon_sym_PLUS] = ACTIONS(77), - [anon_sym_DASH] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(29), - [anon_sym_void] = ACTIONS(19), - [anon_sym_delete] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_class] = ACTIONS(545), + [anon_sym_async] = ACTIONS(649), + [anon_sym_function] = ACTIONS(549), + [anon_sym_new] = ACTIONS(893), + [anon_sym_PLUS] = ACTIONS(895), + [anon_sym_DASH] = ACTIONS(895), + [anon_sym_TILDE] = ACTIONS(641), + [anon_sym_void] = ACTIONS(657), + [anon_sym_delete] = ACTIONS(657), + [anon_sym_PLUS_PLUS] = ACTIONS(659), + [anon_sym_DASH_DASH] = ACTIONS(659), [anon_sym_DQUOTE] = ACTIONS(81), [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), @@ -43018,65 +44318,65 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(589), - [anon_sym_get] = ACTIONS(589), - [anon_sym_set] = ACTIONS(589), - [anon_sym_declare] = ACTIONS(589), - [anon_sym_public] = ACTIONS(589), - [anon_sym_private] = ACTIONS(589), - [anon_sym_protected] = ACTIONS(589), - [anon_sym_module] = ACTIONS(589), - [anon_sym_any] = ACTIONS(589), - [anon_sym_number] = ACTIONS(589), - [anon_sym_boolean] = ACTIONS(589), - [anon_sym_string] = ACTIONS(589), - [anon_sym_symbol] = ACTIONS(589), - [sym_readonly] = ACTIONS(589), + [anon_sym_static] = ACTIONS(635), + [anon_sym_get] = ACTIONS(635), + [anon_sym_set] = ACTIONS(635), + [anon_sym_declare] = ACTIONS(635), + [anon_sym_public] = ACTIONS(635), + [anon_sym_private] = ACTIONS(635), + [anon_sym_protected] = ACTIONS(635), + [anon_sym_module] = ACTIONS(635), + [anon_sym_any] = ACTIONS(635), + [anon_sym_number] = ACTIONS(635), + [anon_sym_boolean] = ACTIONS(635), + [anon_sym_string] = ACTIONS(635), + [anon_sym_symbol] = ACTIONS(635), + [sym_readonly] = ACTIONS(635), }, - [333] = { - [sym_import] = STATE(1498), - [sym_parenthesized_expression] = STATE(764), - [sym__expression] = STATE(1125), - [sym_yield_expression] = STATE(1518), - [sym_object] = STATE(1435), - [sym_array] = STATE(1433), - [sym_class] = STATE(1498), - [sym_function] = STATE(1498), - [sym_generator_function] = STATE(1498), - [sym_arrow_function] = STATE(1498), - [sym__call_signature] = STATE(3145), - [sym_call_expression] = STATE(1498), - [sym_new_expression] = STATE(1518), - [sym_await_expression] = STATE(1518), - [sym_member_expression] = STATE(764), - [sym_subscript_expression] = STATE(764), - [sym_assignment_expression] = STATE(1518), - [sym__augmented_assignment_lhs] = STATE(1925), - [sym_augmented_assignment_expression] = STATE(1518), - [sym_ternary_expression] = STATE(1518), - [sym_binary_expression] = STATE(1518), - [sym_unary_expression] = STATE(1518), - [sym_update_expression] = STATE(1518), - [sym_string] = STATE(1498), - [sym_template_string] = STATE(1498), - [sym_regex] = STATE(1498), - [sym_meta_property] = STATE(1498), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(772), - [sym_type_assertion] = STATE(1518), - [sym_as_expression] = STATE(1518), - [sym_internal_module] = STATE(1518), - [sym_type_arguments] = STATE(349), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2554), - [sym_identifier] = ACTIONS(587), - [anon_sym_export] = ACTIONS(589), - [anon_sym_namespace] = ACTIONS(593), - [anon_sym_LBRACE] = ACTIONS(595), - [anon_sym_type] = ACTIONS(589), + [347] = { + [sym_import] = STATE(1523), + [sym_parenthesized_expression] = STATE(768), + [sym__expression] = STATE(1138), + [sym_yield_expression] = STATE(1567), + [sym_object] = STATE(1357), + [sym_array] = STATE(1360), + [sym_class] = STATE(1523), + [sym_function] = STATE(1523), + [sym_generator_function] = STATE(1523), + [sym_arrow_function] = STATE(1523), + [sym__call_signature] = STATE(3196), + [sym_call_expression] = STATE(1523), + [sym_new_expression] = STATE(1567), + [sym_await_expression] = STATE(1567), + [sym_member_expression] = STATE(768), + [sym_subscript_expression] = STATE(768), + [sym_assignment_expression] = STATE(1567), + [sym__augmented_assignment_lhs] = STATE(1928), + [sym_augmented_assignment_expression] = STATE(1567), + [sym_ternary_expression] = STATE(1567), + [sym_binary_expression] = STATE(1567), + [sym_unary_expression] = STATE(1567), + [sym_update_expression] = STATE(1567), + [sym_string] = STATE(1523), + [sym_template_string] = STATE(1523), + [sym_regex] = STATE(1523), + [sym_meta_property] = STATE(1523), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(774), + [sym_type_assertion] = STATE(1567), + [sym_as_expression] = STATE(1567), + [sym_internal_module] = STATE(1567), + [sym_type_arguments] = STATE(292), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2575), + [sym_identifier] = ACTIONS(567), + [anon_sym_export] = ACTIONS(531), + [anon_sym_namespace] = ACTIONS(533), + [anon_sym_LBRACE] = ACTIONS(571), + [anon_sym_type] = ACTIONS(531), [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(597), + [anon_sym_import] = ACTIONS(539), [anon_sym_BANG] = ACTIONS(29), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_await] = ACTIONS(39), @@ -43084,9 +44384,9 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(601), - [anon_sym_async] = ACTIONS(603), - [anon_sym_function] = ACTIONS(605), + [anon_sym_class] = ACTIONS(545), + [anon_sym_async] = ACTIONS(547), + [anon_sym_function] = ACTIONS(549), [anon_sym_new] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(77), [anon_sym_DASH] = ACTIONS(77), @@ -43107,83 +44407,83 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(589), - [anon_sym_get] = ACTIONS(589), - [anon_sym_set] = ACTIONS(589), - [anon_sym_declare] = ACTIONS(589), - [anon_sym_public] = ACTIONS(589), - [anon_sym_private] = ACTIONS(589), - [anon_sym_protected] = ACTIONS(589), - [anon_sym_module] = ACTIONS(589), - [anon_sym_any] = ACTIONS(589), - [anon_sym_number] = ACTIONS(589), - [anon_sym_boolean] = ACTIONS(589), - [anon_sym_string] = ACTIONS(589), - [anon_sym_symbol] = ACTIONS(589), - [sym_readonly] = ACTIONS(589), + [anon_sym_static] = ACTIONS(531), + [anon_sym_get] = ACTIONS(531), + [anon_sym_set] = ACTIONS(531), + [anon_sym_declare] = ACTIONS(531), + [anon_sym_public] = ACTIONS(531), + [anon_sym_private] = ACTIONS(531), + [anon_sym_protected] = ACTIONS(531), + [anon_sym_module] = ACTIONS(531), + [anon_sym_any] = ACTIONS(531), + [anon_sym_number] = ACTIONS(531), + [anon_sym_boolean] = ACTIONS(531), + [anon_sym_string] = ACTIONS(531), + [anon_sym_symbol] = ACTIONS(531), + [sym_readonly] = ACTIONS(531), }, - [334] = { - [sym_import] = STATE(1101), - [sym_parenthesized_expression] = STATE(921), - [sym__expression] = STATE(987), - [sym_yield_expression] = STATE(1105), - [sym_object] = STATE(1531), - [sym_array] = STATE(1536), - [sym_class] = STATE(1101), - [sym_function] = STATE(1101), - [sym_generator_function] = STATE(1101), - [sym_arrow_function] = STATE(1101), - [sym__call_signature] = STATE(3170), - [sym_call_expression] = STATE(1101), - [sym_new_expression] = STATE(1105), - [sym_await_expression] = STATE(1105), - [sym_member_expression] = STATE(921), - [sym_subscript_expression] = STATE(921), - [sym_assignment_expression] = STATE(1105), - [sym__augmented_assignment_lhs] = STATE(1917), - [sym_augmented_assignment_expression] = STATE(1105), - [sym_ternary_expression] = STATE(1105), - [sym_binary_expression] = STATE(1105), - [sym_unary_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_string] = STATE(1101), - [sym_template_string] = STATE(1101), - [sym_regex] = STATE(1101), - [sym_meta_property] = STATE(1101), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(882), - [sym_type_assertion] = STATE(1105), - [sym_as_expression] = STATE(1105), - [sym_internal_module] = STATE(1105), - [sym_type_arguments] = STATE(355), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2497), + [348] = { + [sym_import] = STATE(1151), + [sym_parenthesized_expression] = STATE(956), + [sym__expression] = STATE(1397), + [sym_yield_expression] = STATE(1144), + [sym_object] = STATE(1653), + [sym_array] = STATE(1660), + [sym_class] = STATE(1151), + [sym_function] = STATE(1151), + [sym_generator_function] = STATE(1151), + [sym_arrow_function] = STATE(1151), + [sym__call_signature] = STATE(3024), + [sym_call_expression] = STATE(1151), + [sym_new_expression] = STATE(1144), + [sym_await_expression] = STATE(1144), + [sym_member_expression] = STATE(956), + [sym_subscript_expression] = STATE(956), + [sym_assignment_expression] = STATE(1144), + [sym__augmented_assignment_lhs] = STATE(1925), + [sym_augmented_assignment_expression] = STATE(1144), + [sym_ternary_expression] = STATE(1144), + [sym_binary_expression] = STATE(1144), + [sym_unary_expression] = STATE(1144), + [sym_update_expression] = STATE(1144), + [sym_string] = STATE(1151), + [sym_template_string] = STATE(1151), + [sym_regex] = STATE(1151), + [sym_meta_property] = STATE(1151), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(950), + [sym_type_assertion] = STATE(1144), + [sym_as_expression] = STATE(1144), + [sym_internal_module] = STATE(1144), + [sym_type_arguments] = STATE(395), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2580), [sym_identifier] = ACTIONS(897), - [anon_sym_export] = ACTIONS(751), - [anon_sym_namespace] = ACTIONS(753), + [anon_sym_export] = ACTIONS(577), + [anon_sym_namespace] = ACTIONS(579), [anon_sym_LBRACE] = ACTIONS(509), - [anon_sym_type] = ACTIONS(751), - [anon_sym_typeof] = ACTIONS(775), + [anon_sym_type] = ACTIONS(577), + [anon_sym_typeof] = ACTIONS(601), [anon_sym_import] = ACTIONS(435), - [anon_sym_BANG] = ACTIONS(757), + [anon_sym_BANG] = ACTIONS(585), [anon_sym_LPAREN] = ACTIONS(515), - [anon_sym_await] = ACTIONS(759), - [anon_sym_yield] = ACTIONS(761), + [anon_sym_await] = ACTIONS(587), + [anon_sym_yield] = ACTIONS(589), [anon_sym_LBRACK] = ACTIONS(517), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(765), + [anon_sym_SLASH] = ACTIONS(449), [anon_sym_class] = ACTIONS(451), - [anon_sym_async] = ACTIONS(767), + [anon_sym_async] = ACTIONS(593), [anon_sym_function] = ACTIONS(455), [anon_sym_new] = ACTIONS(903), [anon_sym_PLUS] = ACTIONS(905), [anon_sym_DASH] = ACTIONS(905), - [anon_sym_TILDE] = ACTIONS(757), - [anon_sym_void] = ACTIONS(775), - [anon_sym_delete] = ACTIONS(775), - [anon_sym_PLUS_PLUS] = ACTIONS(777), - [anon_sym_DASH_DASH] = ACTIONS(777), + [anon_sym_TILDE] = ACTIONS(585), + [anon_sym_void] = ACTIONS(601), + [anon_sym_delete] = ACTIONS(601), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(603), [anon_sym_DQUOTE] = ACTIONS(475), [anon_sym_SQUOTE] = ACTIONS(477), [sym_comment] = ACTIONS(3), @@ -43196,172 +44496,172 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(485), [sym_undefined] = ACTIONS(485), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(751), - [anon_sym_get] = ACTIONS(751), - [anon_sym_set] = ACTIONS(751), - [anon_sym_declare] = ACTIONS(751), - [anon_sym_public] = ACTIONS(751), - [anon_sym_private] = ACTIONS(751), - [anon_sym_protected] = ACTIONS(751), - [anon_sym_module] = ACTIONS(751), - [anon_sym_any] = ACTIONS(751), - [anon_sym_number] = ACTIONS(751), - [anon_sym_boolean] = ACTIONS(751), - [anon_sym_string] = ACTIONS(751), - [anon_sym_symbol] = ACTIONS(751), - [sym_readonly] = ACTIONS(751), - }, - [335] = { - [ts_builtin_sym_end] = ACTIONS(1475), - [sym_identifier] = ACTIONS(1477), - [anon_sym_export] = ACTIONS(1477), - [anon_sym_default] = ACTIONS(1477), - [anon_sym_EQ] = ACTIONS(1477), - [anon_sym_namespace] = ACTIONS(1477), - [anon_sym_LBRACE] = ACTIONS(1475), - [anon_sym_COMMA] = ACTIONS(1475), - [anon_sym_RBRACE] = ACTIONS(1475), - [anon_sym_type] = ACTIONS(1477), - [anon_sym_typeof] = ACTIONS(1477), - [anon_sym_import] = ACTIONS(1477), - [anon_sym_var] = ACTIONS(1477), - [anon_sym_let] = ACTIONS(1477), - [anon_sym_const] = ACTIONS(1477), - [anon_sym_BANG] = ACTIONS(1475), - [anon_sym_else] = ACTIONS(1477), - [anon_sym_if] = ACTIONS(1477), - [anon_sym_switch] = ACTIONS(1477), - [anon_sym_for] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(1475), - [anon_sym_RPAREN] = ACTIONS(1475), - [anon_sym_await] = ACTIONS(1477), - [anon_sym_while] = ACTIONS(1477), - [anon_sym_do] = ACTIONS(1477), - [anon_sym_try] = ACTIONS(1477), - [anon_sym_with] = ACTIONS(1477), - [anon_sym_break] = ACTIONS(1477), - [anon_sym_continue] = ACTIONS(1477), - [anon_sym_debugger] = ACTIONS(1477), - [anon_sym_return] = ACTIONS(1477), - [anon_sym_throw] = ACTIONS(1477), - [anon_sym_SEMI] = ACTIONS(1475), - [anon_sym_COLON] = ACTIONS(1475), - [anon_sym_case] = ACTIONS(1477), - [anon_sym_yield] = ACTIONS(1477), - [anon_sym_LBRACK] = ACTIONS(1475), - [anon_sym_RBRACK] = ACTIONS(1475), - [anon_sym_LT] = ACTIONS(1475), - [anon_sym_GT] = ACTIONS(1475), - [anon_sym_SLASH] = ACTIONS(1477), - [anon_sym_class] = ACTIONS(1477), - [anon_sym_async] = ACTIONS(1477), - [anon_sym_function] = ACTIONS(1477), - [anon_sym_EQ_GT] = ACTIONS(1475), - [anon_sym_new] = ACTIONS(1477), - [anon_sym_QMARK] = ACTIONS(1475), - [anon_sym_AMP] = ACTIONS(1475), - [anon_sym_PIPE] = ACTIONS(1475), - [anon_sym_PLUS] = ACTIONS(1477), - [anon_sym_DASH] = ACTIONS(1477), - [anon_sym_TILDE] = ACTIONS(1475), - [anon_sym_void] = ACTIONS(1477), - [anon_sym_delete] = ACTIONS(1477), - [anon_sym_PLUS_PLUS] = ACTIONS(1475), - [anon_sym_DASH_DASH] = ACTIONS(1475), - [anon_sym_DQUOTE] = ACTIONS(1475), - [anon_sym_SQUOTE] = ACTIONS(1475), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1475), - [sym_number] = ACTIONS(1475), - [sym_this] = ACTIONS(1477), - [sym_super] = ACTIONS(1477), - [sym_true] = ACTIONS(1477), - [sym_false] = ACTIONS(1477), - [sym_null] = ACTIONS(1477), - [sym_undefined] = ACTIONS(1477), - [anon_sym_AT] = ACTIONS(1475), - [anon_sym_static] = ACTIONS(1477), - [anon_sym_abstract] = ACTIONS(1477), - [anon_sym_get] = ACTIONS(1477), - [anon_sym_set] = ACTIONS(1477), - [anon_sym_declare] = ACTIONS(1477), - [anon_sym_public] = ACTIONS(1477), - [anon_sym_private] = ACTIONS(1477), - [anon_sym_protected] = ACTIONS(1477), - [anon_sym_module] = ACTIONS(1477), - [anon_sym_any] = ACTIONS(1477), - [anon_sym_number] = ACTIONS(1477), - [anon_sym_boolean] = ACTIONS(1477), - [anon_sym_string] = ACTIONS(1477), - [anon_sym_symbol] = ACTIONS(1477), - [anon_sym_implements] = ACTIONS(1477), - [anon_sym_interface] = ACTIONS(1477), - [anon_sym_extends] = ACTIONS(1477), - [anon_sym_enum] = ACTIONS(1477), - [sym_readonly] = ACTIONS(1477), + [anon_sym_static] = ACTIONS(577), + [anon_sym_get] = ACTIONS(577), + [anon_sym_set] = ACTIONS(577), + [anon_sym_declare] = ACTIONS(577), + [anon_sym_public] = ACTIONS(577), + [anon_sym_private] = ACTIONS(577), + [anon_sym_protected] = ACTIONS(577), + [anon_sym_module] = ACTIONS(577), + [anon_sym_any] = ACTIONS(577), + [anon_sym_number] = ACTIONS(577), + [anon_sym_boolean] = ACTIONS(577), + [anon_sym_string] = ACTIONS(577), + [anon_sym_symbol] = ACTIONS(577), + [sym_readonly] = ACTIONS(577), }, - [336] = { - [sym_import] = STATE(1101), - [sym_parenthesized_expression] = STATE(948), - [sym__expression] = STATE(1403), - [sym_yield_expression] = STATE(1105), - [sym_object] = STATE(1654), - [sym_array] = STATE(1640), - [sym_class] = STATE(1101), - [sym_function] = STATE(1101), - [sym_generator_function] = STATE(1101), - [sym_arrow_function] = STATE(1101), - [sym__call_signature] = STATE(3002), - [sym_call_expression] = STATE(1101), - [sym_new_expression] = STATE(1105), - [sym_await_expression] = STATE(1105), - [sym_member_expression] = STATE(948), - [sym_subscript_expression] = STATE(948), - [sym_assignment_expression] = STATE(1105), + [349] = { + [sym_import] = STATE(1690), + [sym_parenthesized_expression] = STATE(834), + [sym__expression] = STATE(1218), + [sym_yield_expression] = STATE(1687), + [sym_object] = STATE(1538), + [sym_array] = STATE(1543), + [sym_class] = STATE(1690), + [sym_function] = STATE(1690), + [sym_generator_function] = STATE(1690), + [sym_arrow_function] = STATE(1690), + [sym__call_signature] = STATE(3133), + [sym_call_expression] = STATE(1690), + [sym_new_expression] = STATE(1687), + [sym_await_expression] = STATE(1687), + [sym_member_expression] = STATE(834), + [sym_subscript_expression] = STATE(834), + [sym_assignment_expression] = STATE(1687), [sym__augmented_assignment_lhs] = STATE(1921), - [sym_augmented_assignment_expression] = STATE(1105), - [sym_ternary_expression] = STATE(1105), - [sym_binary_expression] = STATE(1105), - [sym_unary_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_string] = STATE(1101), - [sym_template_string] = STATE(1101), - [sym_regex] = STATE(1101), - [sym_meta_property] = STATE(1101), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(949), - [sym_type_assertion] = STATE(1105), - [sym_as_expression] = STATE(1105), - [sym_internal_module] = STATE(1105), - [sym_type_arguments] = STATE(324), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2497), - [sym_identifier] = ACTIONS(859), - [anon_sym_export] = ACTIONS(635), - [anon_sym_namespace] = ACTIONS(637), + [sym_augmented_assignment_expression] = STATE(1687), + [sym_ternary_expression] = STATE(1687), + [sym_binary_expression] = STATE(1687), + [sym_unary_expression] = STATE(1687), + [sym_update_expression] = STATE(1687), + [sym_string] = STATE(1690), + [sym_template_string] = STATE(1690), + [sym_regex] = STATE(1690), + [sym_meta_property] = STATE(1690), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(846), + [sym_type_assertion] = STATE(1687), + [sym_as_expression] = STATE(1687), + [sym_internal_module] = STATE(1687), + [sym_type_arguments] = STATE(301), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2545), + [sym_identifier] = ACTIONS(869), + [anon_sym_export] = ACTIONS(673), + [anon_sym_namespace] = ACTIONS(675), + [anon_sym_LBRACE] = ACTIONS(1270), + [anon_sym_type] = ACTIONS(673), + [anon_sym_typeof] = ACTIONS(707), + [anon_sym_import] = ACTIONS(681), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_await] = ACTIONS(687), + [anon_sym_yield] = ACTIONS(689), + [anon_sym_LBRACK] = ACTIONS(879), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(693), + [anon_sym_class] = ACTIONS(695), + [anon_sym_async] = ACTIONS(697), + [anon_sym_function] = ACTIONS(699), + [anon_sym_new] = ACTIONS(881), + [anon_sym_PLUS] = ACTIONS(883), + [anon_sym_DASH] = ACTIONS(883), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_void] = ACTIONS(707), + [anon_sym_delete] = ACTIONS(707), + [anon_sym_PLUS_PLUS] = ACTIONS(709), + [anon_sym_DASH_DASH] = ACTIONS(709), + [anon_sym_DQUOTE] = ACTIONS(711), + [anon_sym_SQUOTE] = ACTIONS(713), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(715), + [sym_number] = ACTIONS(885), + [sym_this] = ACTIONS(721), + [sym_super] = ACTIONS(721), + [sym_true] = ACTIONS(721), + [sym_false] = ACTIONS(721), + [sym_null] = ACTIONS(721), + [sym_undefined] = ACTIONS(721), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(673), + [anon_sym_get] = ACTIONS(673), + [anon_sym_set] = ACTIONS(673), + [anon_sym_declare] = ACTIONS(673), + [anon_sym_public] = ACTIONS(673), + [anon_sym_private] = ACTIONS(673), + [anon_sym_protected] = ACTIONS(673), + [anon_sym_module] = ACTIONS(673), + [anon_sym_any] = ACTIONS(673), + [anon_sym_number] = ACTIONS(673), + [anon_sym_boolean] = ACTIONS(673), + [anon_sym_string] = ACTIONS(673), + [anon_sym_symbol] = ACTIONS(673), + [sym_readonly] = ACTIONS(673), + }, + [350] = { + [sym_import] = STATE(1151), + [sym_parenthesized_expression] = STATE(956), + [sym__expression] = STATE(1617), + [sym_yield_expression] = STATE(1144), + [sym_object] = STATE(1653), + [sym_array] = STATE(1660), + [sym_class] = STATE(1151), + [sym_function] = STATE(1151), + [sym_generator_function] = STATE(1151), + [sym_arrow_function] = STATE(1151), + [sym__call_signature] = STATE(3024), + [sym_call_expression] = STATE(1151), + [sym_new_expression] = STATE(1144), + [sym_await_expression] = STATE(1144), + [sym_member_expression] = STATE(956), + [sym_subscript_expression] = STATE(956), + [sym_assignment_expression] = STATE(1144), + [sym__augmented_assignment_lhs] = STATE(1925), + [sym_augmented_assignment_expression] = STATE(1144), + [sym_ternary_expression] = STATE(1144), + [sym_binary_expression] = STATE(1144), + [sym_unary_expression] = STATE(1144), + [sym_update_expression] = STATE(1144), + [sym_string] = STATE(1151), + [sym_template_string] = STATE(1151), + [sym_regex] = STATE(1151), + [sym_meta_property] = STATE(1151), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(950), + [sym_type_assertion] = STATE(1144), + [sym_as_expression] = STATE(1144), + [sym_internal_module] = STATE(1144), + [sym_type_arguments] = STATE(395), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2580), + [sym_identifier] = ACTIONS(897), + [anon_sym_export] = ACTIONS(577), + [anon_sym_namespace] = ACTIONS(579), [anon_sym_LBRACE] = ACTIONS(509), - [anon_sym_type] = ACTIONS(635), - [anon_sym_typeof] = ACTIONS(659), + [anon_sym_type] = ACTIONS(577), + [anon_sym_typeof] = ACTIONS(601), [anon_sym_import] = ACTIONS(435), - [anon_sym_BANG] = ACTIONS(643), + [anon_sym_BANG] = ACTIONS(585), [anon_sym_LPAREN] = ACTIONS(515), - [anon_sym_await] = ACTIONS(645), - [anon_sym_yield] = ACTIONS(647), + [anon_sym_await] = ACTIONS(587), + [anon_sym_yield] = ACTIONS(589), [anon_sym_LBRACK] = ACTIONS(517), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(449), [anon_sym_class] = ACTIONS(451), - [anon_sym_async] = ACTIONS(651), + [anon_sym_async] = ACTIONS(593), [anon_sym_function] = ACTIONS(455), - [anon_sym_new] = ACTIONS(865), - [anon_sym_PLUS] = ACTIONS(867), - [anon_sym_DASH] = ACTIONS(867), - [anon_sym_TILDE] = ACTIONS(643), - [anon_sym_void] = ACTIONS(659), - [anon_sym_delete] = ACTIONS(659), - [anon_sym_PLUS_PLUS] = ACTIONS(661), - [anon_sym_DASH_DASH] = ACTIONS(661), + [anon_sym_new] = ACTIONS(903), + [anon_sym_PLUS] = ACTIONS(905), + [anon_sym_DASH] = ACTIONS(905), + [anon_sym_TILDE] = ACTIONS(585), + [anon_sym_void] = ACTIONS(601), + [anon_sym_delete] = ACTIONS(601), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(603), [anon_sym_DQUOTE] = ACTIONS(475), [anon_sym_SQUOTE] = ACTIONS(477), [sym_comment] = ACTIONS(3), @@ -43374,65 +44674,65 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(485), [sym_undefined] = ACTIONS(485), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(635), - [anon_sym_get] = ACTIONS(635), - [anon_sym_set] = ACTIONS(635), - [anon_sym_declare] = ACTIONS(635), - [anon_sym_public] = ACTIONS(635), - [anon_sym_private] = ACTIONS(635), - [anon_sym_protected] = ACTIONS(635), - [anon_sym_module] = ACTIONS(635), - [anon_sym_any] = ACTIONS(635), - [anon_sym_number] = ACTIONS(635), - [anon_sym_boolean] = ACTIONS(635), - [anon_sym_string] = ACTIONS(635), - [anon_sym_symbol] = ACTIONS(635), - [sym_readonly] = ACTIONS(635), + [anon_sym_static] = ACTIONS(577), + [anon_sym_get] = ACTIONS(577), + [anon_sym_set] = ACTIONS(577), + [anon_sym_declare] = ACTIONS(577), + [anon_sym_public] = ACTIONS(577), + [anon_sym_private] = ACTIONS(577), + [anon_sym_protected] = ACTIONS(577), + [anon_sym_module] = ACTIONS(577), + [anon_sym_any] = ACTIONS(577), + [anon_sym_number] = ACTIONS(577), + [anon_sym_boolean] = ACTIONS(577), + [anon_sym_string] = ACTIONS(577), + [anon_sym_symbol] = ACTIONS(577), + [sym_readonly] = ACTIONS(577), }, - [337] = { - [sym_import] = STATE(1498), - [sym_parenthesized_expression] = STATE(764), - [sym__expression] = STATE(1203), - [sym_yield_expression] = STATE(1518), - [sym_object] = STATE(1435), - [sym_array] = STATE(1433), - [sym_class] = STATE(1498), - [sym_function] = STATE(1498), - [sym_generator_function] = STATE(1498), - [sym_arrow_function] = STATE(1498), - [sym__call_signature] = STATE(3145), - [sym_call_expression] = STATE(1498), - [sym_new_expression] = STATE(1518), - [sym_await_expression] = STATE(1518), - [sym_member_expression] = STATE(764), - [sym_subscript_expression] = STATE(764), - [sym_assignment_expression] = STATE(1518), - [sym__augmented_assignment_lhs] = STATE(1925), - [sym_augmented_assignment_expression] = STATE(1518), - [sym_ternary_expression] = STATE(1518), - [sym_binary_expression] = STATE(1518), - [sym_unary_expression] = STATE(1518), - [sym_update_expression] = STATE(1518), - [sym_string] = STATE(1498), - [sym_template_string] = STATE(1498), - [sym_regex] = STATE(1498), - [sym_meta_property] = STATE(1498), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(772), - [sym_type_assertion] = STATE(1518), - [sym_as_expression] = STATE(1518), - [sym_internal_module] = STATE(1518), - [sym_type_arguments] = STATE(349), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2554), - [sym_identifier] = ACTIONS(587), - [anon_sym_export] = ACTIONS(589), - [anon_sym_namespace] = ACTIONS(593), - [anon_sym_LBRACE] = ACTIONS(595), - [anon_sym_type] = ACTIONS(589), + [351] = { + [sym_import] = STATE(1523), + [sym_parenthesized_expression] = STATE(768), + [sym__expression] = STATE(1133), + [sym_yield_expression] = STATE(1567), + [sym_object] = STATE(1357), + [sym_array] = STATE(1360), + [sym_class] = STATE(1523), + [sym_function] = STATE(1523), + [sym_generator_function] = STATE(1523), + [sym_arrow_function] = STATE(1523), + [sym__call_signature] = STATE(3196), + [sym_call_expression] = STATE(1523), + [sym_new_expression] = STATE(1567), + [sym_await_expression] = STATE(1567), + [sym_member_expression] = STATE(768), + [sym_subscript_expression] = STATE(768), + [sym_assignment_expression] = STATE(1567), + [sym__augmented_assignment_lhs] = STATE(1928), + [sym_augmented_assignment_expression] = STATE(1567), + [sym_ternary_expression] = STATE(1567), + [sym_binary_expression] = STATE(1567), + [sym_unary_expression] = STATE(1567), + [sym_update_expression] = STATE(1567), + [sym_string] = STATE(1523), + [sym_template_string] = STATE(1523), + [sym_regex] = STATE(1523), + [sym_meta_property] = STATE(1523), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(774), + [sym_type_assertion] = STATE(1567), + [sym_as_expression] = STATE(1567), + [sym_internal_module] = STATE(1567), + [sym_type_arguments] = STATE(292), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2575), + [sym_identifier] = ACTIONS(567), + [anon_sym_export] = ACTIONS(531), + [anon_sym_namespace] = ACTIONS(533), + [anon_sym_LBRACE] = ACTIONS(571), + [anon_sym_type] = ACTIONS(531), [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(597), + [anon_sym_import] = ACTIONS(539), [anon_sym_BANG] = ACTIONS(29), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_await] = ACTIONS(39), @@ -43440,9 +44740,9 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(601), - [anon_sym_async] = ACTIONS(603), - [anon_sym_function] = ACTIONS(605), + [anon_sym_class] = ACTIONS(545), + [anon_sym_async] = ACTIONS(547), + [anon_sym_function] = ACTIONS(549), [anon_sym_new] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(77), [anon_sym_DASH] = ACTIONS(77), @@ -43463,83 +44763,172 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(589), - [anon_sym_get] = ACTIONS(589), - [anon_sym_set] = ACTIONS(589), - [anon_sym_declare] = ACTIONS(589), - [anon_sym_public] = ACTIONS(589), - [anon_sym_private] = ACTIONS(589), - [anon_sym_protected] = ACTIONS(589), - [anon_sym_module] = ACTIONS(589), - [anon_sym_any] = ACTIONS(589), - [anon_sym_number] = ACTIONS(589), - [anon_sym_boolean] = ACTIONS(589), - [anon_sym_string] = ACTIONS(589), - [anon_sym_symbol] = ACTIONS(589), - [sym_readonly] = ACTIONS(589), + [anon_sym_static] = ACTIONS(531), + [anon_sym_get] = ACTIONS(531), + [anon_sym_set] = ACTIONS(531), + [anon_sym_declare] = ACTIONS(531), + [anon_sym_public] = ACTIONS(531), + [anon_sym_private] = ACTIONS(531), + [anon_sym_protected] = ACTIONS(531), + [anon_sym_module] = ACTIONS(531), + [anon_sym_any] = ACTIONS(531), + [anon_sym_number] = ACTIONS(531), + [anon_sym_boolean] = ACTIONS(531), + [anon_sym_string] = ACTIONS(531), + [anon_sym_symbol] = ACTIONS(531), + [sym_readonly] = ACTIONS(531), }, - [338] = { - [sym_import] = STATE(1101), - [sym_parenthesized_expression] = STATE(921), - [sym__expression] = STATE(1286), - [sym_yield_expression] = STATE(1105), - [sym_object] = STATE(1531), - [sym_array] = STATE(1536), - [sym_class] = STATE(1101), - [sym_function] = STATE(1101), - [sym_generator_function] = STATE(1101), - [sym_arrow_function] = STATE(1101), - [sym__call_signature] = STATE(3170), - [sym_call_expression] = STATE(1101), - [sym_new_expression] = STATE(1105), - [sym_await_expression] = STATE(1105), - [sym_member_expression] = STATE(921), - [sym_subscript_expression] = STATE(921), - [sym_assignment_expression] = STATE(1105), - [sym__augmented_assignment_lhs] = STATE(1917), - [sym_augmented_assignment_expression] = STATE(1105), - [sym_ternary_expression] = STATE(1105), - [sym_binary_expression] = STATE(1105), - [sym_unary_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_string] = STATE(1101), - [sym_template_string] = STATE(1101), - [sym_regex] = STATE(1101), - [sym_meta_property] = STATE(1101), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(882), - [sym_type_assertion] = STATE(1105), - [sym_as_expression] = STATE(1105), - [sym_internal_module] = STATE(1105), - [sym_type_arguments] = STATE(355), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2497), - [sym_identifier] = ACTIONS(897), - [anon_sym_export] = ACTIONS(751), - [anon_sym_namespace] = ACTIONS(753), + [352] = { + [sym_import] = STATE(1690), + [sym_parenthesized_expression] = STATE(834), + [sym__expression] = STATE(1263), + [sym_yield_expression] = STATE(1687), + [sym_object] = STATE(1538), + [sym_array] = STATE(1543), + [sym_class] = STATE(1690), + [sym_function] = STATE(1690), + [sym_generator_function] = STATE(1690), + [sym_arrow_function] = STATE(1690), + [sym__call_signature] = STATE(3133), + [sym_call_expression] = STATE(1690), + [sym_new_expression] = STATE(1687), + [sym_await_expression] = STATE(1687), + [sym_member_expression] = STATE(834), + [sym_subscript_expression] = STATE(834), + [sym_assignment_expression] = STATE(1687), + [sym__augmented_assignment_lhs] = STATE(1921), + [sym_augmented_assignment_expression] = STATE(1687), + [sym_ternary_expression] = STATE(1687), + [sym_binary_expression] = STATE(1687), + [sym_unary_expression] = STATE(1687), + [sym_update_expression] = STATE(1687), + [sym_string] = STATE(1690), + [sym_template_string] = STATE(1690), + [sym_regex] = STATE(1690), + [sym_meta_property] = STATE(1690), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(846), + [sym_type_assertion] = STATE(1687), + [sym_as_expression] = STATE(1687), + [sym_internal_module] = STATE(1687), + [sym_type_arguments] = STATE(301), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2545), + [sym_identifier] = ACTIONS(869), + [anon_sym_export] = ACTIONS(673), + [anon_sym_namespace] = ACTIONS(675), + [anon_sym_LBRACE] = ACTIONS(1270), + [anon_sym_type] = ACTIONS(673), + [anon_sym_typeof] = ACTIONS(707), + [anon_sym_import] = ACTIONS(681), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_await] = ACTIONS(687), + [anon_sym_yield] = ACTIONS(689), + [anon_sym_LBRACK] = ACTIONS(879), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(693), + [anon_sym_class] = ACTIONS(695), + [anon_sym_async] = ACTIONS(697), + [anon_sym_function] = ACTIONS(699), + [anon_sym_new] = ACTIONS(881), + [anon_sym_PLUS] = ACTIONS(883), + [anon_sym_DASH] = ACTIONS(883), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_void] = ACTIONS(707), + [anon_sym_delete] = ACTIONS(707), + [anon_sym_PLUS_PLUS] = ACTIONS(709), + [anon_sym_DASH_DASH] = ACTIONS(709), + [anon_sym_DQUOTE] = ACTIONS(711), + [anon_sym_SQUOTE] = ACTIONS(713), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(715), + [sym_number] = ACTIONS(1475), + [sym_this] = ACTIONS(721), + [sym_super] = ACTIONS(721), + [sym_true] = ACTIONS(721), + [sym_false] = ACTIONS(721), + [sym_null] = ACTIONS(721), + [sym_undefined] = ACTIONS(721), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(673), + [anon_sym_get] = ACTIONS(673), + [anon_sym_set] = ACTIONS(673), + [anon_sym_declare] = ACTIONS(673), + [anon_sym_public] = ACTIONS(673), + [anon_sym_private] = ACTIONS(673), + [anon_sym_protected] = ACTIONS(673), + [anon_sym_module] = ACTIONS(673), + [anon_sym_any] = ACTIONS(673), + [anon_sym_number] = ACTIONS(673), + [anon_sym_boolean] = ACTIONS(673), + [anon_sym_string] = ACTIONS(673), + [anon_sym_symbol] = ACTIONS(673), + [sym_readonly] = ACTIONS(673), + }, + [353] = { + [sym_import] = STATE(1151), + [sym_parenthesized_expression] = STATE(837), + [sym__expression] = STATE(1226), + [sym_yield_expression] = STATE(1144), + [sym_object] = STATE(1495), + [sym_array] = STATE(1493), + [sym_class] = STATE(1151), + [sym_function] = STATE(1151), + [sym_generator_function] = STATE(1151), + [sym_arrow_function] = STATE(1151), + [sym__call_signature] = STATE(3190), + [sym_call_expression] = STATE(1151), + [sym_new_expression] = STATE(1144), + [sym_await_expression] = STATE(1144), + [sym_member_expression] = STATE(837), + [sym_subscript_expression] = STATE(837), + [sym_assignment_expression] = STATE(1144), + [sym__augmented_assignment_lhs] = STATE(1927), + [sym_augmented_assignment_expression] = STATE(1144), + [sym_ternary_expression] = STATE(1144), + [sym_binary_expression] = STATE(1144), + [sym_unary_expression] = STATE(1144), + [sym_update_expression] = STATE(1144), + [sym_string] = STATE(1151), + [sym_template_string] = STATE(1151), + [sym_regex] = STATE(1151), + [sym_meta_property] = STATE(1151), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(845), + [sym_type_assertion] = STATE(1144), + [sym_as_expression] = STATE(1144), + [sym_internal_module] = STATE(1144), + [sym_type_arguments] = STATE(357), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2580), + [sym_identifier] = ACTIONS(859), + [anon_sym_export] = ACTIONS(769), + [anon_sym_namespace] = ACTIONS(771), [anon_sym_LBRACE] = ACTIONS(509), - [anon_sym_type] = ACTIONS(751), - [anon_sym_typeof] = ACTIONS(775), + [anon_sym_type] = ACTIONS(769), + [anon_sym_typeof] = ACTIONS(791), [anon_sym_import] = ACTIONS(435), - [anon_sym_BANG] = ACTIONS(757), + [anon_sym_BANG] = ACTIONS(775), [anon_sym_LPAREN] = ACTIONS(515), - [anon_sym_await] = ACTIONS(759), - [anon_sym_yield] = ACTIONS(761), + [anon_sym_await] = ACTIONS(777), + [anon_sym_yield] = ACTIONS(779), [anon_sym_LBRACK] = ACTIONS(517), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(765), + [anon_sym_SLASH] = ACTIONS(781), [anon_sym_class] = ACTIONS(451), - [anon_sym_async] = ACTIONS(767), + [anon_sym_async] = ACTIONS(783), [anon_sym_function] = ACTIONS(455), - [anon_sym_new] = ACTIONS(903), - [anon_sym_PLUS] = ACTIONS(905), - [anon_sym_DASH] = ACTIONS(905), - [anon_sym_TILDE] = ACTIONS(757), - [anon_sym_void] = ACTIONS(775), - [anon_sym_delete] = ACTIONS(775), - [anon_sym_PLUS_PLUS] = ACTIONS(777), - [anon_sym_DASH_DASH] = ACTIONS(777), + [anon_sym_new] = ACTIONS(865), + [anon_sym_PLUS] = ACTIONS(867), + [anon_sym_DASH] = ACTIONS(867), + [anon_sym_TILDE] = ACTIONS(775), + [anon_sym_void] = ACTIONS(791), + [anon_sym_delete] = ACTIONS(791), + [anon_sym_PLUS_PLUS] = ACTIONS(793), + [anon_sym_DASH_DASH] = ACTIONS(793), [anon_sym_DQUOTE] = ACTIONS(475), [anon_sym_SQUOTE] = ACTIONS(477), [sym_comment] = ACTIONS(3), @@ -43552,172 +44941,83 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(485), [sym_undefined] = ACTIONS(485), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(751), - [anon_sym_get] = ACTIONS(751), - [anon_sym_set] = ACTIONS(751), - [anon_sym_declare] = ACTIONS(751), - [anon_sym_public] = ACTIONS(751), - [anon_sym_private] = ACTIONS(751), - [anon_sym_protected] = ACTIONS(751), - [anon_sym_module] = ACTIONS(751), - [anon_sym_any] = ACTIONS(751), - [anon_sym_number] = ACTIONS(751), - [anon_sym_boolean] = ACTIONS(751), - [anon_sym_string] = ACTIONS(751), - [anon_sym_symbol] = ACTIONS(751), - [sym_readonly] = ACTIONS(751), - }, - [339] = { - [sym_import] = STATE(1498), - [sym_parenthesized_expression] = STATE(764), - [sym__expression] = STATE(1260), - [sym_yield_expression] = STATE(1518), - [sym_object] = STATE(1435), - [sym_array] = STATE(1433), - [sym_class] = STATE(1498), - [sym_function] = STATE(1498), - [sym_generator_function] = STATE(1498), - [sym_arrow_function] = STATE(1498), - [sym__call_signature] = STATE(3145), - [sym_call_expression] = STATE(1498), - [sym_new_expression] = STATE(1518), - [sym_await_expression] = STATE(1518), - [sym_member_expression] = STATE(764), - [sym_subscript_expression] = STATE(764), - [sym_assignment_expression] = STATE(1518), - [sym__augmented_assignment_lhs] = STATE(1925), - [sym_augmented_assignment_expression] = STATE(1518), - [sym_ternary_expression] = STATE(1518), - [sym_binary_expression] = STATE(1518), - [sym_unary_expression] = STATE(1518), - [sym_update_expression] = STATE(1518), - [sym_string] = STATE(1498), - [sym_template_string] = STATE(1498), - [sym_regex] = STATE(1498), - [sym_meta_property] = STATE(1498), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(772), - [sym_type_assertion] = STATE(1518), - [sym_as_expression] = STATE(1518), - [sym_internal_module] = STATE(1518), - [sym_type_arguments] = STATE(349), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2554), - [sym_identifier] = ACTIONS(587), - [anon_sym_export] = ACTIONS(589), - [anon_sym_namespace] = ACTIONS(593), - [anon_sym_LBRACE] = ACTIONS(595), - [anon_sym_type] = ACTIONS(589), - [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(597), - [anon_sym_BANG] = ACTIONS(29), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(39), - [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(601), - [anon_sym_async] = ACTIONS(603), - [anon_sym_function] = ACTIONS(605), - [anon_sym_new] = ACTIONS(75), - [anon_sym_PLUS] = ACTIONS(77), - [anon_sym_DASH] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(29), - [anon_sym_void] = ACTIONS(19), - [anon_sym_delete] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(85), - [sym_number] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(589), - [anon_sym_get] = ACTIONS(589), - [anon_sym_set] = ACTIONS(589), - [anon_sym_declare] = ACTIONS(589), - [anon_sym_public] = ACTIONS(589), - [anon_sym_private] = ACTIONS(589), - [anon_sym_protected] = ACTIONS(589), - [anon_sym_module] = ACTIONS(589), - [anon_sym_any] = ACTIONS(589), - [anon_sym_number] = ACTIONS(589), - [anon_sym_boolean] = ACTIONS(589), - [anon_sym_string] = ACTIONS(589), - [anon_sym_symbol] = ACTIONS(589), - [sym_readonly] = ACTIONS(589), + [anon_sym_static] = ACTIONS(769), + [anon_sym_get] = ACTIONS(769), + [anon_sym_set] = ACTIONS(769), + [anon_sym_declare] = ACTIONS(769), + [anon_sym_public] = ACTIONS(769), + [anon_sym_private] = ACTIONS(769), + [anon_sym_protected] = ACTIONS(769), + [anon_sym_module] = ACTIONS(769), + [anon_sym_any] = ACTIONS(769), + [anon_sym_number] = ACTIONS(769), + [anon_sym_boolean] = ACTIONS(769), + [anon_sym_string] = ACTIONS(769), + [anon_sym_symbol] = ACTIONS(769), + [sym_readonly] = ACTIONS(769), }, - [340] = { - [sym_import] = STATE(1101), - [sym_parenthesized_expression] = STATE(948), - [sym__expression] = STATE(1393), - [sym_yield_expression] = STATE(1105), - [sym_object] = STATE(1654), - [sym_array] = STATE(1640), - [sym_class] = STATE(1101), - [sym_function] = STATE(1101), - [sym_generator_function] = STATE(1101), - [sym_arrow_function] = STATE(1101), - [sym__call_signature] = STATE(3002), - [sym_call_expression] = STATE(1101), - [sym_new_expression] = STATE(1105), - [sym_await_expression] = STATE(1105), - [sym_member_expression] = STATE(948), - [sym_subscript_expression] = STATE(948), - [sym_assignment_expression] = STATE(1105), - [sym__augmented_assignment_lhs] = STATE(1921), - [sym_augmented_assignment_expression] = STATE(1105), - [sym_ternary_expression] = STATE(1105), - [sym_binary_expression] = STATE(1105), - [sym_unary_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_string] = STATE(1101), - [sym_template_string] = STATE(1101), - [sym_regex] = STATE(1101), - [sym_meta_property] = STATE(1101), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(949), - [sym_type_assertion] = STATE(1105), - [sym_as_expression] = STATE(1105), - [sym_internal_module] = STATE(1105), - [sym_type_arguments] = STATE(324), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2497), - [sym_identifier] = ACTIONS(859), - [anon_sym_export] = ACTIONS(635), - [anon_sym_namespace] = ACTIONS(637), + [354] = { + [sym_import] = STATE(1151), + [sym_parenthesized_expression] = STATE(759), + [sym__expression] = STATE(1452), + [sym_yield_expression] = STATE(1144), + [sym_object] = STATE(1257), + [sym_array] = STATE(1254), + [sym_class] = STATE(1151), + [sym_function] = STATE(1151), + [sym_generator_function] = STATE(1151), + [sym_arrow_function] = STATE(1151), + [sym__call_signature] = STATE(3082), + [sym_call_expression] = STATE(1151), + [sym_new_expression] = STATE(1144), + [sym_await_expression] = STATE(1144), + [sym_member_expression] = STATE(759), + [sym_subscript_expression] = STATE(759), + [sym_assignment_expression] = STATE(1144), + [sym__augmented_assignment_lhs] = STATE(1924), + [sym_augmented_assignment_expression] = STATE(1144), + [sym_ternary_expression] = STATE(1144), + [sym_binary_expression] = STATE(1144), + [sym_unary_expression] = STATE(1144), + [sym_update_expression] = STATE(1144), + [sym_string] = STATE(1151), + [sym_template_string] = STATE(1151), + [sym_regex] = STATE(1151), + [sym_meta_property] = STATE(1151), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(754), + [sym_type_assertion] = STATE(1144), + [sym_as_expression] = STATE(1144), + [sym_internal_module] = STATE(1144), + [sym_type_arguments] = STATE(326), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2580), + [sym_identifier] = ACTIONS(1477), + [anon_sym_export] = ACTIONS(501), + [anon_sym_namespace] = ACTIONS(507), [anon_sym_LBRACE] = ACTIONS(509), - [anon_sym_type] = ACTIONS(635), - [anon_sym_typeof] = ACTIONS(659), + [anon_sym_type] = ACTIONS(501), + [anon_sym_typeof] = ACTIONS(471), [anon_sym_import] = ACTIONS(435), - [anon_sym_BANG] = ACTIONS(643), + [anon_sym_BANG] = ACTIONS(437), [anon_sym_LPAREN] = ACTIONS(515), - [anon_sym_await] = ACTIONS(645), - [anon_sym_yield] = ACTIONS(647), + [anon_sym_await] = ACTIONS(443), + [anon_sym_yield] = ACTIONS(445), [anon_sym_LBRACK] = ACTIONS(517), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(449), [anon_sym_class] = ACTIONS(451), - [anon_sym_async] = ACTIONS(651), + [anon_sym_async] = ACTIONS(521), [anon_sym_function] = ACTIONS(455), - [anon_sym_new] = ACTIONS(865), - [anon_sym_PLUS] = ACTIONS(867), - [anon_sym_DASH] = ACTIONS(867), - [anon_sym_TILDE] = ACTIONS(643), - [anon_sym_void] = ACTIONS(659), - [anon_sym_delete] = ACTIONS(659), - [anon_sym_PLUS_PLUS] = ACTIONS(661), - [anon_sym_DASH_DASH] = ACTIONS(661), + [anon_sym_new] = ACTIONS(523), + [anon_sym_PLUS] = ACTIONS(525), + [anon_sym_DASH] = ACTIONS(525), + [anon_sym_TILDE] = ACTIONS(437), + [anon_sym_void] = ACTIONS(471), + [anon_sym_delete] = ACTIONS(471), + [anon_sym_PLUS_PLUS] = ACTIONS(473), + [anon_sym_DASH_DASH] = ACTIONS(473), [anon_sym_DQUOTE] = ACTIONS(475), [anon_sym_SQUOTE] = ACTIONS(477), [sym_comment] = ACTIONS(3), @@ -43730,65 +45030,65 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(485), [sym_undefined] = ACTIONS(485), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(635), - [anon_sym_get] = ACTIONS(635), - [anon_sym_set] = ACTIONS(635), - [anon_sym_declare] = ACTIONS(635), - [anon_sym_public] = ACTIONS(635), - [anon_sym_private] = ACTIONS(635), - [anon_sym_protected] = ACTIONS(635), - [anon_sym_module] = ACTIONS(635), - [anon_sym_any] = ACTIONS(635), - [anon_sym_number] = ACTIONS(635), - [anon_sym_boolean] = ACTIONS(635), - [anon_sym_string] = ACTIONS(635), - [anon_sym_symbol] = ACTIONS(635), - [sym_readonly] = ACTIONS(635), + [anon_sym_static] = ACTIONS(501), + [anon_sym_get] = ACTIONS(501), + [anon_sym_set] = ACTIONS(501), + [anon_sym_declare] = ACTIONS(501), + [anon_sym_public] = ACTIONS(501), + [anon_sym_private] = ACTIONS(501), + [anon_sym_protected] = ACTIONS(501), + [anon_sym_module] = ACTIONS(501), + [anon_sym_any] = ACTIONS(501), + [anon_sym_number] = ACTIONS(501), + [anon_sym_boolean] = ACTIONS(501), + [anon_sym_string] = ACTIONS(501), + [anon_sym_symbol] = ACTIONS(501), + [sym_readonly] = ACTIONS(501), }, - [341] = { - [sym_import] = STATE(1498), - [sym_parenthesized_expression] = STATE(764), - [sym__expression] = STATE(1102), - [sym_yield_expression] = STATE(1518), - [sym_object] = STATE(1435), - [sym_array] = STATE(1433), - [sym_class] = STATE(1498), - [sym_function] = STATE(1498), - [sym_generator_function] = STATE(1498), - [sym_arrow_function] = STATE(1498), - [sym__call_signature] = STATE(3145), - [sym_call_expression] = STATE(1498), - [sym_new_expression] = STATE(1518), - [sym_await_expression] = STATE(1518), - [sym_member_expression] = STATE(764), - [sym_subscript_expression] = STATE(764), - [sym_assignment_expression] = STATE(1518), - [sym__augmented_assignment_lhs] = STATE(1925), - [sym_augmented_assignment_expression] = STATE(1518), - [sym_ternary_expression] = STATE(1518), - [sym_binary_expression] = STATE(1518), - [sym_unary_expression] = STATE(1518), - [sym_update_expression] = STATE(1518), - [sym_string] = STATE(1498), - [sym_template_string] = STATE(1498), - [sym_regex] = STATE(1498), - [sym_meta_property] = STATE(1498), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(772), - [sym_type_assertion] = STATE(1518), - [sym_as_expression] = STATE(1518), - [sym_internal_module] = STATE(1518), - [sym_type_arguments] = STATE(349), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2554), - [sym_identifier] = ACTIONS(587), - [anon_sym_export] = ACTIONS(589), - [anon_sym_namespace] = ACTIONS(593), - [anon_sym_LBRACE] = ACTIONS(595), - [anon_sym_type] = ACTIONS(589), + [355] = { + [sym_import] = STATE(1523), + [sym_parenthesized_expression] = STATE(768), + [sym__expression] = STATE(1135), + [sym_yield_expression] = STATE(1567), + [sym_object] = STATE(1357), + [sym_array] = STATE(1360), + [sym_class] = STATE(1523), + [sym_function] = STATE(1523), + [sym_generator_function] = STATE(1523), + [sym_arrow_function] = STATE(1523), + [sym__call_signature] = STATE(3196), + [sym_call_expression] = STATE(1523), + [sym_new_expression] = STATE(1567), + [sym_await_expression] = STATE(1567), + [sym_member_expression] = STATE(768), + [sym_subscript_expression] = STATE(768), + [sym_assignment_expression] = STATE(1567), + [sym__augmented_assignment_lhs] = STATE(1928), + [sym_augmented_assignment_expression] = STATE(1567), + [sym_ternary_expression] = STATE(1567), + [sym_binary_expression] = STATE(1567), + [sym_unary_expression] = STATE(1567), + [sym_update_expression] = STATE(1567), + [sym_string] = STATE(1523), + [sym_template_string] = STATE(1523), + [sym_regex] = STATE(1523), + [sym_meta_property] = STATE(1523), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(774), + [sym_type_assertion] = STATE(1567), + [sym_as_expression] = STATE(1567), + [sym_internal_module] = STATE(1567), + [sym_type_arguments] = STATE(292), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2575), + [sym_identifier] = ACTIONS(567), + [anon_sym_export] = ACTIONS(531), + [anon_sym_namespace] = ACTIONS(533), + [anon_sym_LBRACE] = ACTIONS(571), + [anon_sym_type] = ACTIONS(531), [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(597), + [anon_sym_import] = ACTIONS(539), [anon_sym_BANG] = ACTIONS(29), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_await] = ACTIONS(39), @@ -43796,9 +45096,9 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(601), - [anon_sym_async] = ACTIONS(603), - [anon_sym_function] = ACTIONS(605), + [anon_sym_class] = ACTIONS(545), + [anon_sym_async] = ACTIONS(547), + [anon_sym_function] = ACTIONS(549), [anon_sym_new] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(77), [anon_sym_DASH] = ACTIONS(77), @@ -43819,58 +45119,58 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(589), - [anon_sym_get] = ACTIONS(589), - [anon_sym_set] = ACTIONS(589), - [anon_sym_declare] = ACTIONS(589), - [anon_sym_public] = ACTIONS(589), - [anon_sym_private] = ACTIONS(589), - [anon_sym_protected] = ACTIONS(589), - [anon_sym_module] = ACTIONS(589), - [anon_sym_any] = ACTIONS(589), - [anon_sym_number] = ACTIONS(589), - [anon_sym_boolean] = ACTIONS(589), - [anon_sym_string] = ACTIONS(589), - [anon_sym_symbol] = ACTIONS(589), - [sym_readonly] = ACTIONS(589), + [anon_sym_static] = ACTIONS(531), + [anon_sym_get] = ACTIONS(531), + [anon_sym_set] = ACTIONS(531), + [anon_sym_declare] = ACTIONS(531), + [anon_sym_public] = ACTIONS(531), + [anon_sym_private] = ACTIONS(531), + [anon_sym_protected] = ACTIONS(531), + [anon_sym_module] = ACTIONS(531), + [anon_sym_any] = ACTIONS(531), + [anon_sym_number] = ACTIONS(531), + [anon_sym_boolean] = ACTIONS(531), + [anon_sym_string] = ACTIONS(531), + [anon_sym_symbol] = ACTIONS(531), + [sym_readonly] = ACTIONS(531), }, - [342] = { - [sym_import] = STATE(1101), - [sym_parenthesized_expression] = STATE(739), - [sym__expression] = STATE(1428), - [sym_yield_expression] = STATE(1105), - [sym_object] = STATE(1297), - [sym_array] = STATE(1296), - [sym_class] = STATE(1101), - [sym_function] = STATE(1101), - [sym_generator_function] = STATE(1101), - [sym_arrow_function] = STATE(1101), - [sym__call_signature] = STATE(3116), - [sym_call_expression] = STATE(1101), - [sym_new_expression] = STATE(1105), - [sym_await_expression] = STATE(1105), - [sym_member_expression] = STATE(739), - [sym_subscript_expression] = STATE(739), - [sym_assignment_expression] = STATE(1105), - [sym__augmented_assignment_lhs] = STATE(1920), - [sym_augmented_assignment_expression] = STATE(1105), - [sym_ternary_expression] = STATE(1105), - [sym_binary_expression] = STATE(1105), - [sym_unary_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_string] = STATE(1101), - [sym_template_string] = STATE(1101), - [sym_regex] = STATE(1101), - [sym_meta_property] = STATE(1101), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(755), - [sym_type_assertion] = STATE(1105), - [sym_as_expression] = STATE(1105), - [sym_internal_module] = STATE(1105), - [sym_type_arguments] = STATE(361), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2497), + [356] = { + [sym_import] = STATE(1151), + [sym_parenthesized_expression] = STATE(759), + [sym__expression] = STATE(1093), + [sym_yield_expression] = STATE(1144), + [sym_object] = STATE(1257), + [sym_array] = STATE(1254), + [sym_class] = STATE(1151), + [sym_function] = STATE(1151), + [sym_generator_function] = STATE(1151), + [sym_arrow_function] = STATE(1151), + [sym__call_signature] = STATE(3082), + [sym_call_expression] = STATE(1151), + [sym_new_expression] = STATE(1144), + [sym_await_expression] = STATE(1144), + [sym_member_expression] = STATE(759), + [sym_subscript_expression] = STATE(759), + [sym_assignment_expression] = STATE(1144), + [sym__augmented_assignment_lhs] = STATE(1924), + [sym_augmented_assignment_expression] = STATE(1144), + [sym_ternary_expression] = STATE(1144), + [sym_binary_expression] = STATE(1144), + [sym_unary_expression] = STATE(1144), + [sym_update_expression] = STATE(1144), + [sym_string] = STATE(1151), + [sym_template_string] = STATE(1151), + [sym_regex] = STATE(1151), + [sym_meta_property] = STATE(1151), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(754), + [sym_type_assertion] = STATE(1144), + [sym_as_expression] = STATE(1144), + [sym_internal_module] = STATE(1144), + [sym_type_arguments] = STATE(326), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2580), [sym_identifier] = ACTIONS(499), [anon_sym_export] = ACTIONS(501), [anon_sym_namespace] = ACTIONS(507), @@ -43923,43 +45223,221 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(501), [sym_readonly] = ACTIONS(501), }, - [343] = { - [sym_import] = STATE(1101), - [sym_parenthesized_expression] = STATE(739), - [sym__expression] = STATE(1427), - [sym_yield_expression] = STATE(1105), - [sym_object] = STATE(1297), - [sym_array] = STATE(1296), - [sym_class] = STATE(1101), - [sym_function] = STATE(1101), - [sym_generator_function] = STATE(1101), - [sym_arrow_function] = STATE(1101), - [sym__call_signature] = STATE(3116), - [sym_call_expression] = STATE(1101), - [sym_new_expression] = STATE(1105), - [sym_await_expression] = STATE(1105), - [sym_member_expression] = STATE(739), - [sym_subscript_expression] = STATE(739), - [sym_assignment_expression] = STATE(1105), - [sym__augmented_assignment_lhs] = STATE(1920), - [sym_augmented_assignment_expression] = STATE(1105), - [sym_ternary_expression] = STATE(1105), - [sym_binary_expression] = STATE(1105), - [sym_unary_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_string] = STATE(1101), - [sym_template_string] = STATE(1101), - [sym_regex] = STATE(1101), - [sym_meta_property] = STATE(1101), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(755), - [sym_type_assertion] = STATE(1105), - [sym_as_expression] = STATE(1105), - [sym_internal_module] = STATE(1105), - [sym_type_arguments] = STATE(361), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2497), + [357] = { + [sym_import] = STATE(1151), + [sym_parenthesized_expression] = STATE(837), + [sym__expression] = STATE(990), + [sym_yield_expression] = STATE(1144), + [sym_object] = STATE(1495), + [sym_array] = STATE(1493), + [sym_class] = STATE(1151), + [sym_function] = STATE(1151), + [sym_generator_function] = STATE(1151), + [sym_arrow_function] = STATE(1151), + [sym__call_signature] = STATE(3190), + [sym_call_expression] = STATE(1151), + [sym_new_expression] = STATE(1144), + [sym_await_expression] = STATE(1144), + [sym_member_expression] = STATE(837), + [sym_subscript_expression] = STATE(837), + [sym_assignment_expression] = STATE(1144), + [sym__augmented_assignment_lhs] = STATE(1927), + [sym_augmented_assignment_expression] = STATE(1144), + [sym_ternary_expression] = STATE(1144), + [sym_binary_expression] = STATE(1144), + [sym_unary_expression] = STATE(1144), + [sym_update_expression] = STATE(1144), + [sym_string] = STATE(1151), + [sym_template_string] = STATE(1151), + [sym_regex] = STATE(1151), + [sym_meta_property] = STATE(1151), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(845), + [sym_type_assertion] = STATE(1144), + [sym_as_expression] = STATE(1144), + [sym_internal_module] = STATE(1144), + [sym_type_arguments] = STATE(357), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2580), + [sym_identifier] = ACTIONS(859), + [anon_sym_export] = ACTIONS(769), + [anon_sym_namespace] = ACTIONS(771), + [anon_sym_LBRACE] = ACTIONS(509), + [anon_sym_type] = ACTIONS(769), + [anon_sym_typeof] = ACTIONS(791), + [anon_sym_import] = ACTIONS(435), + [anon_sym_BANG] = ACTIONS(775), + [anon_sym_LPAREN] = ACTIONS(515), + [anon_sym_await] = ACTIONS(777), + [anon_sym_yield] = ACTIONS(779), + [anon_sym_LBRACK] = ACTIONS(517), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(781), + [anon_sym_class] = ACTIONS(451), + [anon_sym_async] = ACTIONS(783), + [anon_sym_function] = ACTIONS(455), + [anon_sym_new] = ACTIONS(865), + [anon_sym_PLUS] = ACTIONS(867), + [anon_sym_DASH] = ACTIONS(867), + [anon_sym_TILDE] = ACTIONS(775), + [anon_sym_void] = ACTIONS(791), + [anon_sym_delete] = ACTIONS(791), + [anon_sym_PLUS_PLUS] = ACTIONS(793), + [anon_sym_DASH_DASH] = ACTIONS(793), + [anon_sym_DQUOTE] = ACTIONS(475), + [anon_sym_SQUOTE] = ACTIONS(477), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(479), + [sym_number] = ACTIONS(527), + [sym_this] = ACTIONS(485), + [sym_super] = ACTIONS(485), + [sym_true] = ACTIONS(485), + [sym_false] = ACTIONS(485), + [sym_null] = ACTIONS(485), + [sym_undefined] = ACTIONS(485), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(769), + [anon_sym_get] = ACTIONS(769), + [anon_sym_set] = ACTIONS(769), + [anon_sym_declare] = ACTIONS(769), + [anon_sym_public] = ACTIONS(769), + [anon_sym_private] = ACTIONS(769), + [anon_sym_protected] = ACTIONS(769), + [anon_sym_module] = ACTIONS(769), + [anon_sym_any] = ACTIONS(769), + [anon_sym_number] = ACTIONS(769), + [anon_sym_boolean] = ACTIONS(769), + [anon_sym_string] = ACTIONS(769), + [anon_sym_symbol] = ACTIONS(769), + [sym_readonly] = ACTIONS(769), + }, + [358] = { + [sym_import] = STATE(1523), + [sym_parenthesized_expression] = STATE(768), + [sym__expression] = STATE(1137), + [sym_yield_expression] = STATE(1567), + [sym_object] = STATE(1357), + [sym_array] = STATE(1360), + [sym_class] = STATE(1523), + [sym_function] = STATE(1523), + [sym_generator_function] = STATE(1523), + [sym_arrow_function] = STATE(1523), + [sym__call_signature] = STATE(3196), + [sym_call_expression] = STATE(1523), + [sym_new_expression] = STATE(1567), + [sym_await_expression] = STATE(1567), + [sym_member_expression] = STATE(768), + [sym_subscript_expression] = STATE(768), + [sym_assignment_expression] = STATE(1567), + [sym__augmented_assignment_lhs] = STATE(1928), + [sym_augmented_assignment_expression] = STATE(1567), + [sym_ternary_expression] = STATE(1567), + [sym_binary_expression] = STATE(1567), + [sym_unary_expression] = STATE(1567), + [sym_update_expression] = STATE(1567), + [sym_string] = STATE(1523), + [sym_template_string] = STATE(1523), + [sym_regex] = STATE(1523), + [sym_meta_property] = STATE(1523), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(774), + [sym_type_assertion] = STATE(1567), + [sym_as_expression] = STATE(1567), + [sym_internal_module] = STATE(1567), + [sym_type_arguments] = STATE(292), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2575), + [sym_identifier] = ACTIONS(567), + [anon_sym_export] = ACTIONS(531), + [anon_sym_namespace] = ACTIONS(533), + [anon_sym_LBRACE] = ACTIONS(571), + [anon_sym_type] = ACTIONS(531), + [anon_sym_typeof] = ACTIONS(19), + [anon_sym_import] = ACTIONS(539), + [anon_sym_BANG] = ACTIONS(29), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(39), + [anon_sym_yield] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(545), + [anon_sym_async] = ACTIONS(547), + [anon_sym_function] = ACTIONS(549), + [anon_sym_new] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(29), + [anon_sym_void] = ACTIONS(19), + [anon_sym_delete] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_DQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(85), + [sym_number] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(531), + [anon_sym_get] = ACTIONS(531), + [anon_sym_set] = ACTIONS(531), + [anon_sym_declare] = ACTIONS(531), + [anon_sym_public] = ACTIONS(531), + [anon_sym_private] = ACTIONS(531), + [anon_sym_protected] = ACTIONS(531), + [anon_sym_module] = ACTIONS(531), + [anon_sym_any] = ACTIONS(531), + [anon_sym_number] = ACTIONS(531), + [anon_sym_boolean] = ACTIONS(531), + [anon_sym_string] = ACTIONS(531), + [anon_sym_symbol] = ACTIONS(531), + [sym_readonly] = ACTIONS(531), + }, + [359] = { + [sym_import] = STATE(1151), + [sym_parenthesized_expression] = STATE(759), + [sym__expression] = STATE(1431), + [sym_yield_expression] = STATE(1144), + [sym_object] = STATE(1257), + [sym_array] = STATE(1254), + [sym_class] = STATE(1151), + [sym_function] = STATE(1151), + [sym_generator_function] = STATE(1151), + [sym_arrow_function] = STATE(1151), + [sym__call_signature] = STATE(3082), + [sym_call_expression] = STATE(1151), + [sym_new_expression] = STATE(1144), + [sym_await_expression] = STATE(1144), + [sym_member_expression] = STATE(759), + [sym_subscript_expression] = STATE(759), + [sym_assignment_expression] = STATE(1144), + [sym__augmented_assignment_lhs] = STATE(1924), + [sym_augmented_assignment_expression] = STATE(1144), + [sym_ternary_expression] = STATE(1144), + [sym_binary_expression] = STATE(1144), + [sym_unary_expression] = STATE(1144), + [sym_update_expression] = STATE(1144), + [sym_string] = STATE(1151), + [sym_template_string] = STATE(1151), + [sym_regex] = STATE(1151), + [sym_meta_property] = STATE(1151), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(754), + [sym_type_assertion] = STATE(1144), + [sym_as_expression] = STATE(1144), + [sym_internal_module] = STATE(1144), + [sym_type_arguments] = STATE(326), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2580), [sym_identifier] = ACTIONS(499), [anon_sym_export] = ACTIONS(501), [anon_sym_namespace] = ACTIONS(507), @@ -44012,73 +45490,73 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(501), [sym_readonly] = ACTIONS(501), }, - [344] = { - [sym_import] = STATE(1101), - [sym_parenthesized_expression] = STATE(921), - [sym__expression] = STATE(1302), - [sym_yield_expression] = STATE(1105), - [sym_object] = STATE(1531), - [sym_array] = STATE(1536), - [sym_class] = STATE(1101), - [sym_function] = STATE(1101), - [sym_generator_function] = STATE(1101), - [sym_arrow_function] = STATE(1101), - [sym__call_signature] = STATE(3170), - [sym_call_expression] = STATE(1101), - [sym_new_expression] = STATE(1105), - [sym_await_expression] = STATE(1105), - [sym_member_expression] = STATE(921), - [sym_subscript_expression] = STATE(921), - [sym_assignment_expression] = STATE(1105), - [sym__augmented_assignment_lhs] = STATE(1917), - [sym_augmented_assignment_expression] = STATE(1105), - [sym_ternary_expression] = STATE(1105), - [sym_binary_expression] = STATE(1105), - [sym_unary_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_string] = STATE(1101), - [sym_template_string] = STATE(1101), - [sym_regex] = STATE(1101), - [sym_meta_property] = STATE(1101), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(882), - [sym_type_assertion] = STATE(1105), - [sym_as_expression] = STATE(1105), - [sym_internal_module] = STATE(1105), - [sym_type_arguments] = STATE(355), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2497), + [360] = { + [sym_import] = STATE(1151), + [sym_parenthesized_expression] = STATE(956), + [sym__expression] = STATE(1388), + [sym_yield_expression] = STATE(1144), + [sym_object] = STATE(1653), + [sym_array] = STATE(1660), + [sym_class] = STATE(1151), + [sym_function] = STATE(1151), + [sym_generator_function] = STATE(1151), + [sym_arrow_function] = STATE(1151), + [sym__call_signature] = STATE(3024), + [sym_call_expression] = STATE(1151), + [sym_new_expression] = STATE(1144), + [sym_await_expression] = STATE(1144), + [sym_member_expression] = STATE(956), + [sym_subscript_expression] = STATE(956), + [sym_assignment_expression] = STATE(1144), + [sym__augmented_assignment_lhs] = STATE(1925), + [sym_augmented_assignment_expression] = STATE(1144), + [sym_ternary_expression] = STATE(1144), + [sym_binary_expression] = STATE(1144), + [sym_unary_expression] = STATE(1144), + [sym_update_expression] = STATE(1144), + [sym_string] = STATE(1151), + [sym_template_string] = STATE(1151), + [sym_regex] = STATE(1151), + [sym_meta_property] = STATE(1151), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(950), + [sym_type_assertion] = STATE(1144), + [sym_as_expression] = STATE(1144), + [sym_internal_module] = STATE(1144), + [sym_type_arguments] = STATE(395), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2580), [sym_identifier] = ACTIONS(897), - [anon_sym_export] = ACTIONS(751), - [anon_sym_namespace] = ACTIONS(753), + [anon_sym_export] = ACTIONS(577), + [anon_sym_namespace] = ACTIONS(579), [anon_sym_LBRACE] = ACTIONS(509), - [anon_sym_type] = ACTIONS(751), - [anon_sym_typeof] = ACTIONS(775), + [anon_sym_type] = ACTIONS(577), + [anon_sym_typeof] = ACTIONS(601), [anon_sym_import] = ACTIONS(435), - [anon_sym_BANG] = ACTIONS(757), + [anon_sym_BANG] = ACTIONS(585), [anon_sym_LPAREN] = ACTIONS(515), - [anon_sym_await] = ACTIONS(759), - [anon_sym_yield] = ACTIONS(761), + [anon_sym_await] = ACTIONS(587), + [anon_sym_yield] = ACTIONS(589), [anon_sym_LBRACK] = ACTIONS(517), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(765), + [anon_sym_SLASH] = ACTIONS(449), [anon_sym_class] = ACTIONS(451), - [anon_sym_async] = ACTIONS(767), + [anon_sym_async] = ACTIONS(593), [anon_sym_function] = ACTIONS(455), [anon_sym_new] = ACTIONS(903), [anon_sym_PLUS] = ACTIONS(905), [anon_sym_DASH] = ACTIONS(905), - [anon_sym_TILDE] = ACTIONS(757), - [anon_sym_void] = ACTIONS(775), - [anon_sym_delete] = ACTIONS(775), - [anon_sym_PLUS_PLUS] = ACTIONS(777), - [anon_sym_DASH_DASH] = ACTIONS(777), + [anon_sym_TILDE] = ACTIONS(585), + [anon_sym_void] = ACTIONS(601), + [anon_sym_delete] = ACTIONS(601), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(603), [anon_sym_DQUOTE] = ACTIONS(475), [anon_sym_SQUOTE] = ACTIONS(477), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(479), - [sym_number] = ACTIONS(1479), + [sym_number] = ACTIONS(527), [sym_this] = ACTIONS(485), [sym_super] = ACTIONS(485), [sym_true] = ACTIONS(485), @@ -44086,261 +45564,172 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(485), [sym_undefined] = ACTIONS(485), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(751), - [anon_sym_get] = ACTIONS(751), - [anon_sym_set] = ACTIONS(751), - [anon_sym_declare] = ACTIONS(751), - [anon_sym_public] = ACTIONS(751), - [anon_sym_private] = ACTIONS(751), - [anon_sym_protected] = ACTIONS(751), - [anon_sym_module] = ACTIONS(751), - [anon_sym_any] = ACTIONS(751), - [anon_sym_number] = ACTIONS(751), - [anon_sym_boolean] = ACTIONS(751), - [anon_sym_string] = ACTIONS(751), - [anon_sym_symbol] = ACTIONS(751), - [sym_readonly] = ACTIONS(751), + [anon_sym_static] = ACTIONS(577), + [anon_sym_get] = ACTIONS(577), + [anon_sym_set] = ACTIONS(577), + [anon_sym_declare] = ACTIONS(577), + [anon_sym_public] = ACTIONS(577), + [anon_sym_private] = ACTIONS(577), + [anon_sym_protected] = ACTIONS(577), + [anon_sym_module] = ACTIONS(577), + [anon_sym_any] = ACTIONS(577), + [anon_sym_number] = ACTIONS(577), + [anon_sym_boolean] = ACTIONS(577), + [anon_sym_string] = ACTIONS(577), + [anon_sym_symbol] = ACTIONS(577), + [sym_readonly] = ACTIONS(577), }, - [345] = { - [sym_import] = STATE(1101), - [sym_parenthesized_expression] = STATE(948), - [sym__expression] = STATE(1392), - [sym_yield_expression] = STATE(1105), - [sym_object] = STATE(1654), - [sym_array] = STATE(1640), - [sym_class] = STATE(1101), - [sym_function] = STATE(1101), - [sym_generator_function] = STATE(1101), - [sym_arrow_function] = STATE(1101), - [sym__call_signature] = STATE(3002), - [sym_call_expression] = STATE(1101), - [sym_new_expression] = STATE(1105), - [sym_await_expression] = STATE(1105), - [sym_member_expression] = STATE(948), - [sym_subscript_expression] = STATE(948), - [sym_assignment_expression] = STATE(1105), - [sym__augmented_assignment_lhs] = STATE(1921), - [sym_augmented_assignment_expression] = STATE(1105), - [sym_ternary_expression] = STATE(1105), - [sym_binary_expression] = STATE(1105), - [sym_unary_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_string] = STATE(1101), - [sym_template_string] = STATE(1101), - [sym_regex] = STATE(1101), - [sym_meta_property] = STATE(1101), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(949), - [sym_type_assertion] = STATE(1105), - [sym_as_expression] = STATE(1105), - [sym_internal_module] = STATE(1105), - [sym_type_arguments] = STATE(324), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2497), - [sym_identifier] = ACTIONS(859), - [anon_sym_export] = ACTIONS(635), - [anon_sym_namespace] = ACTIONS(637), - [anon_sym_LBRACE] = ACTIONS(509), - [anon_sym_type] = ACTIONS(635), - [anon_sym_typeof] = ACTIONS(659), - [anon_sym_import] = ACTIONS(435), - [anon_sym_BANG] = ACTIONS(643), - [anon_sym_LPAREN] = ACTIONS(515), - [anon_sym_await] = ACTIONS(645), - [anon_sym_yield] = ACTIONS(647), - [anon_sym_LBRACK] = ACTIONS(517), + [361] = { + [sym_import] = STATE(1523), + [sym_parenthesized_expression] = STATE(768), + [sym__expression] = STATE(1141), + [sym_yield_expression] = STATE(1567), + [sym_object] = STATE(1357), + [sym_array] = STATE(1360), + [sym_class] = STATE(1523), + [sym_function] = STATE(1523), + [sym_generator_function] = STATE(1523), + [sym_arrow_function] = STATE(1523), + [sym__call_signature] = STATE(3196), + [sym_call_expression] = STATE(1523), + [sym_new_expression] = STATE(1567), + [sym_await_expression] = STATE(1567), + [sym_member_expression] = STATE(768), + [sym_subscript_expression] = STATE(768), + [sym_assignment_expression] = STATE(1567), + [sym__augmented_assignment_lhs] = STATE(1928), + [sym_augmented_assignment_expression] = STATE(1567), + [sym_ternary_expression] = STATE(1567), + [sym_binary_expression] = STATE(1567), + [sym_unary_expression] = STATE(1567), + [sym_update_expression] = STATE(1567), + [sym_string] = STATE(1523), + [sym_template_string] = STATE(1523), + [sym_regex] = STATE(1523), + [sym_meta_property] = STATE(1523), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(774), + [sym_type_assertion] = STATE(1567), + [sym_as_expression] = STATE(1567), + [sym_internal_module] = STATE(1567), + [sym_type_arguments] = STATE(292), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2575), + [sym_identifier] = ACTIONS(567), + [anon_sym_export] = ACTIONS(531), + [anon_sym_namespace] = ACTIONS(533), + [anon_sym_LBRACE] = ACTIONS(571), + [anon_sym_type] = ACTIONS(531), + [anon_sym_typeof] = ACTIONS(19), + [anon_sym_import] = ACTIONS(539), + [anon_sym_BANG] = ACTIONS(29), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(39), + [anon_sym_yield] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(449), - [anon_sym_class] = ACTIONS(451), - [anon_sym_async] = ACTIONS(651), - [anon_sym_function] = ACTIONS(455), - [anon_sym_new] = ACTIONS(865), - [anon_sym_PLUS] = ACTIONS(867), - [anon_sym_DASH] = ACTIONS(867), - [anon_sym_TILDE] = ACTIONS(643), - [anon_sym_void] = ACTIONS(659), - [anon_sym_delete] = ACTIONS(659), - [anon_sym_PLUS_PLUS] = ACTIONS(661), - [anon_sym_DASH_DASH] = ACTIONS(661), - [anon_sym_DQUOTE] = ACTIONS(475), - [anon_sym_SQUOTE] = ACTIONS(477), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(545), + [anon_sym_async] = ACTIONS(547), + [anon_sym_function] = ACTIONS(549), + [anon_sym_new] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(29), + [anon_sym_void] = ACTIONS(19), + [anon_sym_delete] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_DQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(479), - [sym_number] = ACTIONS(527), - [sym_this] = ACTIONS(485), - [sym_super] = ACTIONS(485), - [sym_true] = ACTIONS(485), - [sym_false] = ACTIONS(485), - [sym_null] = ACTIONS(485), - [sym_undefined] = ACTIONS(485), + [anon_sym_BQUOTE] = ACTIONS(85), + [sym_number] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(635), - [anon_sym_get] = ACTIONS(635), - [anon_sym_set] = ACTIONS(635), - [anon_sym_declare] = ACTIONS(635), - [anon_sym_public] = ACTIONS(635), - [anon_sym_private] = ACTIONS(635), - [anon_sym_protected] = ACTIONS(635), - [anon_sym_module] = ACTIONS(635), - [anon_sym_any] = ACTIONS(635), - [anon_sym_number] = ACTIONS(635), - [anon_sym_boolean] = ACTIONS(635), - [anon_sym_string] = ACTIONS(635), - [anon_sym_symbol] = ACTIONS(635), - [sym_readonly] = ACTIONS(635), + [anon_sym_static] = ACTIONS(531), + [anon_sym_get] = ACTIONS(531), + [anon_sym_set] = ACTIONS(531), + [anon_sym_declare] = ACTIONS(531), + [anon_sym_public] = ACTIONS(531), + [anon_sym_private] = ACTIONS(531), + [anon_sym_protected] = ACTIONS(531), + [anon_sym_module] = ACTIONS(531), + [anon_sym_any] = ACTIONS(531), + [anon_sym_number] = ACTIONS(531), + [anon_sym_boolean] = ACTIONS(531), + [anon_sym_string] = ACTIONS(531), + [anon_sym_symbol] = ACTIONS(531), + [sym_readonly] = ACTIONS(531), }, - [346] = { - [sym_import] = STATE(1101), - [sym_parenthesized_expression] = STATE(948), - [sym__expression] = STATE(1391), - [sym_yield_expression] = STATE(1105), - [sym_object] = STATE(1654), - [sym_array] = STATE(1640), - [sym_class] = STATE(1101), - [sym_function] = STATE(1101), - [sym_generator_function] = STATE(1101), - [sym_arrow_function] = STATE(1101), - [sym__call_signature] = STATE(3002), - [sym_call_expression] = STATE(1101), - [sym_new_expression] = STATE(1105), - [sym_await_expression] = STATE(1105), - [sym_member_expression] = STATE(948), - [sym_subscript_expression] = STATE(948), - [sym_assignment_expression] = STATE(1105), - [sym__augmented_assignment_lhs] = STATE(1921), - [sym_augmented_assignment_expression] = STATE(1105), - [sym_ternary_expression] = STATE(1105), - [sym_binary_expression] = STATE(1105), - [sym_unary_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_string] = STATE(1101), - [sym_template_string] = STATE(1101), - [sym_regex] = STATE(1101), - [sym_meta_property] = STATE(1101), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(949), - [sym_type_assertion] = STATE(1105), - [sym_as_expression] = STATE(1105), - [sym_internal_module] = STATE(1105), - [sym_type_arguments] = STATE(324), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2497), + [362] = { + [sym_import] = STATE(1151), + [sym_parenthesized_expression] = STATE(837), + [sym__expression] = STATE(993), + [sym_yield_expression] = STATE(1144), + [sym_object] = STATE(1495), + [sym_array] = STATE(1493), + [sym_class] = STATE(1151), + [sym_function] = STATE(1151), + [sym_generator_function] = STATE(1151), + [sym_arrow_function] = STATE(1151), + [sym__call_signature] = STATE(3190), + [sym_call_expression] = STATE(1151), + [sym_new_expression] = STATE(1144), + [sym_await_expression] = STATE(1144), + [sym_member_expression] = STATE(837), + [sym_subscript_expression] = STATE(837), + [sym_assignment_expression] = STATE(1144), + [sym__augmented_assignment_lhs] = STATE(1927), + [sym_augmented_assignment_expression] = STATE(1144), + [sym_ternary_expression] = STATE(1144), + [sym_binary_expression] = STATE(1144), + [sym_unary_expression] = STATE(1144), + [sym_update_expression] = STATE(1144), + [sym_string] = STATE(1151), + [sym_template_string] = STATE(1151), + [sym_regex] = STATE(1151), + [sym_meta_property] = STATE(1151), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(845), + [sym_type_assertion] = STATE(1144), + [sym_as_expression] = STATE(1144), + [sym_internal_module] = STATE(1144), + [sym_type_arguments] = STATE(357), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2580), [sym_identifier] = ACTIONS(859), - [anon_sym_export] = ACTIONS(635), - [anon_sym_namespace] = ACTIONS(637), + [anon_sym_export] = ACTIONS(769), + [anon_sym_namespace] = ACTIONS(771), [anon_sym_LBRACE] = ACTIONS(509), - [anon_sym_type] = ACTIONS(635), - [anon_sym_typeof] = ACTIONS(659), + [anon_sym_type] = ACTIONS(769), + [anon_sym_typeof] = ACTIONS(791), [anon_sym_import] = ACTIONS(435), - [anon_sym_BANG] = ACTIONS(643), + [anon_sym_BANG] = ACTIONS(775), [anon_sym_LPAREN] = ACTIONS(515), - [anon_sym_await] = ACTIONS(645), - [anon_sym_yield] = ACTIONS(647), + [anon_sym_await] = ACTIONS(777), + [anon_sym_yield] = ACTIONS(779), [anon_sym_LBRACK] = ACTIONS(517), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(449), + [anon_sym_SLASH] = ACTIONS(781), [anon_sym_class] = ACTIONS(451), - [anon_sym_async] = ACTIONS(651), + [anon_sym_async] = ACTIONS(783), [anon_sym_function] = ACTIONS(455), [anon_sym_new] = ACTIONS(865), [anon_sym_PLUS] = ACTIONS(867), [anon_sym_DASH] = ACTIONS(867), - [anon_sym_TILDE] = ACTIONS(643), - [anon_sym_void] = ACTIONS(659), - [anon_sym_delete] = ACTIONS(659), - [anon_sym_PLUS_PLUS] = ACTIONS(661), - [anon_sym_DASH_DASH] = ACTIONS(661), - [anon_sym_DQUOTE] = ACTIONS(475), - [anon_sym_SQUOTE] = ACTIONS(477), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(479), - [sym_number] = ACTIONS(527), - [sym_this] = ACTIONS(485), - [sym_super] = ACTIONS(485), - [sym_true] = ACTIONS(485), - [sym_false] = ACTIONS(485), - [sym_null] = ACTIONS(485), - [sym_undefined] = ACTIONS(485), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(635), - [anon_sym_get] = ACTIONS(635), - [anon_sym_set] = ACTIONS(635), - [anon_sym_declare] = ACTIONS(635), - [anon_sym_public] = ACTIONS(635), - [anon_sym_private] = ACTIONS(635), - [anon_sym_protected] = ACTIONS(635), - [anon_sym_module] = ACTIONS(635), - [anon_sym_any] = ACTIONS(635), - [anon_sym_number] = ACTIONS(635), - [anon_sym_boolean] = ACTIONS(635), - [anon_sym_string] = ACTIONS(635), - [anon_sym_symbol] = ACTIONS(635), - [sym_readonly] = ACTIONS(635), - }, - [347] = { - [sym_import] = STATE(1101), - [sym_parenthesized_expression] = STATE(921), - [sym__expression] = STATE(1282), - [sym_yield_expression] = STATE(1105), - [sym_object] = STATE(1531), - [sym_array] = STATE(1536), - [sym_class] = STATE(1101), - [sym_function] = STATE(1101), - [sym_generator_function] = STATE(1101), - [sym_arrow_function] = STATE(1101), - [sym__call_signature] = STATE(3170), - [sym_call_expression] = STATE(1101), - [sym_new_expression] = STATE(1105), - [sym_await_expression] = STATE(1105), - [sym_member_expression] = STATE(921), - [sym_subscript_expression] = STATE(921), - [sym_assignment_expression] = STATE(1105), - [sym__augmented_assignment_lhs] = STATE(1917), - [sym_augmented_assignment_expression] = STATE(1105), - [sym_ternary_expression] = STATE(1105), - [sym_binary_expression] = STATE(1105), - [sym_unary_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_string] = STATE(1101), - [sym_template_string] = STATE(1101), - [sym_regex] = STATE(1101), - [sym_meta_property] = STATE(1101), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(882), - [sym_type_assertion] = STATE(1105), - [sym_as_expression] = STATE(1105), - [sym_internal_module] = STATE(1105), - [sym_type_arguments] = STATE(355), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2497), - [sym_identifier] = ACTIONS(897), - [anon_sym_export] = ACTIONS(751), - [anon_sym_namespace] = ACTIONS(753), - [anon_sym_LBRACE] = ACTIONS(509), - [anon_sym_type] = ACTIONS(751), - [anon_sym_typeof] = ACTIONS(775), - [anon_sym_import] = ACTIONS(435), - [anon_sym_BANG] = ACTIONS(757), - [anon_sym_LPAREN] = ACTIONS(515), - [anon_sym_await] = ACTIONS(759), - [anon_sym_yield] = ACTIONS(761), - [anon_sym_LBRACK] = ACTIONS(517), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(765), - [anon_sym_class] = ACTIONS(451), - [anon_sym_async] = ACTIONS(767), - [anon_sym_function] = ACTIONS(455), - [anon_sym_new] = ACTIONS(903), - [anon_sym_PLUS] = ACTIONS(905), - [anon_sym_DASH] = ACTIONS(905), - [anon_sym_TILDE] = ACTIONS(757), - [anon_sym_void] = ACTIONS(775), - [anon_sym_delete] = ACTIONS(775), - [anon_sym_PLUS_PLUS] = ACTIONS(777), - [anon_sym_DASH_DASH] = ACTIONS(777), + [anon_sym_TILDE] = ACTIONS(775), + [anon_sym_void] = ACTIONS(791), + [anon_sym_delete] = ACTIONS(791), + [anon_sym_PLUS_PLUS] = ACTIONS(793), + [anon_sym_DASH_DASH] = ACTIONS(793), [anon_sym_DQUOTE] = ACTIONS(475), [anon_sym_SQUOTE] = ACTIONS(477), [sym_comment] = ACTIONS(3), @@ -44353,59 +45742,59 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(485), [sym_undefined] = ACTIONS(485), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(751), - [anon_sym_get] = ACTIONS(751), - [anon_sym_set] = ACTIONS(751), - [anon_sym_declare] = ACTIONS(751), - [anon_sym_public] = ACTIONS(751), - [anon_sym_private] = ACTIONS(751), - [anon_sym_protected] = ACTIONS(751), - [anon_sym_module] = ACTIONS(751), - [anon_sym_any] = ACTIONS(751), - [anon_sym_number] = ACTIONS(751), - [anon_sym_boolean] = ACTIONS(751), - [anon_sym_string] = ACTIONS(751), - [anon_sym_symbol] = ACTIONS(751), - [sym_readonly] = ACTIONS(751), + [anon_sym_static] = ACTIONS(769), + [anon_sym_get] = ACTIONS(769), + [anon_sym_set] = ACTIONS(769), + [anon_sym_declare] = ACTIONS(769), + [anon_sym_public] = ACTIONS(769), + [anon_sym_private] = ACTIONS(769), + [anon_sym_protected] = ACTIONS(769), + [anon_sym_module] = ACTIONS(769), + [anon_sym_any] = ACTIONS(769), + [anon_sym_number] = ACTIONS(769), + [anon_sym_boolean] = ACTIONS(769), + [anon_sym_string] = ACTIONS(769), + [anon_sym_symbol] = ACTIONS(769), + [sym_readonly] = ACTIONS(769), }, - [348] = { - [sym_import] = STATE(1101), - [sym_parenthesized_expression] = STATE(739), - [sym__expression] = STATE(1092), - [sym_yield_expression] = STATE(1105), - [sym_object] = STATE(1297), - [sym_array] = STATE(1296), - [sym_class] = STATE(1101), - [sym_function] = STATE(1101), - [sym_generator_function] = STATE(1101), - [sym_arrow_function] = STATE(1101), - [sym__call_signature] = STATE(3116), - [sym_call_expression] = STATE(1101), - [sym_new_expression] = STATE(1105), - [sym_await_expression] = STATE(1105), - [sym_member_expression] = STATE(739), - [sym_subscript_expression] = STATE(739), - [sym_assignment_expression] = STATE(1105), - [sym__augmented_assignment_lhs] = STATE(1920), - [sym_augmented_assignment_expression] = STATE(1105), - [sym_ternary_expression] = STATE(1105), - [sym_binary_expression] = STATE(1105), - [sym_unary_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_string] = STATE(1101), - [sym_template_string] = STATE(1101), - [sym_regex] = STATE(1101), - [sym_meta_property] = STATE(1101), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(755), - [sym_type_assertion] = STATE(1105), - [sym_as_expression] = STATE(1105), - [sym_internal_module] = STATE(1105), - [sym_type_arguments] = STATE(361), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2497), - [sym_identifier] = ACTIONS(499), + [363] = { + [sym_import] = STATE(1151), + [sym_parenthesized_expression] = STATE(759), + [sym__expression] = STATE(1172), + [sym_yield_expression] = STATE(1144), + [sym_object] = STATE(1257), + [sym_array] = STATE(1254), + [sym_class] = STATE(1151), + [sym_function] = STATE(1151), + [sym_generator_function] = STATE(1151), + [sym_arrow_function] = STATE(1151), + [sym__call_signature] = STATE(3082), + [sym_call_expression] = STATE(1151), + [sym_new_expression] = STATE(1144), + [sym_await_expression] = STATE(1144), + [sym_member_expression] = STATE(759), + [sym_subscript_expression] = STATE(759), + [sym_assignment_expression] = STATE(1144), + [sym__augmented_assignment_lhs] = STATE(1924), + [sym_augmented_assignment_expression] = STATE(1144), + [sym_ternary_expression] = STATE(1144), + [sym_binary_expression] = STATE(1144), + [sym_unary_expression] = STATE(1144), + [sym_update_expression] = STATE(1144), + [sym_string] = STATE(1151), + [sym_template_string] = STATE(1151), + [sym_regex] = STATE(1151), + [sym_meta_property] = STATE(1151), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(754), + [sym_type_assertion] = STATE(1144), + [sym_as_expression] = STATE(1144), + [sym_internal_module] = STATE(1144), + [sym_type_arguments] = STATE(326), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2580), + [sym_identifier] = ACTIONS(1479), [anon_sym_export] = ACTIONS(501), [anon_sym_namespace] = ACTIONS(507), [anon_sym_LBRACE] = ACTIONS(509), @@ -44434,7 +45823,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(477), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(479), - [sym_number] = ACTIONS(1479), + [sym_number] = ACTIONS(527), [sym_this] = ACTIONS(485), [sym_super] = ACTIONS(485), [sym_true] = ACTIONS(485), @@ -44457,50 +45846,50 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(501), [sym_readonly] = ACTIONS(501), }, - [349] = { - [sym_import] = STATE(1498), - [sym_parenthesized_expression] = STATE(764), - [sym__expression] = STATE(1112), - [sym_yield_expression] = STATE(1518), - [sym_object] = STATE(1435), - [sym_array] = STATE(1433), - [sym_class] = STATE(1498), - [sym_function] = STATE(1498), - [sym_generator_function] = STATE(1498), - [sym_arrow_function] = STATE(1498), - [sym__call_signature] = STATE(3145), - [sym_call_expression] = STATE(1498), - [sym_new_expression] = STATE(1518), - [sym_await_expression] = STATE(1518), - [sym_member_expression] = STATE(764), - [sym_subscript_expression] = STATE(764), - [sym_assignment_expression] = STATE(1518), - [sym__augmented_assignment_lhs] = STATE(1925), - [sym_augmented_assignment_expression] = STATE(1518), - [sym_ternary_expression] = STATE(1518), - [sym_binary_expression] = STATE(1518), - [sym_unary_expression] = STATE(1518), - [sym_update_expression] = STATE(1518), - [sym_string] = STATE(1498), - [sym_template_string] = STATE(1498), - [sym_regex] = STATE(1498), - [sym_meta_property] = STATE(1498), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(772), - [sym_type_assertion] = STATE(1518), - [sym_as_expression] = STATE(1518), - [sym_internal_module] = STATE(1518), - [sym_type_arguments] = STATE(349), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2554), - [sym_identifier] = ACTIONS(587), - [anon_sym_export] = ACTIONS(589), - [anon_sym_namespace] = ACTIONS(593), - [anon_sym_LBRACE] = ACTIONS(595), - [anon_sym_type] = ACTIONS(589), + [364] = { + [sym_import] = STATE(1523), + [sym_parenthesized_expression] = STATE(768), + [sym__expression] = STATE(1121), + [sym_yield_expression] = STATE(1567), + [sym_object] = STATE(1357), + [sym_array] = STATE(1360), + [sym_class] = STATE(1523), + [sym_function] = STATE(1523), + [sym_generator_function] = STATE(1523), + [sym_arrow_function] = STATE(1523), + [sym__call_signature] = STATE(3196), + [sym_call_expression] = STATE(1523), + [sym_new_expression] = STATE(1567), + [sym_await_expression] = STATE(1567), + [sym_member_expression] = STATE(768), + [sym_subscript_expression] = STATE(768), + [sym_assignment_expression] = STATE(1567), + [sym__augmented_assignment_lhs] = STATE(1928), + [sym_augmented_assignment_expression] = STATE(1567), + [sym_ternary_expression] = STATE(1567), + [sym_binary_expression] = STATE(1567), + [sym_unary_expression] = STATE(1567), + [sym_update_expression] = STATE(1567), + [sym_string] = STATE(1523), + [sym_template_string] = STATE(1523), + [sym_regex] = STATE(1523), + [sym_meta_property] = STATE(1523), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(774), + [sym_type_assertion] = STATE(1567), + [sym_as_expression] = STATE(1567), + [sym_internal_module] = STATE(1567), + [sym_type_arguments] = STATE(292), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2575), + [sym_identifier] = ACTIONS(567), + [anon_sym_export] = ACTIONS(531), + [anon_sym_namespace] = ACTIONS(533), + [anon_sym_LBRACE] = ACTIONS(571), + [anon_sym_type] = ACTIONS(531), [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(597), + [anon_sym_import] = ACTIONS(539), [anon_sym_BANG] = ACTIONS(29), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_await] = ACTIONS(39), @@ -44508,9 +45897,9 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(601), - [anon_sym_async] = ACTIONS(603), - [anon_sym_function] = ACTIONS(605), + [anon_sym_class] = ACTIONS(545), + [anon_sym_async] = ACTIONS(547), + [anon_sym_function] = ACTIONS(549), [anon_sym_new] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(77), [anon_sym_DASH] = ACTIONS(77), @@ -44531,147 +45920,414 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(589), - [anon_sym_get] = ACTIONS(589), - [anon_sym_set] = ACTIONS(589), - [anon_sym_declare] = ACTIONS(589), - [anon_sym_public] = ACTIONS(589), - [anon_sym_private] = ACTIONS(589), - [anon_sym_protected] = ACTIONS(589), - [anon_sym_module] = ACTIONS(589), - [anon_sym_any] = ACTIONS(589), - [anon_sym_number] = ACTIONS(589), - [anon_sym_boolean] = ACTIONS(589), - [anon_sym_string] = ACTIONS(589), - [anon_sym_symbol] = ACTIONS(589), - [sym_readonly] = ACTIONS(589), + [anon_sym_static] = ACTIONS(531), + [anon_sym_get] = ACTIONS(531), + [anon_sym_set] = ACTIONS(531), + [anon_sym_declare] = ACTIONS(531), + [anon_sym_public] = ACTIONS(531), + [anon_sym_private] = ACTIONS(531), + [anon_sym_protected] = ACTIONS(531), + [anon_sym_module] = ACTIONS(531), + [anon_sym_any] = ACTIONS(531), + [anon_sym_number] = ACTIONS(531), + [anon_sym_boolean] = ACTIONS(531), + [anon_sym_string] = ACTIONS(531), + [anon_sym_symbol] = ACTIONS(531), + [sym_readonly] = ACTIONS(531), }, - [350] = { - [sym_import] = STATE(1498), - [sym_parenthesized_expression] = STATE(764), - [sym__expression] = STATE(1146), - [sym_yield_expression] = STATE(1518), - [sym_object] = STATE(1435), - [sym_array] = STATE(1433), - [sym_class] = STATE(1498), - [sym_function] = STATE(1498), - [sym_generator_function] = STATE(1498), - [sym_arrow_function] = STATE(1498), - [sym__call_signature] = STATE(3145), - [sym_call_expression] = STATE(1498), - [sym_new_expression] = STATE(1518), - [sym_await_expression] = STATE(1518), - [sym_member_expression] = STATE(764), - [sym_subscript_expression] = STATE(764), - [sym_assignment_expression] = STATE(1518), - [sym__augmented_assignment_lhs] = STATE(1925), - [sym_augmented_assignment_expression] = STATE(1518), - [sym_ternary_expression] = STATE(1518), - [sym_binary_expression] = STATE(1518), - [sym_unary_expression] = STATE(1518), - [sym_update_expression] = STATE(1518), - [sym_string] = STATE(1498), - [sym_template_string] = STATE(1498), - [sym_regex] = STATE(1498), - [sym_meta_property] = STATE(1498), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(772), - [sym_type_assertion] = STATE(1518), - [sym_as_expression] = STATE(1518), - [sym_internal_module] = STATE(1518), - [sym_type_arguments] = STATE(349), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2554), - [sym_identifier] = ACTIONS(587), - [anon_sym_export] = ACTIONS(589), - [anon_sym_namespace] = ACTIONS(593), - [anon_sym_LBRACE] = ACTIONS(595), - [anon_sym_type] = ACTIONS(589), - [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(597), - [anon_sym_BANG] = ACTIONS(29), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(39), - [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(63), + [365] = { + [sym_import] = STATE(1690), + [sym_parenthesized_expression] = STATE(834), + [sym__expression] = STATE(1282), + [sym_yield_expression] = STATE(1687), + [sym_object] = STATE(1538), + [sym_array] = STATE(1543), + [sym_class] = STATE(1690), + [sym_function] = STATE(1690), + [sym_generator_function] = STATE(1690), + [sym_arrow_function] = STATE(1690), + [sym__call_signature] = STATE(3133), + [sym_call_expression] = STATE(1690), + [sym_new_expression] = STATE(1687), + [sym_await_expression] = STATE(1687), + [sym_member_expression] = STATE(834), + [sym_subscript_expression] = STATE(834), + [sym_assignment_expression] = STATE(1687), + [sym__augmented_assignment_lhs] = STATE(1921), + [sym_augmented_assignment_expression] = STATE(1687), + [sym_ternary_expression] = STATE(1687), + [sym_binary_expression] = STATE(1687), + [sym_unary_expression] = STATE(1687), + [sym_update_expression] = STATE(1687), + [sym_string] = STATE(1690), + [sym_template_string] = STATE(1690), + [sym_regex] = STATE(1690), + [sym_meta_property] = STATE(1690), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(846), + [sym_type_assertion] = STATE(1687), + [sym_as_expression] = STATE(1687), + [sym_internal_module] = STATE(1687), + [sym_type_arguments] = STATE(301), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2545), + [sym_identifier] = ACTIONS(869), + [anon_sym_export] = ACTIONS(673), + [anon_sym_namespace] = ACTIONS(675), + [anon_sym_LBRACE] = ACTIONS(1270), + [anon_sym_type] = ACTIONS(673), + [anon_sym_typeof] = ACTIONS(707), + [anon_sym_import] = ACTIONS(681), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_await] = ACTIONS(687), + [anon_sym_yield] = ACTIONS(689), + [anon_sym_LBRACK] = ACTIONS(879), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(601), - [anon_sym_async] = ACTIONS(603), - [anon_sym_function] = ACTIONS(605), - [anon_sym_new] = ACTIONS(75), - [anon_sym_PLUS] = ACTIONS(77), - [anon_sym_DASH] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(29), - [anon_sym_void] = ACTIONS(19), - [anon_sym_delete] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(85), - [sym_number] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), + [anon_sym_SLASH] = ACTIONS(693), + [anon_sym_class] = ACTIONS(695), + [anon_sym_async] = ACTIONS(697), + [anon_sym_function] = ACTIONS(699), + [anon_sym_new] = ACTIONS(881), + [anon_sym_PLUS] = ACTIONS(883), + [anon_sym_DASH] = ACTIONS(883), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_void] = ACTIONS(707), + [anon_sym_delete] = ACTIONS(707), + [anon_sym_PLUS_PLUS] = ACTIONS(709), + [anon_sym_DASH_DASH] = ACTIONS(709), + [anon_sym_DQUOTE] = ACTIONS(711), + [anon_sym_SQUOTE] = ACTIONS(713), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(715), + [sym_number] = ACTIONS(885), + [sym_this] = ACTIONS(721), + [sym_super] = ACTIONS(721), + [sym_true] = ACTIONS(721), + [sym_false] = ACTIONS(721), + [sym_null] = ACTIONS(721), + [sym_undefined] = ACTIONS(721), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(589), - [anon_sym_get] = ACTIONS(589), - [anon_sym_set] = ACTIONS(589), - [anon_sym_declare] = ACTIONS(589), - [anon_sym_public] = ACTIONS(589), - [anon_sym_private] = ACTIONS(589), - [anon_sym_protected] = ACTIONS(589), - [anon_sym_module] = ACTIONS(589), - [anon_sym_any] = ACTIONS(589), - [anon_sym_number] = ACTIONS(589), - [anon_sym_boolean] = ACTIONS(589), - [anon_sym_string] = ACTIONS(589), - [anon_sym_symbol] = ACTIONS(589), - [sym_readonly] = ACTIONS(589), + [anon_sym_static] = ACTIONS(673), + [anon_sym_get] = ACTIONS(673), + [anon_sym_set] = ACTIONS(673), + [anon_sym_declare] = ACTIONS(673), + [anon_sym_public] = ACTIONS(673), + [anon_sym_private] = ACTIONS(673), + [anon_sym_protected] = ACTIONS(673), + [anon_sym_module] = ACTIONS(673), + [anon_sym_any] = ACTIONS(673), + [anon_sym_number] = ACTIONS(673), + [anon_sym_boolean] = ACTIONS(673), + [anon_sym_string] = ACTIONS(673), + [anon_sym_symbol] = ACTIONS(673), + [sym_readonly] = ACTIONS(673), }, - [351] = { - [sym_import] = STATE(1101), - [sym_parenthesized_expression] = STATE(739), - [sym__expression] = STATE(1426), - [sym_yield_expression] = STATE(1105), - [sym_object] = STATE(1297), - [sym_array] = STATE(1296), - [sym_class] = STATE(1101), - [sym_function] = STATE(1101), - [sym_generator_function] = STATE(1101), - [sym_arrow_function] = STATE(1101), - [sym__call_signature] = STATE(3116), - [sym_call_expression] = STATE(1101), - [sym_new_expression] = STATE(1105), - [sym_await_expression] = STATE(1105), - [sym_member_expression] = STATE(739), - [sym_subscript_expression] = STATE(739), - [sym_assignment_expression] = STATE(1105), - [sym__augmented_assignment_lhs] = STATE(1920), - [sym_augmented_assignment_expression] = STATE(1105), - [sym_ternary_expression] = STATE(1105), - [sym_binary_expression] = STATE(1105), - [sym_unary_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_string] = STATE(1101), - [sym_template_string] = STATE(1101), - [sym_regex] = STATE(1101), - [sym_meta_property] = STATE(1101), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(755), - [sym_type_assertion] = STATE(1105), - [sym_as_expression] = STATE(1105), - [sym_internal_module] = STATE(1105), - [sym_type_arguments] = STATE(361), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2497), + [366] = { + [ts_builtin_sym_end] = ACTIONS(1481), + [sym_identifier] = ACTIONS(1483), + [anon_sym_export] = ACTIONS(1483), + [anon_sym_default] = ACTIONS(1483), + [anon_sym_EQ] = ACTIONS(1483), + [anon_sym_namespace] = ACTIONS(1483), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_COMMA] = ACTIONS(1481), + [anon_sym_RBRACE] = ACTIONS(1481), + [anon_sym_type] = ACTIONS(1483), + [anon_sym_typeof] = ACTIONS(1483), + [anon_sym_import] = ACTIONS(1483), + [anon_sym_var] = ACTIONS(1483), + [anon_sym_let] = ACTIONS(1483), + [anon_sym_const] = ACTIONS(1483), + [anon_sym_BANG] = ACTIONS(1481), + [anon_sym_else] = ACTIONS(1483), + [anon_sym_if] = ACTIONS(1483), + [anon_sym_switch] = ACTIONS(1483), + [anon_sym_for] = ACTIONS(1483), + [anon_sym_LPAREN] = ACTIONS(1481), + [anon_sym_RPAREN] = ACTIONS(1481), + [anon_sym_await] = ACTIONS(1483), + [anon_sym_while] = ACTIONS(1483), + [anon_sym_do] = ACTIONS(1483), + [anon_sym_try] = ACTIONS(1483), + [anon_sym_with] = ACTIONS(1483), + [anon_sym_break] = ACTIONS(1483), + [anon_sym_continue] = ACTIONS(1483), + [anon_sym_debugger] = ACTIONS(1483), + [anon_sym_return] = ACTIONS(1483), + [anon_sym_throw] = ACTIONS(1483), + [anon_sym_SEMI] = ACTIONS(1481), + [anon_sym_COLON] = ACTIONS(1481), + [anon_sym_case] = ACTIONS(1483), + [anon_sym_yield] = ACTIONS(1483), + [anon_sym_LBRACK] = ACTIONS(1481), + [anon_sym_RBRACK] = ACTIONS(1481), + [anon_sym_LT] = ACTIONS(1481), + [anon_sym_GT] = ACTIONS(1481), + [anon_sym_SLASH] = ACTIONS(1483), + [anon_sym_class] = ACTIONS(1483), + [anon_sym_async] = ACTIONS(1483), + [anon_sym_function] = ACTIONS(1483), + [anon_sym_EQ_GT] = ACTIONS(1481), + [anon_sym_new] = ACTIONS(1483), + [anon_sym_QMARK] = ACTIONS(1481), + [anon_sym_AMP] = ACTIONS(1481), + [anon_sym_PIPE] = ACTIONS(1481), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_TILDE] = ACTIONS(1481), + [anon_sym_void] = ACTIONS(1483), + [anon_sym_delete] = ACTIONS(1483), + [anon_sym_PLUS_PLUS] = ACTIONS(1481), + [anon_sym_DASH_DASH] = ACTIONS(1481), + [anon_sym_DQUOTE] = ACTIONS(1481), + [anon_sym_SQUOTE] = ACTIONS(1481), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1481), + [sym_number] = ACTIONS(1481), + [sym_this] = ACTIONS(1483), + [sym_super] = ACTIONS(1483), + [sym_true] = ACTIONS(1483), + [sym_false] = ACTIONS(1483), + [sym_null] = ACTIONS(1483), + [sym_undefined] = ACTIONS(1483), + [anon_sym_AT] = ACTIONS(1481), + [anon_sym_static] = ACTIONS(1483), + [anon_sym_abstract] = ACTIONS(1483), + [anon_sym_get] = ACTIONS(1483), + [anon_sym_set] = ACTIONS(1483), + [anon_sym_declare] = ACTIONS(1483), + [anon_sym_public] = ACTIONS(1483), + [anon_sym_private] = ACTIONS(1483), + [anon_sym_protected] = ACTIONS(1483), + [anon_sym_module] = ACTIONS(1483), + [anon_sym_any] = ACTIONS(1483), + [anon_sym_number] = ACTIONS(1483), + [anon_sym_boolean] = ACTIONS(1483), + [anon_sym_string] = ACTIONS(1483), + [anon_sym_symbol] = ACTIONS(1483), + [anon_sym_implements] = ACTIONS(1483), + [anon_sym_interface] = ACTIONS(1483), + [anon_sym_extends] = ACTIONS(1483), + [anon_sym_enum] = ACTIONS(1483), + [sym_readonly] = ACTIONS(1483), + }, + [367] = { + [sym_import] = STATE(1690), + [sym_parenthesized_expression] = STATE(834), + [sym__expression] = STATE(1307), + [sym_yield_expression] = STATE(1687), + [sym_object] = STATE(1538), + [sym_array] = STATE(1543), + [sym_class] = STATE(1690), + [sym_function] = STATE(1690), + [sym_generator_function] = STATE(1690), + [sym_arrow_function] = STATE(1690), + [sym__call_signature] = STATE(3133), + [sym_call_expression] = STATE(1690), + [sym_new_expression] = STATE(1687), + [sym_await_expression] = STATE(1687), + [sym_member_expression] = STATE(834), + [sym_subscript_expression] = STATE(834), + [sym_assignment_expression] = STATE(1687), + [sym__augmented_assignment_lhs] = STATE(1921), + [sym_augmented_assignment_expression] = STATE(1687), + [sym_ternary_expression] = STATE(1687), + [sym_binary_expression] = STATE(1687), + [sym_unary_expression] = STATE(1687), + [sym_update_expression] = STATE(1687), + [sym_string] = STATE(1690), + [sym_template_string] = STATE(1690), + [sym_regex] = STATE(1690), + [sym_meta_property] = STATE(1690), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(846), + [sym_type_assertion] = STATE(1687), + [sym_as_expression] = STATE(1687), + [sym_internal_module] = STATE(1687), + [sym_type_arguments] = STATE(301), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2545), + [sym_identifier] = ACTIONS(869), + [anon_sym_export] = ACTIONS(673), + [anon_sym_namespace] = ACTIONS(675), + [anon_sym_LBRACE] = ACTIONS(1270), + [anon_sym_type] = ACTIONS(673), + [anon_sym_typeof] = ACTIONS(707), + [anon_sym_import] = ACTIONS(681), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_await] = ACTIONS(687), + [anon_sym_yield] = ACTIONS(689), + [anon_sym_LBRACK] = ACTIONS(879), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(693), + [anon_sym_class] = ACTIONS(695), + [anon_sym_async] = ACTIONS(697), + [anon_sym_function] = ACTIONS(699), + [anon_sym_new] = ACTIONS(881), + [anon_sym_PLUS] = ACTIONS(883), + [anon_sym_DASH] = ACTIONS(883), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_void] = ACTIONS(707), + [anon_sym_delete] = ACTIONS(707), + [anon_sym_PLUS_PLUS] = ACTIONS(709), + [anon_sym_DASH_DASH] = ACTIONS(709), + [anon_sym_DQUOTE] = ACTIONS(711), + [anon_sym_SQUOTE] = ACTIONS(713), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(715), + [sym_number] = ACTIONS(885), + [sym_this] = ACTIONS(721), + [sym_super] = ACTIONS(721), + [sym_true] = ACTIONS(721), + [sym_false] = ACTIONS(721), + [sym_null] = ACTIONS(721), + [sym_undefined] = ACTIONS(721), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(673), + [anon_sym_get] = ACTIONS(673), + [anon_sym_set] = ACTIONS(673), + [anon_sym_declare] = ACTIONS(673), + [anon_sym_public] = ACTIONS(673), + [anon_sym_private] = ACTIONS(673), + [anon_sym_protected] = ACTIONS(673), + [anon_sym_module] = ACTIONS(673), + [anon_sym_any] = ACTIONS(673), + [anon_sym_number] = ACTIONS(673), + [anon_sym_boolean] = ACTIONS(673), + [anon_sym_string] = ACTIONS(673), + [anon_sym_symbol] = ACTIONS(673), + [sym_readonly] = ACTIONS(673), + }, + [368] = { + [sym_import] = STATE(1690), + [sym_parenthesized_expression] = STATE(834), + [sym__expression] = STATE(1310), + [sym_yield_expression] = STATE(1687), + [sym_object] = STATE(1538), + [sym_array] = STATE(1543), + [sym_class] = STATE(1690), + [sym_function] = STATE(1690), + [sym_generator_function] = STATE(1690), + [sym_arrow_function] = STATE(1690), + [sym__call_signature] = STATE(3133), + [sym_call_expression] = STATE(1690), + [sym_new_expression] = STATE(1687), + [sym_await_expression] = STATE(1687), + [sym_member_expression] = STATE(834), + [sym_subscript_expression] = STATE(834), + [sym_assignment_expression] = STATE(1687), + [sym__augmented_assignment_lhs] = STATE(1921), + [sym_augmented_assignment_expression] = STATE(1687), + [sym_ternary_expression] = STATE(1687), + [sym_binary_expression] = STATE(1687), + [sym_unary_expression] = STATE(1687), + [sym_update_expression] = STATE(1687), + [sym_string] = STATE(1690), + [sym_template_string] = STATE(1690), + [sym_regex] = STATE(1690), + [sym_meta_property] = STATE(1690), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(846), + [sym_type_assertion] = STATE(1687), + [sym_as_expression] = STATE(1687), + [sym_internal_module] = STATE(1687), + [sym_type_arguments] = STATE(301), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2545), + [sym_identifier] = ACTIONS(869), + [anon_sym_export] = ACTIONS(673), + [anon_sym_namespace] = ACTIONS(675), + [anon_sym_LBRACE] = ACTIONS(1270), + [anon_sym_type] = ACTIONS(673), + [anon_sym_typeof] = ACTIONS(707), + [anon_sym_import] = ACTIONS(681), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_await] = ACTIONS(687), + [anon_sym_yield] = ACTIONS(689), + [anon_sym_LBRACK] = ACTIONS(879), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(693), + [anon_sym_class] = ACTIONS(695), + [anon_sym_async] = ACTIONS(697), + [anon_sym_function] = ACTIONS(699), + [anon_sym_new] = ACTIONS(881), + [anon_sym_PLUS] = ACTIONS(883), + [anon_sym_DASH] = ACTIONS(883), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_void] = ACTIONS(707), + [anon_sym_delete] = ACTIONS(707), + [anon_sym_PLUS_PLUS] = ACTIONS(709), + [anon_sym_DASH_DASH] = ACTIONS(709), + [anon_sym_DQUOTE] = ACTIONS(711), + [anon_sym_SQUOTE] = ACTIONS(713), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(715), + [sym_number] = ACTIONS(885), + [sym_this] = ACTIONS(721), + [sym_super] = ACTIONS(721), + [sym_true] = ACTIONS(721), + [sym_false] = ACTIONS(721), + [sym_null] = ACTIONS(721), + [sym_undefined] = ACTIONS(721), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(673), + [anon_sym_get] = ACTIONS(673), + [anon_sym_set] = ACTIONS(673), + [anon_sym_declare] = ACTIONS(673), + [anon_sym_public] = ACTIONS(673), + [anon_sym_private] = ACTIONS(673), + [anon_sym_protected] = ACTIONS(673), + [anon_sym_module] = ACTIONS(673), + [anon_sym_any] = ACTIONS(673), + [anon_sym_number] = ACTIONS(673), + [anon_sym_boolean] = ACTIONS(673), + [anon_sym_string] = ACTIONS(673), + [anon_sym_symbol] = ACTIONS(673), + [sym_readonly] = ACTIONS(673), + }, + [369] = { + [sym_import] = STATE(1151), + [sym_parenthesized_expression] = STATE(759), + [sym__expression] = STATE(1172), + [sym_yield_expression] = STATE(1144), + [sym_object] = STATE(1257), + [sym_array] = STATE(1254), + [sym_class] = STATE(1151), + [sym_function] = STATE(1151), + [sym_generator_function] = STATE(1151), + [sym_arrow_function] = STATE(1151), + [sym__call_signature] = STATE(3082), + [sym_call_expression] = STATE(1151), + [sym_new_expression] = STATE(1144), + [sym_await_expression] = STATE(1144), + [sym_member_expression] = STATE(759), + [sym_subscript_expression] = STATE(759), + [sym_assignment_expression] = STATE(1144), + [sym__augmented_assignment_lhs] = STATE(1924), + [sym_augmented_assignment_expression] = STATE(1144), + [sym_ternary_expression] = STATE(1144), + [sym_binary_expression] = STATE(1144), + [sym_unary_expression] = STATE(1144), + [sym_update_expression] = STATE(1144), + [sym_string] = STATE(1151), + [sym_template_string] = STATE(1151), + [sym_regex] = STATE(1151), + [sym_meta_property] = STATE(1151), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(754), + [sym_type_assertion] = STATE(1144), + [sym_as_expression] = STATE(1144), + [sym_internal_module] = STATE(1144), + [sym_type_arguments] = STATE(326), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2580), [sym_identifier] = ACTIONS(499), [anon_sym_export] = ACTIONS(501), [anon_sym_namespace] = ACTIONS(507), @@ -44724,157 +46380,68 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(501), [sym_readonly] = ACTIONS(501), }, - [352] = { - [sym_import] = STATE(1498), - [sym_parenthesized_expression] = STATE(764), - [sym__expression] = STATE(1177), - [sym_yield_expression] = STATE(1518), - [sym_object] = STATE(1435), - [sym_array] = STATE(1433), - [sym_class] = STATE(1498), - [sym_function] = STATE(1498), - [sym_generator_function] = STATE(1498), - [sym_arrow_function] = STATE(1498), - [sym__call_signature] = STATE(3145), - [sym_call_expression] = STATE(1498), - [sym_new_expression] = STATE(1518), - [sym_await_expression] = STATE(1518), - [sym_member_expression] = STATE(764), - [sym_subscript_expression] = STATE(764), - [sym_assignment_expression] = STATE(1518), + [370] = { + [sym_import] = STATE(1151), + [sym_parenthesized_expression] = STATE(956), + [sym__expression] = STATE(1386), + [sym_yield_expression] = STATE(1144), + [sym_object] = STATE(1653), + [sym_array] = STATE(1660), + [sym_class] = STATE(1151), + [sym_function] = STATE(1151), + [sym_generator_function] = STATE(1151), + [sym_arrow_function] = STATE(1151), + [sym__call_signature] = STATE(3024), + [sym_call_expression] = STATE(1151), + [sym_new_expression] = STATE(1144), + [sym_await_expression] = STATE(1144), + [sym_member_expression] = STATE(956), + [sym_subscript_expression] = STATE(956), + [sym_assignment_expression] = STATE(1144), [sym__augmented_assignment_lhs] = STATE(1925), - [sym_augmented_assignment_expression] = STATE(1518), - [sym_ternary_expression] = STATE(1518), - [sym_binary_expression] = STATE(1518), - [sym_unary_expression] = STATE(1518), - [sym_update_expression] = STATE(1518), - [sym_string] = STATE(1498), - [sym_template_string] = STATE(1498), - [sym_regex] = STATE(1498), - [sym_meta_property] = STATE(1498), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(772), - [sym_type_assertion] = STATE(1518), - [sym_as_expression] = STATE(1518), - [sym_internal_module] = STATE(1518), - [sym_type_arguments] = STATE(349), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2554), - [sym_identifier] = ACTIONS(587), - [anon_sym_export] = ACTIONS(589), - [anon_sym_namespace] = ACTIONS(593), - [anon_sym_LBRACE] = ACTIONS(595), - [anon_sym_type] = ACTIONS(589), - [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(597), - [anon_sym_BANG] = ACTIONS(29), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(39), - [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(601), - [anon_sym_async] = ACTIONS(603), - [anon_sym_function] = ACTIONS(605), - [anon_sym_new] = ACTIONS(75), - [anon_sym_PLUS] = ACTIONS(77), - [anon_sym_DASH] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(29), - [anon_sym_void] = ACTIONS(19), - [anon_sym_delete] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(85), - [sym_number] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(589), - [anon_sym_get] = ACTIONS(589), - [anon_sym_set] = ACTIONS(589), - [anon_sym_declare] = ACTIONS(589), - [anon_sym_public] = ACTIONS(589), - [anon_sym_private] = ACTIONS(589), - [anon_sym_protected] = ACTIONS(589), - [anon_sym_module] = ACTIONS(589), - [anon_sym_any] = ACTIONS(589), - [anon_sym_number] = ACTIONS(589), - [anon_sym_boolean] = ACTIONS(589), - [anon_sym_string] = ACTIONS(589), - [anon_sym_symbol] = ACTIONS(589), - [sym_readonly] = ACTIONS(589), - }, - [353] = { - [sym_import] = STATE(1101), - [sym_parenthesized_expression] = STATE(739), - [sym__expression] = STATE(1428), - [sym_yield_expression] = STATE(1105), - [sym_object] = STATE(1297), - [sym_array] = STATE(1296), - [sym_class] = STATE(1101), - [sym_function] = STATE(1101), - [sym_generator_function] = STATE(1101), - [sym_arrow_function] = STATE(1101), - [sym__call_signature] = STATE(3116), - [sym_call_expression] = STATE(1101), - [sym_new_expression] = STATE(1105), - [sym_await_expression] = STATE(1105), - [sym_member_expression] = STATE(739), - [sym_subscript_expression] = STATE(739), - [sym_assignment_expression] = STATE(1105), - [sym__augmented_assignment_lhs] = STATE(1920), - [sym_augmented_assignment_expression] = STATE(1105), - [sym_ternary_expression] = STATE(1105), - [sym_binary_expression] = STATE(1105), - [sym_unary_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_string] = STATE(1101), - [sym_template_string] = STATE(1101), - [sym_regex] = STATE(1101), - [sym_meta_property] = STATE(1101), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(755), - [sym_type_assertion] = STATE(1105), - [sym_as_expression] = STATE(1105), - [sym_internal_module] = STATE(1105), - [sym_type_arguments] = STATE(361), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2497), - [sym_identifier] = ACTIONS(1481), - [anon_sym_export] = ACTIONS(501), - [anon_sym_namespace] = ACTIONS(507), + [sym_augmented_assignment_expression] = STATE(1144), + [sym_ternary_expression] = STATE(1144), + [sym_binary_expression] = STATE(1144), + [sym_unary_expression] = STATE(1144), + [sym_update_expression] = STATE(1144), + [sym_string] = STATE(1151), + [sym_template_string] = STATE(1151), + [sym_regex] = STATE(1151), + [sym_meta_property] = STATE(1151), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(950), + [sym_type_assertion] = STATE(1144), + [sym_as_expression] = STATE(1144), + [sym_internal_module] = STATE(1144), + [sym_type_arguments] = STATE(395), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2580), + [sym_identifier] = ACTIONS(897), + [anon_sym_export] = ACTIONS(577), + [anon_sym_namespace] = ACTIONS(579), [anon_sym_LBRACE] = ACTIONS(509), - [anon_sym_type] = ACTIONS(501), - [anon_sym_typeof] = ACTIONS(471), + [anon_sym_type] = ACTIONS(577), + [anon_sym_typeof] = ACTIONS(601), [anon_sym_import] = ACTIONS(435), - [anon_sym_BANG] = ACTIONS(437), + [anon_sym_BANG] = ACTIONS(585), [anon_sym_LPAREN] = ACTIONS(515), - [anon_sym_await] = ACTIONS(443), - [anon_sym_yield] = ACTIONS(445), + [anon_sym_await] = ACTIONS(587), + [anon_sym_yield] = ACTIONS(589), [anon_sym_LBRACK] = ACTIONS(517), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(449), [anon_sym_class] = ACTIONS(451), - [anon_sym_async] = ACTIONS(521), + [anon_sym_async] = ACTIONS(593), [anon_sym_function] = ACTIONS(455), - [anon_sym_new] = ACTIONS(523), - [anon_sym_PLUS] = ACTIONS(525), - [anon_sym_DASH] = ACTIONS(525), - [anon_sym_TILDE] = ACTIONS(437), - [anon_sym_void] = ACTIONS(471), - [anon_sym_delete] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(473), - [anon_sym_DASH_DASH] = ACTIONS(473), + [anon_sym_new] = ACTIONS(903), + [anon_sym_PLUS] = ACTIONS(905), + [anon_sym_DASH] = ACTIONS(905), + [anon_sym_TILDE] = ACTIONS(585), + [anon_sym_void] = ACTIONS(601), + [anon_sym_delete] = ACTIONS(601), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(603), [anon_sym_DQUOTE] = ACTIONS(475), [anon_sym_SQUOTE] = ACTIONS(477), [sym_comment] = ACTIONS(3), @@ -44887,65 +46454,243 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(485), [sym_undefined] = ACTIONS(485), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(501), - [anon_sym_get] = ACTIONS(501), - [anon_sym_set] = ACTIONS(501), - [anon_sym_declare] = ACTIONS(501), - [anon_sym_public] = ACTIONS(501), - [anon_sym_private] = ACTIONS(501), - [anon_sym_protected] = ACTIONS(501), - [anon_sym_module] = ACTIONS(501), - [anon_sym_any] = ACTIONS(501), - [anon_sym_number] = ACTIONS(501), - [anon_sym_boolean] = ACTIONS(501), - [anon_sym_string] = ACTIONS(501), - [anon_sym_symbol] = ACTIONS(501), - [sym_readonly] = ACTIONS(501), + [anon_sym_static] = ACTIONS(577), + [anon_sym_get] = ACTIONS(577), + [anon_sym_set] = ACTIONS(577), + [anon_sym_declare] = ACTIONS(577), + [anon_sym_public] = ACTIONS(577), + [anon_sym_private] = ACTIONS(577), + [anon_sym_protected] = ACTIONS(577), + [anon_sym_module] = ACTIONS(577), + [anon_sym_any] = ACTIONS(577), + [anon_sym_number] = ACTIONS(577), + [anon_sym_boolean] = ACTIONS(577), + [anon_sym_string] = ACTIONS(577), + [anon_sym_symbol] = ACTIONS(577), + [sym_readonly] = ACTIONS(577), }, - [354] = { - [sym_import] = STATE(1498), - [sym_parenthesized_expression] = STATE(764), - [sym__expression] = STATE(1152), - [sym_yield_expression] = STATE(1518), - [sym_object] = STATE(1435), - [sym_array] = STATE(1433), - [sym_class] = STATE(1498), - [sym_function] = STATE(1498), - [sym_generator_function] = STATE(1498), - [sym_arrow_function] = STATE(1498), - [sym__call_signature] = STATE(3145), - [sym_call_expression] = STATE(1498), - [sym_new_expression] = STATE(1518), - [sym_await_expression] = STATE(1518), - [sym_member_expression] = STATE(764), - [sym_subscript_expression] = STATE(764), - [sym_assignment_expression] = STATE(1518), - [sym__augmented_assignment_lhs] = STATE(1925), - [sym_augmented_assignment_expression] = STATE(1518), - [sym_ternary_expression] = STATE(1518), - [sym_binary_expression] = STATE(1518), - [sym_unary_expression] = STATE(1518), - [sym_update_expression] = STATE(1518), - [sym_string] = STATE(1498), - [sym_template_string] = STATE(1498), - [sym_regex] = STATE(1498), - [sym_meta_property] = STATE(1498), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(772), - [sym_type_assertion] = STATE(1518), - [sym_as_expression] = STATE(1518), - [sym_internal_module] = STATE(1518), - [sym_type_arguments] = STATE(349), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2554), - [sym_identifier] = ACTIONS(587), - [anon_sym_export] = ACTIONS(589), - [anon_sym_namespace] = ACTIONS(593), - [anon_sym_LBRACE] = ACTIONS(595), - [anon_sym_type] = ACTIONS(589), + [371] = { + [ts_builtin_sym_end] = ACTIONS(1485), + [sym_identifier] = ACTIONS(1487), + [anon_sym_export] = ACTIONS(1487), + [anon_sym_default] = ACTIONS(1487), + [anon_sym_EQ] = ACTIONS(1487), + [anon_sym_namespace] = ACTIONS(1487), + [anon_sym_LBRACE] = ACTIONS(1485), + [anon_sym_COMMA] = ACTIONS(1485), + [anon_sym_RBRACE] = ACTIONS(1485), + [anon_sym_type] = ACTIONS(1487), + [anon_sym_typeof] = ACTIONS(1487), + [anon_sym_import] = ACTIONS(1487), + [anon_sym_var] = ACTIONS(1487), + [anon_sym_let] = ACTIONS(1487), + [anon_sym_const] = ACTIONS(1487), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_else] = ACTIONS(1487), + [anon_sym_if] = ACTIONS(1487), + [anon_sym_switch] = ACTIONS(1487), + [anon_sym_for] = ACTIONS(1487), + [anon_sym_LPAREN] = ACTIONS(1485), + [anon_sym_RPAREN] = ACTIONS(1485), + [anon_sym_await] = ACTIONS(1487), + [anon_sym_while] = ACTIONS(1487), + [anon_sym_do] = ACTIONS(1487), + [anon_sym_try] = ACTIONS(1487), + [anon_sym_with] = ACTIONS(1487), + [anon_sym_break] = ACTIONS(1487), + [anon_sym_continue] = ACTIONS(1487), + [anon_sym_debugger] = ACTIONS(1487), + [anon_sym_return] = ACTIONS(1487), + [anon_sym_throw] = ACTIONS(1487), + [anon_sym_SEMI] = ACTIONS(1485), + [anon_sym_COLON] = ACTIONS(1485), + [anon_sym_case] = ACTIONS(1487), + [anon_sym_yield] = ACTIONS(1487), + [anon_sym_LBRACK] = ACTIONS(1485), + [anon_sym_RBRACK] = ACTIONS(1485), + [anon_sym_LT] = ACTIONS(1485), + [anon_sym_GT] = ACTIONS(1485), + [anon_sym_SLASH] = ACTIONS(1487), + [anon_sym_class] = ACTIONS(1487), + [anon_sym_async] = ACTIONS(1487), + [anon_sym_function] = ACTIONS(1487), + [anon_sym_EQ_GT] = ACTIONS(1485), + [anon_sym_new] = ACTIONS(1487), + [anon_sym_QMARK] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), + [anon_sym_PIPE] = ACTIONS(1485), + [anon_sym_PLUS] = ACTIONS(1487), + [anon_sym_DASH] = ACTIONS(1487), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_void] = ACTIONS(1487), + [anon_sym_delete] = ACTIONS(1487), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), + [anon_sym_DQUOTE] = ACTIONS(1485), + [anon_sym_SQUOTE] = ACTIONS(1485), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1485), + [sym_number] = ACTIONS(1485), + [sym_this] = ACTIONS(1487), + [sym_super] = ACTIONS(1487), + [sym_true] = ACTIONS(1487), + [sym_false] = ACTIONS(1487), + [sym_null] = ACTIONS(1487), + [sym_undefined] = ACTIONS(1487), + [anon_sym_AT] = ACTIONS(1485), + [anon_sym_static] = ACTIONS(1487), + [anon_sym_abstract] = ACTIONS(1487), + [anon_sym_get] = ACTIONS(1487), + [anon_sym_set] = ACTIONS(1487), + [anon_sym_declare] = ACTIONS(1487), + [anon_sym_public] = ACTIONS(1487), + [anon_sym_private] = ACTIONS(1487), + [anon_sym_protected] = ACTIONS(1487), + [anon_sym_module] = ACTIONS(1487), + [anon_sym_any] = ACTIONS(1487), + [anon_sym_number] = ACTIONS(1487), + [anon_sym_boolean] = ACTIONS(1487), + [anon_sym_string] = ACTIONS(1487), + [anon_sym_symbol] = ACTIONS(1487), + [anon_sym_implements] = ACTIONS(1487), + [anon_sym_interface] = ACTIONS(1487), + [anon_sym_extends] = ACTIONS(1487), + [anon_sym_enum] = ACTIONS(1487), + [sym_readonly] = ACTIONS(1487), + }, + [372] = { + [ts_builtin_sym_end] = ACTIONS(1489), + [sym_identifier] = ACTIONS(1491), + [anon_sym_export] = ACTIONS(1491), + [anon_sym_default] = ACTIONS(1491), + [anon_sym_EQ] = ACTIONS(1491), + [anon_sym_namespace] = ACTIONS(1491), + [anon_sym_LBRACE] = ACTIONS(1489), + [anon_sym_COMMA] = ACTIONS(1489), + [anon_sym_RBRACE] = ACTIONS(1489), + [anon_sym_type] = ACTIONS(1491), + [anon_sym_typeof] = ACTIONS(1491), + [anon_sym_import] = ACTIONS(1491), + [anon_sym_var] = ACTIONS(1491), + [anon_sym_let] = ACTIONS(1491), + [anon_sym_const] = ACTIONS(1491), + [anon_sym_BANG] = ACTIONS(1489), + [anon_sym_else] = ACTIONS(1491), + [anon_sym_if] = ACTIONS(1491), + [anon_sym_switch] = ACTIONS(1491), + [anon_sym_for] = ACTIONS(1491), + [anon_sym_LPAREN] = ACTIONS(1489), + [anon_sym_RPAREN] = ACTIONS(1489), + [anon_sym_await] = ACTIONS(1491), + [anon_sym_while] = ACTIONS(1491), + [anon_sym_do] = ACTIONS(1491), + [anon_sym_try] = ACTIONS(1491), + [anon_sym_with] = ACTIONS(1491), + [anon_sym_break] = ACTIONS(1491), + [anon_sym_continue] = ACTIONS(1491), + [anon_sym_debugger] = ACTIONS(1491), + [anon_sym_return] = ACTIONS(1491), + [anon_sym_throw] = ACTIONS(1491), + [anon_sym_SEMI] = ACTIONS(1489), + [anon_sym_COLON] = ACTIONS(1489), + [anon_sym_case] = ACTIONS(1491), + [anon_sym_yield] = ACTIONS(1491), + [anon_sym_LBRACK] = ACTIONS(1489), + [anon_sym_RBRACK] = ACTIONS(1489), + [anon_sym_LT] = ACTIONS(1489), + [anon_sym_GT] = ACTIONS(1489), + [anon_sym_SLASH] = ACTIONS(1491), + [anon_sym_class] = ACTIONS(1491), + [anon_sym_async] = ACTIONS(1491), + [anon_sym_function] = ACTIONS(1491), + [anon_sym_EQ_GT] = ACTIONS(1489), + [anon_sym_new] = ACTIONS(1491), + [anon_sym_QMARK] = ACTIONS(1489), + [anon_sym_AMP] = ACTIONS(1489), + [anon_sym_PIPE] = ACTIONS(1489), + [anon_sym_PLUS] = ACTIONS(1491), + [anon_sym_DASH] = ACTIONS(1491), + [anon_sym_TILDE] = ACTIONS(1489), + [anon_sym_void] = ACTIONS(1491), + [anon_sym_delete] = ACTIONS(1491), + [anon_sym_PLUS_PLUS] = ACTIONS(1489), + [anon_sym_DASH_DASH] = ACTIONS(1489), + [anon_sym_DQUOTE] = ACTIONS(1489), + [anon_sym_SQUOTE] = ACTIONS(1489), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1489), + [sym_number] = ACTIONS(1489), + [sym_this] = ACTIONS(1491), + [sym_super] = ACTIONS(1491), + [sym_true] = ACTIONS(1491), + [sym_false] = ACTIONS(1491), + [sym_null] = ACTIONS(1491), + [sym_undefined] = ACTIONS(1491), + [anon_sym_AT] = ACTIONS(1489), + [anon_sym_static] = ACTIONS(1491), + [anon_sym_abstract] = ACTIONS(1491), + [anon_sym_get] = ACTIONS(1491), + [anon_sym_set] = ACTIONS(1491), + [anon_sym_declare] = ACTIONS(1491), + [anon_sym_public] = ACTIONS(1491), + [anon_sym_private] = ACTIONS(1491), + [anon_sym_protected] = ACTIONS(1491), + [anon_sym_module] = ACTIONS(1491), + [anon_sym_any] = ACTIONS(1491), + [anon_sym_number] = ACTIONS(1491), + [anon_sym_boolean] = ACTIONS(1491), + [anon_sym_string] = ACTIONS(1491), + [anon_sym_symbol] = ACTIONS(1491), + [anon_sym_implements] = ACTIONS(1491), + [anon_sym_interface] = ACTIONS(1491), + [anon_sym_extends] = ACTIONS(1491), + [anon_sym_enum] = ACTIONS(1491), + [sym_readonly] = ACTIONS(1491), + }, + [373] = { + [sym_import] = STATE(1523), + [sym_parenthesized_expression] = STATE(768), + [sym__expression] = STATE(1127), + [sym_yield_expression] = STATE(1567), + [sym_object] = STATE(1357), + [sym_array] = STATE(1360), + [sym_class] = STATE(1523), + [sym_function] = STATE(1523), + [sym_generator_function] = STATE(1523), + [sym_arrow_function] = STATE(1523), + [sym__call_signature] = STATE(3196), + [sym_call_expression] = STATE(1523), + [sym_new_expression] = STATE(1567), + [sym_await_expression] = STATE(1567), + [sym_member_expression] = STATE(768), + [sym_subscript_expression] = STATE(768), + [sym_assignment_expression] = STATE(1567), + [sym__augmented_assignment_lhs] = STATE(1928), + [sym_augmented_assignment_expression] = STATE(1567), + [sym_ternary_expression] = STATE(1567), + [sym_binary_expression] = STATE(1567), + [sym_unary_expression] = STATE(1567), + [sym_update_expression] = STATE(1567), + [sym_string] = STATE(1523), + [sym_template_string] = STATE(1523), + [sym_regex] = STATE(1523), + [sym_meta_property] = STATE(1523), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(774), + [sym_type_assertion] = STATE(1567), + [sym_as_expression] = STATE(1567), + [sym_internal_module] = STATE(1567), + [sym_type_arguments] = STATE(292), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2575), + [sym_identifier] = ACTIONS(567), + [anon_sym_export] = ACTIONS(531), + [anon_sym_namespace] = ACTIONS(533), + [anon_sym_LBRACE] = ACTIONS(571), + [anon_sym_type] = ACTIONS(531), [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(597), + [anon_sym_import] = ACTIONS(539), [anon_sym_BANG] = ACTIONS(29), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_await] = ACTIONS(39), @@ -44953,9 +46698,9 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(601), - [anon_sym_async] = ACTIONS(603), - [anon_sym_function] = ACTIONS(605), + [anon_sym_class] = ACTIONS(545), + [anon_sym_async] = ACTIONS(547), + [anon_sym_function] = ACTIONS(549), [anon_sym_new] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(77), [anon_sym_DASH] = ACTIONS(77), @@ -44976,183 +46721,94 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(589), - [anon_sym_get] = ACTIONS(589), - [anon_sym_set] = ACTIONS(589), - [anon_sym_declare] = ACTIONS(589), - [anon_sym_public] = ACTIONS(589), - [anon_sym_private] = ACTIONS(589), - [anon_sym_protected] = ACTIONS(589), - [anon_sym_module] = ACTIONS(589), - [anon_sym_any] = ACTIONS(589), - [anon_sym_number] = ACTIONS(589), - [anon_sym_boolean] = ACTIONS(589), - [anon_sym_string] = ACTIONS(589), - [anon_sym_symbol] = ACTIONS(589), - [sym_readonly] = ACTIONS(589), - }, - [355] = { - [sym_import] = STATE(1101), - [sym_parenthesized_expression] = STATE(921), - [sym__expression] = STATE(989), - [sym_yield_expression] = STATE(1105), - [sym_object] = STATE(1531), - [sym_array] = STATE(1536), - [sym_class] = STATE(1101), - [sym_function] = STATE(1101), - [sym_generator_function] = STATE(1101), - [sym_arrow_function] = STATE(1101), - [sym__call_signature] = STATE(3170), - [sym_call_expression] = STATE(1101), - [sym_new_expression] = STATE(1105), - [sym_await_expression] = STATE(1105), - [sym_member_expression] = STATE(921), - [sym_subscript_expression] = STATE(921), - [sym_assignment_expression] = STATE(1105), - [sym__augmented_assignment_lhs] = STATE(1917), - [sym_augmented_assignment_expression] = STATE(1105), - [sym_ternary_expression] = STATE(1105), - [sym_binary_expression] = STATE(1105), - [sym_unary_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_string] = STATE(1101), - [sym_template_string] = STATE(1101), - [sym_regex] = STATE(1101), - [sym_meta_property] = STATE(1101), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(882), - [sym_type_assertion] = STATE(1105), - [sym_as_expression] = STATE(1105), - [sym_internal_module] = STATE(1105), - [sym_type_arguments] = STATE(355), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2497), - [sym_identifier] = ACTIONS(897), - [anon_sym_export] = ACTIONS(751), - [anon_sym_namespace] = ACTIONS(753), - [anon_sym_LBRACE] = ACTIONS(509), - [anon_sym_type] = ACTIONS(751), - [anon_sym_typeof] = ACTIONS(775), - [anon_sym_import] = ACTIONS(435), - [anon_sym_BANG] = ACTIONS(757), - [anon_sym_LPAREN] = ACTIONS(515), - [anon_sym_await] = ACTIONS(759), - [anon_sym_yield] = ACTIONS(761), - [anon_sym_LBRACK] = ACTIONS(517), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(765), - [anon_sym_class] = ACTIONS(451), - [anon_sym_async] = ACTIONS(767), - [anon_sym_function] = ACTIONS(455), - [anon_sym_new] = ACTIONS(903), - [anon_sym_PLUS] = ACTIONS(905), - [anon_sym_DASH] = ACTIONS(905), - [anon_sym_TILDE] = ACTIONS(757), - [anon_sym_void] = ACTIONS(775), - [anon_sym_delete] = ACTIONS(775), - [anon_sym_PLUS_PLUS] = ACTIONS(777), - [anon_sym_DASH_DASH] = ACTIONS(777), - [anon_sym_DQUOTE] = ACTIONS(475), - [anon_sym_SQUOTE] = ACTIONS(477), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(479), - [sym_number] = ACTIONS(527), - [sym_this] = ACTIONS(485), - [sym_super] = ACTIONS(485), - [sym_true] = ACTIONS(485), - [sym_false] = ACTIONS(485), - [sym_null] = ACTIONS(485), - [sym_undefined] = ACTIONS(485), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(751), - [anon_sym_get] = ACTIONS(751), - [anon_sym_set] = ACTIONS(751), - [anon_sym_declare] = ACTIONS(751), - [anon_sym_public] = ACTIONS(751), - [anon_sym_private] = ACTIONS(751), - [anon_sym_protected] = ACTIONS(751), - [anon_sym_module] = ACTIONS(751), - [anon_sym_any] = ACTIONS(751), - [anon_sym_number] = ACTIONS(751), - [anon_sym_boolean] = ACTIONS(751), - [anon_sym_string] = ACTIONS(751), - [anon_sym_symbol] = ACTIONS(751), - [sym_readonly] = ACTIONS(751), + [anon_sym_static] = ACTIONS(531), + [anon_sym_get] = ACTIONS(531), + [anon_sym_set] = ACTIONS(531), + [anon_sym_declare] = ACTIONS(531), + [anon_sym_public] = ACTIONS(531), + [anon_sym_private] = ACTIONS(531), + [anon_sym_protected] = ACTIONS(531), + [anon_sym_module] = ACTIONS(531), + [anon_sym_any] = ACTIONS(531), + [anon_sym_number] = ACTIONS(531), + [anon_sym_boolean] = ACTIONS(531), + [anon_sym_string] = ACTIONS(531), + [anon_sym_symbol] = ACTIONS(531), + [sym_readonly] = ACTIONS(531), }, - [356] = { - [sym_import] = STATE(1101), - [sym_parenthesized_expression] = STATE(948), - [sym__expression] = STATE(1389), - [sym_yield_expression] = STATE(1105), - [sym_object] = STATE(1654), - [sym_array] = STATE(1640), - [sym_class] = STATE(1101), - [sym_function] = STATE(1101), - [sym_generator_function] = STATE(1101), - [sym_arrow_function] = STATE(1101), - [sym__call_signature] = STATE(3002), - [sym_call_expression] = STATE(1101), - [sym_new_expression] = STATE(1105), - [sym_await_expression] = STATE(1105), - [sym_member_expression] = STATE(948), - [sym_subscript_expression] = STATE(948), - [sym_assignment_expression] = STATE(1105), - [sym__augmented_assignment_lhs] = STATE(1921), - [sym_augmented_assignment_expression] = STATE(1105), - [sym_ternary_expression] = STATE(1105), - [sym_binary_expression] = STATE(1105), - [sym_unary_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_string] = STATE(1101), - [sym_template_string] = STATE(1101), - [sym_regex] = STATE(1101), - [sym_meta_property] = STATE(1101), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(949), - [sym_type_assertion] = STATE(1105), - [sym_as_expression] = STATE(1105), - [sym_internal_module] = STATE(1105), - [sym_type_arguments] = STATE(324), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2497), - [sym_identifier] = ACTIONS(859), + [374] = { + [sym_import] = STATE(1523), + [sym_parenthesized_expression] = STATE(955), + [sym__expression] = STATE(1383), + [sym_yield_expression] = STATE(1567), + [sym_object] = STATE(1636), + [sym_array] = STATE(1643), + [sym_class] = STATE(1523), + [sym_function] = STATE(1523), + [sym_generator_function] = STATE(1523), + [sym_arrow_function] = STATE(1523), + [sym__call_signature] = STATE(3078), + [sym_call_expression] = STATE(1523), + [sym_new_expression] = STATE(1567), + [sym_await_expression] = STATE(1567), + [sym_member_expression] = STATE(955), + [sym_subscript_expression] = STATE(955), + [sym_assignment_expression] = STATE(1567), + [sym__augmented_assignment_lhs] = STATE(1929), + [sym_augmented_assignment_expression] = STATE(1567), + [sym_ternary_expression] = STATE(1567), + [sym_binary_expression] = STATE(1567), + [sym_unary_expression] = STATE(1567), + [sym_update_expression] = STATE(1567), + [sym_string] = STATE(1523), + [sym_template_string] = STATE(1523), + [sym_regex] = STATE(1523), + [sym_meta_property] = STATE(1523), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(953), + [sym_type_assertion] = STATE(1567), + [sym_as_expression] = STATE(1567), + [sym_internal_module] = STATE(1567), + [sym_type_arguments] = STATE(384), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2575), + [sym_identifier] = ACTIONS(887), [anon_sym_export] = ACTIONS(635), [anon_sym_namespace] = ACTIONS(637), - [anon_sym_LBRACE] = ACTIONS(509), + [anon_sym_LBRACE] = ACTIONS(571), [anon_sym_type] = ACTIONS(635), - [anon_sym_typeof] = ACTIONS(659), - [anon_sym_import] = ACTIONS(435), - [anon_sym_BANG] = ACTIONS(643), - [anon_sym_LPAREN] = ACTIONS(515), - [anon_sym_await] = ACTIONS(645), - [anon_sym_yield] = ACTIONS(647), - [anon_sym_LBRACK] = ACTIONS(517), + [anon_sym_typeof] = ACTIONS(657), + [anon_sym_import] = ACTIONS(539), + [anon_sym_BANG] = ACTIONS(641), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(643), + [anon_sym_yield] = ACTIONS(645), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(449), - [anon_sym_class] = ACTIONS(451), - [anon_sym_async] = ACTIONS(651), - [anon_sym_function] = ACTIONS(455), - [anon_sym_new] = ACTIONS(865), - [anon_sym_PLUS] = ACTIONS(867), - [anon_sym_DASH] = ACTIONS(867), - [anon_sym_TILDE] = ACTIONS(643), - [anon_sym_void] = ACTIONS(659), - [anon_sym_delete] = ACTIONS(659), - [anon_sym_PLUS_PLUS] = ACTIONS(661), - [anon_sym_DASH_DASH] = ACTIONS(661), - [anon_sym_DQUOTE] = ACTIONS(475), - [anon_sym_SQUOTE] = ACTIONS(477), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(545), + [anon_sym_async] = ACTIONS(649), + [anon_sym_function] = ACTIONS(549), + [anon_sym_new] = ACTIONS(893), + [anon_sym_PLUS] = ACTIONS(895), + [anon_sym_DASH] = ACTIONS(895), + [anon_sym_TILDE] = ACTIONS(641), + [anon_sym_void] = ACTIONS(657), + [anon_sym_delete] = ACTIONS(657), + [anon_sym_PLUS_PLUS] = ACTIONS(659), + [anon_sym_DASH_DASH] = ACTIONS(659), + [anon_sym_DQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(479), - [sym_number] = ACTIONS(527), - [sym_this] = ACTIONS(485), - [sym_super] = ACTIONS(485), - [sym_true] = ACTIONS(485), - [sym_false] = ACTIONS(485), - [sym_null] = ACTIONS(485), - [sym_undefined] = ACTIONS(485), + [anon_sym_BQUOTE] = ACTIONS(85), + [sym_number] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(635), [anon_sym_get] = ACTIONS(635), @@ -45169,50 +46825,50 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(635), [sym_readonly] = ACTIONS(635), }, - [357] = { - [sym_import] = STATE(1498), - [sym_parenthesized_expression] = STATE(764), - [sym__expression] = STATE(1155), - [sym_yield_expression] = STATE(1518), - [sym_object] = STATE(1435), - [sym_array] = STATE(1433), - [sym_class] = STATE(1498), - [sym_function] = STATE(1498), - [sym_generator_function] = STATE(1498), - [sym_arrow_function] = STATE(1498), - [sym__call_signature] = STATE(3145), - [sym_call_expression] = STATE(1498), - [sym_new_expression] = STATE(1518), - [sym_await_expression] = STATE(1518), - [sym_member_expression] = STATE(764), - [sym_subscript_expression] = STATE(764), - [sym_assignment_expression] = STATE(1518), - [sym__augmented_assignment_lhs] = STATE(1925), - [sym_augmented_assignment_expression] = STATE(1518), - [sym_ternary_expression] = STATE(1518), - [sym_binary_expression] = STATE(1518), - [sym_unary_expression] = STATE(1518), - [sym_update_expression] = STATE(1518), - [sym_string] = STATE(1498), - [sym_template_string] = STATE(1498), - [sym_regex] = STATE(1498), - [sym_meta_property] = STATE(1498), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(772), - [sym_type_assertion] = STATE(1518), - [sym_as_expression] = STATE(1518), - [sym_internal_module] = STATE(1518), - [sym_type_arguments] = STATE(349), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2554), - [sym_identifier] = ACTIONS(587), - [anon_sym_export] = ACTIONS(589), - [anon_sym_namespace] = ACTIONS(593), - [anon_sym_LBRACE] = ACTIONS(595), - [anon_sym_type] = ACTIONS(589), + [375] = { + [sym_import] = STATE(1523), + [sym_parenthesized_expression] = STATE(768), + [sym__expression] = STATE(1180), + [sym_yield_expression] = STATE(1567), + [sym_object] = STATE(1357), + [sym_array] = STATE(1360), + [sym_class] = STATE(1523), + [sym_function] = STATE(1523), + [sym_generator_function] = STATE(1523), + [sym_arrow_function] = STATE(1523), + [sym__call_signature] = STATE(3196), + [sym_call_expression] = STATE(1523), + [sym_new_expression] = STATE(1567), + [sym_await_expression] = STATE(1567), + [sym_member_expression] = STATE(768), + [sym_subscript_expression] = STATE(768), + [sym_assignment_expression] = STATE(1567), + [sym__augmented_assignment_lhs] = STATE(1928), + [sym_augmented_assignment_expression] = STATE(1567), + [sym_ternary_expression] = STATE(1567), + [sym_binary_expression] = STATE(1567), + [sym_unary_expression] = STATE(1567), + [sym_update_expression] = STATE(1567), + [sym_string] = STATE(1523), + [sym_template_string] = STATE(1523), + [sym_regex] = STATE(1523), + [sym_meta_property] = STATE(1523), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(774), + [sym_type_assertion] = STATE(1567), + [sym_as_expression] = STATE(1567), + [sym_internal_module] = STATE(1567), + [sym_type_arguments] = STATE(292), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2575), + [sym_identifier] = ACTIONS(567), + [anon_sym_export] = ACTIONS(531), + [anon_sym_namespace] = ACTIONS(533), + [anon_sym_LBRACE] = ACTIONS(571), + [anon_sym_type] = ACTIONS(531), [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(597), + [anon_sym_import] = ACTIONS(539), [anon_sym_BANG] = ACTIONS(29), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_await] = ACTIONS(39), @@ -45220,9 +46876,9 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(601), - [anon_sym_async] = ACTIONS(603), - [anon_sym_function] = ACTIONS(605), + [anon_sym_class] = ACTIONS(545), + [anon_sym_async] = ACTIONS(547), + [anon_sym_function] = ACTIONS(549), [anon_sym_new] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(77), [anon_sym_DASH] = ACTIONS(77), @@ -45243,83 +46899,83 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(589), - [anon_sym_get] = ACTIONS(589), - [anon_sym_set] = ACTIONS(589), - [anon_sym_declare] = ACTIONS(589), - [anon_sym_public] = ACTIONS(589), - [anon_sym_private] = ACTIONS(589), - [anon_sym_protected] = ACTIONS(589), - [anon_sym_module] = ACTIONS(589), - [anon_sym_any] = ACTIONS(589), - [anon_sym_number] = ACTIONS(589), - [anon_sym_boolean] = ACTIONS(589), - [anon_sym_string] = ACTIONS(589), - [anon_sym_symbol] = ACTIONS(589), - [sym_readonly] = ACTIONS(589), + [anon_sym_static] = ACTIONS(531), + [anon_sym_get] = ACTIONS(531), + [anon_sym_set] = ACTIONS(531), + [anon_sym_declare] = ACTIONS(531), + [anon_sym_public] = ACTIONS(531), + [anon_sym_private] = ACTIONS(531), + [anon_sym_protected] = ACTIONS(531), + [anon_sym_module] = ACTIONS(531), + [anon_sym_any] = ACTIONS(531), + [anon_sym_number] = ACTIONS(531), + [anon_sym_boolean] = ACTIONS(531), + [anon_sym_string] = ACTIONS(531), + [anon_sym_symbol] = ACTIONS(531), + [sym_readonly] = ACTIONS(531), }, - [358] = { - [sym_import] = STATE(1101), - [sym_parenthesized_expression] = STATE(739), - [sym__expression] = STATE(1431), - [sym_yield_expression] = STATE(1105), - [sym_object] = STATE(1297), - [sym_array] = STATE(1296), - [sym_class] = STATE(1101), - [sym_function] = STATE(1101), - [sym_generator_function] = STATE(1101), - [sym_arrow_function] = STATE(1101), - [sym__call_signature] = STATE(3116), - [sym_call_expression] = STATE(1101), - [sym_new_expression] = STATE(1105), - [sym_await_expression] = STATE(1105), - [sym_member_expression] = STATE(739), - [sym_subscript_expression] = STATE(739), - [sym_assignment_expression] = STATE(1105), - [sym__augmented_assignment_lhs] = STATE(1920), - [sym_augmented_assignment_expression] = STATE(1105), - [sym_ternary_expression] = STATE(1105), - [sym_binary_expression] = STATE(1105), - [sym_unary_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_string] = STATE(1101), - [sym_template_string] = STATE(1101), - [sym_regex] = STATE(1101), - [sym_meta_property] = STATE(1101), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(755), - [sym_type_assertion] = STATE(1105), - [sym_as_expression] = STATE(1105), - [sym_internal_module] = STATE(1105), - [sym_type_arguments] = STATE(361), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2497), - [sym_identifier] = ACTIONS(499), - [anon_sym_export] = ACTIONS(501), - [anon_sym_namespace] = ACTIONS(507), + [376] = { + [sym_import] = STATE(1151), + [sym_parenthesized_expression] = STATE(837), + [sym__expression] = STATE(1300), + [sym_yield_expression] = STATE(1144), + [sym_object] = STATE(1495), + [sym_array] = STATE(1493), + [sym_class] = STATE(1151), + [sym_function] = STATE(1151), + [sym_generator_function] = STATE(1151), + [sym_arrow_function] = STATE(1151), + [sym__call_signature] = STATE(3190), + [sym_call_expression] = STATE(1151), + [sym_new_expression] = STATE(1144), + [sym_await_expression] = STATE(1144), + [sym_member_expression] = STATE(837), + [sym_subscript_expression] = STATE(837), + [sym_assignment_expression] = STATE(1144), + [sym__augmented_assignment_lhs] = STATE(1927), + [sym_augmented_assignment_expression] = STATE(1144), + [sym_ternary_expression] = STATE(1144), + [sym_binary_expression] = STATE(1144), + [sym_unary_expression] = STATE(1144), + [sym_update_expression] = STATE(1144), + [sym_string] = STATE(1151), + [sym_template_string] = STATE(1151), + [sym_regex] = STATE(1151), + [sym_meta_property] = STATE(1151), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(845), + [sym_type_assertion] = STATE(1144), + [sym_as_expression] = STATE(1144), + [sym_internal_module] = STATE(1144), + [sym_type_arguments] = STATE(357), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2580), + [sym_identifier] = ACTIONS(859), + [anon_sym_export] = ACTIONS(769), + [anon_sym_namespace] = ACTIONS(771), [anon_sym_LBRACE] = ACTIONS(509), - [anon_sym_type] = ACTIONS(501), - [anon_sym_typeof] = ACTIONS(471), + [anon_sym_type] = ACTIONS(769), + [anon_sym_typeof] = ACTIONS(791), [anon_sym_import] = ACTIONS(435), - [anon_sym_BANG] = ACTIONS(437), + [anon_sym_BANG] = ACTIONS(775), [anon_sym_LPAREN] = ACTIONS(515), - [anon_sym_await] = ACTIONS(443), - [anon_sym_yield] = ACTIONS(445), + [anon_sym_await] = ACTIONS(777), + [anon_sym_yield] = ACTIONS(779), [anon_sym_LBRACK] = ACTIONS(517), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(449), + [anon_sym_SLASH] = ACTIONS(781), [anon_sym_class] = ACTIONS(451), - [anon_sym_async] = ACTIONS(521), + [anon_sym_async] = ACTIONS(783), [anon_sym_function] = ACTIONS(455), - [anon_sym_new] = ACTIONS(523), - [anon_sym_PLUS] = ACTIONS(525), - [anon_sym_DASH] = ACTIONS(525), - [anon_sym_TILDE] = ACTIONS(437), - [anon_sym_void] = ACTIONS(471), - [anon_sym_delete] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(473), - [anon_sym_DASH_DASH] = ACTIONS(473), + [anon_sym_new] = ACTIONS(865), + [anon_sym_PLUS] = ACTIONS(867), + [anon_sym_DASH] = ACTIONS(867), + [anon_sym_TILDE] = ACTIONS(775), + [anon_sym_void] = ACTIONS(791), + [anon_sym_delete] = ACTIONS(791), + [anon_sym_PLUS_PLUS] = ACTIONS(793), + [anon_sym_DASH_DASH] = ACTIONS(793), [anon_sym_DQUOTE] = ACTIONS(475), [anon_sym_SQUOTE] = ACTIONS(477), [sym_comment] = ACTIONS(3), @@ -45332,183 +46988,539 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(485), [sym_undefined] = ACTIONS(485), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(501), - [anon_sym_get] = ACTIONS(501), - [anon_sym_set] = ACTIONS(501), - [anon_sym_declare] = ACTIONS(501), - [anon_sym_public] = ACTIONS(501), - [anon_sym_private] = ACTIONS(501), - [anon_sym_protected] = ACTIONS(501), - [anon_sym_module] = ACTIONS(501), - [anon_sym_any] = ACTIONS(501), - [anon_sym_number] = ACTIONS(501), - [anon_sym_boolean] = ACTIONS(501), - [anon_sym_string] = ACTIONS(501), - [anon_sym_symbol] = ACTIONS(501), - [sym_readonly] = ACTIONS(501), + [anon_sym_static] = ACTIONS(769), + [anon_sym_get] = ACTIONS(769), + [anon_sym_set] = ACTIONS(769), + [anon_sym_declare] = ACTIONS(769), + [anon_sym_public] = ACTIONS(769), + [anon_sym_private] = ACTIONS(769), + [anon_sym_protected] = ACTIONS(769), + [anon_sym_module] = ACTIONS(769), + [anon_sym_any] = ACTIONS(769), + [anon_sym_number] = ACTIONS(769), + [anon_sym_boolean] = ACTIONS(769), + [anon_sym_string] = ACTIONS(769), + [anon_sym_symbol] = ACTIONS(769), + [sym_readonly] = ACTIONS(769), }, - [359] = { - [sym_import] = STATE(1101), - [sym_parenthesized_expression] = STATE(739), - [sym__expression] = STATE(1091), - [sym_yield_expression] = STATE(1105), - [sym_object] = STATE(1297), - [sym_array] = STATE(1296), - [sym_class] = STATE(1101), - [sym_function] = STATE(1101), - [sym_generator_function] = STATE(1101), - [sym_arrow_function] = STATE(1101), - [sym__call_signature] = STATE(3116), - [sym_call_expression] = STATE(1101), - [sym_new_expression] = STATE(1105), - [sym_await_expression] = STATE(1105), - [sym_member_expression] = STATE(739), - [sym_subscript_expression] = STATE(739), - [sym_assignment_expression] = STATE(1105), - [sym__augmented_assignment_lhs] = STATE(1920), - [sym_augmented_assignment_expression] = STATE(1105), - [sym_ternary_expression] = STATE(1105), - [sym_binary_expression] = STATE(1105), - [sym_unary_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_string] = STATE(1101), - [sym_template_string] = STATE(1101), - [sym_regex] = STATE(1101), - [sym_meta_property] = STATE(1101), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(755), - [sym_type_assertion] = STATE(1105), - [sym_as_expression] = STATE(1105), - [sym_internal_module] = STATE(1105), - [sym_type_arguments] = STATE(361), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2497), - [sym_identifier] = ACTIONS(499), - [anon_sym_export] = ACTIONS(501), - [anon_sym_namespace] = ACTIONS(507), - [anon_sym_LBRACE] = ACTIONS(509), - [anon_sym_type] = ACTIONS(501), - [anon_sym_typeof] = ACTIONS(471), - [anon_sym_import] = ACTIONS(435), - [anon_sym_BANG] = ACTIONS(437), - [anon_sym_LPAREN] = ACTIONS(515), - [anon_sym_await] = ACTIONS(443), - [anon_sym_yield] = ACTIONS(445), - [anon_sym_LBRACK] = ACTIONS(517), + [377] = { + [sym_import] = STATE(1690), + [sym_parenthesized_expression] = STATE(834), + [sym__expression] = STATE(1289), + [sym_yield_expression] = STATE(1687), + [sym_object] = STATE(1538), + [sym_array] = STATE(1543), + [sym_class] = STATE(1690), + [sym_function] = STATE(1690), + [sym_generator_function] = STATE(1690), + [sym_arrow_function] = STATE(1690), + [sym__call_signature] = STATE(3133), + [sym_call_expression] = STATE(1690), + [sym_new_expression] = STATE(1687), + [sym_await_expression] = STATE(1687), + [sym_member_expression] = STATE(834), + [sym_subscript_expression] = STATE(834), + [sym_assignment_expression] = STATE(1687), + [sym__augmented_assignment_lhs] = STATE(1921), + [sym_augmented_assignment_expression] = STATE(1687), + [sym_ternary_expression] = STATE(1687), + [sym_binary_expression] = STATE(1687), + [sym_unary_expression] = STATE(1687), + [sym_update_expression] = STATE(1687), + [sym_string] = STATE(1690), + [sym_template_string] = STATE(1690), + [sym_regex] = STATE(1690), + [sym_meta_property] = STATE(1690), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(846), + [sym_type_assertion] = STATE(1687), + [sym_as_expression] = STATE(1687), + [sym_internal_module] = STATE(1687), + [sym_type_arguments] = STATE(301), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2545), + [sym_identifier] = ACTIONS(869), + [anon_sym_export] = ACTIONS(673), + [anon_sym_namespace] = ACTIONS(675), + [anon_sym_LBRACE] = ACTIONS(1270), + [anon_sym_type] = ACTIONS(673), + [anon_sym_typeof] = ACTIONS(707), + [anon_sym_import] = ACTIONS(681), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_await] = ACTIONS(687), + [anon_sym_yield] = ACTIONS(689), + [anon_sym_LBRACK] = ACTIONS(879), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(449), - [anon_sym_class] = ACTIONS(451), - [anon_sym_async] = ACTIONS(521), - [anon_sym_function] = ACTIONS(455), - [anon_sym_new] = ACTIONS(523), - [anon_sym_PLUS] = ACTIONS(525), - [anon_sym_DASH] = ACTIONS(525), - [anon_sym_TILDE] = ACTIONS(437), - [anon_sym_void] = ACTIONS(471), - [anon_sym_delete] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(473), - [anon_sym_DASH_DASH] = ACTIONS(473), - [anon_sym_DQUOTE] = ACTIONS(475), - [anon_sym_SQUOTE] = ACTIONS(477), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(479), - [sym_number] = ACTIONS(527), - [sym_this] = ACTIONS(485), - [sym_super] = ACTIONS(485), - [sym_true] = ACTIONS(485), - [sym_false] = ACTIONS(485), - [sym_null] = ACTIONS(485), - [sym_undefined] = ACTIONS(485), + [anon_sym_SLASH] = ACTIONS(693), + [anon_sym_class] = ACTIONS(695), + [anon_sym_async] = ACTIONS(697), + [anon_sym_function] = ACTIONS(699), + [anon_sym_new] = ACTIONS(881), + [anon_sym_PLUS] = ACTIONS(883), + [anon_sym_DASH] = ACTIONS(883), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_void] = ACTIONS(707), + [anon_sym_delete] = ACTIONS(707), + [anon_sym_PLUS_PLUS] = ACTIONS(709), + [anon_sym_DASH_DASH] = ACTIONS(709), + [anon_sym_DQUOTE] = ACTIONS(711), + [anon_sym_SQUOTE] = ACTIONS(713), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(715), + [sym_number] = ACTIONS(885), + [sym_this] = ACTIONS(721), + [sym_super] = ACTIONS(721), + [sym_true] = ACTIONS(721), + [sym_false] = ACTIONS(721), + [sym_null] = ACTIONS(721), + [sym_undefined] = ACTIONS(721), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(501), - [anon_sym_get] = ACTIONS(501), - [anon_sym_set] = ACTIONS(501), - [anon_sym_declare] = ACTIONS(501), - [anon_sym_public] = ACTIONS(501), - [anon_sym_private] = ACTIONS(501), - [anon_sym_protected] = ACTIONS(501), - [anon_sym_module] = ACTIONS(501), - [anon_sym_any] = ACTIONS(501), - [anon_sym_number] = ACTIONS(501), - [anon_sym_boolean] = ACTIONS(501), - [anon_sym_string] = ACTIONS(501), - [anon_sym_symbol] = ACTIONS(501), - [sym_readonly] = ACTIONS(501), + [anon_sym_static] = ACTIONS(673), + [anon_sym_get] = ACTIONS(673), + [anon_sym_set] = ACTIONS(673), + [anon_sym_declare] = ACTIONS(673), + [anon_sym_public] = ACTIONS(673), + [anon_sym_private] = ACTIONS(673), + [anon_sym_protected] = ACTIONS(673), + [anon_sym_module] = ACTIONS(673), + [anon_sym_any] = ACTIONS(673), + [anon_sym_number] = ACTIONS(673), + [anon_sym_boolean] = ACTIONS(673), + [anon_sym_string] = ACTIONS(673), + [anon_sym_symbol] = ACTIONS(673), + [sym_readonly] = ACTIONS(673), }, - [360] = { - [sym_import] = STATE(1101), - [sym_parenthesized_expression] = STATE(948), - [sym__expression] = STATE(1603), - [sym_yield_expression] = STATE(1105), - [sym_object] = STATE(1654), - [sym_array] = STATE(1640), - [sym_class] = STATE(1101), - [sym_function] = STATE(1101), - [sym_generator_function] = STATE(1101), - [sym_arrow_function] = STATE(1101), - [sym__call_signature] = STATE(3002), - [sym_call_expression] = STATE(1101), - [sym_new_expression] = STATE(1105), - [sym_await_expression] = STATE(1105), - [sym_member_expression] = STATE(948), - [sym_subscript_expression] = STATE(948), - [sym_assignment_expression] = STATE(1105), + [378] = { + [ts_builtin_sym_end] = ACTIONS(1493), + [sym_identifier] = ACTIONS(1495), + [anon_sym_export] = ACTIONS(1495), + [anon_sym_default] = ACTIONS(1495), + [anon_sym_EQ] = ACTIONS(1495), + [anon_sym_namespace] = ACTIONS(1495), + [anon_sym_LBRACE] = ACTIONS(1493), + [anon_sym_COMMA] = ACTIONS(1493), + [anon_sym_RBRACE] = ACTIONS(1493), + [anon_sym_type] = ACTIONS(1495), + [anon_sym_typeof] = ACTIONS(1495), + [anon_sym_import] = ACTIONS(1495), + [anon_sym_var] = ACTIONS(1495), + [anon_sym_let] = ACTIONS(1495), + [anon_sym_const] = ACTIONS(1495), + [anon_sym_BANG] = ACTIONS(1493), + [anon_sym_else] = ACTIONS(1495), + [anon_sym_if] = ACTIONS(1495), + [anon_sym_switch] = ACTIONS(1495), + [anon_sym_for] = ACTIONS(1495), + [anon_sym_LPAREN] = ACTIONS(1493), + [anon_sym_RPAREN] = ACTIONS(1493), + [anon_sym_await] = ACTIONS(1495), + [anon_sym_while] = ACTIONS(1495), + [anon_sym_do] = ACTIONS(1495), + [anon_sym_try] = ACTIONS(1495), + [anon_sym_with] = ACTIONS(1495), + [anon_sym_break] = ACTIONS(1495), + [anon_sym_continue] = ACTIONS(1495), + [anon_sym_debugger] = ACTIONS(1495), + [anon_sym_return] = ACTIONS(1495), + [anon_sym_throw] = ACTIONS(1495), + [anon_sym_SEMI] = ACTIONS(1493), + [anon_sym_COLON] = ACTIONS(1493), + [anon_sym_case] = ACTIONS(1495), + [anon_sym_yield] = ACTIONS(1495), + [anon_sym_LBRACK] = ACTIONS(1493), + [anon_sym_RBRACK] = ACTIONS(1493), + [anon_sym_LT] = ACTIONS(1493), + [anon_sym_GT] = ACTIONS(1493), + [anon_sym_SLASH] = ACTIONS(1495), + [anon_sym_class] = ACTIONS(1495), + [anon_sym_async] = ACTIONS(1495), + [anon_sym_function] = ACTIONS(1495), + [anon_sym_EQ_GT] = ACTIONS(1493), + [anon_sym_new] = ACTIONS(1495), + [anon_sym_QMARK] = ACTIONS(1493), + [anon_sym_AMP] = ACTIONS(1493), + [anon_sym_PIPE] = ACTIONS(1493), + [anon_sym_PLUS] = ACTIONS(1495), + [anon_sym_DASH] = ACTIONS(1495), + [anon_sym_TILDE] = ACTIONS(1493), + [anon_sym_void] = ACTIONS(1495), + [anon_sym_delete] = ACTIONS(1495), + [anon_sym_PLUS_PLUS] = ACTIONS(1493), + [anon_sym_DASH_DASH] = ACTIONS(1493), + [anon_sym_DQUOTE] = ACTIONS(1493), + [anon_sym_SQUOTE] = ACTIONS(1493), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1493), + [sym_number] = ACTIONS(1493), + [sym_this] = ACTIONS(1495), + [sym_super] = ACTIONS(1495), + [sym_true] = ACTIONS(1495), + [sym_false] = ACTIONS(1495), + [sym_null] = ACTIONS(1495), + [sym_undefined] = ACTIONS(1495), + [anon_sym_AT] = ACTIONS(1493), + [anon_sym_static] = ACTIONS(1495), + [anon_sym_abstract] = ACTIONS(1495), + [anon_sym_get] = ACTIONS(1495), + [anon_sym_set] = ACTIONS(1495), + [anon_sym_declare] = ACTIONS(1495), + [anon_sym_public] = ACTIONS(1495), + [anon_sym_private] = ACTIONS(1495), + [anon_sym_protected] = ACTIONS(1495), + [anon_sym_module] = ACTIONS(1495), + [anon_sym_any] = ACTIONS(1495), + [anon_sym_number] = ACTIONS(1495), + [anon_sym_boolean] = ACTIONS(1495), + [anon_sym_string] = ACTIONS(1495), + [anon_sym_symbol] = ACTIONS(1495), + [anon_sym_implements] = ACTIONS(1495), + [anon_sym_interface] = ACTIONS(1495), + [anon_sym_extends] = ACTIONS(1495), + [anon_sym_enum] = ACTIONS(1495), + [sym_readonly] = ACTIONS(1495), + }, + [379] = { + [sym_import] = STATE(1690), + [sym_parenthesized_expression] = STATE(834), + [sym__expression] = STATE(1287), + [sym_yield_expression] = STATE(1687), + [sym_object] = STATE(1538), + [sym_array] = STATE(1543), + [sym_class] = STATE(1690), + [sym_function] = STATE(1690), + [sym_generator_function] = STATE(1690), + [sym_arrow_function] = STATE(1690), + [sym__call_signature] = STATE(3133), + [sym_call_expression] = STATE(1690), + [sym_new_expression] = STATE(1687), + [sym_await_expression] = STATE(1687), + [sym_member_expression] = STATE(834), + [sym_subscript_expression] = STATE(834), + [sym_assignment_expression] = STATE(1687), [sym__augmented_assignment_lhs] = STATE(1921), - [sym_augmented_assignment_expression] = STATE(1105), - [sym_ternary_expression] = STATE(1105), - [sym_binary_expression] = STATE(1105), - [sym_unary_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_string] = STATE(1101), - [sym_template_string] = STATE(1101), - [sym_regex] = STATE(1101), - [sym_meta_property] = STATE(1101), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(949), - [sym_type_assertion] = STATE(1105), - [sym_as_expression] = STATE(1105), - [sym_internal_module] = STATE(1105), - [sym_type_arguments] = STATE(324), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2497), - [sym_identifier] = ACTIONS(859), + [sym_augmented_assignment_expression] = STATE(1687), + [sym_ternary_expression] = STATE(1687), + [sym_binary_expression] = STATE(1687), + [sym_unary_expression] = STATE(1687), + [sym_update_expression] = STATE(1687), + [sym_string] = STATE(1690), + [sym_template_string] = STATE(1690), + [sym_regex] = STATE(1690), + [sym_meta_property] = STATE(1690), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(846), + [sym_type_assertion] = STATE(1687), + [sym_as_expression] = STATE(1687), + [sym_internal_module] = STATE(1687), + [sym_type_arguments] = STATE(301), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2545), + [sym_identifier] = ACTIONS(869), + [anon_sym_export] = ACTIONS(673), + [anon_sym_namespace] = ACTIONS(675), + [anon_sym_LBRACE] = ACTIONS(1270), + [anon_sym_type] = ACTIONS(673), + [anon_sym_typeof] = ACTIONS(707), + [anon_sym_import] = ACTIONS(681), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_await] = ACTIONS(687), + [anon_sym_yield] = ACTIONS(689), + [anon_sym_LBRACK] = ACTIONS(879), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(693), + [anon_sym_class] = ACTIONS(695), + [anon_sym_async] = ACTIONS(697), + [anon_sym_function] = ACTIONS(699), + [anon_sym_new] = ACTIONS(881), + [anon_sym_PLUS] = ACTIONS(883), + [anon_sym_DASH] = ACTIONS(883), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_void] = ACTIONS(707), + [anon_sym_delete] = ACTIONS(707), + [anon_sym_PLUS_PLUS] = ACTIONS(709), + [anon_sym_DASH_DASH] = ACTIONS(709), + [anon_sym_DQUOTE] = ACTIONS(711), + [anon_sym_SQUOTE] = ACTIONS(713), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(715), + [sym_number] = ACTIONS(885), + [sym_this] = ACTIONS(721), + [sym_super] = ACTIONS(721), + [sym_true] = ACTIONS(721), + [sym_false] = ACTIONS(721), + [sym_null] = ACTIONS(721), + [sym_undefined] = ACTIONS(721), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(673), + [anon_sym_get] = ACTIONS(673), + [anon_sym_set] = ACTIONS(673), + [anon_sym_declare] = ACTIONS(673), + [anon_sym_public] = ACTIONS(673), + [anon_sym_private] = ACTIONS(673), + [anon_sym_protected] = ACTIONS(673), + [anon_sym_module] = ACTIONS(673), + [anon_sym_any] = ACTIONS(673), + [anon_sym_number] = ACTIONS(673), + [anon_sym_boolean] = ACTIONS(673), + [anon_sym_string] = ACTIONS(673), + [anon_sym_symbol] = ACTIONS(673), + [sym_readonly] = ACTIONS(673), + }, + [380] = { + [sym_import] = STATE(1690), + [sym_parenthesized_expression] = STATE(834), + [sym__expression] = STATE(1286), + [sym_yield_expression] = STATE(1687), + [sym_object] = STATE(1538), + [sym_array] = STATE(1543), + [sym_class] = STATE(1690), + [sym_function] = STATE(1690), + [sym_generator_function] = STATE(1690), + [sym_arrow_function] = STATE(1690), + [sym__call_signature] = STATE(3133), + [sym_call_expression] = STATE(1690), + [sym_new_expression] = STATE(1687), + [sym_await_expression] = STATE(1687), + [sym_member_expression] = STATE(834), + [sym_subscript_expression] = STATE(834), + [sym_assignment_expression] = STATE(1687), + [sym__augmented_assignment_lhs] = STATE(1921), + [sym_augmented_assignment_expression] = STATE(1687), + [sym_ternary_expression] = STATE(1687), + [sym_binary_expression] = STATE(1687), + [sym_unary_expression] = STATE(1687), + [sym_update_expression] = STATE(1687), + [sym_string] = STATE(1690), + [sym_template_string] = STATE(1690), + [sym_regex] = STATE(1690), + [sym_meta_property] = STATE(1690), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(846), + [sym_type_assertion] = STATE(1687), + [sym_as_expression] = STATE(1687), + [sym_internal_module] = STATE(1687), + [sym_type_arguments] = STATE(301), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2545), + [sym_identifier] = ACTIONS(869), + [anon_sym_export] = ACTIONS(673), + [anon_sym_namespace] = ACTIONS(675), + [anon_sym_LBRACE] = ACTIONS(1270), + [anon_sym_type] = ACTIONS(673), + [anon_sym_typeof] = ACTIONS(707), + [anon_sym_import] = ACTIONS(681), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_await] = ACTIONS(687), + [anon_sym_yield] = ACTIONS(689), + [anon_sym_LBRACK] = ACTIONS(879), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(693), + [anon_sym_class] = ACTIONS(695), + [anon_sym_async] = ACTIONS(697), + [anon_sym_function] = ACTIONS(699), + [anon_sym_new] = ACTIONS(881), + [anon_sym_PLUS] = ACTIONS(883), + [anon_sym_DASH] = ACTIONS(883), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_void] = ACTIONS(707), + [anon_sym_delete] = ACTIONS(707), + [anon_sym_PLUS_PLUS] = ACTIONS(709), + [anon_sym_DASH_DASH] = ACTIONS(709), + [anon_sym_DQUOTE] = ACTIONS(711), + [anon_sym_SQUOTE] = ACTIONS(713), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(715), + [sym_number] = ACTIONS(885), + [sym_this] = ACTIONS(721), + [sym_super] = ACTIONS(721), + [sym_true] = ACTIONS(721), + [sym_false] = ACTIONS(721), + [sym_null] = ACTIONS(721), + [sym_undefined] = ACTIONS(721), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(673), + [anon_sym_get] = ACTIONS(673), + [anon_sym_set] = ACTIONS(673), + [anon_sym_declare] = ACTIONS(673), + [anon_sym_public] = ACTIONS(673), + [anon_sym_private] = ACTIONS(673), + [anon_sym_protected] = ACTIONS(673), + [anon_sym_module] = ACTIONS(673), + [anon_sym_any] = ACTIONS(673), + [anon_sym_number] = ACTIONS(673), + [anon_sym_boolean] = ACTIONS(673), + [anon_sym_string] = ACTIONS(673), + [anon_sym_symbol] = ACTIONS(673), + [sym_readonly] = ACTIONS(673), + }, + [381] = { + [sym_import] = STATE(1690), + [sym_parenthesized_expression] = STATE(834), + [sym__expression] = STATE(1285), + [sym_yield_expression] = STATE(1687), + [sym_object] = STATE(1538), + [sym_array] = STATE(1543), + [sym_class] = STATE(1690), + [sym_function] = STATE(1690), + [sym_generator_function] = STATE(1690), + [sym_arrow_function] = STATE(1690), + [sym__call_signature] = STATE(3133), + [sym_call_expression] = STATE(1690), + [sym_new_expression] = STATE(1687), + [sym_await_expression] = STATE(1687), + [sym_member_expression] = STATE(834), + [sym_subscript_expression] = STATE(834), + [sym_assignment_expression] = STATE(1687), + [sym__augmented_assignment_lhs] = STATE(1921), + [sym_augmented_assignment_expression] = STATE(1687), + [sym_ternary_expression] = STATE(1687), + [sym_binary_expression] = STATE(1687), + [sym_unary_expression] = STATE(1687), + [sym_update_expression] = STATE(1687), + [sym_string] = STATE(1690), + [sym_template_string] = STATE(1690), + [sym_regex] = STATE(1690), + [sym_meta_property] = STATE(1690), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(846), + [sym_type_assertion] = STATE(1687), + [sym_as_expression] = STATE(1687), + [sym_internal_module] = STATE(1687), + [sym_type_arguments] = STATE(301), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2545), + [sym_identifier] = ACTIONS(869), + [anon_sym_export] = ACTIONS(673), + [anon_sym_namespace] = ACTIONS(675), + [anon_sym_LBRACE] = ACTIONS(1270), + [anon_sym_type] = ACTIONS(673), + [anon_sym_typeof] = ACTIONS(707), + [anon_sym_import] = ACTIONS(681), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_await] = ACTIONS(687), + [anon_sym_yield] = ACTIONS(689), + [anon_sym_LBRACK] = ACTIONS(879), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(693), + [anon_sym_class] = ACTIONS(695), + [anon_sym_async] = ACTIONS(697), + [anon_sym_function] = ACTIONS(699), + [anon_sym_new] = ACTIONS(881), + [anon_sym_PLUS] = ACTIONS(883), + [anon_sym_DASH] = ACTIONS(883), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_void] = ACTIONS(707), + [anon_sym_delete] = ACTIONS(707), + [anon_sym_PLUS_PLUS] = ACTIONS(709), + [anon_sym_DASH_DASH] = ACTIONS(709), + [anon_sym_DQUOTE] = ACTIONS(711), + [anon_sym_SQUOTE] = ACTIONS(713), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(715), + [sym_number] = ACTIONS(885), + [sym_this] = ACTIONS(721), + [sym_super] = ACTIONS(721), + [sym_true] = ACTIONS(721), + [sym_false] = ACTIONS(721), + [sym_null] = ACTIONS(721), + [sym_undefined] = ACTIONS(721), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(673), + [anon_sym_get] = ACTIONS(673), + [anon_sym_set] = ACTIONS(673), + [anon_sym_declare] = ACTIONS(673), + [anon_sym_public] = ACTIONS(673), + [anon_sym_private] = ACTIONS(673), + [anon_sym_protected] = ACTIONS(673), + [anon_sym_module] = ACTIONS(673), + [anon_sym_any] = ACTIONS(673), + [anon_sym_number] = ACTIONS(673), + [anon_sym_boolean] = ACTIONS(673), + [anon_sym_string] = ACTIONS(673), + [anon_sym_symbol] = ACTIONS(673), + [sym_readonly] = ACTIONS(673), + }, + [382] = { + [sym_import] = STATE(1523), + [sym_parenthesized_expression] = STATE(955), + [sym__expression] = STATE(1380), + [sym_yield_expression] = STATE(1567), + [sym_object] = STATE(1636), + [sym_array] = STATE(1643), + [sym_class] = STATE(1523), + [sym_function] = STATE(1523), + [sym_generator_function] = STATE(1523), + [sym_arrow_function] = STATE(1523), + [sym__call_signature] = STATE(3078), + [sym_call_expression] = STATE(1523), + [sym_new_expression] = STATE(1567), + [sym_await_expression] = STATE(1567), + [sym_member_expression] = STATE(955), + [sym_subscript_expression] = STATE(955), + [sym_assignment_expression] = STATE(1567), + [sym__augmented_assignment_lhs] = STATE(1929), + [sym_augmented_assignment_expression] = STATE(1567), + [sym_ternary_expression] = STATE(1567), + [sym_binary_expression] = STATE(1567), + [sym_unary_expression] = STATE(1567), + [sym_update_expression] = STATE(1567), + [sym_string] = STATE(1523), + [sym_template_string] = STATE(1523), + [sym_regex] = STATE(1523), + [sym_meta_property] = STATE(1523), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(953), + [sym_type_assertion] = STATE(1567), + [sym_as_expression] = STATE(1567), + [sym_internal_module] = STATE(1567), + [sym_type_arguments] = STATE(384), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2575), + [sym_identifier] = ACTIONS(887), [anon_sym_export] = ACTIONS(635), [anon_sym_namespace] = ACTIONS(637), - [anon_sym_LBRACE] = ACTIONS(509), + [anon_sym_LBRACE] = ACTIONS(571), [anon_sym_type] = ACTIONS(635), - [anon_sym_typeof] = ACTIONS(659), - [anon_sym_import] = ACTIONS(435), - [anon_sym_BANG] = ACTIONS(643), - [anon_sym_LPAREN] = ACTIONS(515), - [anon_sym_await] = ACTIONS(645), - [anon_sym_yield] = ACTIONS(647), - [anon_sym_LBRACK] = ACTIONS(517), + [anon_sym_typeof] = ACTIONS(657), + [anon_sym_import] = ACTIONS(539), + [anon_sym_BANG] = ACTIONS(641), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(643), + [anon_sym_yield] = ACTIONS(645), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(449), - [anon_sym_class] = ACTIONS(451), - [anon_sym_async] = ACTIONS(651), - [anon_sym_function] = ACTIONS(455), - [anon_sym_new] = ACTIONS(865), - [anon_sym_PLUS] = ACTIONS(867), - [anon_sym_DASH] = ACTIONS(867), - [anon_sym_TILDE] = ACTIONS(643), - [anon_sym_void] = ACTIONS(659), - [anon_sym_delete] = ACTIONS(659), - [anon_sym_PLUS_PLUS] = ACTIONS(661), - [anon_sym_DASH_DASH] = ACTIONS(661), - [anon_sym_DQUOTE] = ACTIONS(475), - [anon_sym_SQUOTE] = ACTIONS(477), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(545), + [anon_sym_async] = ACTIONS(649), + [anon_sym_function] = ACTIONS(549), + [anon_sym_new] = ACTIONS(893), + [anon_sym_PLUS] = ACTIONS(895), + [anon_sym_DASH] = ACTIONS(895), + [anon_sym_TILDE] = ACTIONS(641), + [anon_sym_void] = ACTIONS(657), + [anon_sym_delete] = ACTIONS(657), + [anon_sym_PLUS_PLUS] = ACTIONS(659), + [anon_sym_DASH_DASH] = ACTIONS(659), + [anon_sym_DQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(479), - [sym_number] = ACTIONS(527), - [sym_this] = ACTIONS(485), - [sym_super] = ACTIONS(485), - [sym_true] = ACTIONS(485), - [sym_false] = ACTIONS(485), - [sym_null] = ACTIONS(485), - [sym_undefined] = ACTIONS(485), + [anon_sym_BQUOTE] = ACTIONS(85), + [sym_number] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(635), [anon_sym_get] = ACTIONS(635), @@ -45525,168 +47537,168 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(635), [sym_readonly] = ACTIONS(635), }, - [361] = { - [sym_import] = STATE(1101), - [sym_parenthesized_expression] = STATE(739), - [sym__expression] = STATE(989), - [sym_yield_expression] = STATE(1105), - [sym_object] = STATE(1297), - [sym_array] = STATE(1296), - [sym_class] = STATE(1101), - [sym_function] = STATE(1101), - [sym_generator_function] = STATE(1101), - [sym_arrow_function] = STATE(1101), - [sym__call_signature] = STATE(3116), - [sym_call_expression] = STATE(1101), - [sym_new_expression] = STATE(1105), - [sym_await_expression] = STATE(1105), - [sym_member_expression] = STATE(739), - [sym_subscript_expression] = STATE(739), - [sym_assignment_expression] = STATE(1105), - [sym__augmented_assignment_lhs] = STATE(1920), - [sym_augmented_assignment_expression] = STATE(1105), - [sym_ternary_expression] = STATE(1105), - [sym_binary_expression] = STATE(1105), - [sym_unary_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_string] = STATE(1101), - [sym_template_string] = STATE(1101), - [sym_regex] = STATE(1101), - [sym_meta_property] = STATE(1101), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(755), - [sym_type_assertion] = STATE(1105), - [sym_as_expression] = STATE(1105), - [sym_internal_module] = STATE(1105), - [sym_type_arguments] = STATE(361), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2497), - [sym_identifier] = ACTIONS(499), - [anon_sym_export] = ACTIONS(501), - [anon_sym_namespace] = ACTIONS(507), - [anon_sym_LBRACE] = ACTIONS(509), - [anon_sym_type] = ACTIONS(501), - [anon_sym_typeof] = ACTIONS(471), - [anon_sym_import] = ACTIONS(435), - [anon_sym_BANG] = ACTIONS(437), - [anon_sym_LPAREN] = ACTIONS(515), - [anon_sym_await] = ACTIONS(443), - [anon_sym_yield] = ACTIONS(445), - [anon_sym_LBRACK] = ACTIONS(517), + [383] = { + [sym_import] = STATE(1690), + [sym_parenthesized_expression] = STATE(834), + [sym__expression] = STATE(1284), + [sym_yield_expression] = STATE(1687), + [sym_object] = STATE(1538), + [sym_array] = STATE(1543), + [sym_class] = STATE(1690), + [sym_function] = STATE(1690), + [sym_generator_function] = STATE(1690), + [sym_arrow_function] = STATE(1690), + [sym__call_signature] = STATE(3133), + [sym_call_expression] = STATE(1690), + [sym_new_expression] = STATE(1687), + [sym_await_expression] = STATE(1687), + [sym_member_expression] = STATE(834), + [sym_subscript_expression] = STATE(834), + [sym_assignment_expression] = STATE(1687), + [sym__augmented_assignment_lhs] = STATE(1921), + [sym_augmented_assignment_expression] = STATE(1687), + [sym_ternary_expression] = STATE(1687), + [sym_binary_expression] = STATE(1687), + [sym_unary_expression] = STATE(1687), + [sym_update_expression] = STATE(1687), + [sym_string] = STATE(1690), + [sym_template_string] = STATE(1690), + [sym_regex] = STATE(1690), + [sym_meta_property] = STATE(1690), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(846), + [sym_type_assertion] = STATE(1687), + [sym_as_expression] = STATE(1687), + [sym_internal_module] = STATE(1687), + [sym_type_arguments] = STATE(301), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2545), + [sym_identifier] = ACTIONS(869), + [anon_sym_export] = ACTIONS(673), + [anon_sym_namespace] = ACTIONS(675), + [anon_sym_LBRACE] = ACTIONS(1270), + [anon_sym_type] = ACTIONS(673), + [anon_sym_typeof] = ACTIONS(707), + [anon_sym_import] = ACTIONS(681), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_await] = ACTIONS(687), + [anon_sym_yield] = ACTIONS(689), + [anon_sym_LBRACK] = ACTIONS(879), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(449), - [anon_sym_class] = ACTIONS(451), - [anon_sym_async] = ACTIONS(521), - [anon_sym_function] = ACTIONS(455), - [anon_sym_new] = ACTIONS(523), - [anon_sym_PLUS] = ACTIONS(525), - [anon_sym_DASH] = ACTIONS(525), - [anon_sym_TILDE] = ACTIONS(437), - [anon_sym_void] = ACTIONS(471), - [anon_sym_delete] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(473), - [anon_sym_DASH_DASH] = ACTIONS(473), - [anon_sym_DQUOTE] = ACTIONS(475), - [anon_sym_SQUOTE] = ACTIONS(477), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(479), - [sym_number] = ACTIONS(527), - [sym_this] = ACTIONS(485), - [sym_super] = ACTIONS(485), - [sym_true] = ACTIONS(485), - [sym_false] = ACTIONS(485), - [sym_null] = ACTIONS(485), - [sym_undefined] = ACTIONS(485), + [anon_sym_SLASH] = ACTIONS(693), + [anon_sym_class] = ACTIONS(695), + [anon_sym_async] = ACTIONS(697), + [anon_sym_function] = ACTIONS(699), + [anon_sym_new] = ACTIONS(881), + [anon_sym_PLUS] = ACTIONS(883), + [anon_sym_DASH] = ACTIONS(883), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_void] = ACTIONS(707), + [anon_sym_delete] = ACTIONS(707), + [anon_sym_PLUS_PLUS] = ACTIONS(709), + [anon_sym_DASH_DASH] = ACTIONS(709), + [anon_sym_DQUOTE] = ACTIONS(711), + [anon_sym_SQUOTE] = ACTIONS(713), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(715), + [sym_number] = ACTIONS(885), + [sym_this] = ACTIONS(721), + [sym_super] = ACTIONS(721), + [sym_true] = ACTIONS(721), + [sym_false] = ACTIONS(721), + [sym_null] = ACTIONS(721), + [sym_undefined] = ACTIONS(721), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(501), - [anon_sym_get] = ACTIONS(501), - [anon_sym_set] = ACTIONS(501), - [anon_sym_declare] = ACTIONS(501), - [anon_sym_public] = ACTIONS(501), - [anon_sym_private] = ACTIONS(501), - [anon_sym_protected] = ACTIONS(501), - [anon_sym_module] = ACTIONS(501), - [anon_sym_any] = ACTIONS(501), - [anon_sym_number] = ACTIONS(501), - [anon_sym_boolean] = ACTIONS(501), - [anon_sym_string] = ACTIONS(501), - [anon_sym_symbol] = ACTIONS(501), - [sym_readonly] = ACTIONS(501), + [anon_sym_static] = ACTIONS(673), + [anon_sym_get] = ACTIONS(673), + [anon_sym_set] = ACTIONS(673), + [anon_sym_declare] = ACTIONS(673), + [anon_sym_public] = ACTIONS(673), + [anon_sym_private] = ACTIONS(673), + [anon_sym_protected] = ACTIONS(673), + [anon_sym_module] = ACTIONS(673), + [anon_sym_any] = ACTIONS(673), + [anon_sym_number] = ACTIONS(673), + [anon_sym_boolean] = ACTIONS(673), + [anon_sym_string] = ACTIONS(673), + [anon_sym_symbol] = ACTIONS(673), + [sym_readonly] = ACTIONS(673), }, - [362] = { - [sym_import] = STATE(1101), - [sym_parenthesized_expression] = STATE(948), - [sym__expression] = STATE(1614), - [sym_yield_expression] = STATE(1105), - [sym_object] = STATE(1654), - [sym_array] = STATE(1640), - [sym_class] = STATE(1101), - [sym_function] = STATE(1101), - [sym_generator_function] = STATE(1101), - [sym_arrow_function] = STATE(1101), - [sym__call_signature] = STATE(3002), - [sym_call_expression] = STATE(1101), - [sym_new_expression] = STATE(1105), - [sym_await_expression] = STATE(1105), - [sym_member_expression] = STATE(948), - [sym_subscript_expression] = STATE(948), - [sym_assignment_expression] = STATE(1105), - [sym__augmented_assignment_lhs] = STATE(1921), - [sym_augmented_assignment_expression] = STATE(1105), - [sym_ternary_expression] = STATE(1105), - [sym_binary_expression] = STATE(1105), - [sym_unary_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_string] = STATE(1101), - [sym_template_string] = STATE(1101), - [sym_regex] = STATE(1101), - [sym_meta_property] = STATE(1101), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(949), - [sym_type_assertion] = STATE(1105), - [sym_as_expression] = STATE(1105), - [sym_internal_module] = STATE(1105), - [sym_type_arguments] = STATE(324), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2497), - [sym_identifier] = ACTIONS(859), + [384] = { + [sym_import] = STATE(1523), + [sym_parenthesized_expression] = STATE(955), + [sym__expression] = STATE(1120), + [sym_yield_expression] = STATE(1567), + [sym_object] = STATE(1636), + [sym_array] = STATE(1643), + [sym_class] = STATE(1523), + [sym_function] = STATE(1523), + [sym_generator_function] = STATE(1523), + [sym_arrow_function] = STATE(1523), + [sym__call_signature] = STATE(3078), + [sym_call_expression] = STATE(1523), + [sym_new_expression] = STATE(1567), + [sym_await_expression] = STATE(1567), + [sym_member_expression] = STATE(955), + [sym_subscript_expression] = STATE(955), + [sym_assignment_expression] = STATE(1567), + [sym__augmented_assignment_lhs] = STATE(1929), + [sym_augmented_assignment_expression] = STATE(1567), + [sym_ternary_expression] = STATE(1567), + [sym_binary_expression] = STATE(1567), + [sym_unary_expression] = STATE(1567), + [sym_update_expression] = STATE(1567), + [sym_string] = STATE(1523), + [sym_template_string] = STATE(1523), + [sym_regex] = STATE(1523), + [sym_meta_property] = STATE(1523), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(953), + [sym_type_assertion] = STATE(1567), + [sym_as_expression] = STATE(1567), + [sym_internal_module] = STATE(1567), + [sym_type_arguments] = STATE(384), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2575), + [sym_identifier] = ACTIONS(887), [anon_sym_export] = ACTIONS(635), [anon_sym_namespace] = ACTIONS(637), - [anon_sym_LBRACE] = ACTIONS(509), + [anon_sym_LBRACE] = ACTIONS(571), [anon_sym_type] = ACTIONS(635), - [anon_sym_typeof] = ACTIONS(659), - [anon_sym_import] = ACTIONS(435), - [anon_sym_BANG] = ACTIONS(643), - [anon_sym_LPAREN] = ACTIONS(515), - [anon_sym_await] = ACTIONS(645), - [anon_sym_yield] = ACTIONS(647), - [anon_sym_LBRACK] = ACTIONS(517), + [anon_sym_typeof] = ACTIONS(657), + [anon_sym_import] = ACTIONS(539), + [anon_sym_BANG] = ACTIONS(641), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(643), + [anon_sym_yield] = ACTIONS(645), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(449), - [anon_sym_class] = ACTIONS(451), - [anon_sym_async] = ACTIONS(651), - [anon_sym_function] = ACTIONS(455), - [anon_sym_new] = ACTIONS(865), - [anon_sym_PLUS] = ACTIONS(867), - [anon_sym_DASH] = ACTIONS(867), - [anon_sym_TILDE] = ACTIONS(643), - [anon_sym_void] = ACTIONS(659), - [anon_sym_delete] = ACTIONS(659), - [anon_sym_PLUS_PLUS] = ACTIONS(661), - [anon_sym_DASH_DASH] = ACTIONS(661), - [anon_sym_DQUOTE] = ACTIONS(475), - [anon_sym_SQUOTE] = ACTIONS(477), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(545), + [anon_sym_async] = ACTIONS(649), + [anon_sym_function] = ACTIONS(549), + [anon_sym_new] = ACTIONS(893), + [anon_sym_PLUS] = ACTIONS(895), + [anon_sym_DASH] = ACTIONS(895), + [anon_sym_TILDE] = ACTIONS(641), + [anon_sym_void] = ACTIONS(657), + [anon_sym_delete] = ACTIONS(657), + [anon_sym_PLUS_PLUS] = ACTIONS(659), + [anon_sym_DASH_DASH] = ACTIONS(659), + [anon_sym_DQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(479), - [sym_number] = ACTIONS(527), - [sym_this] = ACTIONS(485), - [sym_super] = ACTIONS(485), - [sym_true] = ACTIONS(485), - [sym_false] = ACTIONS(485), - [sym_null] = ACTIONS(485), - [sym_undefined] = ACTIONS(485), + [anon_sym_BQUOTE] = ACTIONS(85), + [sym_number] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(635), [anon_sym_get] = ACTIONS(635), @@ -45703,157 +47715,157 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(635), [sym_readonly] = ACTIONS(635), }, - [363] = { - [sym_import] = STATE(1101), - [sym_parenthesized_expression] = STATE(921), - [sym__expression] = STATE(1275), - [sym_yield_expression] = STATE(1105), - [sym_object] = STATE(1531), - [sym_array] = STATE(1536), - [sym_class] = STATE(1101), - [sym_function] = STATE(1101), - [sym_generator_function] = STATE(1101), - [sym_arrow_function] = STATE(1101), - [sym__call_signature] = STATE(3170), - [sym_call_expression] = STATE(1101), - [sym_new_expression] = STATE(1105), - [sym_await_expression] = STATE(1105), - [sym_member_expression] = STATE(921), - [sym_subscript_expression] = STATE(921), - [sym_assignment_expression] = STATE(1105), - [sym__augmented_assignment_lhs] = STATE(1917), - [sym_augmented_assignment_expression] = STATE(1105), - [sym_ternary_expression] = STATE(1105), - [sym_binary_expression] = STATE(1105), - [sym_unary_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_string] = STATE(1101), - [sym_template_string] = STATE(1101), - [sym_regex] = STATE(1101), - [sym_meta_property] = STATE(1101), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(882), - [sym_type_assertion] = STATE(1105), - [sym_as_expression] = STATE(1105), - [sym_internal_module] = STATE(1105), - [sym_type_arguments] = STATE(355), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2497), - [sym_identifier] = ACTIONS(897), - [anon_sym_export] = ACTIONS(751), - [anon_sym_namespace] = ACTIONS(753), - [anon_sym_LBRACE] = ACTIONS(509), - [anon_sym_type] = ACTIONS(751), - [anon_sym_typeof] = ACTIONS(775), - [anon_sym_import] = ACTIONS(435), - [anon_sym_BANG] = ACTIONS(757), - [anon_sym_LPAREN] = ACTIONS(515), - [anon_sym_await] = ACTIONS(759), - [anon_sym_yield] = ACTIONS(761), - [anon_sym_LBRACK] = ACTIONS(517), + [385] = { + [sym_import] = STATE(1523), + [sym_parenthesized_expression] = STATE(955), + [sym__expression] = STATE(1438), + [sym_yield_expression] = STATE(1567), + [sym_object] = STATE(1636), + [sym_array] = STATE(1643), + [sym_class] = STATE(1523), + [sym_function] = STATE(1523), + [sym_generator_function] = STATE(1523), + [sym_arrow_function] = STATE(1523), + [sym__call_signature] = STATE(3078), + [sym_call_expression] = STATE(1523), + [sym_new_expression] = STATE(1567), + [sym_await_expression] = STATE(1567), + [sym_member_expression] = STATE(955), + [sym_subscript_expression] = STATE(955), + [sym_assignment_expression] = STATE(1567), + [sym__augmented_assignment_lhs] = STATE(1929), + [sym_augmented_assignment_expression] = STATE(1567), + [sym_ternary_expression] = STATE(1567), + [sym_binary_expression] = STATE(1567), + [sym_unary_expression] = STATE(1567), + [sym_update_expression] = STATE(1567), + [sym_string] = STATE(1523), + [sym_template_string] = STATE(1523), + [sym_regex] = STATE(1523), + [sym_meta_property] = STATE(1523), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(953), + [sym_type_assertion] = STATE(1567), + [sym_as_expression] = STATE(1567), + [sym_internal_module] = STATE(1567), + [sym_type_arguments] = STATE(384), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2575), + [sym_identifier] = ACTIONS(887), + [anon_sym_export] = ACTIONS(635), + [anon_sym_namespace] = ACTIONS(637), + [anon_sym_LBRACE] = ACTIONS(571), + [anon_sym_type] = ACTIONS(635), + [anon_sym_typeof] = ACTIONS(657), + [anon_sym_import] = ACTIONS(539), + [anon_sym_BANG] = ACTIONS(641), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(643), + [anon_sym_yield] = ACTIONS(645), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(765), - [anon_sym_class] = ACTIONS(451), - [anon_sym_async] = ACTIONS(767), - [anon_sym_function] = ACTIONS(455), - [anon_sym_new] = ACTIONS(903), - [anon_sym_PLUS] = ACTIONS(905), - [anon_sym_DASH] = ACTIONS(905), - [anon_sym_TILDE] = ACTIONS(757), - [anon_sym_void] = ACTIONS(775), - [anon_sym_delete] = ACTIONS(775), - [anon_sym_PLUS_PLUS] = ACTIONS(777), - [anon_sym_DASH_DASH] = ACTIONS(777), - [anon_sym_DQUOTE] = ACTIONS(475), - [anon_sym_SQUOTE] = ACTIONS(477), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(479), - [sym_number] = ACTIONS(527), - [sym_this] = ACTIONS(485), - [sym_super] = ACTIONS(485), - [sym_true] = ACTIONS(485), - [sym_false] = ACTIONS(485), - [sym_null] = ACTIONS(485), - [sym_undefined] = ACTIONS(485), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(545), + [anon_sym_async] = ACTIONS(649), + [anon_sym_function] = ACTIONS(549), + [anon_sym_new] = ACTIONS(893), + [anon_sym_PLUS] = ACTIONS(895), + [anon_sym_DASH] = ACTIONS(895), + [anon_sym_TILDE] = ACTIONS(641), + [anon_sym_void] = ACTIONS(657), + [anon_sym_delete] = ACTIONS(657), + [anon_sym_PLUS_PLUS] = ACTIONS(659), + [anon_sym_DASH_DASH] = ACTIONS(659), + [anon_sym_DQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(85), + [sym_number] = ACTIONS(1461), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(751), - [anon_sym_get] = ACTIONS(751), - [anon_sym_set] = ACTIONS(751), - [anon_sym_declare] = ACTIONS(751), - [anon_sym_public] = ACTIONS(751), - [anon_sym_private] = ACTIONS(751), - [anon_sym_protected] = ACTIONS(751), - [anon_sym_module] = ACTIONS(751), - [anon_sym_any] = ACTIONS(751), - [anon_sym_number] = ACTIONS(751), - [anon_sym_boolean] = ACTIONS(751), - [anon_sym_string] = ACTIONS(751), - [anon_sym_symbol] = ACTIONS(751), - [sym_readonly] = ACTIONS(751), + [anon_sym_static] = ACTIONS(635), + [anon_sym_get] = ACTIONS(635), + [anon_sym_set] = ACTIONS(635), + [anon_sym_declare] = ACTIONS(635), + [anon_sym_public] = ACTIONS(635), + [anon_sym_private] = ACTIONS(635), + [anon_sym_protected] = ACTIONS(635), + [anon_sym_module] = ACTIONS(635), + [anon_sym_any] = ACTIONS(635), + [anon_sym_number] = ACTIONS(635), + [anon_sym_boolean] = ACTIONS(635), + [anon_sym_string] = ACTIONS(635), + [anon_sym_symbol] = ACTIONS(635), + [sym_readonly] = ACTIONS(635), }, - [364] = { - [sym_import] = STATE(1101), - [sym_parenthesized_expression] = STATE(921), - [sym__expression] = STATE(1273), - [sym_yield_expression] = STATE(1105), - [sym_object] = STATE(1531), - [sym_array] = STATE(1536), - [sym_class] = STATE(1101), - [sym_function] = STATE(1101), - [sym_generator_function] = STATE(1101), - [sym_arrow_function] = STATE(1101), - [sym__call_signature] = STATE(3170), - [sym_call_expression] = STATE(1101), - [sym_new_expression] = STATE(1105), - [sym_await_expression] = STATE(1105), - [sym_member_expression] = STATE(921), - [sym_subscript_expression] = STATE(921), - [sym_assignment_expression] = STATE(1105), - [sym__augmented_assignment_lhs] = STATE(1917), - [sym_augmented_assignment_expression] = STATE(1105), - [sym_ternary_expression] = STATE(1105), - [sym_binary_expression] = STATE(1105), - [sym_unary_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_string] = STATE(1101), - [sym_template_string] = STATE(1101), - [sym_regex] = STATE(1101), - [sym_meta_property] = STATE(1101), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(882), - [sym_type_assertion] = STATE(1105), - [sym_as_expression] = STATE(1105), - [sym_internal_module] = STATE(1105), - [sym_type_arguments] = STATE(355), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2497), - [sym_identifier] = ACTIONS(897), - [anon_sym_export] = ACTIONS(751), - [anon_sym_namespace] = ACTIONS(753), + [386] = { + [sym_import] = STATE(1151), + [sym_parenthesized_expression] = STATE(837), + [sym__expression] = STATE(1236), + [sym_yield_expression] = STATE(1144), + [sym_object] = STATE(1495), + [sym_array] = STATE(1493), + [sym_class] = STATE(1151), + [sym_function] = STATE(1151), + [sym_generator_function] = STATE(1151), + [sym_arrow_function] = STATE(1151), + [sym__call_signature] = STATE(3190), + [sym_call_expression] = STATE(1151), + [sym_new_expression] = STATE(1144), + [sym_await_expression] = STATE(1144), + [sym_member_expression] = STATE(837), + [sym_subscript_expression] = STATE(837), + [sym_assignment_expression] = STATE(1144), + [sym__augmented_assignment_lhs] = STATE(1927), + [sym_augmented_assignment_expression] = STATE(1144), + [sym_ternary_expression] = STATE(1144), + [sym_binary_expression] = STATE(1144), + [sym_unary_expression] = STATE(1144), + [sym_update_expression] = STATE(1144), + [sym_string] = STATE(1151), + [sym_template_string] = STATE(1151), + [sym_regex] = STATE(1151), + [sym_meta_property] = STATE(1151), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(845), + [sym_type_assertion] = STATE(1144), + [sym_as_expression] = STATE(1144), + [sym_internal_module] = STATE(1144), + [sym_type_arguments] = STATE(357), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2580), + [sym_identifier] = ACTIONS(859), + [anon_sym_export] = ACTIONS(769), + [anon_sym_namespace] = ACTIONS(771), [anon_sym_LBRACE] = ACTIONS(509), - [anon_sym_type] = ACTIONS(751), - [anon_sym_typeof] = ACTIONS(775), + [anon_sym_type] = ACTIONS(769), + [anon_sym_typeof] = ACTIONS(791), [anon_sym_import] = ACTIONS(435), - [anon_sym_BANG] = ACTIONS(757), + [anon_sym_BANG] = ACTIONS(775), [anon_sym_LPAREN] = ACTIONS(515), - [anon_sym_await] = ACTIONS(759), - [anon_sym_yield] = ACTIONS(761), + [anon_sym_await] = ACTIONS(777), + [anon_sym_yield] = ACTIONS(779), [anon_sym_LBRACK] = ACTIONS(517), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(765), + [anon_sym_SLASH] = ACTIONS(781), [anon_sym_class] = ACTIONS(451), - [anon_sym_async] = ACTIONS(767), + [anon_sym_async] = ACTIONS(783), [anon_sym_function] = ACTIONS(455), - [anon_sym_new] = ACTIONS(903), - [anon_sym_PLUS] = ACTIONS(905), - [anon_sym_DASH] = ACTIONS(905), - [anon_sym_TILDE] = ACTIONS(757), - [anon_sym_void] = ACTIONS(775), - [anon_sym_delete] = ACTIONS(775), - [anon_sym_PLUS_PLUS] = ACTIONS(777), - [anon_sym_DASH_DASH] = ACTIONS(777), + [anon_sym_new] = ACTIONS(865), + [anon_sym_PLUS] = ACTIONS(867), + [anon_sym_DASH] = ACTIONS(867), + [anon_sym_TILDE] = ACTIONS(775), + [anon_sym_void] = ACTIONS(791), + [anon_sym_delete] = ACTIONS(791), + [anon_sym_PLUS_PLUS] = ACTIONS(793), + [anon_sym_DASH_DASH] = ACTIONS(793), [anon_sym_DQUOTE] = ACTIONS(475), [anon_sym_SQUOTE] = ACTIONS(477), [sym_comment] = ACTIONS(3), @@ -45866,183 +47878,94 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(485), [sym_undefined] = ACTIONS(485), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(751), - [anon_sym_get] = ACTIONS(751), - [anon_sym_set] = ACTIONS(751), - [anon_sym_declare] = ACTIONS(751), - [anon_sym_public] = ACTIONS(751), - [anon_sym_private] = ACTIONS(751), - [anon_sym_protected] = ACTIONS(751), - [anon_sym_module] = ACTIONS(751), - [anon_sym_any] = ACTIONS(751), - [anon_sym_number] = ACTIONS(751), - [anon_sym_boolean] = ACTIONS(751), - [anon_sym_string] = ACTIONS(751), - [anon_sym_symbol] = ACTIONS(751), - [sym_readonly] = ACTIONS(751), - }, - [365] = { - [sym_import] = STATE(1682), - [sym_parenthesized_expression] = STATE(828), - [sym__expression] = STATE(1262), - [sym_yield_expression] = STATE(1680), - [sym_object] = STATE(1586), - [sym_array] = STATE(1585), - [sym_class] = STATE(1682), - [sym_function] = STATE(1682), - [sym_generator_function] = STATE(1682), - [sym_arrow_function] = STATE(1682), - [sym__call_signature] = STATE(3105), - [sym_call_expression] = STATE(1682), - [sym_new_expression] = STATE(1680), - [sym_await_expression] = STATE(1680), - [sym_member_expression] = STATE(828), - [sym_subscript_expression] = STATE(828), - [sym_assignment_expression] = STATE(1680), - [sym__augmented_assignment_lhs] = STATE(1918), - [sym_augmented_assignment_expression] = STATE(1680), - [sym_ternary_expression] = STATE(1680), - [sym_binary_expression] = STATE(1680), - [sym_unary_expression] = STATE(1680), - [sym_update_expression] = STATE(1680), - [sym_string] = STATE(1682), - [sym_template_string] = STATE(1682), - [sym_regex] = STATE(1682), - [sym_meta_property] = STATE(1682), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(827), - [sym_type_assertion] = STATE(1680), - [sym_as_expression] = STATE(1680), - [sym_internal_module] = STATE(1680), - [sym_type_arguments] = STATE(256), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2529), - [sym_identifier] = ACTIONS(879), - [anon_sym_export] = ACTIONS(531), - [anon_sym_namespace] = ACTIONS(533), - [anon_sym_LBRACE] = ACTIONS(1274), - [anon_sym_type] = ACTIONS(531), - [anon_sym_typeof] = ACTIONS(565), - [anon_sym_import] = ACTIONS(539), - [anon_sym_BANG] = ACTIONS(541), - [anon_sym_LPAREN] = ACTIONS(887), - [anon_sym_await] = ACTIONS(545), - [anon_sym_yield] = ACTIONS(547), - [anon_sym_LBRACK] = ACTIONS(889), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(551), - [anon_sym_class] = ACTIONS(553), - [anon_sym_async] = ACTIONS(555), - [anon_sym_function] = ACTIONS(557), - [anon_sym_new] = ACTIONS(891), - [anon_sym_PLUS] = ACTIONS(893), - [anon_sym_DASH] = ACTIONS(893), - [anon_sym_TILDE] = ACTIONS(541), - [anon_sym_void] = ACTIONS(565), - [anon_sym_delete] = ACTIONS(565), - [anon_sym_PLUS_PLUS] = ACTIONS(567), - [anon_sym_DASH_DASH] = ACTIONS(567), - [anon_sym_DQUOTE] = ACTIONS(569), - [anon_sym_SQUOTE] = ACTIONS(571), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(573), - [sym_number] = ACTIONS(895), - [sym_this] = ACTIONS(579), - [sym_super] = ACTIONS(579), - [sym_true] = ACTIONS(579), - [sym_false] = ACTIONS(579), - [sym_null] = ACTIONS(579), - [sym_undefined] = ACTIONS(579), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(531), - [anon_sym_get] = ACTIONS(531), - [anon_sym_set] = ACTIONS(531), - [anon_sym_declare] = ACTIONS(531), - [anon_sym_public] = ACTIONS(531), - [anon_sym_private] = ACTIONS(531), - [anon_sym_protected] = ACTIONS(531), - [anon_sym_module] = ACTIONS(531), - [anon_sym_any] = ACTIONS(531), - [anon_sym_number] = ACTIONS(531), - [anon_sym_boolean] = ACTIONS(531), - [anon_sym_string] = ACTIONS(531), - [anon_sym_symbol] = ACTIONS(531), - [sym_readonly] = ACTIONS(531), + [anon_sym_static] = ACTIONS(769), + [anon_sym_get] = ACTIONS(769), + [anon_sym_set] = ACTIONS(769), + [anon_sym_declare] = ACTIONS(769), + [anon_sym_public] = ACTIONS(769), + [anon_sym_private] = ACTIONS(769), + [anon_sym_protected] = ACTIONS(769), + [anon_sym_module] = ACTIONS(769), + [anon_sym_any] = ACTIONS(769), + [anon_sym_number] = ACTIONS(769), + [anon_sym_boolean] = ACTIONS(769), + [anon_sym_string] = ACTIONS(769), + [anon_sym_symbol] = ACTIONS(769), + [sym_readonly] = ACTIONS(769), }, - [366] = { - [sym_import] = STATE(1101), - [sym_parenthesized_expression] = STATE(948), - [sym__expression] = STATE(1388), - [sym_yield_expression] = STATE(1105), - [sym_object] = STATE(1654), - [sym_array] = STATE(1640), - [sym_class] = STATE(1101), - [sym_function] = STATE(1101), - [sym_generator_function] = STATE(1101), - [sym_arrow_function] = STATE(1101), - [sym__call_signature] = STATE(3002), - [sym_call_expression] = STATE(1101), - [sym_new_expression] = STATE(1105), - [sym_await_expression] = STATE(1105), - [sym_member_expression] = STATE(948), - [sym_subscript_expression] = STATE(948), - [sym_assignment_expression] = STATE(1105), - [sym__augmented_assignment_lhs] = STATE(1921), - [sym_augmented_assignment_expression] = STATE(1105), - [sym_ternary_expression] = STATE(1105), - [sym_binary_expression] = STATE(1105), - [sym_unary_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_string] = STATE(1101), - [sym_template_string] = STATE(1101), - [sym_regex] = STATE(1101), - [sym_meta_property] = STATE(1101), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(949), - [sym_type_assertion] = STATE(1105), - [sym_as_expression] = STATE(1105), - [sym_internal_module] = STATE(1105), - [sym_type_arguments] = STATE(324), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2497), - [sym_identifier] = ACTIONS(859), + [387] = { + [sym_import] = STATE(1523), + [sym_parenthesized_expression] = STATE(955), + [sym__expression] = STATE(1449), + [sym_yield_expression] = STATE(1567), + [sym_object] = STATE(1636), + [sym_array] = STATE(1643), + [sym_class] = STATE(1523), + [sym_function] = STATE(1523), + [sym_generator_function] = STATE(1523), + [sym_arrow_function] = STATE(1523), + [sym__call_signature] = STATE(3078), + [sym_call_expression] = STATE(1523), + [sym_new_expression] = STATE(1567), + [sym_await_expression] = STATE(1567), + [sym_member_expression] = STATE(955), + [sym_subscript_expression] = STATE(955), + [sym_assignment_expression] = STATE(1567), + [sym__augmented_assignment_lhs] = STATE(1929), + [sym_augmented_assignment_expression] = STATE(1567), + [sym_ternary_expression] = STATE(1567), + [sym_binary_expression] = STATE(1567), + [sym_unary_expression] = STATE(1567), + [sym_update_expression] = STATE(1567), + [sym_string] = STATE(1523), + [sym_template_string] = STATE(1523), + [sym_regex] = STATE(1523), + [sym_meta_property] = STATE(1523), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(953), + [sym_type_assertion] = STATE(1567), + [sym_as_expression] = STATE(1567), + [sym_internal_module] = STATE(1567), + [sym_type_arguments] = STATE(384), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2575), + [sym_identifier] = ACTIONS(887), [anon_sym_export] = ACTIONS(635), [anon_sym_namespace] = ACTIONS(637), - [anon_sym_LBRACE] = ACTIONS(509), + [anon_sym_LBRACE] = ACTIONS(571), [anon_sym_type] = ACTIONS(635), - [anon_sym_typeof] = ACTIONS(659), - [anon_sym_import] = ACTIONS(435), - [anon_sym_BANG] = ACTIONS(643), - [anon_sym_LPAREN] = ACTIONS(515), - [anon_sym_await] = ACTIONS(645), - [anon_sym_yield] = ACTIONS(647), - [anon_sym_LBRACK] = ACTIONS(517), + [anon_sym_typeof] = ACTIONS(657), + [anon_sym_import] = ACTIONS(539), + [anon_sym_BANG] = ACTIONS(641), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(643), + [anon_sym_yield] = ACTIONS(645), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(449), - [anon_sym_class] = ACTIONS(451), - [anon_sym_async] = ACTIONS(651), - [anon_sym_function] = ACTIONS(455), - [anon_sym_new] = ACTIONS(865), - [anon_sym_PLUS] = ACTIONS(867), - [anon_sym_DASH] = ACTIONS(867), - [anon_sym_TILDE] = ACTIONS(643), - [anon_sym_void] = ACTIONS(659), - [anon_sym_delete] = ACTIONS(659), - [anon_sym_PLUS_PLUS] = ACTIONS(661), - [anon_sym_DASH_DASH] = ACTIONS(661), - [anon_sym_DQUOTE] = ACTIONS(475), - [anon_sym_SQUOTE] = ACTIONS(477), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(545), + [anon_sym_async] = ACTIONS(649), + [anon_sym_function] = ACTIONS(549), + [anon_sym_new] = ACTIONS(893), + [anon_sym_PLUS] = ACTIONS(895), + [anon_sym_DASH] = ACTIONS(895), + [anon_sym_TILDE] = ACTIONS(641), + [anon_sym_void] = ACTIONS(657), + [anon_sym_delete] = ACTIONS(657), + [anon_sym_PLUS_PLUS] = ACTIONS(659), + [anon_sym_DASH_DASH] = ACTIONS(659), + [anon_sym_DQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(479), - [sym_number] = ACTIONS(527), - [sym_this] = ACTIONS(485), - [sym_super] = ACTIONS(485), - [sym_true] = ACTIONS(485), - [sym_false] = ACTIONS(485), - [sym_null] = ACTIONS(485), - [sym_undefined] = ACTIONS(485), + [anon_sym_BQUOTE] = ACTIONS(85), + [sym_number] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(635), [anon_sym_get] = ACTIONS(635), @@ -46059,68 +47982,68 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(635), [sym_readonly] = ACTIONS(635), }, - [367] = { - [sym_import] = STATE(1101), - [sym_parenthesized_expression] = STATE(948), - [sym__expression] = STATE(1387), - [sym_yield_expression] = STATE(1105), - [sym_object] = STATE(1654), - [sym_array] = STATE(1640), - [sym_class] = STATE(1101), - [sym_function] = STATE(1101), - [sym_generator_function] = STATE(1101), - [sym_arrow_function] = STATE(1101), - [sym__call_signature] = STATE(3002), - [sym_call_expression] = STATE(1101), - [sym_new_expression] = STATE(1105), - [sym_await_expression] = STATE(1105), - [sym_member_expression] = STATE(948), - [sym_subscript_expression] = STATE(948), - [sym_assignment_expression] = STATE(1105), - [sym__augmented_assignment_lhs] = STATE(1921), - [sym_augmented_assignment_expression] = STATE(1105), - [sym_ternary_expression] = STATE(1105), - [sym_binary_expression] = STATE(1105), - [sym_unary_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_string] = STATE(1101), - [sym_template_string] = STATE(1101), - [sym_regex] = STATE(1101), - [sym_meta_property] = STATE(1101), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(949), - [sym_type_assertion] = STATE(1105), - [sym_as_expression] = STATE(1105), - [sym_internal_module] = STATE(1105), - [sym_type_arguments] = STATE(324), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2497), + [388] = { + [sym_import] = STATE(1151), + [sym_parenthesized_expression] = STATE(837), + [sym__expression] = STATE(1235), + [sym_yield_expression] = STATE(1144), + [sym_object] = STATE(1495), + [sym_array] = STATE(1493), + [sym_class] = STATE(1151), + [sym_function] = STATE(1151), + [sym_generator_function] = STATE(1151), + [sym_arrow_function] = STATE(1151), + [sym__call_signature] = STATE(3190), + [sym_call_expression] = STATE(1151), + [sym_new_expression] = STATE(1144), + [sym_await_expression] = STATE(1144), + [sym_member_expression] = STATE(837), + [sym_subscript_expression] = STATE(837), + [sym_assignment_expression] = STATE(1144), + [sym__augmented_assignment_lhs] = STATE(1927), + [sym_augmented_assignment_expression] = STATE(1144), + [sym_ternary_expression] = STATE(1144), + [sym_binary_expression] = STATE(1144), + [sym_unary_expression] = STATE(1144), + [sym_update_expression] = STATE(1144), + [sym_string] = STATE(1151), + [sym_template_string] = STATE(1151), + [sym_regex] = STATE(1151), + [sym_meta_property] = STATE(1151), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(845), + [sym_type_assertion] = STATE(1144), + [sym_as_expression] = STATE(1144), + [sym_internal_module] = STATE(1144), + [sym_type_arguments] = STATE(357), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2580), [sym_identifier] = ACTIONS(859), - [anon_sym_export] = ACTIONS(635), - [anon_sym_namespace] = ACTIONS(637), + [anon_sym_export] = ACTIONS(769), + [anon_sym_namespace] = ACTIONS(771), [anon_sym_LBRACE] = ACTIONS(509), - [anon_sym_type] = ACTIONS(635), - [anon_sym_typeof] = ACTIONS(659), + [anon_sym_type] = ACTIONS(769), + [anon_sym_typeof] = ACTIONS(791), [anon_sym_import] = ACTIONS(435), - [anon_sym_BANG] = ACTIONS(643), + [anon_sym_BANG] = ACTIONS(775), [anon_sym_LPAREN] = ACTIONS(515), - [anon_sym_await] = ACTIONS(645), - [anon_sym_yield] = ACTIONS(647), + [anon_sym_await] = ACTIONS(777), + [anon_sym_yield] = ACTIONS(779), [anon_sym_LBRACK] = ACTIONS(517), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(449), + [anon_sym_SLASH] = ACTIONS(781), [anon_sym_class] = ACTIONS(451), - [anon_sym_async] = ACTIONS(651), + [anon_sym_async] = ACTIONS(783), [anon_sym_function] = ACTIONS(455), [anon_sym_new] = ACTIONS(865), [anon_sym_PLUS] = ACTIONS(867), [anon_sym_DASH] = ACTIONS(867), - [anon_sym_TILDE] = ACTIONS(643), - [anon_sym_void] = ACTIONS(659), - [anon_sym_delete] = ACTIONS(659), - [anon_sym_PLUS_PLUS] = ACTIONS(661), - [anon_sym_DASH_DASH] = ACTIONS(661), + [anon_sym_TILDE] = ACTIONS(775), + [anon_sym_void] = ACTIONS(791), + [anon_sym_delete] = ACTIONS(791), + [anon_sym_PLUS_PLUS] = ACTIONS(793), + [anon_sym_DASH_DASH] = ACTIONS(793), [anon_sym_DQUOTE] = ACTIONS(475), [anon_sym_SQUOTE] = ACTIONS(477), [sym_comment] = ACTIONS(3), @@ -46133,65 +48056,332 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(485), [sym_undefined] = ACTIONS(485), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(635), - [anon_sym_get] = ACTIONS(635), - [anon_sym_set] = ACTIONS(635), - [anon_sym_declare] = ACTIONS(635), - [anon_sym_public] = ACTIONS(635), - [anon_sym_private] = ACTIONS(635), - [anon_sym_protected] = ACTIONS(635), - [anon_sym_module] = ACTIONS(635), - [anon_sym_any] = ACTIONS(635), - [anon_sym_number] = ACTIONS(635), - [anon_sym_boolean] = ACTIONS(635), - [anon_sym_string] = ACTIONS(635), - [anon_sym_symbol] = ACTIONS(635), - [sym_readonly] = ACTIONS(635), + [anon_sym_static] = ACTIONS(769), + [anon_sym_get] = ACTIONS(769), + [anon_sym_set] = ACTIONS(769), + [anon_sym_declare] = ACTIONS(769), + [anon_sym_public] = ACTIONS(769), + [anon_sym_private] = ACTIONS(769), + [anon_sym_protected] = ACTIONS(769), + [anon_sym_module] = ACTIONS(769), + [anon_sym_any] = ACTIONS(769), + [anon_sym_number] = ACTIONS(769), + [anon_sym_boolean] = ACTIONS(769), + [anon_sym_string] = ACTIONS(769), + [anon_sym_symbol] = ACTIONS(769), + [sym_readonly] = ACTIONS(769), }, - [368] = { - [sym_import] = STATE(1498), - [sym_parenthesized_expression] = STATE(764), - [sym__expression] = STATE(1115), - [sym_yield_expression] = STATE(1518), - [sym_object] = STATE(1435), - [sym_array] = STATE(1433), - [sym_class] = STATE(1498), - [sym_function] = STATE(1498), - [sym_generator_function] = STATE(1498), - [sym_arrow_function] = STATE(1498), - [sym__call_signature] = STATE(3145), - [sym_call_expression] = STATE(1498), - [sym_new_expression] = STATE(1518), - [sym_await_expression] = STATE(1518), - [sym_member_expression] = STATE(764), - [sym_subscript_expression] = STATE(764), - [sym_assignment_expression] = STATE(1518), - [sym__augmented_assignment_lhs] = STATE(1925), - [sym_augmented_assignment_expression] = STATE(1518), - [sym_ternary_expression] = STATE(1518), - [sym_binary_expression] = STATE(1518), - [sym_unary_expression] = STATE(1518), - [sym_update_expression] = STATE(1518), - [sym_string] = STATE(1498), - [sym_template_string] = STATE(1498), - [sym_regex] = STATE(1498), - [sym_meta_property] = STATE(1498), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(772), - [sym_type_assertion] = STATE(1518), - [sym_as_expression] = STATE(1518), - [sym_internal_module] = STATE(1518), - [sym_type_arguments] = STATE(349), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2554), + [389] = { + [sym_import] = STATE(1523), + [sym_parenthesized_expression] = STATE(768), + [sym__expression] = STATE(1232), + [sym_yield_expression] = STATE(1567), + [sym_object] = STATE(1357), + [sym_array] = STATE(1360), + [sym_class] = STATE(1523), + [sym_function] = STATE(1523), + [sym_generator_function] = STATE(1523), + [sym_arrow_function] = STATE(1523), + [sym__call_signature] = STATE(3196), + [sym_call_expression] = STATE(1523), + [sym_new_expression] = STATE(1567), + [sym_await_expression] = STATE(1567), + [sym_member_expression] = STATE(768), + [sym_subscript_expression] = STATE(768), + [sym_assignment_expression] = STATE(1567), + [sym__augmented_assignment_lhs] = STATE(1928), + [sym_augmented_assignment_expression] = STATE(1567), + [sym_ternary_expression] = STATE(1567), + [sym_binary_expression] = STATE(1567), + [sym_unary_expression] = STATE(1567), + [sym_update_expression] = STATE(1567), + [sym_string] = STATE(1523), + [sym_template_string] = STATE(1523), + [sym_regex] = STATE(1523), + [sym_meta_property] = STATE(1523), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(774), + [sym_type_assertion] = STATE(1567), + [sym_as_expression] = STATE(1567), + [sym_internal_module] = STATE(1567), + [sym_type_arguments] = STATE(292), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2575), + [sym_identifier] = ACTIONS(567), + [anon_sym_export] = ACTIONS(531), + [anon_sym_namespace] = ACTIONS(533), + [anon_sym_LBRACE] = ACTIONS(571), + [anon_sym_type] = ACTIONS(531), + [anon_sym_typeof] = ACTIONS(19), + [anon_sym_import] = ACTIONS(539), + [anon_sym_BANG] = ACTIONS(29), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(39), + [anon_sym_yield] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(545), + [anon_sym_async] = ACTIONS(547), + [anon_sym_function] = ACTIONS(549), + [anon_sym_new] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(29), + [anon_sym_void] = ACTIONS(19), + [anon_sym_delete] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_DQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(85), + [sym_number] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(531), + [anon_sym_get] = ACTIONS(531), + [anon_sym_set] = ACTIONS(531), + [anon_sym_declare] = ACTIONS(531), + [anon_sym_public] = ACTIONS(531), + [anon_sym_private] = ACTIONS(531), + [anon_sym_protected] = ACTIONS(531), + [anon_sym_module] = ACTIONS(531), + [anon_sym_any] = ACTIONS(531), + [anon_sym_number] = ACTIONS(531), + [anon_sym_boolean] = ACTIONS(531), + [anon_sym_string] = ACTIONS(531), + [anon_sym_symbol] = ACTIONS(531), + [sym_readonly] = ACTIONS(531), + }, + [390] = { + [sym_import] = STATE(1523), + [sym_parenthesized_expression] = STATE(768), + [sym__expression] = STATE(1298), + [sym_yield_expression] = STATE(1567), + [sym_object] = STATE(1357), + [sym_array] = STATE(1360), + [sym_class] = STATE(1523), + [sym_function] = STATE(1523), + [sym_generator_function] = STATE(1523), + [sym_arrow_function] = STATE(1523), + [sym__call_signature] = STATE(3196), + [sym_call_expression] = STATE(1523), + [sym_new_expression] = STATE(1567), + [sym_await_expression] = STATE(1567), + [sym_member_expression] = STATE(768), + [sym_subscript_expression] = STATE(768), + [sym_assignment_expression] = STATE(1567), + [sym__augmented_assignment_lhs] = STATE(1928), + [sym_augmented_assignment_expression] = STATE(1567), + [sym_ternary_expression] = STATE(1567), + [sym_binary_expression] = STATE(1567), + [sym_unary_expression] = STATE(1567), + [sym_update_expression] = STATE(1567), + [sym_string] = STATE(1523), + [sym_template_string] = STATE(1523), + [sym_regex] = STATE(1523), + [sym_meta_property] = STATE(1523), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(774), + [sym_type_assertion] = STATE(1567), + [sym_as_expression] = STATE(1567), + [sym_internal_module] = STATE(1567), + [sym_type_arguments] = STATE(292), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2575), + [sym_identifier] = ACTIONS(567), + [anon_sym_export] = ACTIONS(531), + [anon_sym_namespace] = ACTIONS(533), + [anon_sym_LBRACE] = ACTIONS(571), + [anon_sym_type] = ACTIONS(531), + [anon_sym_typeof] = ACTIONS(19), + [anon_sym_import] = ACTIONS(539), + [anon_sym_BANG] = ACTIONS(29), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(39), + [anon_sym_yield] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(545), + [anon_sym_async] = ACTIONS(547), + [anon_sym_function] = ACTIONS(549), + [anon_sym_new] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(29), + [anon_sym_void] = ACTIONS(19), + [anon_sym_delete] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_DQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(85), + [sym_number] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(531), + [anon_sym_get] = ACTIONS(531), + [anon_sym_set] = ACTIONS(531), + [anon_sym_declare] = ACTIONS(531), + [anon_sym_public] = ACTIONS(531), + [anon_sym_private] = ACTIONS(531), + [anon_sym_protected] = ACTIONS(531), + [anon_sym_module] = ACTIONS(531), + [anon_sym_any] = ACTIONS(531), + [anon_sym_number] = ACTIONS(531), + [anon_sym_boolean] = ACTIONS(531), + [anon_sym_string] = ACTIONS(531), + [anon_sym_symbol] = ACTIONS(531), + [sym_readonly] = ACTIONS(531), + }, + [391] = { + [sym_import] = STATE(1523), + [sym_parenthesized_expression] = STATE(768), + [sym__expression] = STATE(1127), + [sym_yield_expression] = STATE(1567), + [sym_object] = STATE(1357), + [sym_array] = STATE(1360), + [sym_class] = STATE(1523), + [sym_function] = STATE(1523), + [sym_generator_function] = STATE(1523), + [sym_arrow_function] = STATE(1523), + [sym__call_signature] = STATE(3196), + [sym_call_expression] = STATE(1523), + [sym_new_expression] = STATE(1567), + [sym_await_expression] = STATE(1567), + [sym_member_expression] = STATE(768), + [sym_subscript_expression] = STATE(768), + [sym_assignment_expression] = STATE(1567), + [sym__augmented_assignment_lhs] = STATE(1928), + [sym_augmented_assignment_expression] = STATE(1567), + [sym_ternary_expression] = STATE(1567), + [sym_binary_expression] = STATE(1567), + [sym_unary_expression] = STATE(1567), + [sym_update_expression] = STATE(1567), + [sym_string] = STATE(1523), + [sym_template_string] = STATE(1523), + [sym_regex] = STATE(1523), + [sym_meta_property] = STATE(1523), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(774), + [sym_type_assertion] = STATE(1567), + [sym_as_expression] = STATE(1567), + [sym_internal_module] = STATE(1567), + [sym_type_arguments] = STATE(292), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2575), [sym_identifier] = ACTIONS(1473), - [anon_sym_export] = ACTIONS(589), - [anon_sym_namespace] = ACTIONS(593), - [anon_sym_LBRACE] = ACTIONS(595), - [anon_sym_type] = ACTIONS(589), + [anon_sym_export] = ACTIONS(531), + [anon_sym_namespace] = ACTIONS(533), + [anon_sym_LBRACE] = ACTIONS(571), + [anon_sym_type] = ACTIONS(531), + [anon_sym_typeof] = ACTIONS(19), + [anon_sym_import] = ACTIONS(539), + [anon_sym_BANG] = ACTIONS(29), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(39), + [anon_sym_yield] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(545), + [anon_sym_async] = ACTIONS(547), + [anon_sym_function] = ACTIONS(549), + [anon_sym_new] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(29), + [anon_sym_void] = ACTIONS(19), + [anon_sym_delete] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_DQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(85), + [sym_number] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(531), + [anon_sym_get] = ACTIONS(531), + [anon_sym_set] = ACTIONS(531), + [anon_sym_declare] = ACTIONS(531), + [anon_sym_public] = ACTIONS(531), + [anon_sym_private] = ACTIONS(531), + [anon_sym_protected] = ACTIONS(531), + [anon_sym_module] = ACTIONS(531), + [anon_sym_any] = ACTIONS(531), + [anon_sym_number] = ACTIONS(531), + [anon_sym_boolean] = ACTIONS(531), + [anon_sym_string] = ACTIONS(531), + [anon_sym_symbol] = ACTIONS(531), + [sym_readonly] = ACTIONS(531), + }, + [392] = { + [sym_import] = STATE(1523), + [sym_parenthesized_expression] = STATE(768), + [sym__expression] = STATE(1303), + [sym_yield_expression] = STATE(1567), + [sym_object] = STATE(1357), + [sym_array] = STATE(1360), + [sym_class] = STATE(1523), + [sym_function] = STATE(1523), + [sym_generator_function] = STATE(1523), + [sym_arrow_function] = STATE(1523), + [sym__call_signature] = STATE(3196), + [sym_call_expression] = STATE(1523), + [sym_new_expression] = STATE(1567), + [sym_await_expression] = STATE(1567), + [sym_member_expression] = STATE(768), + [sym_subscript_expression] = STATE(768), + [sym_assignment_expression] = STATE(1567), + [sym__augmented_assignment_lhs] = STATE(1928), + [sym_augmented_assignment_expression] = STATE(1567), + [sym_ternary_expression] = STATE(1567), + [sym_binary_expression] = STATE(1567), + [sym_unary_expression] = STATE(1567), + [sym_update_expression] = STATE(1567), + [sym_string] = STATE(1523), + [sym_template_string] = STATE(1523), + [sym_regex] = STATE(1523), + [sym_meta_property] = STATE(1523), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(774), + [sym_type_assertion] = STATE(1567), + [sym_as_expression] = STATE(1567), + [sym_internal_module] = STATE(1567), + [sym_type_arguments] = STATE(292), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2575), + [sym_identifier] = ACTIONS(567), + [anon_sym_export] = ACTIONS(531), + [anon_sym_namespace] = ACTIONS(533), + [anon_sym_LBRACE] = ACTIONS(571), + [anon_sym_type] = ACTIONS(531), [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(597), + [anon_sym_import] = ACTIONS(539), [anon_sym_BANG] = ACTIONS(29), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_await] = ACTIONS(39), @@ -46199,9 +48389,9 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(601), - [anon_sym_async] = ACTIONS(603), - [anon_sym_function] = ACTIONS(605), + [anon_sym_class] = ACTIONS(545), + [anon_sym_async] = ACTIONS(547), + [anon_sym_function] = ACTIONS(549), [anon_sym_new] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(77), [anon_sym_DASH] = ACTIONS(77), @@ -46222,88 +48412,177 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(589), - [anon_sym_get] = ACTIONS(589), - [anon_sym_set] = ACTIONS(589), - [anon_sym_declare] = ACTIONS(589), - [anon_sym_public] = ACTIONS(589), - [anon_sym_private] = ACTIONS(589), - [anon_sym_protected] = ACTIONS(589), - [anon_sym_module] = ACTIONS(589), - [anon_sym_any] = ACTIONS(589), - [anon_sym_number] = ACTIONS(589), - [anon_sym_boolean] = ACTIONS(589), - [anon_sym_string] = ACTIONS(589), - [anon_sym_symbol] = ACTIONS(589), - [sym_readonly] = ACTIONS(589), + [anon_sym_static] = ACTIONS(531), + [anon_sym_get] = ACTIONS(531), + [anon_sym_set] = ACTIONS(531), + [anon_sym_declare] = ACTIONS(531), + [anon_sym_public] = ACTIONS(531), + [anon_sym_private] = ACTIONS(531), + [anon_sym_protected] = ACTIONS(531), + [anon_sym_module] = ACTIONS(531), + [anon_sym_any] = ACTIONS(531), + [anon_sym_number] = ACTIONS(531), + [anon_sym_boolean] = ACTIONS(531), + [anon_sym_string] = ACTIONS(531), + [anon_sym_symbol] = ACTIONS(531), + [sym_readonly] = ACTIONS(531), }, - [369] = { - [sym_import] = STATE(1101), - [sym_parenthesized_expression] = STATE(739), - [sym__expression] = STATE(1092), - [sym_yield_expression] = STATE(1105), - [sym_object] = STATE(1297), - [sym_array] = STATE(1296), - [sym_class] = STATE(1101), - [sym_function] = STATE(1101), - [sym_generator_function] = STATE(1101), - [sym_arrow_function] = STATE(1101), - [sym__call_signature] = STATE(3116), - [sym_call_expression] = STATE(1101), - [sym_new_expression] = STATE(1105), - [sym_await_expression] = STATE(1105), - [sym_member_expression] = STATE(739), - [sym_subscript_expression] = STATE(739), - [sym_assignment_expression] = STATE(1105), - [sym__augmented_assignment_lhs] = STATE(1920), - [sym_augmented_assignment_expression] = STATE(1105), - [sym_ternary_expression] = STATE(1105), - [sym_binary_expression] = STATE(1105), - [sym_unary_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_string] = STATE(1101), - [sym_template_string] = STATE(1101), - [sym_regex] = STATE(1101), - [sym_meta_property] = STATE(1101), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(755), - [sym_type_assertion] = STATE(1105), - [sym_as_expression] = STATE(1105), - [sym_internal_module] = STATE(1105), - [sym_type_arguments] = STATE(361), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2497), - [sym_identifier] = ACTIONS(499), - [anon_sym_export] = ACTIONS(501), - [anon_sym_namespace] = ACTIONS(507), + [393] = { + [sym_import] = STATE(1523), + [sym_parenthesized_expression] = STATE(768), + [sym__expression] = STATE(1301), + [sym_yield_expression] = STATE(1567), + [sym_object] = STATE(1357), + [sym_array] = STATE(1360), + [sym_class] = STATE(1523), + [sym_function] = STATE(1523), + [sym_generator_function] = STATE(1523), + [sym_arrow_function] = STATE(1523), + [sym__call_signature] = STATE(3196), + [sym_call_expression] = STATE(1523), + [sym_new_expression] = STATE(1567), + [sym_await_expression] = STATE(1567), + [sym_member_expression] = STATE(768), + [sym_subscript_expression] = STATE(768), + [sym_assignment_expression] = STATE(1567), + [sym__augmented_assignment_lhs] = STATE(1928), + [sym_augmented_assignment_expression] = STATE(1567), + [sym_ternary_expression] = STATE(1567), + [sym_binary_expression] = STATE(1567), + [sym_unary_expression] = STATE(1567), + [sym_update_expression] = STATE(1567), + [sym_string] = STATE(1523), + [sym_template_string] = STATE(1523), + [sym_regex] = STATE(1523), + [sym_meta_property] = STATE(1523), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(774), + [sym_type_assertion] = STATE(1567), + [sym_as_expression] = STATE(1567), + [sym_internal_module] = STATE(1567), + [sym_type_arguments] = STATE(292), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2575), + [sym_identifier] = ACTIONS(567), + [anon_sym_export] = ACTIONS(531), + [anon_sym_namespace] = ACTIONS(533), + [anon_sym_LBRACE] = ACTIONS(571), + [anon_sym_type] = ACTIONS(531), + [anon_sym_typeof] = ACTIONS(19), + [anon_sym_import] = ACTIONS(539), + [anon_sym_BANG] = ACTIONS(29), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(39), + [anon_sym_yield] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(545), + [anon_sym_async] = ACTIONS(547), + [anon_sym_function] = ACTIONS(549), + [anon_sym_new] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(29), + [anon_sym_void] = ACTIONS(19), + [anon_sym_delete] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_DQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(85), + [sym_number] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(531), + [anon_sym_get] = ACTIONS(531), + [anon_sym_set] = ACTIONS(531), + [anon_sym_declare] = ACTIONS(531), + [anon_sym_public] = ACTIONS(531), + [anon_sym_private] = ACTIONS(531), + [anon_sym_protected] = ACTIONS(531), + [anon_sym_module] = ACTIONS(531), + [anon_sym_any] = ACTIONS(531), + [anon_sym_number] = ACTIONS(531), + [anon_sym_boolean] = ACTIONS(531), + [anon_sym_string] = ACTIONS(531), + [anon_sym_symbol] = ACTIONS(531), + [sym_readonly] = ACTIONS(531), + }, + [394] = { + [sym_import] = STATE(1151), + [sym_parenthesized_expression] = STATE(956), + [sym__expression] = STATE(1531), + [sym_yield_expression] = STATE(1144), + [sym_object] = STATE(1653), + [sym_array] = STATE(1660), + [sym_class] = STATE(1151), + [sym_function] = STATE(1151), + [sym_generator_function] = STATE(1151), + [sym_arrow_function] = STATE(1151), + [sym__call_signature] = STATE(3024), + [sym_call_expression] = STATE(1151), + [sym_new_expression] = STATE(1144), + [sym_await_expression] = STATE(1144), + [sym_member_expression] = STATE(956), + [sym_subscript_expression] = STATE(956), + [sym_assignment_expression] = STATE(1144), + [sym__augmented_assignment_lhs] = STATE(1925), + [sym_augmented_assignment_expression] = STATE(1144), + [sym_ternary_expression] = STATE(1144), + [sym_binary_expression] = STATE(1144), + [sym_unary_expression] = STATE(1144), + [sym_update_expression] = STATE(1144), + [sym_string] = STATE(1151), + [sym_template_string] = STATE(1151), + [sym_regex] = STATE(1151), + [sym_meta_property] = STATE(1151), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(950), + [sym_type_assertion] = STATE(1144), + [sym_as_expression] = STATE(1144), + [sym_internal_module] = STATE(1144), + [sym_type_arguments] = STATE(395), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2580), + [sym_identifier] = ACTIONS(897), + [anon_sym_export] = ACTIONS(577), + [anon_sym_namespace] = ACTIONS(579), [anon_sym_LBRACE] = ACTIONS(509), - [anon_sym_type] = ACTIONS(501), - [anon_sym_typeof] = ACTIONS(471), + [anon_sym_type] = ACTIONS(577), + [anon_sym_typeof] = ACTIONS(601), [anon_sym_import] = ACTIONS(435), - [anon_sym_BANG] = ACTIONS(437), + [anon_sym_BANG] = ACTIONS(585), [anon_sym_LPAREN] = ACTIONS(515), - [anon_sym_await] = ACTIONS(443), - [anon_sym_yield] = ACTIONS(445), + [anon_sym_await] = ACTIONS(587), + [anon_sym_yield] = ACTIONS(589), [anon_sym_LBRACK] = ACTIONS(517), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(449), [anon_sym_class] = ACTIONS(451), - [anon_sym_async] = ACTIONS(521), + [anon_sym_async] = ACTIONS(593), [anon_sym_function] = ACTIONS(455), - [anon_sym_new] = ACTIONS(523), - [anon_sym_PLUS] = ACTIONS(525), - [anon_sym_DASH] = ACTIONS(525), - [anon_sym_TILDE] = ACTIONS(437), - [anon_sym_void] = ACTIONS(471), - [anon_sym_delete] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(473), - [anon_sym_DASH_DASH] = ACTIONS(473), + [anon_sym_new] = ACTIONS(903), + [anon_sym_PLUS] = ACTIONS(905), + [anon_sym_DASH] = ACTIONS(905), + [anon_sym_TILDE] = ACTIONS(585), + [anon_sym_void] = ACTIONS(601), + [anon_sym_delete] = ACTIONS(601), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(603), [anon_sym_DQUOTE] = ACTIONS(475), [anon_sym_SQUOTE] = ACTIONS(477), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(479), - [sym_number] = ACTIONS(1483), + [sym_number] = ACTIONS(527), [sym_this] = ACTIONS(485), [sym_super] = ACTIONS(485), [sym_true] = ACTIONS(485), @@ -46311,83 +48590,83 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(485), [sym_undefined] = ACTIONS(485), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(501), - [anon_sym_get] = ACTIONS(501), - [anon_sym_set] = ACTIONS(501), - [anon_sym_declare] = ACTIONS(501), - [anon_sym_public] = ACTIONS(501), - [anon_sym_private] = ACTIONS(501), - [anon_sym_protected] = ACTIONS(501), - [anon_sym_module] = ACTIONS(501), - [anon_sym_any] = ACTIONS(501), - [anon_sym_number] = ACTIONS(501), - [anon_sym_boolean] = ACTIONS(501), - [anon_sym_string] = ACTIONS(501), - [anon_sym_symbol] = ACTIONS(501), - [sym_readonly] = ACTIONS(501), + [anon_sym_static] = ACTIONS(577), + [anon_sym_get] = ACTIONS(577), + [anon_sym_set] = ACTIONS(577), + [anon_sym_declare] = ACTIONS(577), + [anon_sym_public] = ACTIONS(577), + [anon_sym_private] = ACTIONS(577), + [anon_sym_protected] = ACTIONS(577), + [anon_sym_module] = ACTIONS(577), + [anon_sym_any] = ACTIONS(577), + [anon_sym_number] = ACTIONS(577), + [anon_sym_boolean] = ACTIONS(577), + [anon_sym_string] = ACTIONS(577), + [anon_sym_symbol] = ACTIONS(577), + [sym_readonly] = ACTIONS(577), }, - [370] = { - [sym_import] = STATE(1101), - [sym_parenthesized_expression] = STATE(948), - [sym__expression] = STATE(1630), - [sym_yield_expression] = STATE(1105), - [sym_object] = STATE(1654), - [sym_array] = STATE(1640), - [sym_class] = STATE(1101), - [sym_function] = STATE(1101), - [sym_generator_function] = STATE(1101), - [sym_arrow_function] = STATE(1101), - [sym__call_signature] = STATE(3002), - [sym_call_expression] = STATE(1101), - [sym_new_expression] = STATE(1105), - [sym_await_expression] = STATE(1105), - [sym_member_expression] = STATE(948), - [sym_subscript_expression] = STATE(948), - [sym_assignment_expression] = STATE(1105), - [sym__augmented_assignment_lhs] = STATE(1921), - [sym_augmented_assignment_expression] = STATE(1105), - [sym_ternary_expression] = STATE(1105), - [sym_binary_expression] = STATE(1105), - [sym_unary_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_string] = STATE(1101), - [sym_template_string] = STATE(1101), - [sym_regex] = STATE(1101), - [sym_meta_property] = STATE(1101), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(949), - [sym_type_assertion] = STATE(1105), - [sym_as_expression] = STATE(1105), - [sym_internal_module] = STATE(1105), - [sym_type_arguments] = STATE(324), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2497), - [sym_identifier] = ACTIONS(859), - [anon_sym_export] = ACTIONS(635), - [anon_sym_namespace] = ACTIONS(637), + [395] = { + [sym_import] = STATE(1151), + [sym_parenthesized_expression] = STATE(956), + [sym__expression] = STATE(990), + [sym_yield_expression] = STATE(1144), + [sym_object] = STATE(1653), + [sym_array] = STATE(1660), + [sym_class] = STATE(1151), + [sym_function] = STATE(1151), + [sym_generator_function] = STATE(1151), + [sym_arrow_function] = STATE(1151), + [sym__call_signature] = STATE(3024), + [sym_call_expression] = STATE(1151), + [sym_new_expression] = STATE(1144), + [sym_await_expression] = STATE(1144), + [sym_member_expression] = STATE(956), + [sym_subscript_expression] = STATE(956), + [sym_assignment_expression] = STATE(1144), + [sym__augmented_assignment_lhs] = STATE(1925), + [sym_augmented_assignment_expression] = STATE(1144), + [sym_ternary_expression] = STATE(1144), + [sym_binary_expression] = STATE(1144), + [sym_unary_expression] = STATE(1144), + [sym_update_expression] = STATE(1144), + [sym_string] = STATE(1151), + [sym_template_string] = STATE(1151), + [sym_regex] = STATE(1151), + [sym_meta_property] = STATE(1151), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(950), + [sym_type_assertion] = STATE(1144), + [sym_as_expression] = STATE(1144), + [sym_internal_module] = STATE(1144), + [sym_type_arguments] = STATE(395), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2580), + [sym_identifier] = ACTIONS(897), + [anon_sym_export] = ACTIONS(577), + [anon_sym_namespace] = ACTIONS(579), [anon_sym_LBRACE] = ACTIONS(509), - [anon_sym_type] = ACTIONS(635), - [anon_sym_typeof] = ACTIONS(659), + [anon_sym_type] = ACTIONS(577), + [anon_sym_typeof] = ACTIONS(601), [anon_sym_import] = ACTIONS(435), - [anon_sym_BANG] = ACTIONS(643), + [anon_sym_BANG] = ACTIONS(585), [anon_sym_LPAREN] = ACTIONS(515), - [anon_sym_await] = ACTIONS(645), - [anon_sym_yield] = ACTIONS(647), + [anon_sym_await] = ACTIONS(587), + [anon_sym_yield] = ACTIONS(589), [anon_sym_LBRACK] = ACTIONS(517), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(449), [anon_sym_class] = ACTIONS(451), - [anon_sym_async] = ACTIONS(651), + [anon_sym_async] = ACTIONS(593), [anon_sym_function] = ACTIONS(455), - [anon_sym_new] = ACTIONS(865), - [anon_sym_PLUS] = ACTIONS(867), - [anon_sym_DASH] = ACTIONS(867), - [anon_sym_TILDE] = ACTIONS(643), - [anon_sym_void] = ACTIONS(659), - [anon_sym_delete] = ACTIONS(659), - [anon_sym_PLUS_PLUS] = ACTIONS(661), - [anon_sym_DASH_DASH] = ACTIONS(661), + [anon_sym_new] = ACTIONS(903), + [anon_sym_PLUS] = ACTIONS(905), + [anon_sym_DASH] = ACTIONS(905), + [anon_sym_TILDE] = ACTIONS(585), + [anon_sym_void] = ACTIONS(601), + [anon_sym_delete] = ACTIONS(601), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(603), [anon_sym_DQUOTE] = ACTIONS(475), [anon_sym_SQUOTE] = ACTIONS(477), [sym_comment] = ACTIONS(3), @@ -46400,83 +48679,83 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(485), [sym_undefined] = ACTIONS(485), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(635), - [anon_sym_get] = ACTIONS(635), - [anon_sym_set] = ACTIONS(635), - [anon_sym_declare] = ACTIONS(635), - [anon_sym_public] = ACTIONS(635), - [anon_sym_private] = ACTIONS(635), - [anon_sym_protected] = ACTIONS(635), - [anon_sym_module] = ACTIONS(635), - [anon_sym_any] = ACTIONS(635), - [anon_sym_number] = ACTIONS(635), - [anon_sym_boolean] = ACTIONS(635), - [anon_sym_string] = ACTIONS(635), - [anon_sym_symbol] = ACTIONS(635), - [sym_readonly] = ACTIONS(635), + [anon_sym_static] = ACTIONS(577), + [anon_sym_get] = ACTIONS(577), + [anon_sym_set] = ACTIONS(577), + [anon_sym_declare] = ACTIONS(577), + [anon_sym_public] = ACTIONS(577), + [anon_sym_private] = ACTIONS(577), + [anon_sym_protected] = ACTIONS(577), + [anon_sym_module] = ACTIONS(577), + [anon_sym_any] = ACTIONS(577), + [anon_sym_number] = ACTIONS(577), + [anon_sym_boolean] = ACTIONS(577), + [anon_sym_string] = ACTIONS(577), + [anon_sym_symbol] = ACTIONS(577), + [sym_readonly] = ACTIONS(577), }, - [371] = { - [sym_import] = STATE(1498), - [sym_parenthesized_expression] = STATE(952), - [sym__expression] = STATE(1410), - [sym_yield_expression] = STATE(1518), - [sym_object] = STATE(1677), - [sym_array] = STATE(1671), - [sym_class] = STATE(1498), - [sym_function] = STATE(1498), - [sym_generator_function] = STATE(1498), - [sym_arrow_function] = STATE(1498), - [sym__call_signature] = STATE(3059), - [sym_call_expression] = STATE(1498), - [sym_new_expression] = STATE(1518), - [sym_await_expression] = STATE(1518), - [sym_member_expression] = STATE(952), - [sym_subscript_expression] = STATE(952), - [sym_assignment_expression] = STATE(1518), - [sym__augmented_assignment_lhs] = STATE(1919), - [sym_augmented_assignment_expression] = STATE(1518), - [sym_ternary_expression] = STATE(1518), - [sym_binary_expression] = STATE(1518), - [sym_unary_expression] = STATE(1518), - [sym_update_expression] = STATE(1518), - [sym_string] = STATE(1498), - [sym_template_string] = STATE(1498), - [sym_regex] = STATE(1498), - [sym_meta_property] = STATE(1498), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(946), - [sym_type_assertion] = STATE(1518), - [sym_as_expression] = STATE(1518), - [sym_internal_module] = STATE(1518), - [sym_type_arguments] = STATE(263), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2554), - [sym_identifier] = ACTIONS(869), - [anon_sym_export] = ACTIONS(675), - [anon_sym_namespace] = ACTIONS(677), - [anon_sym_LBRACE] = ACTIONS(595), - [anon_sym_type] = ACTIONS(675), - [anon_sym_typeof] = ACTIONS(697), - [anon_sym_import] = ACTIONS(597), - [anon_sym_BANG] = ACTIONS(681), + [396] = { + [sym_import] = STATE(1523), + [sym_parenthesized_expression] = STATE(955), + [sym__expression] = STATE(1358), + [sym_yield_expression] = STATE(1567), + [sym_object] = STATE(1636), + [sym_array] = STATE(1643), + [sym_class] = STATE(1523), + [sym_function] = STATE(1523), + [sym_generator_function] = STATE(1523), + [sym_arrow_function] = STATE(1523), + [sym__call_signature] = STATE(3078), + [sym_call_expression] = STATE(1523), + [sym_new_expression] = STATE(1567), + [sym_await_expression] = STATE(1567), + [sym_member_expression] = STATE(955), + [sym_subscript_expression] = STATE(955), + [sym_assignment_expression] = STATE(1567), + [sym__augmented_assignment_lhs] = STATE(1929), + [sym_augmented_assignment_expression] = STATE(1567), + [sym_ternary_expression] = STATE(1567), + [sym_binary_expression] = STATE(1567), + [sym_unary_expression] = STATE(1567), + [sym_update_expression] = STATE(1567), + [sym_string] = STATE(1523), + [sym_template_string] = STATE(1523), + [sym_regex] = STATE(1523), + [sym_meta_property] = STATE(1523), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(953), + [sym_type_assertion] = STATE(1567), + [sym_as_expression] = STATE(1567), + [sym_internal_module] = STATE(1567), + [sym_type_arguments] = STATE(384), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2575), + [sym_identifier] = ACTIONS(887), + [anon_sym_export] = ACTIONS(635), + [anon_sym_namespace] = ACTIONS(637), + [anon_sym_LBRACE] = ACTIONS(571), + [anon_sym_type] = ACTIONS(635), + [anon_sym_typeof] = ACTIONS(657), + [anon_sym_import] = ACTIONS(539), + [anon_sym_BANG] = ACTIONS(641), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(683), - [anon_sym_yield] = ACTIONS(685), + [anon_sym_await] = ACTIONS(643), + [anon_sym_yield] = ACTIONS(645), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(601), - [anon_sym_async] = ACTIONS(689), - [anon_sym_function] = ACTIONS(605), - [anon_sym_new] = ACTIONS(875), - [anon_sym_PLUS] = ACTIONS(877), - [anon_sym_DASH] = ACTIONS(877), - [anon_sym_TILDE] = ACTIONS(681), - [anon_sym_void] = ACTIONS(697), - [anon_sym_delete] = ACTIONS(697), - [anon_sym_PLUS_PLUS] = ACTIONS(699), - [anon_sym_DASH_DASH] = ACTIONS(699), + [anon_sym_class] = ACTIONS(545), + [anon_sym_async] = ACTIONS(649), + [anon_sym_function] = ACTIONS(549), + [anon_sym_new] = ACTIONS(893), + [anon_sym_PLUS] = ACTIONS(895), + [anon_sym_DASH] = ACTIONS(895), + [anon_sym_TILDE] = ACTIONS(641), + [anon_sym_void] = ACTIONS(657), + [anon_sym_delete] = ACTIONS(657), + [anon_sym_PLUS_PLUS] = ACTIONS(659), + [anon_sym_DASH_DASH] = ACTIONS(659), [anon_sym_DQUOTE] = ACTIONS(81), [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), @@ -46489,83 +48768,83 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(675), - [anon_sym_get] = ACTIONS(675), - [anon_sym_set] = ACTIONS(675), - [anon_sym_declare] = ACTIONS(675), - [anon_sym_public] = ACTIONS(675), - [anon_sym_private] = ACTIONS(675), - [anon_sym_protected] = ACTIONS(675), - [anon_sym_module] = ACTIONS(675), - [anon_sym_any] = ACTIONS(675), - [anon_sym_number] = ACTIONS(675), - [anon_sym_boolean] = ACTIONS(675), - [anon_sym_string] = ACTIONS(675), - [anon_sym_symbol] = ACTIONS(675), - [sym_readonly] = ACTIONS(675), + [anon_sym_static] = ACTIONS(635), + [anon_sym_get] = ACTIONS(635), + [anon_sym_set] = ACTIONS(635), + [anon_sym_declare] = ACTIONS(635), + [anon_sym_public] = ACTIONS(635), + [anon_sym_private] = ACTIONS(635), + [anon_sym_protected] = ACTIONS(635), + [anon_sym_module] = ACTIONS(635), + [anon_sym_any] = ACTIONS(635), + [anon_sym_number] = ACTIONS(635), + [anon_sym_boolean] = ACTIONS(635), + [anon_sym_string] = ACTIONS(635), + [anon_sym_symbol] = ACTIONS(635), + [sym_readonly] = ACTIONS(635), }, - [372] = { - [sym_import] = STATE(1498), - [sym_parenthesized_expression] = STATE(764), - [sym__expression] = STATE(1104), - [sym_yield_expression] = STATE(1518), - [sym_object] = STATE(1435), - [sym_array] = STATE(1433), - [sym_class] = STATE(1498), - [sym_function] = STATE(1498), - [sym_generator_function] = STATE(1498), - [sym_arrow_function] = STATE(1498), - [sym__call_signature] = STATE(3145), - [sym_call_expression] = STATE(1498), - [sym_new_expression] = STATE(1518), - [sym_await_expression] = STATE(1518), - [sym_member_expression] = STATE(764), - [sym_subscript_expression] = STATE(764), - [sym_assignment_expression] = STATE(1518), - [sym__augmented_assignment_lhs] = STATE(1925), - [sym_augmented_assignment_expression] = STATE(1518), - [sym_ternary_expression] = STATE(1518), - [sym_binary_expression] = STATE(1518), - [sym_unary_expression] = STATE(1518), - [sym_update_expression] = STATE(1518), - [sym_string] = STATE(1498), - [sym_template_string] = STATE(1498), - [sym_regex] = STATE(1498), - [sym_meta_property] = STATE(1498), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(772), - [sym_type_assertion] = STATE(1518), - [sym_as_expression] = STATE(1518), - [sym_internal_module] = STATE(1518), - [sym_type_arguments] = STATE(349), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2554), - [sym_identifier] = ACTIONS(587), - [anon_sym_export] = ACTIONS(589), - [anon_sym_namespace] = ACTIONS(593), - [anon_sym_LBRACE] = ACTIONS(595), - [anon_sym_type] = ACTIONS(589), - [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(597), - [anon_sym_BANG] = ACTIONS(29), + [397] = { + [sym_import] = STATE(1523), + [sym_parenthesized_expression] = STATE(955), + [sym__expression] = STATE(1353), + [sym_yield_expression] = STATE(1567), + [sym_object] = STATE(1636), + [sym_array] = STATE(1643), + [sym_class] = STATE(1523), + [sym_function] = STATE(1523), + [sym_generator_function] = STATE(1523), + [sym_arrow_function] = STATE(1523), + [sym__call_signature] = STATE(3078), + [sym_call_expression] = STATE(1523), + [sym_new_expression] = STATE(1567), + [sym_await_expression] = STATE(1567), + [sym_member_expression] = STATE(955), + [sym_subscript_expression] = STATE(955), + [sym_assignment_expression] = STATE(1567), + [sym__augmented_assignment_lhs] = STATE(1929), + [sym_augmented_assignment_expression] = STATE(1567), + [sym_ternary_expression] = STATE(1567), + [sym_binary_expression] = STATE(1567), + [sym_unary_expression] = STATE(1567), + [sym_update_expression] = STATE(1567), + [sym_string] = STATE(1523), + [sym_template_string] = STATE(1523), + [sym_regex] = STATE(1523), + [sym_meta_property] = STATE(1523), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(953), + [sym_type_assertion] = STATE(1567), + [sym_as_expression] = STATE(1567), + [sym_internal_module] = STATE(1567), + [sym_type_arguments] = STATE(384), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2575), + [sym_identifier] = ACTIONS(887), + [anon_sym_export] = ACTIONS(635), + [anon_sym_namespace] = ACTIONS(637), + [anon_sym_LBRACE] = ACTIONS(571), + [anon_sym_type] = ACTIONS(635), + [anon_sym_typeof] = ACTIONS(657), + [anon_sym_import] = ACTIONS(539), + [anon_sym_BANG] = ACTIONS(641), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(39), - [anon_sym_yield] = ACTIONS(61), + [anon_sym_await] = ACTIONS(643), + [anon_sym_yield] = ACTIONS(645), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(601), - [anon_sym_async] = ACTIONS(603), - [anon_sym_function] = ACTIONS(605), - [anon_sym_new] = ACTIONS(75), - [anon_sym_PLUS] = ACTIONS(77), - [anon_sym_DASH] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(29), - [anon_sym_void] = ACTIONS(19), - [anon_sym_delete] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_class] = ACTIONS(545), + [anon_sym_async] = ACTIONS(649), + [anon_sym_function] = ACTIONS(549), + [anon_sym_new] = ACTIONS(893), + [anon_sym_PLUS] = ACTIONS(895), + [anon_sym_DASH] = ACTIONS(895), + [anon_sym_TILDE] = ACTIONS(641), + [anon_sym_void] = ACTIONS(657), + [anon_sym_delete] = ACTIONS(657), + [anon_sym_PLUS_PLUS] = ACTIONS(659), + [anon_sym_DASH_DASH] = ACTIONS(659), [anon_sym_DQUOTE] = ACTIONS(81), [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), @@ -46578,58 +48857,58 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(589), - [anon_sym_get] = ACTIONS(589), - [anon_sym_set] = ACTIONS(589), - [anon_sym_declare] = ACTIONS(589), - [anon_sym_public] = ACTIONS(589), - [anon_sym_private] = ACTIONS(589), - [anon_sym_protected] = ACTIONS(589), - [anon_sym_module] = ACTIONS(589), - [anon_sym_any] = ACTIONS(589), - [anon_sym_number] = ACTIONS(589), - [anon_sym_boolean] = ACTIONS(589), - [anon_sym_string] = ACTIONS(589), - [anon_sym_symbol] = ACTIONS(589), - [sym_readonly] = ACTIONS(589), + [anon_sym_static] = ACTIONS(635), + [anon_sym_get] = ACTIONS(635), + [anon_sym_set] = ACTIONS(635), + [anon_sym_declare] = ACTIONS(635), + [anon_sym_public] = ACTIONS(635), + [anon_sym_private] = ACTIONS(635), + [anon_sym_protected] = ACTIONS(635), + [anon_sym_module] = ACTIONS(635), + [anon_sym_any] = ACTIONS(635), + [anon_sym_number] = ACTIONS(635), + [anon_sym_boolean] = ACTIONS(635), + [anon_sym_string] = ACTIONS(635), + [anon_sym_symbol] = ACTIONS(635), + [sym_readonly] = ACTIONS(635), }, - [373] = { - [sym_import] = STATE(1101), - [sym_parenthesized_expression] = STATE(739), - [sym__expression] = STATE(987), - [sym_yield_expression] = STATE(1105), - [sym_object] = STATE(1297), - [sym_array] = STATE(1296), - [sym_class] = STATE(1101), - [sym_function] = STATE(1101), - [sym_generator_function] = STATE(1101), - [sym_arrow_function] = STATE(1101), - [sym__call_signature] = STATE(3116), - [sym_call_expression] = STATE(1101), - [sym_new_expression] = STATE(1105), - [sym_await_expression] = STATE(1105), - [sym_member_expression] = STATE(739), - [sym_subscript_expression] = STATE(739), - [sym_assignment_expression] = STATE(1105), - [sym__augmented_assignment_lhs] = STATE(1920), - [sym_augmented_assignment_expression] = STATE(1105), - [sym_ternary_expression] = STATE(1105), - [sym_binary_expression] = STATE(1105), - [sym_unary_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_string] = STATE(1101), - [sym_template_string] = STATE(1101), - [sym_regex] = STATE(1101), - [sym_meta_property] = STATE(1101), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(755), - [sym_type_assertion] = STATE(1105), - [sym_as_expression] = STATE(1105), - [sym_internal_module] = STATE(1105), - [sym_type_arguments] = STATE(361), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2497), + [398] = { + [sym_import] = STATE(1151), + [sym_parenthesized_expression] = STATE(759), + [sym__expression] = STATE(1051), + [sym_yield_expression] = STATE(1144), + [sym_object] = STATE(1257), + [sym_array] = STATE(1254), + [sym_class] = STATE(1151), + [sym_function] = STATE(1151), + [sym_generator_function] = STATE(1151), + [sym_arrow_function] = STATE(1151), + [sym__call_signature] = STATE(3082), + [sym_call_expression] = STATE(1151), + [sym_new_expression] = STATE(1144), + [sym_await_expression] = STATE(1144), + [sym_member_expression] = STATE(759), + [sym_subscript_expression] = STATE(759), + [sym_assignment_expression] = STATE(1144), + [sym__augmented_assignment_lhs] = STATE(1924), + [sym_augmented_assignment_expression] = STATE(1144), + [sym_ternary_expression] = STATE(1144), + [sym_binary_expression] = STATE(1144), + [sym_unary_expression] = STATE(1144), + [sym_update_expression] = STATE(1144), + [sym_string] = STATE(1151), + [sym_template_string] = STATE(1151), + [sym_regex] = STATE(1151), + [sym_meta_property] = STATE(1151), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(754), + [sym_type_assertion] = STATE(1144), + [sym_as_expression] = STATE(1144), + [sym_internal_module] = STATE(1144), + [sym_type_arguments] = STATE(326), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2580), [sym_identifier] = ACTIONS(499), [anon_sym_export] = ACTIONS(501), [anon_sym_namespace] = ACTIONS(507), @@ -46682,43 +48961,43 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(501), [sym_readonly] = ACTIONS(501), }, - [374] = { - [sym_import] = STATE(1101), - [sym_parenthesized_expression] = STATE(739), - [sym__expression] = STATE(1092), - [sym_yield_expression] = STATE(1105), - [sym_object] = STATE(1297), - [sym_array] = STATE(1296), - [sym_class] = STATE(1101), - [sym_function] = STATE(1101), - [sym_generator_function] = STATE(1101), - [sym_arrow_function] = STATE(1101), - [sym__call_signature] = STATE(3116), - [sym_call_expression] = STATE(1101), - [sym_new_expression] = STATE(1105), - [sym_await_expression] = STATE(1105), - [sym_member_expression] = STATE(739), - [sym_subscript_expression] = STATE(739), - [sym_assignment_expression] = STATE(1105), - [sym__augmented_assignment_lhs] = STATE(1920), - [sym_augmented_assignment_expression] = STATE(1105), - [sym_ternary_expression] = STATE(1105), - [sym_binary_expression] = STATE(1105), - [sym_unary_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_string] = STATE(1101), - [sym_template_string] = STATE(1101), - [sym_regex] = STATE(1101), - [sym_meta_property] = STATE(1101), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(755), - [sym_type_assertion] = STATE(1105), - [sym_as_expression] = STATE(1105), - [sym_internal_module] = STATE(1105), - [sym_type_arguments] = STATE(361), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2497), + [399] = { + [sym_import] = STATE(1151), + [sym_parenthesized_expression] = STATE(759), + [sym__expression] = STATE(1069), + [sym_yield_expression] = STATE(1144), + [sym_object] = STATE(1257), + [sym_array] = STATE(1254), + [sym_class] = STATE(1151), + [sym_function] = STATE(1151), + [sym_generator_function] = STATE(1151), + [sym_arrow_function] = STATE(1151), + [sym__call_signature] = STATE(3082), + [sym_call_expression] = STATE(1151), + [sym_new_expression] = STATE(1144), + [sym_await_expression] = STATE(1144), + [sym_member_expression] = STATE(759), + [sym_subscript_expression] = STATE(759), + [sym_assignment_expression] = STATE(1144), + [sym__augmented_assignment_lhs] = STATE(1924), + [sym_augmented_assignment_expression] = STATE(1144), + [sym_ternary_expression] = STATE(1144), + [sym_binary_expression] = STATE(1144), + [sym_unary_expression] = STATE(1144), + [sym_update_expression] = STATE(1144), + [sym_string] = STATE(1151), + [sym_template_string] = STATE(1151), + [sym_regex] = STATE(1151), + [sym_meta_property] = STATE(1151), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(754), + [sym_type_assertion] = STATE(1144), + [sym_as_expression] = STATE(1144), + [sym_internal_module] = STATE(1144), + [sym_type_arguments] = STATE(326), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2580), [sym_identifier] = ACTIONS(499), [anon_sym_export] = ACTIONS(501), [anon_sym_namespace] = ACTIONS(507), @@ -46771,68 +49050,68 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(501), [sym_readonly] = ACTIONS(501), }, - [375] = { - [sym_import] = STATE(1101), - [sym_parenthesized_expression] = STATE(921), - [sym__expression] = STATE(1270), - [sym_yield_expression] = STATE(1105), - [sym_object] = STATE(1531), - [sym_array] = STATE(1536), - [sym_class] = STATE(1101), - [sym_function] = STATE(1101), - [sym_generator_function] = STATE(1101), - [sym_arrow_function] = STATE(1101), - [sym__call_signature] = STATE(3170), - [sym_call_expression] = STATE(1101), - [sym_new_expression] = STATE(1105), - [sym_await_expression] = STATE(1105), - [sym_member_expression] = STATE(921), - [sym_subscript_expression] = STATE(921), - [sym_assignment_expression] = STATE(1105), - [sym__augmented_assignment_lhs] = STATE(1917), - [sym_augmented_assignment_expression] = STATE(1105), - [sym_ternary_expression] = STATE(1105), - [sym_binary_expression] = STATE(1105), - [sym_unary_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_string] = STATE(1101), - [sym_template_string] = STATE(1101), - [sym_regex] = STATE(1101), - [sym_meta_property] = STATE(1101), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(882), - [sym_type_assertion] = STATE(1105), - [sym_as_expression] = STATE(1105), - [sym_internal_module] = STATE(1105), - [sym_type_arguments] = STATE(355), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2497), + [400] = { + [sym_import] = STATE(1151), + [sym_parenthesized_expression] = STATE(956), + [sym__expression] = STATE(1524), + [sym_yield_expression] = STATE(1144), + [sym_object] = STATE(1653), + [sym_array] = STATE(1660), + [sym_class] = STATE(1151), + [sym_function] = STATE(1151), + [sym_generator_function] = STATE(1151), + [sym_arrow_function] = STATE(1151), + [sym__call_signature] = STATE(3024), + [sym_call_expression] = STATE(1151), + [sym_new_expression] = STATE(1144), + [sym_await_expression] = STATE(1144), + [sym_member_expression] = STATE(956), + [sym_subscript_expression] = STATE(956), + [sym_assignment_expression] = STATE(1144), + [sym__augmented_assignment_lhs] = STATE(1925), + [sym_augmented_assignment_expression] = STATE(1144), + [sym_ternary_expression] = STATE(1144), + [sym_binary_expression] = STATE(1144), + [sym_unary_expression] = STATE(1144), + [sym_update_expression] = STATE(1144), + [sym_string] = STATE(1151), + [sym_template_string] = STATE(1151), + [sym_regex] = STATE(1151), + [sym_meta_property] = STATE(1151), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(950), + [sym_type_assertion] = STATE(1144), + [sym_as_expression] = STATE(1144), + [sym_internal_module] = STATE(1144), + [sym_type_arguments] = STATE(395), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2580), [sym_identifier] = ACTIONS(897), - [anon_sym_export] = ACTIONS(751), - [anon_sym_namespace] = ACTIONS(753), + [anon_sym_export] = ACTIONS(577), + [anon_sym_namespace] = ACTIONS(579), [anon_sym_LBRACE] = ACTIONS(509), - [anon_sym_type] = ACTIONS(751), - [anon_sym_typeof] = ACTIONS(775), + [anon_sym_type] = ACTIONS(577), + [anon_sym_typeof] = ACTIONS(601), [anon_sym_import] = ACTIONS(435), - [anon_sym_BANG] = ACTIONS(757), + [anon_sym_BANG] = ACTIONS(585), [anon_sym_LPAREN] = ACTIONS(515), - [anon_sym_await] = ACTIONS(759), - [anon_sym_yield] = ACTIONS(761), + [anon_sym_await] = ACTIONS(587), + [anon_sym_yield] = ACTIONS(589), [anon_sym_LBRACK] = ACTIONS(517), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(765), + [anon_sym_SLASH] = ACTIONS(449), [anon_sym_class] = ACTIONS(451), - [anon_sym_async] = ACTIONS(767), + [anon_sym_async] = ACTIONS(593), [anon_sym_function] = ACTIONS(455), [anon_sym_new] = ACTIONS(903), [anon_sym_PLUS] = ACTIONS(905), [anon_sym_DASH] = ACTIONS(905), - [anon_sym_TILDE] = ACTIONS(757), - [anon_sym_void] = ACTIONS(775), - [anon_sym_delete] = ACTIONS(775), - [anon_sym_PLUS_PLUS] = ACTIONS(777), - [anon_sym_DASH_DASH] = ACTIONS(777), + [anon_sym_TILDE] = ACTIONS(585), + [anon_sym_void] = ACTIONS(601), + [anon_sym_delete] = ACTIONS(601), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(603), [anon_sym_DQUOTE] = ACTIONS(475), [anon_sym_SQUOTE] = ACTIONS(477), [sym_comment] = ACTIONS(3), @@ -46845,83 +49124,172 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(485), [sym_undefined] = ACTIONS(485), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(751), - [anon_sym_get] = ACTIONS(751), - [anon_sym_set] = ACTIONS(751), - [anon_sym_declare] = ACTIONS(751), - [anon_sym_public] = ACTIONS(751), - [anon_sym_private] = ACTIONS(751), - [anon_sym_protected] = ACTIONS(751), - [anon_sym_module] = ACTIONS(751), - [anon_sym_any] = ACTIONS(751), - [anon_sym_number] = ACTIONS(751), - [anon_sym_boolean] = ACTIONS(751), - [anon_sym_string] = ACTIONS(751), - [anon_sym_symbol] = ACTIONS(751), - [sym_readonly] = ACTIONS(751), + [anon_sym_static] = ACTIONS(577), + [anon_sym_get] = ACTIONS(577), + [anon_sym_set] = ACTIONS(577), + [anon_sym_declare] = ACTIONS(577), + [anon_sym_public] = ACTIONS(577), + [anon_sym_private] = ACTIONS(577), + [anon_sym_protected] = ACTIONS(577), + [anon_sym_module] = ACTIONS(577), + [anon_sym_any] = ACTIONS(577), + [anon_sym_number] = ACTIONS(577), + [anon_sym_boolean] = ACTIONS(577), + [anon_sym_string] = ACTIONS(577), + [anon_sym_symbol] = ACTIONS(577), + [sym_readonly] = ACTIONS(577), }, - [376] = { - [sym_import] = STATE(1101), - [sym_parenthesized_expression] = STATE(948), - [sym__expression] = STATE(1386), - [sym_yield_expression] = STATE(1105), - [sym_object] = STATE(1654), - [sym_array] = STATE(1640), - [sym_class] = STATE(1101), - [sym_function] = STATE(1101), - [sym_generator_function] = STATE(1101), - [sym_arrow_function] = STATE(1101), - [sym__call_signature] = STATE(3002), - [sym_call_expression] = STATE(1101), - [sym_new_expression] = STATE(1105), - [sym_await_expression] = STATE(1105), - [sym_member_expression] = STATE(948), - [sym_subscript_expression] = STATE(948), - [sym_assignment_expression] = STATE(1105), - [sym__augmented_assignment_lhs] = STATE(1921), - [sym_augmented_assignment_expression] = STATE(1105), - [sym_ternary_expression] = STATE(1105), - [sym_binary_expression] = STATE(1105), - [sym_unary_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_string] = STATE(1101), - [sym_template_string] = STATE(1101), - [sym_regex] = STATE(1101), - [sym_meta_property] = STATE(1101), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(949), - [sym_type_assertion] = STATE(1105), - [sym_as_expression] = STATE(1105), - [sym_internal_module] = STATE(1105), - [sym_type_arguments] = STATE(324), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2497), - [sym_identifier] = ACTIONS(859), - [anon_sym_export] = ACTIONS(635), - [anon_sym_namespace] = ACTIONS(637), - [anon_sym_LBRACE] = ACTIONS(509), - [anon_sym_type] = ACTIONS(635), - [anon_sym_typeof] = ACTIONS(659), - [anon_sym_import] = ACTIONS(435), - [anon_sym_BANG] = ACTIONS(643), - [anon_sym_LPAREN] = ACTIONS(515), - [anon_sym_await] = ACTIONS(645), - [anon_sym_yield] = ACTIONS(647), - [anon_sym_LBRACK] = ACTIONS(517), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(449), - [anon_sym_class] = ACTIONS(451), - [anon_sym_async] = ACTIONS(651), - [anon_sym_function] = ACTIONS(455), - [anon_sym_new] = ACTIONS(865), - [anon_sym_PLUS] = ACTIONS(867), - [anon_sym_DASH] = ACTIONS(867), - [anon_sym_TILDE] = ACTIONS(643), - [anon_sym_void] = ACTIONS(659), - [anon_sym_delete] = ACTIONS(659), - [anon_sym_PLUS_PLUS] = ACTIONS(661), - [anon_sym_DASH_DASH] = ACTIONS(661), + [401] = { + [sym_import] = STATE(1523), + [sym_parenthesized_expression] = STATE(768), + [sym__expression] = STATE(1115), + [sym_yield_expression] = STATE(1567), + [sym_object] = STATE(1357), + [sym_array] = STATE(1360), + [sym_class] = STATE(1523), + [sym_function] = STATE(1523), + [sym_generator_function] = STATE(1523), + [sym_arrow_function] = STATE(1523), + [sym__call_signature] = STATE(3196), + [sym_call_expression] = STATE(1523), + [sym_new_expression] = STATE(1567), + [sym_await_expression] = STATE(1567), + [sym_member_expression] = STATE(768), + [sym_subscript_expression] = STATE(768), + [sym_assignment_expression] = STATE(1567), + [sym__augmented_assignment_lhs] = STATE(1928), + [sym_augmented_assignment_expression] = STATE(1567), + [sym_ternary_expression] = STATE(1567), + [sym_binary_expression] = STATE(1567), + [sym_unary_expression] = STATE(1567), + [sym_update_expression] = STATE(1567), + [sym_string] = STATE(1523), + [sym_template_string] = STATE(1523), + [sym_regex] = STATE(1523), + [sym_meta_property] = STATE(1523), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(774), + [sym_type_assertion] = STATE(1567), + [sym_as_expression] = STATE(1567), + [sym_internal_module] = STATE(1567), + [sym_type_arguments] = STATE(292), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2575), + [sym_identifier] = ACTIONS(567), + [anon_sym_export] = ACTIONS(531), + [anon_sym_namespace] = ACTIONS(533), + [anon_sym_LBRACE] = ACTIONS(571), + [anon_sym_type] = ACTIONS(531), + [anon_sym_typeof] = ACTIONS(19), + [anon_sym_import] = ACTIONS(539), + [anon_sym_BANG] = ACTIONS(29), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(39), + [anon_sym_yield] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(545), + [anon_sym_async] = ACTIONS(547), + [anon_sym_function] = ACTIONS(549), + [anon_sym_new] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(29), + [anon_sym_void] = ACTIONS(19), + [anon_sym_delete] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_DQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(85), + [sym_number] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(531), + [anon_sym_get] = ACTIONS(531), + [anon_sym_set] = ACTIONS(531), + [anon_sym_declare] = ACTIONS(531), + [anon_sym_public] = ACTIONS(531), + [anon_sym_private] = ACTIONS(531), + [anon_sym_protected] = ACTIONS(531), + [anon_sym_module] = ACTIONS(531), + [anon_sym_any] = ACTIONS(531), + [anon_sym_number] = ACTIONS(531), + [anon_sym_boolean] = ACTIONS(531), + [anon_sym_string] = ACTIONS(531), + [anon_sym_symbol] = ACTIONS(531), + [sym_readonly] = ACTIONS(531), + }, + [402] = { + [sym_import] = STATE(1151), + [sym_parenthesized_expression] = STATE(759), + [sym__expression] = STATE(1455), + [sym_yield_expression] = STATE(1144), + [sym_object] = STATE(1257), + [sym_array] = STATE(1254), + [sym_class] = STATE(1151), + [sym_function] = STATE(1151), + [sym_generator_function] = STATE(1151), + [sym_arrow_function] = STATE(1151), + [sym__call_signature] = STATE(3082), + [sym_call_expression] = STATE(1151), + [sym_new_expression] = STATE(1144), + [sym_await_expression] = STATE(1144), + [sym_member_expression] = STATE(759), + [sym_subscript_expression] = STATE(759), + [sym_assignment_expression] = STATE(1144), + [sym__augmented_assignment_lhs] = STATE(1924), + [sym_augmented_assignment_expression] = STATE(1144), + [sym_ternary_expression] = STATE(1144), + [sym_binary_expression] = STATE(1144), + [sym_unary_expression] = STATE(1144), + [sym_update_expression] = STATE(1144), + [sym_string] = STATE(1151), + [sym_template_string] = STATE(1151), + [sym_regex] = STATE(1151), + [sym_meta_property] = STATE(1151), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(754), + [sym_type_assertion] = STATE(1144), + [sym_as_expression] = STATE(1144), + [sym_internal_module] = STATE(1144), + [sym_type_arguments] = STATE(326), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2580), + [sym_identifier] = ACTIONS(499), + [anon_sym_export] = ACTIONS(501), + [anon_sym_namespace] = ACTIONS(507), + [anon_sym_LBRACE] = ACTIONS(509), + [anon_sym_type] = ACTIONS(501), + [anon_sym_typeof] = ACTIONS(471), + [anon_sym_import] = ACTIONS(435), + [anon_sym_BANG] = ACTIONS(437), + [anon_sym_LPAREN] = ACTIONS(515), + [anon_sym_await] = ACTIONS(443), + [anon_sym_yield] = ACTIONS(445), + [anon_sym_LBRACK] = ACTIONS(517), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(449), + [anon_sym_class] = ACTIONS(451), + [anon_sym_async] = ACTIONS(521), + [anon_sym_function] = ACTIONS(455), + [anon_sym_new] = ACTIONS(523), + [anon_sym_PLUS] = ACTIONS(525), + [anon_sym_DASH] = ACTIONS(525), + [anon_sym_TILDE] = ACTIONS(437), + [anon_sym_void] = ACTIONS(471), + [anon_sym_delete] = ACTIONS(471), + [anon_sym_PLUS_PLUS] = ACTIONS(473), + [anon_sym_DASH_DASH] = ACTIONS(473), [anon_sym_DQUOTE] = ACTIONS(475), [anon_sym_SQUOTE] = ACTIONS(477), [sym_comment] = ACTIONS(3), @@ -46934,6 +49302,95 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(485), [sym_undefined] = ACTIONS(485), [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(501), + [anon_sym_get] = ACTIONS(501), + [anon_sym_set] = ACTIONS(501), + [anon_sym_declare] = ACTIONS(501), + [anon_sym_public] = ACTIONS(501), + [anon_sym_private] = ACTIONS(501), + [anon_sym_protected] = ACTIONS(501), + [anon_sym_module] = ACTIONS(501), + [anon_sym_any] = ACTIONS(501), + [anon_sym_number] = ACTIONS(501), + [anon_sym_boolean] = ACTIONS(501), + [anon_sym_string] = ACTIONS(501), + [anon_sym_symbol] = ACTIONS(501), + [sym_readonly] = ACTIONS(501), + }, + [403] = { + [sym_import] = STATE(1523), + [sym_parenthesized_expression] = STATE(955), + [sym__expression] = STATE(1347), + [sym_yield_expression] = STATE(1567), + [sym_object] = STATE(1636), + [sym_array] = STATE(1643), + [sym_class] = STATE(1523), + [sym_function] = STATE(1523), + [sym_generator_function] = STATE(1523), + [sym_arrow_function] = STATE(1523), + [sym__call_signature] = STATE(3078), + [sym_call_expression] = STATE(1523), + [sym_new_expression] = STATE(1567), + [sym_await_expression] = STATE(1567), + [sym_member_expression] = STATE(955), + [sym_subscript_expression] = STATE(955), + [sym_assignment_expression] = STATE(1567), + [sym__augmented_assignment_lhs] = STATE(1929), + [sym_augmented_assignment_expression] = STATE(1567), + [sym_ternary_expression] = STATE(1567), + [sym_binary_expression] = STATE(1567), + [sym_unary_expression] = STATE(1567), + [sym_update_expression] = STATE(1567), + [sym_string] = STATE(1523), + [sym_template_string] = STATE(1523), + [sym_regex] = STATE(1523), + [sym_meta_property] = STATE(1523), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(953), + [sym_type_assertion] = STATE(1567), + [sym_as_expression] = STATE(1567), + [sym_internal_module] = STATE(1567), + [sym_type_arguments] = STATE(384), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2575), + [sym_identifier] = ACTIONS(887), + [anon_sym_export] = ACTIONS(635), + [anon_sym_namespace] = ACTIONS(637), + [anon_sym_LBRACE] = ACTIONS(571), + [anon_sym_type] = ACTIONS(635), + [anon_sym_typeof] = ACTIONS(657), + [anon_sym_import] = ACTIONS(539), + [anon_sym_BANG] = ACTIONS(641), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(643), + [anon_sym_yield] = ACTIONS(645), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(545), + [anon_sym_async] = ACTIONS(649), + [anon_sym_function] = ACTIONS(549), + [anon_sym_new] = ACTIONS(893), + [anon_sym_PLUS] = ACTIONS(895), + [anon_sym_DASH] = ACTIONS(895), + [anon_sym_TILDE] = ACTIONS(641), + [anon_sym_void] = ACTIONS(657), + [anon_sym_delete] = ACTIONS(657), + [anon_sym_PLUS_PLUS] = ACTIONS(659), + [anon_sym_DASH_DASH] = ACTIONS(659), + [anon_sym_DQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(85), + [sym_number] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(635), [anon_sym_get] = ACTIONS(635), [anon_sym_set] = ACTIONS(635), @@ -46949,43 +49406,43 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(635), [sym_readonly] = ACTIONS(635), }, - [377] = { - [sym_import] = STATE(1101), - [sym_parenthesized_expression] = STATE(739), - [sym__expression] = STATE(1021), - [sym_yield_expression] = STATE(1105), - [sym_object] = STATE(1297), - [sym_array] = STATE(1296), - [sym_class] = STATE(1101), - [sym_function] = STATE(1101), - [sym_generator_function] = STATE(1101), - [sym_arrow_function] = STATE(1101), - [sym__call_signature] = STATE(3116), - [sym_call_expression] = STATE(1101), - [sym_new_expression] = STATE(1105), - [sym_await_expression] = STATE(1105), - [sym_member_expression] = STATE(739), - [sym_subscript_expression] = STATE(739), - [sym_assignment_expression] = STATE(1105), - [sym__augmented_assignment_lhs] = STATE(1920), - [sym_augmented_assignment_expression] = STATE(1105), - [sym_ternary_expression] = STATE(1105), - [sym_binary_expression] = STATE(1105), - [sym_unary_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_string] = STATE(1101), - [sym_template_string] = STATE(1101), - [sym_regex] = STATE(1101), - [sym_meta_property] = STATE(1101), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(755), - [sym_type_assertion] = STATE(1105), - [sym_as_expression] = STATE(1105), - [sym_internal_module] = STATE(1105), - [sym_type_arguments] = STATE(361), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2497), + [404] = { + [sym_import] = STATE(1151), + [sym_parenthesized_expression] = STATE(759), + [sym__expression] = STATE(1064), + [sym_yield_expression] = STATE(1144), + [sym_object] = STATE(1257), + [sym_array] = STATE(1254), + [sym_class] = STATE(1151), + [sym_function] = STATE(1151), + [sym_generator_function] = STATE(1151), + [sym_arrow_function] = STATE(1151), + [sym__call_signature] = STATE(3082), + [sym_call_expression] = STATE(1151), + [sym_new_expression] = STATE(1144), + [sym_await_expression] = STATE(1144), + [sym_member_expression] = STATE(759), + [sym_subscript_expression] = STATE(759), + [sym_assignment_expression] = STATE(1144), + [sym__augmented_assignment_lhs] = STATE(1924), + [sym_augmented_assignment_expression] = STATE(1144), + [sym_ternary_expression] = STATE(1144), + [sym_binary_expression] = STATE(1144), + [sym_unary_expression] = STATE(1144), + [sym_update_expression] = STATE(1144), + [sym_string] = STATE(1151), + [sym_template_string] = STATE(1151), + [sym_regex] = STATE(1151), + [sym_meta_property] = STATE(1151), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(754), + [sym_type_assertion] = STATE(1144), + [sym_as_expression] = STATE(1144), + [sym_internal_module] = STATE(1144), + [sym_type_arguments] = STATE(326), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2580), [sym_identifier] = ACTIONS(499), [anon_sym_export] = ACTIONS(501), [anon_sym_namespace] = ACTIONS(507), @@ -47038,168 +49495,257 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(501), [sym_readonly] = ACTIONS(501), }, - [378] = { - [sym_import] = STATE(1101), - [sym_parenthesized_expression] = STATE(921), - [sym__expression] = STATE(1269), - [sym_yield_expression] = STATE(1105), - [sym_object] = STATE(1531), - [sym_array] = STATE(1536), - [sym_class] = STATE(1101), - [sym_function] = STATE(1101), - [sym_generator_function] = STATE(1101), - [sym_arrow_function] = STATE(1101), - [sym__call_signature] = STATE(3170), - [sym_call_expression] = STATE(1101), - [sym_new_expression] = STATE(1105), - [sym_await_expression] = STATE(1105), - [sym_member_expression] = STATE(921), - [sym_subscript_expression] = STATE(921), - [sym_assignment_expression] = STATE(1105), - [sym__augmented_assignment_lhs] = STATE(1917), - [sym_augmented_assignment_expression] = STATE(1105), - [sym_ternary_expression] = STATE(1105), - [sym_binary_expression] = STATE(1105), - [sym_unary_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_string] = STATE(1101), - [sym_template_string] = STATE(1101), - [sym_regex] = STATE(1101), - [sym_meta_property] = STATE(1101), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(882), - [sym_type_assertion] = STATE(1105), - [sym_as_expression] = STATE(1105), - [sym_internal_module] = STATE(1105), - [sym_type_arguments] = STATE(355), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2497), - [sym_identifier] = ACTIONS(897), - [anon_sym_export] = ACTIONS(751), - [anon_sym_namespace] = ACTIONS(753), - [anon_sym_LBRACE] = ACTIONS(509), - [anon_sym_type] = ACTIONS(751), - [anon_sym_typeof] = ACTIONS(775), - [anon_sym_import] = ACTIONS(435), - [anon_sym_BANG] = ACTIONS(757), - [anon_sym_LPAREN] = ACTIONS(515), - [anon_sym_await] = ACTIONS(759), - [anon_sym_yield] = ACTIONS(761), - [anon_sym_LBRACK] = ACTIONS(517), + [405] = { + [sym_import] = STATE(1690), + [sym_parenthesized_expression] = STATE(834), + [sym__expression] = STATE(1275), + [sym_yield_expression] = STATE(1687), + [sym_object] = STATE(1538), + [sym_array] = STATE(1543), + [sym_class] = STATE(1690), + [sym_function] = STATE(1690), + [sym_generator_function] = STATE(1690), + [sym_arrow_function] = STATE(1690), + [sym__call_signature] = STATE(3133), + [sym_call_expression] = STATE(1690), + [sym_new_expression] = STATE(1687), + [sym_await_expression] = STATE(1687), + [sym_member_expression] = STATE(834), + [sym_subscript_expression] = STATE(834), + [sym_assignment_expression] = STATE(1687), + [sym__augmented_assignment_lhs] = STATE(1921), + [sym_augmented_assignment_expression] = STATE(1687), + [sym_ternary_expression] = STATE(1687), + [sym_binary_expression] = STATE(1687), + [sym_unary_expression] = STATE(1687), + [sym_update_expression] = STATE(1687), + [sym_string] = STATE(1690), + [sym_template_string] = STATE(1690), + [sym_regex] = STATE(1690), + [sym_meta_property] = STATE(1690), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(846), + [sym_type_assertion] = STATE(1687), + [sym_as_expression] = STATE(1687), + [sym_internal_module] = STATE(1687), + [sym_type_arguments] = STATE(301), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2545), + [sym_identifier] = ACTIONS(869), + [anon_sym_export] = ACTIONS(673), + [anon_sym_namespace] = ACTIONS(675), + [anon_sym_LBRACE] = ACTIONS(1270), + [anon_sym_type] = ACTIONS(673), + [anon_sym_typeof] = ACTIONS(707), + [anon_sym_import] = ACTIONS(681), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_await] = ACTIONS(687), + [anon_sym_yield] = ACTIONS(689), + [anon_sym_LBRACK] = ACTIONS(879), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(765), - [anon_sym_class] = ACTIONS(451), - [anon_sym_async] = ACTIONS(767), - [anon_sym_function] = ACTIONS(455), - [anon_sym_new] = ACTIONS(903), - [anon_sym_PLUS] = ACTIONS(905), - [anon_sym_DASH] = ACTIONS(905), - [anon_sym_TILDE] = ACTIONS(757), - [anon_sym_void] = ACTIONS(775), - [anon_sym_delete] = ACTIONS(775), - [anon_sym_PLUS_PLUS] = ACTIONS(777), - [anon_sym_DASH_DASH] = ACTIONS(777), - [anon_sym_DQUOTE] = ACTIONS(475), - [anon_sym_SQUOTE] = ACTIONS(477), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(479), - [sym_number] = ACTIONS(527), - [sym_this] = ACTIONS(485), - [sym_super] = ACTIONS(485), - [sym_true] = ACTIONS(485), - [sym_false] = ACTIONS(485), - [sym_null] = ACTIONS(485), - [sym_undefined] = ACTIONS(485), + [anon_sym_SLASH] = ACTIONS(693), + [anon_sym_class] = ACTIONS(695), + [anon_sym_async] = ACTIONS(697), + [anon_sym_function] = ACTIONS(699), + [anon_sym_new] = ACTIONS(881), + [anon_sym_PLUS] = ACTIONS(883), + [anon_sym_DASH] = ACTIONS(883), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_void] = ACTIONS(707), + [anon_sym_delete] = ACTIONS(707), + [anon_sym_PLUS_PLUS] = ACTIONS(709), + [anon_sym_DASH_DASH] = ACTIONS(709), + [anon_sym_DQUOTE] = ACTIONS(711), + [anon_sym_SQUOTE] = ACTIONS(713), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(715), + [sym_number] = ACTIONS(885), + [sym_this] = ACTIONS(721), + [sym_super] = ACTIONS(721), + [sym_true] = ACTIONS(721), + [sym_false] = ACTIONS(721), + [sym_null] = ACTIONS(721), + [sym_undefined] = ACTIONS(721), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(751), - [anon_sym_get] = ACTIONS(751), - [anon_sym_set] = ACTIONS(751), - [anon_sym_declare] = ACTIONS(751), - [anon_sym_public] = ACTIONS(751), - [anon_sym_private] = ACTIONS(751), - [anon_sym_protected] = ACTIONS(751), - [anon_sym_module] = ACTIONS(751), - [anon_sym_any] = ACTIONS(751), - [anon_sym_number] = ACTIONS(751), - [anon_sym_boolean] = ACTIONS(751), - [anon_sym_string] = ACTIONS(751), - [anon_sym_symbol] = ACTIONS(751), - [sym_readonly] = ACTIONS(751), + [anon_sym_static] = ACTIONS(673), + [anon_sym_get] = ACTIONS(673), + [anon_sym_set] = ACTIONS(673), + [anon_sym_declare] = ACTIONS(673), + [anon_sym_public] = ACTIONS(673), + [anon_sym_private] = ACTIONS(673), + [anon_sym_protected] = ACTIONS(673), + [anon_sym_module] = ACTIONS(673), + [anon_sym_any] = ACTIONS(673), + [anon_sym_number] = ACTIONS(673), + [anon_sym_boolean] = ACTIONS(673), + [anon_sym_string] = ACTIONS(673), + [anon_sym_symbol] = ACTIONS(673), + [sym_readonly] = ACTIONS(673), }, - [379] = { - [sym_import] = STATE(1101), - [sym_parenthesized_expression] = STATE(948), - [sym__expression] = STATE(1385), - [sym_yield_expression] = STATE(1105), - [sym_object] = STATE(1654), - [sym_array] = STATE(1640), - [sym_class] = STATE(1101), - [sym_function] = STATE(1101), - [sym_generator_function] = STATE(1101), - [sym_arrow_function] = STATE(1101), - [sym__call_signature] = STATE(3002), - [sym_call_expression] = STATE(1101), - [sym_new_expression] = STATE(1105), - [sym_await_expression] = STATE(1105), - [sym_member_expression] = STATE(948), - [sym_subscript_expression] = STATE(948), - [sym_assignment_expression] = STATE(1105), + [406] = { + [sym_import] = STATE(1690), + [sym_parenthesized_expression] = STATE(834), + [sym__expression] = STATE(1273), + [sym_yield_expression] = STATE(1687), + [sym_object] = STATE(1538), + [sym_array] = STATE(1543), + [sym_class] = STATE(1690), + [sym_function] = STATE(1690), + [sym_generator_function] = STATE(1690), + [sym_arrow_function] = STATE(1690), + [sym__call_signature] = STATE(3133), + [sym_call_expression] = STATE(1690), + [sym_new_expression] = STATE(1687), + [sym_await_expression] = STATE(1687), + [sym_member_expression] = STATE(834), + [sym_subscript_expression] = STATE(834), + [sym_assignment_expression] = STATE(1687), [sym__augmented_assignment_lhs] = STATE(1921), - [sym_augmented_assignment_expression] = STATE(1105), - [sym_ternary_expression] = STATE(1105), - [sym_binary_expression] = STATE(1105), - [sym_unary_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_string] = STATE(1101), - [sym_template_string] = STATE(1101), - [sym_regex] = STATE(1101), - [sym_meta_property] = STATE(1101), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(949), - [sym_type_assertion] = STATE(1105), - [sym_as_expression] = STATE(1105), - [sym_internal_module] = STATE(1105), - [sym_type_arguments] = STATE(324), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2497), - [sym_identifier] = ACTIONS(859), + [sym_augmented_assignment_expression] = STATE(1687), + [sym_ternary_expression] = STATE(1687), + [sym_binary_expression] = STATE(1687), + [sym_unary_expression] = STATE(1687), + [sym_update_expression] = STATE(1687), + [sym_string] = STATE(1690), + [sym_template_string] = STATE(1690), + [sym_regex] = STATE(1690), + [sym_meta_property] = STATE(1690), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(846), + [sym_type_assertion] = STATE(1687), + [sym_as_expression] = STATE(1687), + [sym_internal_module] = STATE(1687), + [sym_type_arguments] = STATE(301), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2545), + [sym_identifier] = ACTIONS(869), + [anon_sym_export] = ACTIONS(673), + [anon_sym_namespace] = ACTIONS(675), + [anon_sym_LBRACE] = ACTIONS(1270), + [anon_sym_type] = ACTIONS(673), + [anon_sym_typeof] = ACTIONS(707), + [anon_sym_import] = ACTIONS(681), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_await] = ACTIONS(687), + [anon_sym_yield] = ACTIONS(689), + [anon_sym_LBRACK] = ACTIONS(879), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(693), + [anon_sym_class] = ACTIONS(695), + [anon_sym_async] = ACTIONS(697), + [anon_sym_function] = ACTIONS(699), + [anon_sym_new] = ACTIONS(881), + [anon_sym_PLUS] = ACTIONS(883), + [anon_sym_DASH] = ACTIONS(883), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_void] = ACTIONS(707), + [anon_sym_delete] = ACTIONS(707), + [anon_sym_PLUS_PLUS] = ACTIONS(709), + [anon_sym_DASH_DASH] = ACTIONS(709), + [anon_sym_DQUOTE] = ACTIONS(711), + [anon_sym_SQUOTE] = ACTIONS(713), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(715), + [sym_number] = ACTIONS(885), + [sym_this] = ACTIONS(721), + [sym_super] = ACTIONS(721), + [sym_true] = ACTIONS(721), + [sym_false] = ACTIONS(721), + [sym_null] = ACTIONS(721), + [sym_undefined] = ACTIONS(721), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(673), + [anon_sym_get] = ACTIONS(673), + [anon_sym_set] = ACTIONS(673), + [anon_sym_declare] = ACTIONS(673), + [anon_sym_public] = ACTIONS(673), + [anon_sym_private] = ACTIONS(673), + [anon_sym_protected] = ACTIONS(673), + [anon_sym_module] = ACTIONS(673), + [anon_sym_any] = ACTIONS(673), + [anon_sym_number] = ACTIONS(673), + [anon_sym_boolean] = ACTIONS(673), + [anon_sym_string] = ACTIONS(673), + [anon_sym_symbol] = ACTIONS(673), + [sym_readonly] = ACTIONS(673), + }, + [407] = { + [sym_import] = STATE(1523), + [sym_parenthesized_expression] = STATE(955), + [sym__expression] = STATE(1394), + [sym_yield_expression] = STATE(1567), + [sym_object] = STATE(1636), + [sym_array] = STATE(1643), + [sym_class] = STATE(1523), + [sym_function] = STATE(1523), + [sym_generator_function] = STATE(1523), + [sym_arrow_function] = STATE(1523), + [sym__call_signature] = STATE(3078), + [sym_call_expression] = STATE(1523), + [sym_new_expression] = STATE(1567), + [sym_await_expression] = STATE(1567), + [sym_member_expression] = STATE(955), + [sym_subscript_expression] = STATE(955), + [sym_assignment_expression] = STATE(1567), + [sym__augmented_assignment_lhs] = STATE(1929), + [sym_augmented_assignment_expression] = STATE(1567), + [sym_ternary_expression] = STATE(1567), + [sym_binary_expression] = STATE(1567), + [sym_unary_expression] = STATE(1567), + [sym_update_expression] = STATE(1567), + [sym_string] = STATE(1523), + [sym_template_string] = STATE(1523), + [sym_regex] = STATE(1523), + [sym_meta_property] = STATE(1523), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(953), + [sym_type_assertion] = STATE(1567), + [sym_as_expression] = STATE(1567), + [sym_internal_module] = STATE(1567), + [sym_type_arguments] = STATE(384), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2575), + [sym_identifier] = ACTIONS(887), [anon_sym_export] = ACTIONS(635), [anon_sym_namespace] = ACTIONS(637), - [anon_sym_LBRACE] = ACTIONS(509), + [anon_sym_LBRACE] = ACTIONS(571), [anon_sym_type] = ACTIONS(635), - [anon_sym_typeof] = ACTIONS(659), - [anon_sym_import] = ACTIONS(435), - [anon_sym_BANG] = ACTIONS(643), - [anon_sym_LPAREN] = ACTIONS(515), - [anon_sym_await] = ACTIONS(645), - [anon_sym_yield] = ACTIONS(647), - [anon_sym_LBRACK] = ACTIONS(517), + [anon_sym_typeof] = ACTIONS(657), + [anon_sym_import] = ACTIONS(539), + [anon_sym_BANG] = ACTIONS(641), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(643), + [anon_sym_yield] = ACTIONS(645), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(449), - [anon_sym_class] = ACTIONS(451), - [anon_sym_async] = ACTIONS(651), - [anon_sym_function] = ACTIONS(455), - [anon_sym_new] = ACTIONS(865), - [anon_sym_PLUS] = ACTIONS(867), - [anon_sym_DASH] = ACTIONS(867), - [anon_sym_TILDE] = ACTIONS(643), - [anon_sym_void] = ACTIONS(659), - [anon_sym_delete] = ACTIONS(659), - [anon_sym_PLUS_PLUS] = ACTIONS(661), - [anon_sym_DASH_DASH] = ACTIONS(661), - [anon_sym_DQUOTE] = ACTIONS(475), - [anon_sym_SQUOTE] = ACTIONS(477), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(545), + [anon_sym_async] = ACTIONS(649), + [anon_sym_function] = ACTIONS(549), + [anon_sym_new] = ACTIONS(893), + [anon_sym_PLUS] = ACTIONS(895), + [anon_sym_DASH] = ACTIONS(895), + [anon_sym_TILDE] = ACTIONS(641), + [anon_sym_void] = ACTIONS(657), + [anon_sym_delete] = ACTIONS(657), + [anon_sym_PLUS_PLUS] = ACTIONS(659), + [anon_sym_DASH_DASH] = ACTIONS(659), + [anon_sym_DQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(479), - [sym_number] = ACTIONS(527), - [sym_this] = ACTIONS(485), - [sym_super] = ACTIONS(485), - [sym_true] = ACTIONS(485), - [sym_false] = ACTIONS(485), - [sym_null] = ACTIONS(485), - [sym_undefined] = ACTIONS(485), + [anon_sym_BQUOTE] = ACTIONS(85), + [sym_number] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(635), [anon_sym_get] = ACTIONS(635), @@ -47216,257 +49762,79 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(635), [sym_readonly] = ACTIONS(635), }, - [380] = { - [sym_import] = STATE(1682), - [sym_parenthesized_expression] = STATE(828), - [sym__expression] = STATE(1217), - [sym_yield_expression] = STATE(1680), - [sym_object] = STATE(1586), - [sym_array] = STATE(1585), - [sym_class] = STATE(1682), - [sym_function] = STATE(1682), - [sym_generator_function] = STATE(1682), - [sym_arrow_function] = STATE(1682), - [sym__call_signature] = STATE(3105), - [sym_call_expression] = STATE(1682), - [sym_new_expression] = STATE(1680), - [sym_await_expression] = STATE(1680), - [sym_member_expression] = STATE(828), - [sym_subscript_expression] = STATE(828), - [sym_assignment_expression] = STATE(1680), - [sym__augmented_assignment_lhs] = STATE(1918), - [sym_augmented_assignment_expression] = STATE(1680), - [sym_ternary_expression] = STATE(1680), - [sym_binary_expression] = STATE(1680), - [sym_unary_expression] = STATE(1680), - [sym_update_expression] = STATE(1680), - [sym_string] = STATE(1682), - [sym_template_string] = STATE(1682), - [sym_regex] = STATE(1682), - [sym_meta_property] = STATE(1682), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(827), - [sym_type_assertion] = STATE(1680), - [sym_as_expression] = STATE(1680), - [sym_internal_module] = STATE(1680), - [sym_type_arguments] = STATE(256), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2529), - [sym_identifier] = ACTIONS(879), - [anon_sym_export] = ACTIONS(531), - [anon_sym_namespace] = ACTIONS(533), - [anon_sym_LBRACE] = ACTIONS(1274), - [anon_sym_type] = ACTIONS(531), - [anon_sym_typeof] = ACTIONS(565), - [anon_sym_import] = ACTIONS(539), - [anon_sym_BANG] = ACTIONS(541), - [anon_sym_LPAREN] = ACTIONS(887), - [anon_sym_await] = ACTIONS(545), - [anon_sym_yield] = ACTIONS(547), - [anon_sym_LBRACK] = ACTIONS(889), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(551), - [anon_sym_class] = ACTIONS(553), - [anon_sym_async] = ACTIONS(555), - [anon_sym_function] = ACTIONS(557), - [anon_sym_new] = ACTIONS(891), - [anon_sym_PLUS] = ACTIONS(893), - [anon_sym_DASH] = ACTIONS(893), - [anon_sym_TILDE] = ACTIONS(541), - [anon_sym_void] = ACTIONS(565), - [anon_sym_delete] = ACTIONS(565), - [anon_sym_PLUS_PLUS] = ACTIONS(567), - [anon_sym_DASH_DASH] = ACTIONS(567), - [anon_sym_DQUOTE] = ACTIONS(569), - [anon_sym_SQUOTE] = ACTIONS(571), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(573), - [sym_number] = ACTIONS(895), - [sym_this] = ACTIONS(579), - [sym_super] = ACTIONS(579), - [sym_true] = ACTIONS(579), - [sym_false] = ACTIONS(579), - [sym_null] = ACTIONS(579), - [sym_undefined] = ACTIONS(579), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(531), - [anon_sym_get] = ACTIONS(531), - [anon_sym_set] = ACTIONS(531), - [anon_sym_declare] = ACTIONS(531), - [anon_sym_public] = ACTIONS(531), - [anon_sym_private] = ACTIONS(531), - [anon_sym_protected] = ACTIONS(531), - [anon_sym_module] = ACTIONS(531), - [anon_sym_any] = ACTIONS(531), - [anon_sym_number] = ACTIONS(531), - [anon_sym_boolean] = ACTIONS(531), - [anon_sym_string] = ACTIONS(531), - [anon_sym_symbol] = ACTIONS(531), - [sym_readonly] = ACTIONS(531), - }, - [381] = { - [sym_import] = STATE(1682), - [sym_parenthesized_expression] = STATE(828), - [sym__expression] = STATE(1219), - [sym_yield_expression] = STATE(1680), - [sym_object] = STATE(1586), - [sym_array] = STATE(1585), - [sym_class] = STATE(1682), - [sym_function] = STATE(1682), - [sym_generator_function] = STATE(1682), - [sym_arrow_function] = STATE(1682), - [sym__call_signature] = STATE(3105), - [sym_call_expression] = STATE(1682), - [sym_new_expression] = STATE(1680), - [sym_await_expression] = STATE(1680), - [sym_member_expression] = STATE(828), - [sym_subscript_expression] = STATE(828), - [sym_assignment_expression] = STATE(1680), - [sym__augmented_assignment_lhs] = STATE(1918), - [sym_augmented_assignment_expression] = STATE(1680), - [sym_ternary_expression] = STATE(1680), - [sym_binary_expression] = STATE(1680), - [sym_unary_expression] = STATE(1680), - [sym_update_expression] = STATE(1680), - [sym_string] = STATE(1682), - [sym_template_string] = STATE(1682), - [sym_regex] = STATE(1682), - [sym_meta_property] = STATE(1682), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(827), - [sym_type_assertion] = STATE(1680), - [sym_as_expression] = STATE(1680), - [sym_internal_module] = STATE(1680), - [sym_type_arguments] = STATE(256), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2529), - [sym_identifier] = ACTIONS(879), - [anon_sym_export] = ACTIONS(531), - [anon_sym_namespace] = ACTIONS(533), - [anon_sym_LBRACE] = ACTIONS(1274), - [anon_sym_type] = ACTIONS(531), - [anon_sym_typeof] = ACTIONS(565), - [anon_sym_import] = ACTIONS(539), - [anon_sym_BANG] = ACTIONS(541), - [anon_sym_LPAREN] = ACTIONS(887), - [anon_sym_await] = ACTIONS(545), - [anon_sym_yield] = ACTIONS(547), - [anon_sym_LBRACK] = ACTIONS(889), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(551), - [anon_sym_class] = ACTIONS(553), - [anon_sym_async] = ACTIONS(555), - [anon_sym_function] = ACTIONS(557), - [anon_sym_new] = ACTIONS(891), - [anon_sym_PLUS] = ACTIONS(893), - [anon_sym_DASH] = ACTIONS(893), - [anon_sym_TILDE] = ACTIONS(541), - [anon_sym_void] = ACTIONS(565), - [anon_sym_delete] = ACTIONS(565), - [anon_sym_PLUS_PLUS] = ACTIONS(567), - [anon_sym_DASH_DASH] = ACTIONS(567), - [anon_sym_DQUOTE] = ACTIONS(569), - [anon_sym_SQUOTE] = ACTIONS(571), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(573), - [sym_number] = ACTIONS(895), - [sym_this] = ACTIONS(579), - [sym_super] = ACTIONS(579), - [sym_true] = ACTIONS(579), - [sym_false] = ACTIONS(579), - [sym_null] = ACTIONS(579), - [sym_undefined] = ACTIONS(579), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(531), - [anon_sym_get] = ACTIONS(531), - [anon_sym_set] = ACTIONS(531), - [anon_sym_declare] = ACTIONS(531), - [anon_sym_public] = ACTIONS(531), - [anon_sym_private] = ACTIONS(531), - [anon_sym_protected] = ACTIONS(531), - [anon_sym_module] = ACTIONS(531), - [anon_sym_any] = ACTIONS(531), - [anon_sym_number] = ACTIONS(531), - [anon_sym_boolean] = ACTIONS(531), - [anon_sym_string] = ACTIONS(531), - [anon_sym_symbol] = ACTIONS(531), - [sym_readonly] = ACTIONS(531), - }, - [382] = { - [sym_import] = STATE(1101), - [sym_parenthesized_expression] = STATE(948), - [sym__expression] = STATE(1380), - [sym_yield_expression] = STATE(1105), - [sym_object] = STATE(1654), - [sym_array] = STATE(1640), - [sym_class] = STATE(1101), - [sym_function] = STATE(1101), - [sym_generator_function] = STATE(1101), - [sym_arrow_function] = STATE(1101), - [sym__call_signature] = STATE(3002), - [sym_call_expression] = STATE(1101), - [sym_new_expression] = STATE(1105), - [sym_await_expression] = STATE(1105), - [sym_member_expression] = STATE(948), - [sym_subscript_expression] = STATE(948), - [sym_assignment_expression] = STATE(1105), - [sym__augmented_assignment_lhs] = STATE(1921), - [sym_augmented_assignment_expression] = STATE(1105), - [sym_ternary_expression] = STATE(1105), - [sym_binary_expression] = STATE(1105), - [sym_unary_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_string] = STATE(1101), - [sym_template_string] = STATE(1101), - [sym_regex] = STATE(1101), - [sym_meta_property] = STATE(1101), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(949), - [sym_type_assertion] = STATE(1105), - [sym_as_expression] = STATE(1105), - [sym_internal_module] = STATE(1105), - [sym_type_arguments] = STATE(324), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2497), - [sym_identifier] = ACTIONS(859), + [408] = { + [sym_import] = STATE(1523), + [sym_parenthesized_expression] = STATE(955), + [sym__expression] = STATE(1318), + [sym_yield_expression] = STATE(1567), + [sym_object] = STATE(1636), + [sym_array] = STATE(1643), + [sym_class] = STATE(1523), + [sym_function] = STATE(1523), + [sym_generator_function] = STATE(1523), + [sym_arrow_function] = STATE(1523), + [sym__call_signature] = STATE(3078), + [sym_call_expression] = STATE(1523), + [sym_new_expression] = STATE(1567), + [sym_await_expression] = STATE(1567), + [sym_member_expression] = STATE(955), + [sym_subscript_expression] = STATE(955), + [sym_assignment_expression] = STATE(1567), + [sym__augmented_assignment_lhs] = STATE(1929), + [sym_augmented_assignment_expression] = STATE(1567), + [sym_ternary_expression] = STATE(1567), + [sym_binary_expression] = STATE(1567), + [sym_unary_expression] = STATE(1567), + [sym_update_expression] = STATE(1567), + [sym_string] = STATE(1523), + [sym_template_string] = STATE(1523), + [sym_regex] = STATE(1523), + [sym_meta_property] = STATE(1523), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(953), + [sym_type_assertion] = STATE(1567), + [sym_as_expression] = STATE(1567), + [sym_internal_module] = STATE(1567), + [sym_type_arguments] = STATE(384), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2575), + [sym_identifier] = ACTIONS(887), [anon_sym_export] = ACTIONS(635), [anon_sym_namespace] = ACTIONS(637), - [anon_sym_LBRACE] = ACTIONS(509), + [anon_sym_LBRACE] = ACTIONS(571), [anon_sym_type] = ACTIONS(635), - [anon_sym_typeof] = ACTIONS(659), - [anon_sym_import] = ACTIONS(435), - [anon_sym_BANG] = ACTIONS(643), - [anon_sym_LPAREN] = ACTIONS(515), - [anon_sym_await] = ACTIONS(645), - [anon_sym_yield] = ACTIONS(647), - [anon_sym_LBRACK] = ACTIONS(517), + [anon_sym_typeof] = ACTIONS(657), + [anon_sym_import] = ACTIONS(539), + [anon_sym_BANG] = ACTIONS(641), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(643), + [anon_sym_yield] = ACTIONS(645), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(449), - [anon_sym_class] = ACTIONS(451), - [anon_sym_async] = ACTIONS(651), - [anon_sym_function] = ACTIONS(455), - [anon_sym_new] = ACTIONS(865), - [anon_sym_PLUS] = ACTIONS(867), - [anon_sym_DASH] = ACTIONS(867), - [anon_sym_TILDE] = ACTIONS(643), - [anon_sym_void] = ACTIONS(659), - [anon_sym_delete] = ACTIONS(659), - [anon_sym_PLUS_PLUS] = ACTIONS(661), - [anon_sym_DASH_DASH] = ACTIONS(661), - [anon_sym_DQUOTE] = ACTIONS(475), - [anon_sym_SQUOTE] = ACTIONS(477), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(545), + [anon_sym_async] = ACTIONS(649), + [anon_sym_function] = ACTIONS(549), + [anon_sym_new] = ACTIONS(893), + [anon_sym_PLUS] = ACTIONS(895), + [anon_sym_DASH] = ACTIONS(895), + [anon_sym_TILDE] = ACTIONS(641), + [anon_sym_void] = ACTIONS(657), + [anon_sym_delete] = ACTIONS(657), + [anon_sym_PLUS_PLUS] = ACTIONS(659), + [anon_sym_DASH_DASH] = ACTIONS(659), + [anon_sym_DQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(479), - [sym_number] = ACTIONS(527), - [sym_this] = ACTIONS(485), - [sym_super] = ACTIONS(485), - [sym_true] = ACTIONS(485), - [sym_false] = ACTIONS(485), - [sym_null] = ACTIONS(485), - [sym_undefined] = ACTIONS(485), + [anon_sym_BQUOTE] = ACTIONS(85), + [sym_number] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(635), [anon_sym_get] = ACTIONS(635), @@ -47483,335 +49851,246 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(635), [sym_readonly] = ACTIONS(635), }, - [383] = { - [sym_import] = STATE(1682), - [sym_parenthesized_expression] = STATE(828), - [sym__expression] = STATE(1209), - [sym_yield_expression] = STATE(1680), - [sym_object] = STATE(1586), - [sym_array] = STATE(1585), - [sym_class] = STATE(1682), - [sym_function] = STATE(1682), - [sym_generator_function] = STATE(1682), - [sym_arrow_function] = STATE(1682), - [sym__call_signature] = STATE(3105), - [sym_call_expression] = STATE(1682), - [sym_new_expression] = STATE(1680), - [sym_await_expression] = STATE(1680), - [sym_member_expression] = STATE(828), - [sym_subscript_expression] = STATE(828), - [sym_assignment_expression] = STATE(1680), - [sym__augmented_assignment_lhs] = STATE(1918), - [sym_augmented_assignment_expression] = STATE(1680), - [sym_ternary_expression] = STATE(1680), - [sym_binary_expression] = STATE(1680), - [sym_unary_expression] = STATE(1680), - [sym_update_expression] = STATE(1680), - [sym_string] = STATE(1682), - [sym_template_string] = STATE(1682), - [sym_regex] = STATE(1682), - [sym_meta_property] = STATE(1682), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(827), - [sym_type_assertion] = STATE(1680), - [sym_as_expression] = STATE(1680), - [sym_internal_module] = STATE(1680), - [sym_type_arguments] = STATE(256), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2529), - [sym_identifier] = ACTIONS(879), - [anon_sym_export] = ACTIONS(531), - [anon_sym_namespace] = ACTIONS(533), - [anon_sym_LBRACE] = ACTIONS(1274), - [anon_sym_type] = ACTIONS(531), - [anon_sym_typeof] = ACTIONS(565), - [anon_sym_import] = ACTIONS(539), - [anon_sym_BANG] = ACTIONS(541), - [anon_sym_LPAREN] = ACTIONS(887), - [anon_sym_await] = ACTIONS(545), - [anon_sym_yield] = ACTIONS(547), - [anon_sym_LBRACK] = ACTIONS(889), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(551), - [anon_sym_class] = ACTIONS(553), - [anon_sym_async] = ACTIONS(555), - [anon_sym_function] = ACTIONS(557), - [anon_sym_new] = ACTIONS(891), - [anon_sym_PLUS] = ACTIONS(893), - [anon_sym_DASH] = ACTIONS(893), - [anon_sym_TILDE] = ACTIONS(541), - [anon_sym_void] = ACTIONS(565), - [anon_sym_delete] = ACTIONS(565), - [anon_sym_PLUS_PLUS] = ACTIONS(567), - [anon_sym_DASH_DASH] = ACTIONS(567), - [anon_sym_DQUOTE] = ACTIONS(569), - [anon_sym_SQUOTE] = ACTIONS(571), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(573), - [sym_number] = ACTIONS(895), - [sym_this] = ACTIONS(579), - [sym_super] = ACTIONS(579), - [sym_true] = ACTIONS(579), - [sym_false] = ACTIONS(579), - [sym_null] = ACTIONS(579), - [sym_undefined] = ACTIONS(579), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(531), - [anon_sym_get] = ACTIONS(531), - [anon_sym_set] = ACTIONS(531), - [anon_sym_declare] = ACTIONS(531), - [anon_sym_public] = ACTIONS(531), - [anon_sym_private] = ACTIONS(531), - [anon_sym_protected] = ACTIONS(531), - [anon_sym_module] = ACTIONS(531), - [anon_sym_any] = ACTIONS(531), - [anon_sym_number] = ACTIONS(531), - [anon_sym_boolean] = ACTIONS(531), - [anon_sym_string] = ACTIONS(531), - [anon_sym_symbol] = ACTIONS(531), - [sym_readonly] = ACTIONS(531), - }, - [384] = { - [sym_import] = STATE(1682), - [sym_parenthesized_expression] = STATE(828), - [sym__expression] = STATE(1210), - [sym_yield_expression] = STATE(1680), - [sym_object] = STATE(1586), - [sym_array] = STATE(1585), - [sym_class] = STATE(1682), - [sym_function] = STATE(1682), - [sym_generator_function] = STATE(1682), - [sym_arrow_function] = STATE(1682), - [sym__call_signature] = STATE(3105), - [sym_call_expression] = STATE(1682), - [sym_new_expression] = STATE(1680), - [sym_await_expression] = STATE(1680), - [sym_member_expression] = STATE(828), - [sym_subscript_expression] = STATE(828), - [sym_assignment_expression] = STATE(1680), - [sym__augmented_assignment_lhs] = STATE(1918), - [sym_augmented_assignment_expression] = STATE(1680), - [sym_ternary_expression] = STATE(1680), - [sym_binary_expression] = STATE(1680), - [sym_unary_expression] = STATE(1680), - [sym_update_expression] = STATE(1680), - [sym_string] = STATE(1682), - [sym_template_string] = STATE(1682), - [sym_regex] = STATE(1682), - [sym_meta_property] = STATE(1682), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(827), - [sym_type_assertion] = STATE(1680), - [sym_as_expression] = STATE(1680), - [sym_internal_module] = STATE(1680), - [sym_type_arguments] = STATE(256), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2529), - [sym_identifier] = ACTIONS(879), - [anon_sym_export] = ACTIONS(531), - [anon_sym_namespace] = ACTIONS(533), - [anon_sym_LBRACE] = ACTIONS(1274), - [anon_sym_type] = ACTIONS(531), - [anon_sym_typeof] = ACTIONS(565), + [409] = { + [sym_import] = STATE(1523), + [sym_parenthesized_expression] = STATE(955), + [sym__expression] = STATE(1324), + [sym_yield_expression] = STATE(1567), + [sym_object] = STATE(1636), + [sym_array] = STATE(1643), + [sym_class] = STATE(1523), + [sym_function] = STATE(1523), + [sym_generator_function] = STATE(1523), + [sym_arrow_function] = STATE(1523), + [sym__call_signature] = STATE(3078), + [sym_call_expression] = STATE(1523), + [sym_new_expression] = STATE(1567), + [sym_await_expression] = STATE(1567), + [sym_member_expression] = STATE(955), + [sym_subscript_expression] = STATE(955), + [sym_assignment_expression] = STATE(1567), + [sym__augmented_assignment_lhs] = STATE(1929), + [sym_augmented_assignment_expression] = STATE(1567), + [sym_ternary_expression] = STATE(1567), + [sym_binary_expression] = STATE(1567), + [sym_unary_expression] = STATE(1567), + [sym_update_expression] = STATE(1567), + [sym_string] = STATE(1523), + [sym_template_string] = STATE(1523), + [sym_regex] = STATE(1523), + [sym_meta_property] = STATE(1523), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(953), + [sym_type_assertion] = STATE(1567), + [sym_as_expression] = STATE(1567), + [sym_internal_module] = STATE(1567), + [sym_type_arguments] = STATE(384), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2575), + [sym_identifier] = ACTIONS(887), + [anon_sym_export] = ACTIONS(635), + [anon_sym_namespace] = ACTIONS(637), + [anon_sym_LBRACE] = ACTIONS(571), + [anon_sym_type] = ACTIONS(635), + [anon_sym_typeof] = ACTIONS(657), [anon_sym_import] = ACTIONS(539), - [anon_sym_BANG] = ACTIONS(541), - [anon_sym_LPAREN] = ACTIONS(887), - [anon_sym_await] = ACTIONS(545), - [anon_sym_yield] = ACTIONS(547), - [anon_sym_LBRACK] = ACTIONS(889), + [anon_sym_BANG] = ACTIONS(641), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(643), + [anon_sym_yield] = ACTIONS(645), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(551), - [anon_sym_class] = ACTIONS(553), - [anon_sym_async] = ACTIONS(555), - [anon_sym_function] = ACTIONS(557), - [anon_sym_new] = ACTIONS(891), - [anon_sym_PLUS] = ACTIONS(893), - [anon_sym_DASH] = ACTIONS(893), - [anon_sym_TILDE] = ACTIONS(541), - [anon_sym_void] = ACTIONS(565), - [anon_sym_delete] = ACTIONS(565), - [anon_sym_PLUS_PLUS] = ACTIONS(567), - [anon_sym_DASH_DASH] = ACTIONS(567), - [anon_sym_DQUOTE] = ACTIONS(569), - [anon_sym_SQUOTE] = ACTIONS(571), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(573), - [sym_number] = ACTIONS(895), - [sym_this] = ACTIONS(579), - [sym_super] = ACTIONS(579), - [sym_true] = ACTIONS(579), - [sym_false] = ACTIONS(579), - [sym_null] = ACTIONS(579), - [sym_undefined] = ACTIONS(579), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(545), + [anon_sym_async] = ACTIONS(649), + [anon_sym_function] = ACTIONS(549), + [anon_sym_new] = ACTIONS(893), + [anon_sym_PLUS] = ACTIONS(895), + [anon_sym_DASH] = ACTIONS(895), + [anon_sym_TILDE] = ACTIONS(641), + [anon_sym_void] = ACTIONS(657), + [anon_sym_delete] = ACTIONS(657), + [anon_sym_PLUS_PLUS] = ACTIONS(659), + [anon_sym_DASH_DASH] = ACTIONS(659), + [anon_sym_DQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(85), + [sym_number] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(531), - [anon_sym_get] = ACTIONS(531), - [anon_sym_set] = ACTIONS(531), - [anon_sym_declare] = ACTIONS(531), - [anon_sym_public] = ACTIONS(531), - [anon_sym_private] = ACTIONS(531), - [anon_sym_protected] = ACTIONS(531), - [anon_sym_module] = ACTIONS(531), - [anon_sym_any] = ACTIONS(531), - [anon_sym_number] = ACTIONS(531), - [anon_sym_boolean] = ACTIONS(531), - [anon_sym_string] = ACTIONS(531), - [anon_sym_symbol] = ACTIONS(531), - [sym_readonly] = ACTIONS(531), + [anon_sym_static] = ACTIONS(635), + [anon_sym_get] = ACTIONS(635), + [anon_sym_set] = ACTIONS(635), + [anon_sym_declare] = ACTIONS(635), + [anon_sym_public] = ACTIONS(635), + [anon_sym_private] = ACTIONS(635), + [anon_sym_protected] = ACTIONS(635), + [anon_sym_module] = ACTIONS(635), + [anon_sym_any] = ACTIONS(635), + [anon_sym_number] = ACTIONS(635), + [anon_sym_boolean] = ACTIONS(635), + [anon_sym_string] = ACTIONS(635), + [anon_sym_symbol] = ACTIONS(635), + [sym_readonly] = ACTIONS(635), }, - [385] = { - [sym_import] = STATE(1682), - [sym_parenthesized_expression] = STATE(828), - [sym__expression] = STATE(1211), - [sym_yield_expression] = STATE(1680), - [sym_object] = STATE(1586), - [sym_array] = STATE(1585), - [sym_class] = STATE(1682), - [sym_function] = STATE(1682), - [sym_generator_function] = STATE(1682), - [sym_arrow_function] = STATE(1682), - [sym__call_signature] = STATE(3105), - [sym_call_expression] = STATE(1682), - [sym_new_expression] = STATE(1680), - [sym_await_expression] = STATE(1680), - [sym_member_expression] = STATE(828), - [sym_subscript_expression] = STATE(828), - [sym_assignment_expression] = STATE(1680), - [sym__augmented_assignment_lhs] = STATE(1918), - [sym_augmented_assignment_expression] = STATE(1680), - [sym_ternary_expression] = STATE(1680), - [sym_binary_expression] = STATE(1680), - [sym_unary_expression] = STATE(1680), - [sym_update_expression] = STATE(1680), - [sym_string] = STATE(1682), - [sym_template_string] = STATE(1682), - [sym_regex] = STATE(1682), - [sym_meta_property] = STATE(1682), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(827), - [sym_type_assertion] = STATE(1680), - [sym_as_expression] = STATE(1680), - [sym_internal_module] = STATE(1680), - [sym_type_arguments] = STATE(256), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2529), - [sym_identifier] = ACTIONS(879), - [anon_sym_export] = ACTIONS(531), - [anon_sym_namespace] = ACTIONS(533), - [anon_sym_LBRACE] = ACTIONS(1274), - [anon_sym_type] = ACTIONS(531), - [anon_sym_typeof] = ACTIONS(565), + [410] = { + [sym_import] = STATE(1523), + [sym_parenthesized_expression] = STATE(955), + [sym__expression] = STATE(1325), + [sym_yield_expression] = STATE(1567), + [sym_object] = STATE(1636), + [sym_array] = STATE(1643), + [sym_class] = STATE(1523), + [sym_function] = STATE(1523), + [sym_generator_function] = STATE(1523), + [sym_arrow_function] = STATE(1523), + [sym__call_signature] = STATE(3078), + [sym_call_expression] = STATE(1523), + [sym_new_expression] = STATE(1567), + [sym_await_expression] = STATE(1567), + [sym_member_expression] = STATE(955), + [sym_subscript_expression] = STATE(955), + [sym_assignment_expression] = STATE(1567), + [sym__augmented_assignment_lhs] = STATE(1929), + [sym_augmented_assignment_expression] = STATE(1567), + [sym_ternary_expression] = STATE(1567), + [sym_binary_expression] = STATE(1567), + [sym_unary_expression] = STATE(1567), + [sym_update_expression] = STATE(1567), + [sym_string] = STATE(1523), + [sym_template_string] = STATE(1523), + [sym_regex] = STATE(1523), + [sym_meta_property] = STATE(1523), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(953), + [sym_type_assertion] = STATE(1567), + [sym_as_expression] = STATE(1567), + [sym_internal_module] = STATE(1567), + [sym_type_arguments] = STATE(384), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2575), + [sym_identifier] = ACTIONS(887), + [anon_sym_export] = ACTIONS(635), + [anon_sym_namespace] = ACTIONS(637), + [anon_sym_LBRACE] = ACTIONS(571), + [anon_sym_type] = ACTIONS(635), + [anon_sym_typeof] = ACTIONS(657), [anon_sym_import] = ACTIONS(539), - [anon_sym_BANG] = ACTIONS(541), - [anon_sym_LPAREN] = ACTIONS(887), - [anon_sym_await] = ACTIONS(545), - [anon_sym_yield] = ACTIONS(547), - [anon_sym_LBRACK] = ACTIONS(889), + [anon_sym_BANG] = ACTIONS(641), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(643), + [anon_sym_yield] = ACTIONS(645), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(551), - [anon_sym_class] = ACTIONS(553), - [anon_sym_async] = ACTIONS(555), - [anon_sym_function] = ACTIONS(557), - [anon_sym_new] = ACTIONS(891), - [anon_sym_PLUS] = ACTIONS(893), - [anon_sym_DASH] = ACTIONS(893), - [anon_sym_TILDE] = ACTIONS(541), - [anon_sym_void] = ACTIONS(565), - [anon_sym_delete] = ACTIONS(565), - [anon_sym_PLUS_PLUS] = ACTIONS(567), - [anon_sym_DASH_DASH] = ACTIONS(567), - [anon_sym_DQUOTE] = ACTIONS(569), - [anon_sym_SQUOTE] = ACTIONS(571), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(573), - [sym_number] = ACTIONS(895), - [sym_this] = ACTIONS(579), - [sym_super] = ACTIONS(579), - [sym_true] = ACTIONS(579), - [sym_false] = ACTIONS(579), - [sym_null] = ACTIONS(579), - [sym_undefined] = ACTIONS(579), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(545), + [anon_sym_async] = ACTIONS(649), + [anon_sym_function] = ACTIONS(549), + [anon_sym_new] = ACTIONS(893), + [anon_sym_PLUS] = ACTIONS(895), + [anon_sym_DASH] = ACTIONS(895), + [anon_sym_TILDE] = ACTIONS(641), + [anon_sym_void] = ACTIONS(657), + [anon_sym_delete] = ACTIONS(657), + [anon_sym_PLUS_PLUS] = ACTIONS(659), + [anon_sym_DASH_DASH] = ACTIONS(659), + [anon_sym_DQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(85), + [sym_number] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(531), - [anon_sym_get] = ACTIONS(531), - [anon_sym_set] = ACTIONS(531), - [anon_sym_declare] = ACTIONS(531), - [anon_sym_public] = ACTIONS(531), - [anon_sym_private] = ACTIONS(531), - [anon_sym_protected] = ACTIONS(531), - [anon_sym_module] = ACTIONS(531), - [anon_sym_any] = ACTIONS(531), - [anon_sym_number] = ACTIONS(531), - [anon_sym_boolean] = ACTIONS(531), - [anon_sym_string] = ACTIONS(531), - [anon_sym_symbol] = ACTIONS(531), - [sym_readonly] = ACTIONS(531), + [anon_sym_static] = ACTIONS(635), + [anon_sym_get] = ACTIONS(635), + [anon_sym_set] = ACTIONS(635), + [anon_sym_declare] = ACTIONS(635), + [anon_sym_public] = ACTIONS(635), + [anon_sym_private] = ACTIONS(635), + [anon_sym_protected] = ACTIONS(635), + [anon_sym_module] = ACTIONS(635), + [anon_sym_any] = ACTIONS(635), + [anon_sym_number] = ACTIONS(635), + [anon_sym_boolean] = ACTIONS(635), + [anon_sym_string] = ACTIONS(635), + [anon_sym_symbol] = ACTIONS(635), + [sym_readonly] = ACTIONS(635), }, - [386] = { - [sym_import] = STATE(1101), - [sym_parenthesized_expression] = STATE(921), - [sym__expression] = STATE(1267), - [sym_yield_expression] = STATE(1105), - [sym_object] = STATE(1531), - [sym_array] = STATE(1536), - [sym_class] = STATE(1101), - [sym_function] = STATE(1101), - [sym_generator_function] = STATE(1101), - [sym_arrow_function] = STATE(1101), - [sym__call_signature] = STATE(3170), - [sym_call_expression] = STATE(1101), - [sym_new_expression] = STATE(1105), - [sym_await_expression] = STATE(1105), - [sym_member_expression] = STATE(921), - [sym_subscript_expression] = STATE(921), - [sym_assignment_expression] = STATE(1105), - [sym__augmented_assignment_lhs] = STATE(1917), - [sym_augmented_assignment_expression] = STATE(1105), - [sym_ternary_expression] = STATE(1105), - [sym_binary_expression] = STATE(1105), - [sym_unary_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_string] = STATE(1101), - [sym_template_string] = STATE(1101), - [sym_regex] = STATE(1101), - [sym_meta_property] = STATE(1101), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(882), - [sym_type_assertion] = STATE(1105), - [sym_as_expression] = STATE(1105), - [sym_internal_module] = STATE(1105), - [sym_type_arguments] = STATE(355), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2497), + [411] = { + [sym_import] = STATE(1151), + [sym_parenthesized_expression] = STATE(956), + [sym__expression] = STATE(1536), + [sym_yield_expression] = STATE(1144), + [sym_object] = STATE(1653), + [sym_array] = STATE(1660), + [sym_class] = STATE(1151), + [sym_function] = STATE(1151), + [sym_generator_function] = STATE(1151), + [sym_arrow_function] = STATE(1151), + [sym__call_signature] = STATE(3024), + [sym_call_expression] = STATE(1151), + [sym_new_expression] = STATE(1144), + [sym_await_expression] = STATE(1144), + [sym_member_expression] = STATE(956), + [sym_subscript_expression] = STATE(956), + [sym_assignment_expression] = STATE(1144), + [sym__augmented_assignment_lhs] = STATE(1925), + [sym_augmented_assignment_expression] = STATE(1144), + [sym_ternary_expression] = STATE(1144), + [sym_binary_expression] = STATE(1144), + [sym_unary_expression] = STATE(1144), + [sym_update_expression] = STATE(1144), + [sym_string] = STATE(1151), + [sym_template_string] = STATE(1151), + [sym_regex] = STATE(1151), + [sym_meta_property] = STATE(1151), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(950), + [sym_type_assertion] = STATE(1144), + [sym_as_expression] = STATE(1144), + [sym_internal_module] = STATE(1144), + [sym_type_arguments] = STATE(395), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2580), [sym_identifier] = ACTIONS(897), - [anon_sym_export] = ACTIONS(751), - [anon_sym_namespace] = ACTIONS(753), + [anon_sym_export] = ACTIONS(577), + [anon_sym_namespace] = ACTIONS(579), [anon_sym_LBRACE] = ACTIONS(509), - [anon_sym_type] = ACTIONS(751), - [anon_sym_typeof] = ACTIONS(775), + [anon_sym_type] = ACTIONS(577), + [anon_sym_typeof] = ACTIONS(601), [anon_sym_import] = ACTIONS(435), - [anon_sym_BANG] = ACTIONS(757), + [anon_sym_BANG] = ACTIONS(585), [anon_sym_LPAREN] = ACTIONS(515), - [anon_sym_await] = ACTIONS(759), - [anon_sym_yield] = ACTIONS(761), + [anon_sym_await] = ACTIONS(587), + [anon_sym_yield] = ACTIONS(589), [anon_sym_LBRACK] = ACTIONS(517), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(765), + [anon_sym_SLASH] = ACTIONS(449), [anon_sym_class] = ACTIONS(451), - [anon_sym_async] = ACTIONS(767), + [anon_sym_async] = ACTIONS(593), [anon_sym_function] = ACTIONS(455), [anon_sym_new] = ACTIONS(903), [anon_sym_PLUS] = ACTIONS(905), [anon_sym_DASH] = ACTIONS(905), - [anon_sym_TILDE] = ACTIONS(757), - [anon_sym_void] = ACTIONS(775), - [anon_sym_delete] = ACTIONS(775), - [anon_sym_PLUS_PLUS] = ACTIONS(777), - [anon_sym_DASH_DASH] = ACTIONS(777), + [anon_sym_TILDE] = ACTIONS(585), + [anon_sym_void] = ACTIONS(601), + [anon_sym_delete] = ACTIONS(601), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(603), [anon_sym_DQUOTE] = ACTIONS(475), [anon_sym_SQUOTE] = ACTIONS(477), [sym_comment] = ACTIONS(3), @@ -47824,172 +50103,172 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(485), [sym_undefined] = ACTIONS(485), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(751), - [anon_sym_get] = ACTIONS(751), - [anon_sym_set] = ACTIONS(751), - [anon_sym_declare] = ACTIONS(751), - [anon_sym_public] = ACTIONS(751), - [anon_sym_private] = ACTIONS(751), - [anon_sym_protected] = ACTIONS(751), - [anon_sym_module] = ACTIONS(751), - [anon_sym_any] = ACTIONS(751), - [anon_sym_number] = ACTIONS(751), - [anon_sym_boolean] = ACTIONS(751), - [anon_sym_string] = ACTIONS(751), - [anon_sym_symbol] = ACTIONS(751), - [sym_readonly] = ACTIONS(751), + [anon_sym_static] = ACTIONS(577), + [anon_sym_get] = ACTIONS(577), + [anon_sym_set] = ACTIONS(577), + [anon_sym_declare] = ACTIONS(577), + [anon_sym_public] = ACTIONS(577), + [anon_sym_private] = ACTIONS(577), + [anon_sym_protected] = ACTIONS(577), + [anon_sym_module] = ACTIONS(577), + [anon_sym_any] = ACTIONS(577), + [anon_sym_number] = ACTIONS(577), + [anon_sym_boolean] = ACTIONS(577), + [anon_sym_string] = ACTIONS(577), + [anon_sym_symbol] = ACTIONS(577), + [sym_readonly] = ACTIONS(577), }, - [387] = { - [sym_import] = STATE(1682), - [sym_parenthesized_expression] = STATE(828), - [sym__expression] = STATE(1221), - [sym_yield_expression] = STATE(1680), - [sym_object] = STATE(1586), - [sym_array] = STATE(1585), - [sym_class] = STATE(1682), - [sym_function] = STATE(1682), - [sym_generator_function] = STATE(1682), - [sym_arrow_function] = STATE(1682), - [sym__call_signature] = STATE(3105), - [sym_call_expression] = STATE(1682), - [sym_new_expression] = STATE(1680), - [sym_await_expression] = STATE(1680), - [sym_member_expression] = STATE(828), - [sym_subscript_expression] = STATE(828), - [sym_assignment_expression] = STATE(1680), - [sym__augmented_assignment_lhs] = STATE(1918), - [sym_augmented_assignment_expression] = STATE(1680), - [sym_ternary_expression] = STATE(1680), - [sym_binary_expression] = STATE(1680), - [sym_unary_expression] = STATE(1680), - [sym_update_expression] = STATE(1680), - [sym_string] = STATE(1682), - [sym_template_string] = STATE(1682), - [sym_regex] = STATE(1682), - [sym_meta_property] = STATE(1682), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(827), - [sym_type_assertion] = STATE(1680), - [sym_as_expression] = STATE(1680), - [sym_internal_module] = STATE(1680), - [sym_type_arguments] = STATE(256), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2529), - [sym_identifier] = ACTIONS(879), - [anon_sym_export] = ACTIONS(531), - [anon_sym_namespace] = ACTIONS(533), - [anon_sym_LBRACE] = ACTIONS(1274), - [anon_sym_type] = ACTIONS(531), - [anon_sym_typeof] = ACTIONS(565), + [412] = { + [sym_import] = STATE(1523), + [sym_parenthesized_expression] = STATE(955), + [sym__expression] = STATE(1331), + [sym_yield_expression] = STATE(1567), + [sym_object] = STATE(1636), + [sym_array] = STATE(1643), + [sym_class] = STATE(1523), + [sym_function] = STATE(1523), + [sym_generator_function] = STATE(1523), + [sym_arrow_function] = STATE(1523), + [sym__call_signature] = STATE(3078), + [sym_call_expression] = STATE(1523), + [sym_new_expression] = STATE(1567), + [sym_await_expression] = STATE(1567), + [sym_member_expression] = STATE(955), + [sym_subscript_expression] = STATE(955), + [sym_assignment_expression] = STATE(1567), + [sym__augmented_assignment_lhs] = STATE(1929), + [sym_augmented_assignment_expression] = STATE(1567), + [sym_ternary_expression] = STATE(1567), + [sym_binary_expression] = STATE(1567), + [sym_unary_expression] = STATE(1567), + [sym_update_expression] = STATE(1567), + [sym_string] = STATE(1523), + [sym_template_string] = STATE(1523), + [sym_regex] = STATE(1523), + [sym_meta_property] = STATE(1523), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(953), + [sym_type_assertion] = STATE(1567), + [sym_as_expression] = STATE(1567), + [sym_internal_module] = STATE(1567), + [sym_type_arguments] = STATE(384), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2575), + [sym_identifier] = ACTIONS(887), + [anon_sym_export] = ACTIONS(635), + [anon_sym_namespace] = ACTIONS(637), + [anon_sym_LBRACE] = ACTIONS(571), + [anon_sym_type] = ACTIONS(635), + [anon_sym_typeof] = ACTIONS(657), [anon_sym_import] = ACTIONS(539), - [anon_sym_BANG] = ACTIONS(541), - [anon_sym_LPAREN] = ACTIONS(887), - [anon_sym_await] = ACTIONS(545), - [anon_sym_yield] = ACTIONS(547), - [anon_sym_LBRACK] = ACTIONS(889), + [anon_sym_BANG] = ACTIONS(641), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(643), + [anon_sym_yield] = ACTIONS(645), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(551), - [anon_sym_class] = ACTIONS(553), - [anon_sym_async] = ACTIONS(555), - [anon_sym_function] = ACTIONS(557), - [anon_sym_new] = ACTIONS(891), - [anon_sym_PLUS] = ACTIONS(893), - [anon_sym_DASH] = ACTIONS(893), - [anon_sym_TILDE] = ACTIONS(541), - [anon_sym_void] = ACTIONS(565), - [anon_sym_delete] = ACTIONS(565), - [anon_sym_PLUS_PLUS] = ACTIONS(567), - [anon_sym_DASH_DASH] = ACTIONS(567), - [anon_sym_DQUOTE] = ACTIONS(569), - [anon_sym_SQUOTE] = ACTIONS(571), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(573), - [sym_number] = ACTIONS(895), - [sym_this] = ACTIONS(579), - [sym_super] = ACTIONS(579), - [sym_true] = ACTIONS(579), - [sym_false] = ACTIONS(579), - [sym_null] = ACTIONS(579), - [sym_undefined] = ACTIONS(579), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(545), + [anon_sym_async] = ACTIONS(649), + [anon_sym_function] = ACTIONS(549), + [anon_sym_new] = ACTIONS(893), + [anon_sym_PLUS] = ACTIONS(895), + [anon_sym_DASH] = ACTIONS(895), + [anon_sym_TILDE] = ACTIONS(641), + [anon_sym_void] = ACTIONS(657), + [anon_sym_delete] = ACTIONS(657), + [anon_sym_PLUS_PLUS] = ACTIONS(659), + [anon_sym_DASH_DASH] = ACTIONS(659), + [anon_sym_DQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(85), + [sym_number] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(531), - [anon_sym_get] = ACTIONS(531), - [anon_sym_set] = ACTIONS(531), - [anon_sym_declare] = ACTIONS(531), - [anon_sym_public] = ACTIONS(531), - [anon_sym_private] = ACTIONS(531), - [anon_sym_protected] = ACTIONS(531), - [anon_sym_module] = ACTIONS(531), - [anon_sym_any] = ACTIONS(531), - [anon_sym_number] = ACTIONS(531), - [anon_sym_boolean] = ACTIONS(531), - [anon_sym_string] = ACTIONS(531), - [anon_sym_symbol] = ACTIONS(531), - [sym_readonly] = ACTIONS(531), + [anon_sym_static] = ACTIONS(635), + [anon_sym_get] = ACTIONS(635), + [anon_sym_set] = ACTIONS(635), + [anon_sym_declare] = ACTIONS(635), + [anon_sym_public] = ACTIONS(635), + [anon_sym_private] = ACTIONS(635), + [anon_sym_protected] = ACTIONS(635), + [anon_sym_module] = ACTIONS(635), + [anon_sym_any] = ACTIONS(635), + [anon_sym_number] = ACTIONS(635), + [anon_sym_boolean] = ACTIONS(635), + [anon_sym_string] = ACTIONS(635), + [anon_sym_symbol] = ACTIONS(635), + [sym_readonly] = ACTIONS(635), }, - [388] = { - [sym_import] = STATE(1498), - [sym_parenthesized_expression] = STATE(764), - [sym__expression] = STATE(1253), - [sym_yield_expression] = STATE(1518), - [sym_object] = STATE(1435), - [sym_array] = STATE(1433), - [sym_class] = STATE(1498), - [sym_function] = STATE(1498), - [sym_generator_function] = STATE(1498), - [sym_arrow_function] = STATE(1498), - [sym__call_signature] = STATE(3145), - [sym_call_expression] = STATE(1498), - [sym_new_expression] = STATE(1518), - [sym_await_expression] = STATE(1518), - [sym_member_expression] = STATE(764), - [sym_subscript_expression] = STATE(764), - [sym_assignment_expression] = STATE(1518), - [sym__augmented_assignment_lhs] = STATE(1925), - [sym_augmented_assignment_expression] = STATE(1518), - [sym_ternary_expression] = STATE(1518), - [sym_binary_expression] = STATE(1518), - [sym_unary_expression] = STATE(1518), - [sym_update_expression] = STATE(1518), - [sym_string] = STATE(1498), - [sym_template_string] = STATE(1498), - [sym_regex] = STATE(1498), - [sym_meta_property] = STATE(1498), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(772), - [sym_type_assertion] = STATE(1518), - [sym_as_expression] = STATE(1518), - [sym_internal_module] = STATE(1518), - [sym_type_arguments] = STATE(349), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2554), - [sym_identifier] = ACTIONS(587), - [anon_sym_export] = ACTIONS(589), - [anon_sym_namespace] = ACTIONS(593), - [anon_sym_LBRACE] = ACTIONS(595), - [anon_sym_type] = ACTIONS(589), - [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(597), - [anon_sym_BANG] = ACTIONS(29), + [413] = { + [sym_import] = STATE(1523), + [sym_parenthesized_expression] = STATE(955), + [sym__expression] = STATE(1333), + [sym_yield_expression] = STATE(1567), + [sym_object] = STATE(1636), + [sym_array] = STATE(1643), + [sym_class] = STATE(1523), + [sym_function] = STATE(1523), + [sym_generator_function] = STATE(1523), + [sym_arrow_function] = STATE(1523), + [sym__call_signature] = STATE(3078), + [sym_call_expression] = STATE(1523), + [sym_new_expression] = STATE(1567), + [sym_await_expression] = STATE(1567), + [sym_member_expression] = STATE(955), + [sym_subscript_expression] = STATE(955), + [sym_assignment_expression] = STATE(1567), + [sym__augmented_assignment_lhs] = STATE(1929), + [sym_augmented_assignment_expression] = STATE(1567), + [sym_ternary_expression] = STATE(1567), + [sym_binary_expression] = STATE(1567), + [sym_unary_expression] = STATE(1567), + [sym_update_expression] = STATE(1567), + [sym_string] = STATE(1523), + [sym_template_string] = STATE(1523), + [sym_regex] = STATE(1523), + [sym_meta_property] = STATE(1523), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(953), + [sym_type_assertion] = STATE(1567), + [sym_as_expression] = STATE(1567), + [sym_internal_module] = STATE(1567), + [sym_type_arguments] = STATE(384), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2575), + [sym_identifier] = ACTIONS(887), + [anon_sym_export] = ACTIONS(635), + [anon_sym_namespace] = ACTIONS(637), + [anon_sym_LBRACE] = ACTIONS(571), + [anon_sym_type] = ACTIONS(635), + [anon_sym_typeof] = ACTIONS(657), + [anon_sym_import] = ACTIONS(539), + [anon_sym_BANG] = ACTIONS(641), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(39), - [anon_sym_yield] = ACTIONS(61), + [anon_sym_await] = ACTIONS(643), + [anon_sym_yield] = ACTIONS(645), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(601), - [anon_sym_async] = ACTIONS(603), - [anon_sym_function] = ACTIONS(605), - [anon_sym_new] = ACTIONS(75), - [anon_sym_PLUS] = ACTIONS(77), - [anon_sym_DASH] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(29), - [anon_sym_void] = ACTIONS(19), - [anon_sym_delete] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_class] = ACTIONS(545), + [anon_sym_async] = ACTIONS(649), + [anon_sym_function] = ACTIONS(549), + [anon_sym_new] = ACTIONS(893), + [anon_sym_PLUS] = ACTIONS(895), + [anon_sym_DASH] = ACTIONS(895), + [anon_sym_TILDE] = ACTIONS(641), + [anon_sym_void] = ACTIONS(657), + [anon_sym_delete] = ACTIONS(657), + [anon_sym_PLUS_PLUS] = ACTIONS(659), + [anon_sym_DASH_DASH] = ACTIONS(659), [anon_sym_DQUOTE] = ACTIONS(81), [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), @@ -48002,2408 +50281,272 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(589), - [anon_sym_get] = ACTIONS(589), - [anon_sym_set] = ACTIONS(589), - [anon_sym_declare] = ACTIONS(589), - [anon_sym_public] = ACTIONS(589), - [anon_sym_private] = ACTIONS(589), - [anon_sym_protected] = ACTIONS(589), - [anon_sym_module] = ACTIONS(589), - [anon_sym_any] = ACTIONS(589), - [anon_sym_number] = ACTIONS(589), - [anon_sym_boolean] = ACTIONS(589), - [anon_sym_string] = ACTIONS(589), - [anon_sym_symbol] = ACTIONS(589), - [sym_readonly] = ACTIONS(589), - }, - [389] = { - [sym_import] = STATE(1101), - [sym_parenthesized_expression] = STATE(739), - [sym__expression] = STATE(1092), - [sym_yield_expression] = STATE(1105), - [sym_object] = STATE(1297), - [sym_array] = STATE(1296), - [sym_class] = STATE(1101), - [sym_function] = STATE(1101), - [sym_generator_function] = STATE(1101), - [sym_arrow_function] = STATE(1101), - [sym__call_signature] = STATE(3116), - [sym_call_expression] = STATE(1101), - [sym_new_expression] = STATE(1105), - [sym_await_expression] = STATE(1105), - [sym_member_expression] = STATE(739), - [sym_subscript_expression] = STATE(739), - [sym_assignment_expression] = STATE(1105), - [sym__augmented_assignment_lhs] = STATE(1920), - [sym_augmented_assignment_expression] = STATE(1105), - [sym_ternary_expression] = STATE(1105), - [sym_binary_expression] = STATE(1105), - [sym_unary_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_string] = STATE(1101), - [sym_template_string] = STATE(1101), - [sym_regex] = STATE(1101), - [sym_meta_property] = STATE(1101), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(755), - [sym_type_assertion] = STATE(1105), - [sym_as_expression] = STATE(1105), - [sym_internal_module] = STATE(1105), - [sym_type_arguments] = STATE(361), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2497), - [sym_identifier] = ACTIONS(499), - [anon_sym_export] = ACTIONS(501), - [anon_sym_namespace] = ACTIONS(507), - [anon_sym_LBRACE] = ACTIONS(509), - [anon_sym_type] = ACTIONS(501), - [anon_sym_typeof] = ACTIONS(471), - [anon_sym_import] = ACTIONS(435), - [anon_sym_BANG] = ACTIONS(437), - [anon_sym_LPAREN] = ACTIONS(515), - [anon_sym_await] = ACTIONS(443), - [anon_sym_yield] = ACTIONS(445), - [anon_sym_LBRACK] = ACTIONS(517), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(449), - [anon_sym_class] = ACTIONS(451), - [anon_sym_async] = ACTIONS(521), - [anon_sym_function] = ACTIONS(455), - [anon_sym_new] = ACTIONS(523), - [anon_sym_PLUS] = ACTIONS(525), - [anon_sym_DASH] = ACTIONS(525), - [anon_sym_TILDE] = ACTIONS(437), - [anon_sym_void] = ACTIONS(471), - [anon_sym_delete] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(473), - [anon_sym_DASH_DASH] = ACTIONS(473), - [anon_sym_DQUOTE] = ACTIONS(475), - [anon_sym_SQUOTE] = ACTIONS(477), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(479), - [sym_number] = ACTIONS(1485), - [sym_this] = ACTIONS(485), - [sym_super] = ACTIONS(485), - [sym_true] = ACTIONS(485), - [sym_false] = ACTIONS(485), - [sym_null] = ACTIONS(485), - [sym_undefined] = ACTIONS(485), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(501), - [anon_sym_get] = ACTIONS(501), - [anon_sym_set] = ACTIONS(501), - [anon_sym_declare] = ACTIONS(501), - [anon_sym_public] = ACTIONS(501), - [anon_sym_private] = ACTIONS(501), - [anon_sym_protected] = ACTIONS(501), - [anon_sym_module] = ACTIONS(501), - [anon_sym_any] = ACTIONS(501), - [anon_sym_number] = ACTIONS(501), - [anon_sym_boolean] = ACTIONS(501), - [anon_sym_string] = ACTIONS(501), - [anon_sym_symbol] = ACTIONS(501), - [sym_readonly] = ACTIONS(501), - }, - [390] = { - [sym_import] = STATE(1101), - [sym_parenthesized_expression] = STATE(739), - [sym__expression] = STATE(1133), - [sym_yield_expression] = STATE(1105), - [sym_object] = STATE(1297), - [sym_array] = STATE(1296), - [sym_class] = STATE(1101), - [sym_function] = STATE(1101), - [sym_generator_function] = STATE(1101), - [sym_arrow_function] = STATE(1101), - [sym__call_signature] = STATE(3116), - [sym_call_expression] = STATE(1101), - [sym_new_expression] = STATE(1105), - [sym_await_expression] = STATE(1105), - [sym_member_expression] = STATE(739), - [sym_subscript_expression] = STATE(739), - [sym_assignment_expression] = STATE(1105), - [sym__augmented_assignment_lhs] = STATE(1920), - [sym_augmented_assignment_expression] = STATE(1105), - [sym_ternary_expression] = STATE(1105), - [sym_binary_expression] = STATE(1105), - [sym_unary_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_string] = STATE(1101), - [sym_template_string] = STATE(1101), - [sym_regex] = STATE(1101), - [sym_meta_property] = STATE(1101), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(755), - [sym_type_assertion] = STATE(1105), - [sym_as_expression] = STATE(1105), - [sym_internal_module] = STATE(1105), - [sym_type_arguments] = STATE(361), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2497), - [sym_identifier] = ACTIONS(499), - [anon_sym_export] = ACTIONS(501), - [anon_sym_namespace] = ACTIONS(507), - [anon_sym_LBRACE] = ACTIONS(509), - [anon_sym_type] = ACTIONS(501), - [anon_sym_typeof] = ACTIONS(471), - [anon_sym_import] = ACTIONS(435), - [anon_sym_BANG] = ACTIONS(437), - [anon_sym_LPAREN] = ACTIONS(515), - [anon_sym_await] = ACTIONS(443), - [anon_sym_yield] = ACTIONS(445), - [anon_sym_LBRACK] = ACTIONS(517), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(449), - [anon_sym_class] = ACTIONS(451), - [anon_sym_async] = ACTIONS(521), - [anon_sym_function] = ACTIONS(455), - [anon_sym_new] = ACTIONS(523), - [anon_sym_PLUS] = ACTIONS(525), - [anon_sym_DASH] = ACTIONS(525), - [anon_sym_TILDE] = ACTIONS(437), - [anon_sym_void] = ACTIONS(471), - [anon_sym_delete] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(473), - [anon_sym_DASH_DASH] = ACTIONS(473), - [anon_sym_DQUOTE] = ACTIONS(475), - [anon_sym_SQUOTE] = ACTIONS(477), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(479), - [sym_number] = ACTIONS(527), - [sym_this] = ACTIONS(485), - [sym_super] = ACTIONS(485), - [sym_true] = ACTIONS(485), - [sym_false] = ACTIONS(485), - [sym_null] = ACTIONS(485), - [sym_undefined] = ACTIONS(485), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(501), - [anon_sym_get] = ACTIONS(501), - [anon_sym_set] = ACTIONS(501), - [anon_sym_declare] = ACTIONS(501), - [anon_sym_public] = ACTIONS(501), - [anon_sym_private] = ACTIONS(501), - [anon_sym_protected] = ACTIONS(501), - [anon_sym_module] = ACTIONS(501), - [anon_sym_any] = ACTIONS(501), - [anon_sym_number] = ACTIONS(501), - [anon_sym_boolean] = ACTIONS(501), - [anon_sym_string] = ACTIONS(501), - [anon_sym_symbol] = ACTIONS(501), - [sym_readonly] = ACTIONS(501), - }, - [391] = { - [sym_import] = STATE(1101), - [sym_parenthesized_expression] = STATE(955), - [sym__expression] = STATE(1683), - [sym_yield_expression] = STATE(1105), - [sym_object] = STATE(1718), - [sym_array] = STATE(1710), - [sym_class] = STATE(1101), - [sym_function] = STATE(1101), - [sym_generator_function] = STATE(1101), - [sym_arrow_function] = STATE(1101), - [sym__call_signature] = STATE(3002), - [sym_call_expression] = STATE(1101), - [sym_new_expression] = STATE(1105), - [sym_await_expression] = STATE(1105), - [sym_member_expression] = STATE(955), - [sym_subscript_expression] = STATE(955), - [sym_assignment_expression] = STATE(1105), - [sym__augmented_assignment_lhs] = STATE(1921), - [sym_augmented_assignment_expression] = STATE(1105), - [sym_ternary_expression] = STATE(1105), - [sym_binary_expression] = STATE(1105), - [sym_unary_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_string] = STATE(1101), - [sym_template_string] = STATE(1101), - [sym_regex] = STATE(1101), - [sym_meta_property] = STATE(1101), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(956), - [sym_type_assertion] = STATE(1105), - [sym_as_expression] = STATE(1105), - [sym_internal_module] = STATE(1105), - [sym_type_arguments] = STATE(324), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2497), - [sym_identifier] = ACTIONS(1487), - [anon_sym_export] = ACTIONS(1403), - [anon_sym_namespace] = ACTIONS(1405), - [anon_sym_LBRACE] = ACTIONS(509), - [anon_sym_type] = ACTIONS(1403), - [anon_sym_typeof] = ACTIONS(659), - [anon_sym_import] = ACTIONS(435), - [anon_sym_BANG] = ACTIONS(643), - [anon_sym_LPAREN] = ACTIONS(515), - [anon_sym_await] = ACTIONS(645), - [anon_sym_yield] = ACTIONS(647), - [anon_sym_LBRACK] = ACTIONS(517), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(449), - [anon_sym_class] = ACTIONS(451), - [anon_sym_async] = ACTIONS(1407), - [anon_sym_function] = ACTIONS(455), - [anon_sym_new] = ACTIONS(865), - [anon_sym_PLUS] = ACTIONS(867), - [anon_sym_DASH] = ACTIONS(867), - [anon_sym_TILDE] = ACTIONS(643), - [anon_sym_void] = ACTIONS(659), - [anon_sym_delete] = ACTIONS(659), - [anon_sym_PLUS_PLUS] = ACTIONS(661), - [anon_sym_DASH_DASH] = ACTIONS(661), - [anon_sym_DQUOTE] = ACTIONS(475), - [anon_sym_SQUOTE] = ACTIONS(477), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(479), - [sym_number] = ACTIONS(527), - [sym_this] = ACTIONS(485), - [sym_super] = ACTIONS(485), - [sym_true] = ACTIONS(485), - [sym_false] = ACTIONS(485), - [sym_null] = ACTIONS(485), - [sym_undefined] = ACTIONS(485), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(1403), - [anon_sym_get] = ACTIONS(1403), - [anon_sym_set] = ACTIONS(1403), - [anon_sym_declare] = ACTIONS(1403), - [anon_sym_public] = ACTIONS(1403), - [anon_sym_private] = ACTIONS(1403), - [anon_sym_protected] = ACTIONS(1403), - [anon_sym_module] = ACTIONS(1403), - [anon_sym_any] = ACTIONS(1403), - [anon_sym_number] = ACTIONS(1403), - [anon_sym_boolean] = ACTIONS(1403), - [anon_sym_string] = ACTIONS(1403), - [anon_sym_symbol] = ACTIONS(1403), - [sym_readonly] = ACTIONS(1403), - }, - [392] = { - [ts_builtin_sym_end] = ACTIONS(1489), - [sym_identifier] = ACTIONS(1491), - [anon_sym_export] = ACTIONS(1491), - [anon_sym_default] = ACTIONS(1491), - [anon_sym_EQ] = ACTIONS(1491), - [anon_sym_namespace] = ACTIONS(1491), - [anon_sym_LBRACE] = ACTIONS(1489), - [anon_sym_COMMA] = ACTIONS(1489), - [anon_sym_RBRACE] = ACTIONS(1489), - [anon_sym_type] = ACTIONS(1491), - [anon_sym_typeof] = ACTIONS(1491), - [anon_sym_import] = ACTIONS(1491), - [anon_sym_var] = ACTIONS(1491), - [anon_sym_let] = ACTIONS(1491), - [anon_sym_const] = ACTIONS(1491), - [anon_sym_BANG] = ACTIONS(1489), - [anon_sym_else] = ACTIONS(1491), - [anon_sym_if] = ACTIONS(1491), - [anon_sym_switch] = ACTIONS(1491), - [anon_sym_for] = ACTIONS(1491), - [anon_sym_LPAREN] = ACTIONS(1489), - [anon_sym_RPAREN] = ACTIONS(1489), - [anon_sym_await] = ACTIONS(1491), - [anon_sym_while] = ACTIONS(1491), - [anon_sym_do] = ACTIONS(1491), - [anon_sym_try] = ACTIONS(1491), - [anon_sym_with] = ACTIONS(1491), - [anon_sym_break] = ACTIONS(1491), - [anon_sym_continue] = ACTIONS(1491), - [anon_sym_debugger] = ACTIONS(1491), - [anon_sym_return] = ACTIONS(1491), - [anon_sym_throw] = ACTIONS(1491), - [anon_sym_SEMI] = ACTIONS(1489), - [anon_sym_COLON] = ACTIONS(1489), - [anon_sym_case] = ACTIONS(1491), - [anon_sym_yield] = ACTIONS(1491), - [anon_sym_LBRACK] = ACTIONS(1489), - [anon_sym_RBRACK] = ACTIONS(1489), - [anon_sym_LT] = ACTIONS(1489), - [anon_sym_GT] = ACTIONS(1489), - [anon_sym_SLASH] = ACTIONS(1491), - [anon_sym_class] = ACTIONS(1491), - [anon_sym_async] = ACTIONS(1491), - [anon_sym_function] = ACTIONS(1491), - [anon_sym_EQ_GT] = ACTIONS(1489), - [anon_sym_new] = ACTIONS(1491), - [anon_sym_QMARK] = ACTIONS(1489), - [anon_sym_AMP] = ACTIONS(1489), - [anon_sym_PIPE] = ACTIONS(1489), - [anon_sym_PLUS] = ACTIONS(1491), - [anon_sym_DASH] = ACTIONS(1491), - [anon_sym_TILDE] = ACTIONS(1489), - [anon_sym_void] = ACTIONS(1491), - [anon_sym_delete] = ACTIONS(1491), - [anon_sym_PLUS_PLUS] = ACTIONS(1489), - [anon_sym_DASH_DASH] = ACTIONS(1489), - [anon_sym_DQUOTE] = ACTIONS(1489), - [anon_sym_SQUOTE] = ACTIONS(1489), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1489), - [sym_number] = ACTIONS(1489), - [sym_this] = ACTIONS(1491), - [sym_super] = ACTIONS(1491), - [sym_true] = ACTIONS(1491), - [sym_false] = ACTIONS(1491), - [sym_null] = ACTIONS(1491), - [sym_undefined] = ACTIONS(1491), - [anon_sym_AT] = ACTIONS(1489), - [anon_sym_static] = ACTIONS(1491), - [anon_sym_abstract] = ACTIONS(1491), - [anon_sym_get] = ACTIONS(1491), - [anon_sym_set] = ACTIONS(1491), - [anon_sym_declare] = ACTIONS(1491), - [anon_sym_public] = ACTIONS(1491), - [anon_sym_private] = ACTIONS(1491), - [anon_sym_protected] = ACTIONS(1491), - [anon_sym_module] = ACTIONS(1491), - [anon_sym_any] = ACTIONS(1491), - [anon_sym_number] = ACTIONS(1491), - [anon_sym_boolean] = ACTIONS(1491), - [anon_sym_string] = ACTIONS(1491), - [anon_sym_symbol] = ACTIONS(1491), - [anon_sym_implements] = ACTIONS(1491), - [anon_sym_interface] = ACTIONS(1491), - [anon_sym_extends] = ACTIONS(1491), - [anon_sym_enum] = ACTIONS(1491), - [sym_readonly] = ACTIONS(1491), - }, - [393] = { - [sym_import] = STATE(1682), - [sym_parenthesized_expression] = STATE(828), - [sym__expression] = STATE(1217), - [sym_yield_expression] = STATE(1680), - [sym_object] = STATE(1586), - [sym_array] = STATE(1585), - [sym_class] = STATE(1682), - [sym_function] = STATE(1682), - [sym_generator_function] = STATE(1682), - [sym_arrow_function] = STATE(1682), - [sym__call_signature] = STATE(3105), - [sym_call_expression] = STATE(1682), - [sym_new_expression] = STATE(1680), - [sym_await_expression] = STATE(1680), - [sym_member_expression] = STATE(828), - [sym_subscript_expression] = STATE(828), - [sym_assignment_expression] = STATE(1680), - [sym__augmented_assignment_lhs] = STATE(1918), - [sym_augmented_assignment_expression] = STATE(1680), - [sym_ternary_expression] = STATE(1680), - [sym_binary_expression] = STATE(1680), - [sym_unary_expression] = STATE(1680), - [sym_update_expression] = STATE(1680), - [sym_string] = STATE(1682), - [sym_template_string] = STATE(1682), - [sym_regex] = STATE(1682), - [sym_meta_property] = STATE(1682), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(827), - [sym_type_assertion] = STATE(1680), - [sym_as_expression] = STATE(1680), - [sym_internal_module] = STATE(1680), - [sym_type_arguments] = STATE(256), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2529), - [sym_identifier] = ACTIONS(879), - [anon_sym_export] = ACTIONS(531), - [anon_sym_namespace] = ACTIONS(533), - [anon_sym_LBRACE] = ACTIONS(1274), - [anon_sym_type] = ACTIONS(531), - [anon_sym_typeof] = ACTIONS(565), - [anon_sym_import] = ACTIONS(539), - [anon_sym_BANG] = ACTIONS(541), - [anon_sym_LPAREN] = ACTIONS(887), - [anon_sym_await] = ACTIONS(545), - [anon_sym_yield] = ACTIONS(547), - [anon_sym_LBRACK] = ACTIONS(889), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(551), - [anon_sym_class] = ACTIONS(553), - [anon_sym_async] = ACTIONS(555), - [anon_sym_function] = ACTIONS(557), - [anon_sym_new] = ACTIONS(891), - [anon_sym_PLUS] = ACTIONS(893), - [anon_sym_DASH] = ACTIONS(893), - [anon_sym_TILDE] = ACTIONS(541), - [anon_sym_void] = ACTIONS(565), - [anon_sym_delete] = ACTIONS(565), - [anon_sym_PLUS_PLUS] = ACTIONS(567), - [anon_sym_DASH_DASH] = ACTIONS(567), - [anon_sym_DQUOTE] = ACTIONS(569), - [anon_sym_SQUOTE] = ACTIONS(571), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(573), - [sym_number] = ACTIONS(1493), - [sym_this] = ACTIONS(579), - [sym_super] = ACTIONS(579), - [sym_true] = ACTIONS(579), - [sym_false] = ACTIONS(579), - [sym_null] = ACTIONS(579), - [sym_undefined] = ACTIONS(579), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(531), - [anon_sym_get] = ACTIONS(531), - [anon_sym_set] = ACTIONS(531), - [anon_sym_declare] = ACTIONS(531), - [anon_sym_public] = ACTIONS(531), - [anon_sym_private] = ACTIONS(531), - [anon_sym_protected] = ACTIONS(531), - [anon_sym_module] = ACTIONS(531), - [anon_sym_any] = ACTIONS(531), - [anon_sym_number] = ACTIONS(531), - [anon_sym_boolean] = ACTIONS(531), - [anon_sym_string] = ACTIONS(531), - [anon_sym_symbol] = ACTIONS(531), - [sym_readonly] = ACTIONS(531), - }, - [394] = { - [sym_import] = STATE(1101), - [sym_parenthesized_expression] = STATE(921), - [sym__expression] = STATE(1266), - [sym_yield_expression] = STATE(1105), - [sym_object] = STATE(1531), - [sym_array] = STATE(1536), - [sym_class] = STATE(1101), - [sym_function] = STATE(1101), - [sym_generator_function] = STATE(1101), - [sym_arrow_function] = STATE(1101), - [sym__call_signature] = STATE(3170), - [sym_call_expression] = STATE(1101), - [sym_new_expression] = STATE(1105), - [sym_await_expression] = STATE(1105), - [sym_member_expression] = STATE(921), - [sym_subscript_expression] = STATE(921), - [sym_assignment_expression] = STATE(1105), - [sym__augmented_assignment_lhs] = STATE(1917), - [sym_augmented_assignment_expression] = STATE(1105), - [sym_ternary_expression] = STATE(1105), - [sym_binary_expression] = STATE(1105), - [sym_unary_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_string] = STATE(1101), - [sym_template_string] = STATE(1101), - [sym_regex] = STATE(1101), - [sym_meta_property] = STATE(1101), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(882), - [sym_type_assertion] = STATE(1105), - [sym_as_expression] = STATE(1105), - [sym_internal_module] = STATE(1105), - [sym_type_arguments] = STATE(355), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2497), - [sym_identifier] = ACTIONS(897), - [anon_sym_export] = ACTIONS(751), - [anon_sym_namespace] = ACTIONS(753), - [anon_sym_LBRACE] = ACTIONS(509), - [anon_sym_type] = ACTIONS(751), - [anon_sym_typeof] = ACTIONS(775), - [anon_sym_import] = ACTIONS(435), - [anon_sym_BANG] = ACTIONS(757), - [anon_sym_LPAREN] = ACTIONS(515), - [anon_sym_await] = ACTIONS(759), - [anon_sym_yield] = ACTIONS(761), - [anon_sym_LBRACK] = ACTIONS(517), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(765), - [anon_sym_class] = ACTIONS(451), - [anon_sym_async] = ACTIONS(767), - [anon_sym_function] = ACTIONS(455), - [anon_sym_new] = ACTIONS(903), - [anon_sym_PLUS] = ACTIONS(905), - [anon_sym_DASH] = ACTIONS(905), - [anon_sym_TILDE] = ACTIONS(757), - [anon_sym_void] = ACTIONS(775), - [anon_sym_delete] = ACTIONS(775), - [anon_sym_PLUS_PLUS] = ACTIONS(777), - [anon_sym_DASH_DASH] = ACTIONS(777), - [anon_sym_DQUOTE] = ACTIONS(475), - [anon_sym_SQUOTE] = ACTIONS(477), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(479), - [sym_number] = ACTIONS(527), - [sym_this] = ACTIONS(485), - [sym_super] = ACTIONS(485), - [sym_true] = ACTIONS(485), - [sym_false] = ACTIONS(485), - [sym_null] = ACTIONS(485), - [sym_undefined] = ACTIONS(485), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(751), - [anon_sym_get] = ACTIONS(751), - [anon_sym_set] = ACTIONS(751), - [anon_sym_declare] = ACTIONS(751), - [anon_sym_public] = ACTIONS(751), - [anon_sym_private] = ACTIONS(751), - [anon_sym_protected] = ACTIONS(751), - [anon_sym_module] = ACTIONS(751), - [anon_sym_any] = ACTIONS(751), - [anon_sym_number] = ACTIONS(751), - [anon_sym_boolean] = ACTIONS(751), - [anon_sym_string] = ACTIONS(751), - [anon_sym_symbol] = ACTIONS(751), - [sym_readonly] = ACTIONS(751), - }, - [395] = { - [sym_import] = STATE(1101), - [sym_parenthesized_expression] = STATE(921), - [sym__expression] = STATE(1244), - [sym_yield_expression] = STATE(1105), - [sym_object] = STATE(1531), - [sym_array] = STATE(1536), - [sym_class] = STATE(1101), - [sym_function] = STATE(1101), - [sym_generator_function] = STATE(1101), - [sym_arrow_function] = STATE(1101), - [sym__call_signature] = STATE(3170), - [sym_call_expression] = STATE(1101), - [sym_new_expression] = STATE(1105), - [sym_await_expression] = STATE(1105), - [sym_member_expression] = STATE(921), - [sym_subscript_expression] = STATE(921), - [sym_assignment_expression] = STATE(1105), - [sym__augmented_assignment_lhs] = STATE(1917), - [sym_augmented_assignment_expression] = STATE(1105), - [sym_ternary_expression] = STATE(1105), - [sym_binary_expression] = STATE(1105), - [sym_unary_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_string] = STATE(1101), - [sym_template_string] = STATE(1101), - [sym_regex] = STATE(1101), - [sym_meta_property] = STATE(1101), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(882), - [sym_type_assertion] = STATE(1105), - [sym_as_expression] = STATE(1105), - [sym_internal_module] = STATE(1105), - [sym_type_arguments] = STATE(355), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2497), - [sym_identifier] = ACTIONS(897), - [anon_sym_export] = ACTIONS(751), - [anon_sym_namespace] = ACTIONS(753), - [anon_sym_LBRACE] = ACTIONS(509), - [anon_sym_type] = ACTIONS(751), - [anon_sym_typeof] = ACTIONS(775), - [anon_sym_import] = ACTIONS(435), - [anon_sym_BANG] = ACTIONS(757), - [anon_sym_LPAREN] = ACTIONS(515), - [anon_sym_await] = ACTIONS(759), - [anon_sym_yield] = ACTIONS(761), - [anon_sym_LBRACK] = ACTIONS(517), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(765), - [anon_sym_class] = ACTIONS(451), - [anon_sym_async] = ACTIONS(767), - [anon_sym_function] = ACTIONS(455), - [anon_sym_new] = ACTIONS(903), - [anon_sym_PLUS] = ACTIONS(905), - [anon_sym_DASH] = ACTIONS(905), - [anon_sym_TILDE] = ACTIONS(757), - [anon_sym_void] = ACTIONS(775), - [anon_sym_delete] = ACTIONS(775), - [anon_sym_PLUS_PLUS] = ACTIONS(777), - [anon_sym_DASH_DASH] = ACTIONS(777), - [anon_sym_DQUOTE] = ACTIONS(475), - [anon_sym_SQUOTE] = ACTIONS(477), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(479), - [sym_number] = ACTIONS(527), - [sym_this] = ACTIONS(485), - [sym_super] = ACTIONS(485), - [sym_true] = ACTIONS(485), - [sym_false] = ACTIONS(485), - [sym_null] = ACTIONS(485), - [sym_undefined] = ACTIONS(485), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(751), - [anon_sym_get] = ACTIONS(751), - [anon_sym_set] = ACTIONS(751), - [anon_sym_declare] = ACTIONS(751), - [anon_sym_public] = ACTIONS(751), - [anon_sym_private] = ACTIONS(751), - [anon_sym_protected] = ACTIONS(751), - [anon_sym_module] = ACTIONS(751), - [anon_sym_any] = ACTIONS(751), - [anon_sym_number] = ACTIONS(751), - [anon_sym_boolean] = ACTIONS(751), - [anon_sym_string] = ACTIONS(751), - [anon_sym_symbol] = ACTIONS(751), - [sym_readonly] = ACTIONS(751), - }, - [396] = { - [sym_import] = STATE(1682), - [sym_parenthesized_expression] = STATE(828), - [sym__expression] = STATE(1226), - [sym_yield_expression] = STATE(1680), - [sym_object] = STATE(1586), - [sym_array] = STATE(1585), - [sym_class] = STATE(1682), - [sym_function] = STATE(1682), - [sym_generator_function] = STATE(1682), - [sym_arrow_function] = STATE(1682), - [sym__call_signature] = STATE(3105), - [sym_call_expression] = STATE(1682), - [sym_new_expression] = STATE(1680), - [sym_await_expression] = STATE(1680), - [sym_member_expression] = STATE(828), - [sym_subscript_expression] = STATE(828), - [sym_assignment_expression] = STATE(1680), - [sym__augmented_assignment_lhs] = STATE(1918), - [sym_augmented_assignment_expression] = STATE(1680), - [sym_ternary_expression] = STATE(1680), - [sym_binary_expression] = STATE(1680), - [sym_unary_expression] = STATE(1680), - [sym_update_expression] = STATE(1680), - [sym_string] = STATE(1682), - [sym_template_string] = STATE(1682), - [sym_regex] = STATE(1682), - [sym_meta_property] = STATE(1682), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(827), - [sym_type_assertion] = STATE(1680), - [sym_as_expression] = STATE(1680), - [sym_internal_module] = STATE(1680), - [sym_type_arguments] = STATE(256), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2529), - [sym_identifier] = ACTIONS(879), - [anon_sym_export] = ACTIONS(531), - [anon_sym_namespace] = ACTIONS(533), - [anon_sym_LBRACE] = ACTIONS(1274), - [anon_sym_type] = ACTIONS(531), - [anon_sym_typeof] = ACTIONS(565), - [anon_sym_import] = ACTIONS(539), - [anon_sym_BANG] = ACTIONS(541), - [anon_sym_LPAREN] = ACTIONS(887), - [anon_sym_await] = ACTIONS(545), - [anon_sym_yield] = ACTIONS(547), - [anon_sym_LBRACK] = ACTIONS(889), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(551), - [anon_sym_class] = ACTIONS(553), - [anon_sym_async] = ACTIONS(555), - [anon_sym_function] = ACTIONS(557), - [anon_sym_new] = ACTIONS(891), - [anon_sym_PLUS] = ACTIONS(893), - [anon_sym_DASH] = ACTIONS(893), - [anon_sym_TILDE] = ACTIONS(541), - [anon_sym_void] = ACTIONS(565), - [anon_sym_delete] = ACTIONS(565), - [anon_sym_PLUS_PLUS] = ACTIONS(567), - [anon_sym_DASH_DASH] = ACTIONS(567), - [anon_sym_DQUOTE] = ACTIONS(569), - [anon_sym_SQUOTE] = ACTIONS(571), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(573), - [sym_number] = ACTIONS(895), - [sym_this] = ACTIONS(579), - [sym_super] = ACTIONS(579), - [sym_true] = ACTIONS(579), - [sym_false] = ACTIONS(579), - [sym_null] = ACTIONS(579), - [sym_undefined] = ACTIONS(579), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(531), - [anon_sym_get] = ACTIONS(531), - [anon_sym_set] = ACTIONS(531), - [anon_sym_declare] = ACTIONS(531), - [anon_sym_public] = ACTIONS(531), - [anon_sym_private] = ACTIONS(531), - [anon_sym_protected] = ACTIONS(531), - [anon_sym_module] = ACTIONS(531), - [anon_sym_any] = ACTIONS(531), - [anon_sym_number] = ACTIONS(531), - [anon_sym_boolean] = ACTIONS(531), - [anon_sym_string] = ACTIONS(531), - [anon_sym_symbol] = ACTIONS(531), - [sym_readonly] = ACTIONS(531), - }, - [397] = { - [sym_import] = STATE(1101), - [sym_parenthesized_expression] = STATE(739), - [sym__expression] = STATE(1087), - [sym_yield_expression] = STATE(1105), - [sym_object] = STATE(1297), - [sym_array] = STATE(1296), - [sym_class] = STATE(1101), - [sym_function] = STATE(1101), - [sym_generator_function] = STATE(1101), - [sym_arrow_function] = STATE(1101), - [sym__call_signature] = STATE(3116), - [sym_call_expression] = STATE(1101), - [sym_new_expression] = STATE(1105), - [sym_await_expression] = STATE(1105), - [sym_member_expression] = STATE(739), - [sym_subscript_expression] = STATE(739), - [sym_assignment_expression] = STATE(1105), - [sym__augmented_assignment_lhs] = STATE(1920), - [sym_augmented_assignment_expression] = STATE(1105), - [sym_ternary_expression] = STATE(1105), - [sym_binary_expression] = STATE(1105), - [sym_unary_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_string] = STATE(1101), - [sym_template_string] = STATE(1101), - [sym_regex] = STATE(1101), - [sym_meta_property] = STATE(1101), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(755), - [sym_type_assertion] = STATE(1105), - [sym_as_expression] = STATE(1105), - [sym_internal_module] = STATE(1105), - [sym_type_arguments] = STATE(361), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2497), - [sym_identifier] = ACTIONS(499), - [anon_sym_export] = ACTIONS(501), - [anon_sym_namespace] = ACTIONS(507), - [anon_sym_LBRACE] = ACTIONS(509), - [anon_sym_type] = ACTIONS(501), - [anon_sym_typeof] = ACTIONS(471), - [anon_sym_import] = ACTIONS(435), - [anon_sym_BANG] = ACTIONS(437), - [anon_sym_LPAREN] = ACTIONS(515), - [anon_sym_await] = ACTIONS(443), - [anon_sym_yield] = ACTIONS(445), - [anon_sym_LBRACK] = ACTIONS(517), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(449), - [anon_sym_class] = ACTIONS(451), - [anon_sym_async] = ACTIONS(521), - [anon_sym_function] = ACTIONS(455), - [anon_sym_new] = ACTIONS(523), - [anon_sym_PLUS] = ACTIONS(525), - [anon_sym_DASH] = ACTIONS(525), - [anon_sym_TILDE] = ACTIONS(437), - [anon_sym_void] = ACTIONS(471), - [anon_sym_delete] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(473), - [anon_sym_DASH_DASH] = ACTIONS(473), - [anon_sym_DQUOTE] = ACTIONS(475), - [anon_sym_SQUOTE] = ACTIONS(477), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(479), - [sym_number] = ACTIONS(527), - [sym_this] = ACTIONS(485), - [sym_super] = ACTIONS(485), - [sym_true] = ACTIONS(485), - [sym_false] = ACTIONS(485), - [sym_null] = ACTIONS(485), - [sym_undefined] = ACTIONS(485), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(501), - [anon_sym_get] = ACTIONS(501), - [anon_sym_set] = ACTIONS(501), - [anon_sym_declare] = ACTIONS(501), - [anon_sym_public] = ACTIONS(501), - [anon_sym_private] = ACTIONS(501), - [anon_sym_protected] = ACTIONS(501), - [anon_sym_module] = ACTIONS(501), - [anon_sym_any] = ACTIONS(501), - [anon_sym_number] = ACTIONS(501), - [anon_sym_boolean] = ACTIONS(501), - [anon_sym_string] = ACTIONS(501), - [anon_sym_symbol] = ACTIONS(501), - [sym_readonly] = ACTIONS(501), - }, - [398] = { - [sym_import] = STATE(1498), - [sym_parenthesized_expression] = STATE(764), - [sym__expression] = STATE(1115), - [sym_yield_expression] = STATE(1518), - [sym_object] = STATE(1435), - [sym_array] = STATE(1433), - [sym_class] = STATE(1498), - [sym_function] = STATE(1498), - [sym_generator_function] = STATE(1498), - [sym_arrow_function] = STATE(1498), - [sym__call_signature] = STATE(3145), - [sym_call_expression] = STATE(1498), - [sym_new_expression] = STATE(1518), - [sym_await_expression] = STATE(1518), - [sym_member_expression] = STATE(764), - [sym_subscript_expression] = STATE(764), - [sym_assignment_expression] = STATE(1518), - [sym__augmented_assignment_lhs] = STATE(1925), - [sym_augmented_assignment_expression] = STATE(1518), - [sym_ternary_expression] = STATE(1518), - [sym_binary_expression] = STATE(1518), - [sym_unary_expression] = STATE(1518), - [sym_update_expression] = STATE(1518), - [sym_string] = STATE(1498), - [sym_template_string] = STATE(1498), - [sym_regex] = STATE(1498), - [sym_meta_property] = STATE(1498), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(772), - [sym_type_assertion] = STATE(1518), - [sym_as_expression] = STATE(1518), - [sym_internal_module] = STATE(1518), - [sym_type_arguments] = STATE(349), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2554), - [sym_identifier] = ACTIONS(587), - [anon_sym_export] = ACTIONS(589), - [anon_sym_namespace] = ACTIONS(593), - [anon_sym_LBRACE] = ACTIONS(595), - [anon_sym_type] = ACTIONS(589), - [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(597), - [anon_sym_BANG] = ACTIONS(29), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(39), - [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(601), - [anon_sym_async] = ACTIONS(603), - [anon_sym_function] = ACTIONS(605), - [anon_sym_new] = ACTIONS(75), - [anon_sym_PLUS] = ACTIONS(77), - [anon_sym_DASH] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(29), - [anon_sym_void] = ACTIONS(19), - [anon_sym_delete] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(85), - [sym_number] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(589), - [anon_sym_get] = ACTIONS(589), - [anon_sym_set] = ACTIONS(589), - [anon_sym_declare] = ACTIONS(589), - [anon_sym_public] = ACTIONS(589), - [anon_sym_private] = ACTIONS(589), - [anon_sym_protected] = ACTIONS(589), - [anon_sym_module] = ACTIONS(589), - [anon_sym_any] = ACTIONS(589), - [anon_sym_number] = ACTIONS(589), - [anon_sym_boolean] = ACTIONS(589), - [anon_sym_string] = ACTIONS(589), - [anon_sym_symbol] = ACTIONS(589), - [sym_readonly] = ACTIONS(589), - }, - [399] = { - [sym_import] = STATE(1101), - [sym_parenthesized_expression] = STATE(948), - [sym__expression] = STATE(1334), - [sym_yield_expression] = STATE(1105), - [sym_object] = STATE(1654), - [sym_array] = STATE(1640), - [sym_class] = STATE(1101), - [sym_function] = STATE(1101), - [sym_generator_function] = STATE(1101), - [sym_arrow_function] = STATE(1101), - [sym__call_signature] = STATE(3002), - [sym_call_expression] = STATE(1101), - [sym_new_expression] = STATE(1105), - [sym_await_expression] = STATE(1105), - [sym_member_expression] = STATE(948), - [sym_subscript_expression] = STATE(948), - [sym_assignment_expression] = STATE(1105), - [sym__augmented_assignment_lhs] = STATE(1921), - [sym_augmented_assignment_expression] = STATE(1105), - [sym_ternary_expression] = STATE(1105), - [sym_binary_expression] = STATE(1105), - [sym_unary_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_string] = STATE(1101), - [sym_template_string] = STATE(1101), - [sym_regex] = STATE(1101), - [sym_meta_property] = STATE(1101), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(949), - [sym_type_assertion] = STATE(1105), - [sym_as_expression] = STATE(1105), - [sym_internal_module] = STATE(1105), - [sym_type_arguments] = STATE(324), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2497), - [sym_identifier] = ACTIONS(859), - [anon_sym_export] = ACTIONS(635), - [anon_sym_namespace] = ACTIONS(637), - [anon_sym_LBRACE] = ACTIONS(509), - [anon_sym_type] = ACTIONS(635), - [anon_sym_typeof] = ACTIONS(659), - [anon_sym_import] = ACTIONS(435), - [anon_sym_BANG] = ACTIONS(643), - [anon_sym_LPAREN] = ACTIONS(515), - [anon_sym_await] = ACTIONS(645), - [anon_sym_yield] = ACTIONS(647), - [anon_sym_LBRACK] = ACTIONS(517), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(449), - [anon_sym_class] = ACTIONS(451), - [anon_sym_async] = ACTIONS(651), - [anon_sym_function] = ACTIONS(455), - [anon_sym_new] = ACTIONS(865), - [anon_sym_PLUS] = ACTIONS(867), - [anon_sym_DASH] = ACTIONS(867), - [anon_sym_TILDE] = ACTIONS(643), - [anon_sym_void] = ACTIONS(659), - [anon_sym_delete] = ACTIONS(659), - [anon_sym_PLUS_PLUS] = ACTIONS(661), - [anon_sym_DASH_DASH] = ACTIONS(661), - [anon_sym_DQUOTE] = ACTIONS(475), - [anon_sym_SQUOTE] = ACTIONS(477), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(479), - [sym_number] = ACTIONS(1479), - [sym_this] = ACTIONS(485), - [sym_super] = ACTIONS(485), - [sym_true] = ACTIONS(485), - [sym_false] = ACTIONS(485), - [sym_null] = ACTIONS(485), - [sym_undefined] = ACTIONS(485), - [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(635), [anon_sym_get] = ACTIONS(635), [anon_sym_set] = ACTIONS(635), [anon_sym_declare] = ACTIONS(635), [anon_sym_public] = ACTIONS(635), [anon_sym_private] = ACTIONS(635), - [anon_sym_protected] = ACTIONS(635), - [anon_sym_module] = ACTIONS(635), - [anon_sym_any] = ACTIONS(635), - [anon_sym_number] = ACTIONS(635), - [anon_sym_boolean] = ACTIONS(635), - [anon_sym_string] = ACTIONS(635), - [anon_sym_symbol] = ACTIONS(635), - [sym_readonly] = ACTIONS(635), - }, - [400] = { - [sym_import] = STATE(1101), - [sym_parenthesized_expression] = STATE(739), - [sym__expression] = STATE(1133), - [sym_yield_expression] = STATE(1105), - [sym_object] = STATE(1297), - [sym_array] = STATE(1296), - [sym_class] = STATE(1101), - [sym_function] = STATE(1101), - [sym_generator_function] = STATE(1101), - [sym_arrow_function] = STATE(1101), - [sym__call_signature] = STATE(3116), - [sym_call_expression] = STATE(1101), - [sym_new_expression] = STATE(1105), - [sym_await_expression] = STATE(1105), - [sym_member_expression] = STATE(739), - [sym_subscript_expression] = STATE(739), - [sym_assignment_expression] = STATE(1105), - [sym__augmented_assignment_lhs] = STATE(1920), - [sym_augmented_assignment_expression] = STATE(1105), - [sym_ternary_expression] = STATE(1105), - [sym_binary_expression] = STATE(1105), - [sym_unary_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_string] = STATE(1101), - [sym_template_string] = STATE(1101), - [sym_regex] = STATE(1101), - [sym_meta_property] = STATE(1101), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(755), - [sym_type_assertion] = STATE(1105), - [sym_as_expression] = STATE(1105), - [sym_internal_module] = STATE(1105), - [sym_type_arguments] = STATE(361), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2497), - [sym_identifier] = ACTIONS(1495), - [anon_sym_export] = ACTIONS(501), - [anon_sym_namespace] = ACTIONS(507), - [anon_sym_LBRACE] = ACTIONS(509), - [anon_sym_type] = ACTIONS(501), - [anon_sym_typeof] = ACTIONS(471), - [anon_sym_import] = ACTIONS(435), - [anon_sym_BANG] = ACTIONS(437), - [anon_sym_LPAREN] = ACTIONS(515), - [anon_sym_await] = ACTIONS(443), - [anon_sym_yield] = ACTIONS(445), - [anon_sym_LBRACK] = ACTIONS(517), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(449), - [anon_sym_class] = ACTIONS(451), - [anon_sym_async] = ACTIONS(521), - [anon_sym_function] = ACTIONS(455), - [anon_sym_new] = ACTIONS(523), - [anon_sym_PLUS] = ACTIONS(525), - [anon_sym_DASH] = ACTIONS(525), - [anon_sym_TILDE] = ACTIONS(437), - [anon_sym_void] = ACTIONS(471), - [anon_sym_delete] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(473), - [anon_sym_DASH_DASH] = ACTIONS(473), - [anon_sym_DQUOTE] = ACTIONS(475), - [anon_sym_SQUOTE] = ACTIONS(477), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(479), - [sym_number] = ACTIONS(527), - [sym_this] = ACTIONS(485), - [sym_super] = ACTIONS(485), - [sym_true] = ACTIONS(485), - [sym_false] = ACTIONS(485), - [sym_null] = ACTIONS(485), - [sym_undefined] = ACTIONS(485), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(501), - [anon_sym_get] = ACTIONS(501), - [anon_sym_set] = ACTIONS(501), - [anon_sym_declare] = ACTIONS(501), - [anon_sym_public] = ACTIONS(501), - [anon_sym_private] = ACTIONS(501), - [anon_sym_protected] = ACTIONS(501), - [anon_sym_module] = ACTIONS(501), - [anon_sym_any] = ACTIONS(501), - [anon_sym_number] = ACTIONS(501), - [anon_sym_boolean] = ACTIONS(501), - [anon_sym_string] = ACTIONS(501), - [anon_sym_symbol] = ACTIONS(501), - [sym_readonly] = ACTIONS(501), - }, - [401] = { - [sym_import] = STATE(1682), - [sym_parenthesized_expression] = STATE(828), - [sym__expression] = STATE(1251), - [sym_yield_expression] = STATE(1680), - [sym_object] = STATE(1586), - [sym_array] = STATE(1585), - [sym_class] = STATE(1682), - [sym_function] = STATE(1682), - [sym_generator_function] = STATE(1682), - [sym_arrow_function] = STATE(1682), - [sym__call_signature] = STATE(3105), - [sym_call_expression] = STATE(1682), - [sym_new_expression] = STATE(1680), - [sym_await_expression] = STATE(1680), - [sym_member_expression] = STATE(828), - [sym_subscript_expression] = STATE(828), - [sym_assignment_expression] = STATE(1680), - [sym__augmented_assignment_lhs] = STATE(1918), - [sym_augmented_assignment_expression] = STATE(1680), - [sym_ternary_expression] = STATE(1680), - [sym_binary_expression] = STATE(1680), - [sym_unary_expression] = STATE(1680), - [sym_update_expression] = STATE(1680), - [sym_string] = STATE(1682), - [sym_template_string] = STATE(1682), - [sym_regex] = STATE(1682), - [sym_meta_property] = STATE(1682), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(827), - [sym_type_assertion] = STATE(1680), - [sym_as_expression] = STATE(1680), - [sym_internal_module] = STATE(1680), - [sym_type_arguments] = STATE(256), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2529), - [sym_identifier] = ACTIONS(879), - [anon_sym_export] = ACTIONS(531), - [anon_sym_namespace] = ACTIONS(533), - [anon_sym_LBRACE] = ACTIONS(1274), - [anon_sym_type] = ACTIONS(531), - [anon_sym_typeof] = ACTIONS(565), - [anon_sym_import] = ACTIONS(539), - [anon_sym_BANG] = ACTIONS(541), - [anon_sym_LPAREN] = ACTIONS(887), - [anon_sym_await] = ACTIONS(545), - [anon_sym_yield] = ACTIONS(547), - [anon_sym_LBRACK] = ACTIONS(889), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(551), - [anon_sym_class] = ACTIONS(553), - [anon_sym_async] = ACTIONS(555), - [anon_sym_function] = ACTIONS(557), - [anon_sym_new] = ACTIONS(891), - [anon_sym_PLUS] = ACTIONS(893), - [anon_sym_DASH] = ACTIONS(893), - [anon_sym_TILDE] = ACTIONS(541), - [anon_sym_void] = ACTIONS(565), - [anon_sym_delete] = ACTIONS(565), - [anon_sym_PLUS_PLUS] = ACTIONS(567), - [anon_sym_DASH_DASH] = ACTIONS(567), - [anon_sym_DQUOTE] = ACTIONS(569), - [anon_sym_SQUOTE] = ACTIONS(571), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(573), - [sym_number] = ACTIONS(895), - [sym_this] = ACTIONS(579), - [sym_super] = ACTIONS(579), - [sym_true] = ACTIONS(579), - [sym_false] = ACTIONS(579), - [sym_null] = ACTIONS(579), - [sym_undefined] = ACTIONS(579), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(531), - [anon_sym_get] = ACTIONS(531), - [anon_sym_set] = ACTIONS(531), - [anon_sym_declare] = ACTIONS(531), - [anon_sym_public] = ACTIONS(531), - [anon_sym_private] = ACTIONS(531), - [anon_sym_protected] = ACTIONS(531), - [anon_sym_module] = ACTIONS(531), - [anon_sym_any] = ACTIONS(531), - [anon_sym_number] = ACTIONS(531), - [anon_sym_boolean] = ACTIONS(531), - [anon_sym_string] = ACTIONS(531), - [anon_sym_symbol] = ACTIONS(531), - [sym_readonly] = ACTIONS(531), - }, - [402] = { - [sym_import] = STATE(1682), - [sym_parenthesized_expression] = STATE(828), - [sym__expression] = STATE(1227), - [sym_yield_expression] = STATE(1680), - [sym_object] = STATE(1586), - [sym_array] = STATE(1585), - [sym_class] = STATE(1682), - [sym_function] = STATE(1682), - [sym_generator_function] = STATE(1682), - [sym_arrow_function] = STATE(1682), - [sym__call_signature] = STATE(3105), - [sym_call_expression] = STATE(1682), - [sym_new_expression] = STATE(1680), - [sym_await_expression] = STATE(1680), - [sym_member_expression] = STATE(828), - [sym_subscript_expression] = STATE(828), - [sym_assignment_expression] = STATE(1680), - [sym__augmented_assignment_lhs] = STATE(1918), - [sym_augmented_assignment_expression] = STATE(1680), - [sym_ternary_expression] = STATE(1680), - [sym_binary_expression] = STATE(1680), - [sym_unary_expression] = STATE(1680), - [sym_update_expression] = STATE(1680), - [sym_string] = STATE(1682), - [sym_template_string] = STATE(1682), - [sym_regex] = STATE(1682), - [sym_meta_property] = STATE(1682), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(827), - [sym_type_assertion] = STATE(1680), - [sym_as_expression] = STATE(1680), - [sym_internal_module] = STATE(1680), - [sym_type_arguments] = STATE(256), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2529), - [sym_identifier] = ACTIONS(879), - [anon_sym_export] = ACTIONS(531), - [anon_sym_namespace] = ACTIONS(533), - [anon_sym_LBRACE] = ACTIONS(1274), - [anon_sym_type] = ACTIONS(531), - [anon_sym_typeof] = ACTIONS(565), - [anon_sym_import] = ACTIONS(539), - [anon_sym_BANG] = ACTIONS(541), - [anon_sym_LPAREN] = ACTIONS(887), - [anon_sym_await] = ACTIONS(545), - [anon_sym_yield] = ACTIONS(547), - [anon_sym_LBRACK] = ACTIONS(889), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(551), - [anon_sym_class] = ACTIONS(553), - [anon_sym_async] = ACTIONS(555), - [anon_sym_function] = ACTIONS(557), - [anon_sym_new] = ACTIONS(891), - [anon_sym_PLUS] = ACTIONS(893), - [anon_sym_DASH] = ACTIONS(893), - [anon_sym_TILDE] = ACTIONS(541), - [anon_sym_void] = ACTIONS(565), - [anon_sym_delete] = ACTIONS(565), - [anon_sym_PLUS_PLUS] = ACTIONS(567), - [anon_sym_DASH_DASH] = ACTIONS(567), - [anon_sym_DQUOTE] = ACTIONS(569), - [anon_sym_SQUOTE] = ACTIONS(571), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(573), - [sym_number] = ACTIONS(895), - [sym_this] = ACTIONS(579), - [sym_super] = ACTIONS(579), - [sym_true] = ACTIONS(579), - [sym_false] = ACTIONS(579), - [sym_null] = ACTIONS(579), - [sym_undefined] = ACTIONS(579), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(531), - [anon_sym_get] = ACTIONS(531), - [anon_sym_set] = ACTIONS(531), - [anon_sym_declare] = ACTIONS(531), - [anon_sym_public] = ACTIONS(531), - [anon_sym_private] = ACTIONS(531), - [anon_sym_protected] = ACTIONS(531), - [anon_sym_module] = ACTIONS(531), - [anon_sym_any] = ACTIONS(531), - [anon_sym_number] = ACTIONS(531), - [anon_sym_boolean] = ACTIONS(531), - [anon_sym_string] = ACTIONS(531), - [anon_sym_symbol] = ACTIONS(531), - [sym_readonly] = ACTIONS(531), - }, - [403] = { - [sym_import] = STATE(1101), - [sym_parenthesized_expression] = STATE(948), - [sym__expression] = STATE(1340), - [sym_yield_expression] = STATE(1105), - [sym_object] = STATE(1654), - [sym_array] = STATE(1640), - [sym_class] = STATE(1101), - [sym_function] = STATE(1101), - [sym_generator_function] = STATE(1101), - [sym_arrow_function] = STATE(1101), - [sym__call_signature] = STATE(3002), - [sym_call_expression] = STATE(1101), - [sym_new_expression] = STATE(1105), - [sym_await_expression] = STATE(1105), - [sym_member_expression] = STATE(948), - [sym_subscript_expression] = STATE(948), - [sym_assignment_expression] = STATE(1105), - [sym__augmented_assignment_lhs] = STATE(1921), - [sym_augmented_assignment_expression] = STATE(1105), - [sym_ternary_expression] = STATE(1105), - [sym_binary_expression] = STATE(1105), - [sym_unary_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_string] = STATE(1101), - [sym_template_string] = STATE(1101), - [sym_regex] = STATE(1101), - [sym_meta_property] = STATE(1101), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(949), - [sym_type_assertion] = STATE(1105), - [sym_as_expression] = STATE(1105), - [sym_internal_module] = STATE(1105), - [sym_type_arguments] = STATE(324), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2497), - [sym_identifier] = ACTIONS(859), - [anon_sym_export] = ACTIONS(635), - [anon_sym_namespace] = ACTIONS(637), - [anon_sym_LBRACE] = ACTIONS(509), - [anon_sym_type] = ACTIONS(635), - [anon_sym_typeof] = ACTIONS(659), - [anon_sym_import] = ACTIONS(435), - [anon_sym_BANG] = ACTIONS(643), - [anon_sym_LPAREN] = ACTIONS(515), - [anon_sym_await] = ACTIONS(645), - [anon_sym_yield] = ACTIONS(647), - [anon_sym_LBRACK] = ACTIONS(517), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(449), - [anon_sym_class] = ACTIONS(451), - [anon_sym_async] = ACTIONS(651), - [anon_sym_function] = ACTIONS(455), - [anon_sym_new] = ACTIONS(865), - [anon_sym_PLUS] = ACTIONS(867), - [anon_sym_DASH] = ACTIONS(867), - [anon_sym_TILDE] = ACTIONS(643), - [anon_sym_void] = ACTIONS(659), - [anon_sym_delete] = ACTIONS(659), - [anon_sym_PLUS_PLUS] = ACTIONS(661), - [anon_sym_DASH_DASH] = ACTIONS(661), - [anon_sym_DQUOTE] = ACTIONS(475), - [anon_sym_SQUOTE] = ACTIONS(477), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(479), - [sym_number] = ACTIONS(527), - [sym_this] = ACTIONS(485), - [sym_super] = ACTIONS(485), - [sym_true] = ACTIONS(485), - [sym_false] = ACTIONS(485), - [sym_null] = ACTIONS(485), - [sym_undefined] = ACTIONS(485), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(635), - [anon_sym_get] = ACTIONS(635), - [anon_sym_set] = ACTIONS(635), - [anon_sym_declare] = ACTIONS(635), - [anon_sym_public] = ACTIONS(635), - [anon_sym_private] = ACTIONS(635), - [anon_sym_protected] = ACTIONS(635), - [anon_sym_module] = ACTIONS(635), - [anon_sym_any] = ACTIONS(635), - [anon_sym_number] = ACTIONS(635), - [anon_sym_boolean] = ACTIONS(635), - [anon_sym_string] = ACTIONS(635), - [anon_sym_symbol] = ACTIONS(635), - [sym_readonly] = ACTIONS(635), - }, - [404] = { - [sym_import] = STATE(1682), - [sym_parenthesized_expression] = STATE(828), - [sym__expression] = STATE(1247), - [sym_yield_expression] = STATE(1680), - [sym_object] = STATE(1586), - [sym_array] = STATE(1585), - [sym_class] = STATE(1682), - [sym_function] = STATE(1682), - [sym_generator_function] = STATE(1682), - [sym_arrow_function] = STATE(1682), - [sym__call_signature] = STATE(3105), - [sym_call_expression] = STATE(1682), - [sym_new_expression] = STATE(1680), - [sym_await_expression] = STATE(1680), - [sym_member_expression] = STATE(828), - [sym_subscript_expression] = STATE(828), - [sym_assignment_expression] = STATE(1680), - [sym__augmented_assignment_lhs] = STATE(1918), - [sym_augmented_assignment_expression] = STATE(1680), - [sym_ternary_expression] = STATE(1680), - [sym_binary_expression] = STATE(1680), - [sym_unary_expression] = STATE(1680), - [sym_update_expression] = STATE(1680), - [sym_string] = STATE(1682), - [sym_template_string] = STATE(1682), - [sym_regex] = STATE(1682), - [sym_meta_property] = STATE(1682), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(827), - [sym_type_assertion] = STATE(1680), - [sym_as_expression] = STATE(1680), - [sym_internal_module] = STATE(1680), - [sym_type_arguments] = STATE(256), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2529), - [sym_identifier] = ACTIONS(879), - [anon_sym_export] = ACTIONS(531), - [anon_sym_namespace] = ACTIONS(533), - [anon_sym_LBRACE] = ACTIONS(1274), - [anon_sym_type] = ACTIONS(531), - [anon_sym_typeof] = ACTIONS(565), - [anon_sym_import] = ACTIONS(539), - [anon_sym_BANG] = ACTIONS(541), - [anon_sym_LPAREN] = ACTIONS(887), - [anon_sym_await] = ACTIONS(545), - [anon_sym_yield] = ACTIONS(547), - [anon_sym_LBRACK] = ACTIONS(889), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(551), - [anon_sym_class] = ACTIONS(553), - [anon_sym_async] = ACTIONS(555), - [anon_sym_function] = ACTIONS(557), - [anon_sym_new] = ACTIONS(891), - [anon_sym_PLUS] = ACTIONS(893), - [anon_sym_DASH] = ACTIONS(893), - [anon_sym_TILDE] = ACTIONS(541), - [anon_sym_void] = ACTIONS(565), - [anon_sym_delete] = ACTIONS(565), - [anon_sym_PLUS_PLUS] = ACTIONS(567), - [anon_sym_DASH_DASH] = ACTIONS(567), - [anon_sym_DQUOTE] = ACTIONS(569), - [anon_sym_SQUOTE] = ACTIONS(571), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(573), - [sym_number] = ACTIONS(895), - [sym_this] = ACTIONS(579), - [sym_super] = ACTIONS(579), - [sym_true] = ACTIONS(579), - [sym_false] = ACTIONS(579), - [sym_null] = ACTIONS(579), - [sym_undefined] = ACTIONS(579), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(531), - [anon_sym_get] = ACTIONS(531), - [anon_sym_set] = ACTIONS(531), - [anon_sym_declare] = ACTIONS(531), - [anon_sym_public] = ACTIONS(531), - [anon_sym_private] = ACTIONS(531), - [anon_sym_protected] = ACTIONS(531), - [anon_sym_module] = ACTIONS(531), - [anon_sym_any] = ACTIONS(531), - [anon_sym_number] = ACTIONS(531), - [anon_sym_boolean] = ACTIONS(531), - [anon_sym_string] = ACTIONS(531), - [anon_sym_symbol] = ACTIONS(531), - [sym_readonly] = ACTIONS(531), - }, - [405] = { - [sym_import] = STATE(1101), - [sym_parenthesized_expression] = STATE(921), - [sym__expression] = STATE(1205), - [sym_yield_expression] = STATE(1105), - [sym_object] = STATE(1531), - [sym_array] = STATE(1536), - [sym_class] = STATE(1101), - [sym_function] = STATE(1101), - [sym_generator_function] = STATE(1101), - [sym_arrow_function] = STATE(1101), - [sym__call_signature] = STATE(3170), - [sym_call_expression] = STATE(1101), - [sym_new_expression] = STATE(1105), - [sym_await_expression] = STATE(1105), - [sym_member_expression] = STATE(921), - [sym_subscript_expression] = STATE(921), - [sym_assignment_expression] = STATE(1105), - [sym__augmented_assignment_lhs] = STATE(1917), - [sym_augmented_assignment_expression] = STATE(1105), - [sym_ternary_expression] = STATE(1105), - [sym_binary_expression] = STATE(1105), - [sym_unary_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_string] = STATE(1101), - [sym_template_string] = STATE(1101), - [sym_regex] = STATE(1101), - [sym_meta_property] = STATE(1101), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(882), - [sym_type_assertion] = STATE(1105), - [sym_as_expression] = STATE(1105), - [sym_internal_module] = STATE(1105), - [sym_type_arguments] = STATE(355), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2497), - [sym_identifier] = ACTIONS(897), - [anon_sym_export] = ACTIONS(751), - [anon_sym_namespace] = ACTIONS(753), - [anon_sym_LBRACE] = ACTIONS(509), - [anon_sym_type] = ACTIONS(751), - [anon_sym_typeof] = ACTIONS(775), - [anon_sym_import] = ACTIONS(435), - [anon_sym_BANG] = ACTIONS(757), - [anon_sym_LPAREN] = ACTIONS(515), - [anon_sym_await] = ACTIONS(759), - [anon_sym_yield] = ACTIONS(761), - [anon_sym_LBRACK] = ACTIONS(517), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(765), - [anon_sym_class] = ACTIONS(451), - [anon_sym_async] = ACTIONS(767), - [anon_sym_function] = ACTIONS(455), - [anon_sym_new] = ACTIONS(903), - [anon_sym_PLUS] = ACTIONS(905), - [anon_sym_DASH] = ACTIONS(905), - [anon_sym_TILDE] = ACTIONS(757), - [anon_sym_void] = ACTIONS(775), - [anon_sym_delete] = ACTIONS(775), - [anon_sym_PLUS_PLUS] = ACTIONS(777), - [anon_sym_DASH_DASH] = ACTIONS(777), - [anon_sym_DQUOTE] = ACTIONS(475), - [anon_sym_SQUOTE] = ACTIONS(477), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(479), - [sym_number] = ACTIONS(527), - [sym_this] = ACTIONS(485), - [sym_super] = ACTIONS(485), - [sym_true] = ACTIONS(485), - [sym_false] = ACTIONS(485), - [sym_null] = ACTIONS(485), - [sym_undefined] = ACTIONS(485), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(751), - [anon_sym_get] = ACTIONS(751), - [anon_sym_set] = ACTIONS(751), - [anon_sym_declare] = ACTIONS(751), - [anon_sym_public] = ACTIONS(751), - [anon_sym_private] = ACTIONS(751), - [anon_sym_protected] = ACTIONS(751), - [anon_sym_module] = ACTIONS(751), - [anon_sym_any] = ACTIONS(751), - [anon_sym_number] = ACTIONS(751), - [anon_sym_boolean] = ACTIONS(751), - [anon_sym_string] = ACTIONS(751), - [anon_sym_symbol] = ACTIONS(751), - [sym_readonly] = ACTIONS(751), - }, - [406] = { - [sym_import] = STATE(1682), - [sym_parenthesized_expression] = STATE(828), - [sym__expression] = STATE(1229), - [sym_yield_expression] = STATE(1680), - [sym_object] = STATE(1586), - [sym_array] = STATE(1585), - [sym_class] = STATE(1682), - [sym_function] = STATE(1682), - [sym_generator_function] = STATE(1682), - [sym_arrow_function] = STATE(1682), - [sym__call_signature] = STATE(3105), - [sym_call_expression] = STATE(1682), - [sym_new_expression] = STATE(1680), - [sym_await_expression] = STATE(1680), - [sym_member_expression] = STATE(828), - [sym_subscript_expression] = STATE(828), - [sym_assignment_expression] = STATE(1680), - [sym__augmented_assignment_lhs] = STATE(1918), - [sym_augmented_assignment_expression] = STATE(1680), - [sym_ternary_expression] = STATE(1680), - [sym_binary_expression] = STATE(1680), - [sym_unary_expression] = STATE(1680), - [sym_update_expression] = STATE(1680), - [sym_string] = STATE(1682), - [sym_template_string] = STATE(1682), - [sym_regex] = STATE(1682), - [sym_meta_property] = STATE(1682), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(827), - [sym_type_assertion] = STATE(1680), - [sym_as_expression] = STATE(1680), - [sym_internal_module] = STATE(1680), - [sym_type_arguments] = STATE(256), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2529), - [sym_identifier] = ACTIONS(879), - [anon_sym_export] = ACTIONS(531), - [anon_sym_namespace] = ACTIONS(533), - [anon_sym_LBRACE] = ACTIONS(1274), - [anon_sym_type] = ACTIONS(531), - [anon_sym_typeof] = ACTIONS(565), - [anon_sym_import] = ACTIONS(539), - [anon_sym_BANG] = ACTIONS(541), - [anon_sym_LPAREN] = ACTIONS(887), - [anon_sym_await] = ACTIONS(545), - [anon_sym_yield] = ACTIONS(547), - [anon_sym_LBRACK] = ACTIONS(889), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(551), - [anon_sym_class] = ACTIONS(553), - [anon_sym_async] = ACTIONS(555), - [anon_sym_function] = ACTIONS(557), - [anon_sym_new] = ACTIONS(891), - [anon_sym_PLUS] = ACTIONS(893), - [anon_sym_DASH] = ACTIONS(893), - [anon_sym_TILDE] = ACTIONS(541), - [anon_sym_void] = ACTIONS(565), - [anon_sym_delete] = ACTIONS(565), - [anon_sym_PLUS_PLUS] = ACTIONS(567), - [anon_sym_DASH_DASH] = ACTIONS(567), - [anon_sym_DQUOTE] = ACTIONS(569), - [anon_sym_SQUOTE] = ACTIONS(571), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(573), - [sym_number] = ACTIONS(895), - [sym_this] = ACTIONS(579), - [sym_super] = ACTIONS(579), - [sym_true] = ACTIONS(579), - [sym_false] = ACTIONS(579), - [sym_null] = ACTIONS(579), - [sym_undefined] = ACTIONS(579), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(531), - [anon_sym_get] = ACTIONS(531), - [anon_sym_set] = ACTIONS(531), - [anon_sym_declare] = ACTIONS(531), - [anon_sym_public] = ACTIONS(531), - [anon_sym_private] = ACTIONS(531), - [anon_sym_protected] = ACTIONS(531), - [anon_sym_module] = ACTIONS(531), - [anon_sym_any] = ACTIONS(531), - [anon_sym_number] = ACTIONS(531), - [anon_sym_boolean] = ACTIONS(531), - [anon_sym_string] = ACTIONS(531), - [anon_sym_symbol] = ACTIONS(531), - [sym_readonly] = ACTIONS(531), - }, - [407] = { - [sym_import] = STATE(1101), - [sym_parenthesized_expression] = STATE(921), - [sym__expression] = STATE(1258), - [sym_yield_expression] = STATE(1105), - [sym_object] = STATE(1531), - [sym_array] = STATE(1536), - [sym_class] = STATE(1101), - [sym_function] = STATE(1101), - [sym_generator_function] = STATE(1101), - [sym_arrow_function] = STATE(1101), - [sym__call_signature] = STATE(3170), - [sym_call_expression] = STATE(1101), - [sym_new_expression] = STATE(1105), - [sym_await_expression] = STATE(1105), - [sym_member_expression] = STATE(921), - [sym_subscript_expression] = STATE(921), - [sym_assignment_expression] = STATE(1105), - [sym__augmented_assignment_lhs] = STATE(1917), - [sym_augmented_assignment_expression] = STATE(1105), - [sym_ternary_expression] = STATE(1105), - [sym_binary_expression] = STATE(1105), - [sym_unary_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_string] = STATE(1101), - [sym_template_string] = STATE(1101), - [sym_regex] = STATE(1101), - [sym_meta_property] = STATE(1101), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(882), - [sym_type_assertion] = STATE(1105), - [sym_as_expression] = STATE(1105), - [sym_internal_module] = STATE(1105), - [sym_type_arguments] = STATE(355), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2497), - [sym_identifier] = ACTIONS(897), - [anon_sym_export] = ACTIONS(751), - [anon_sym_namespace] = ACTIONS(753), - [anon_sym_LBRACE] = ACTIONS(509), - [anon_sym_type] = ACTIONS(751), - [anon_sym_typeof] = ACTIONS(775), - [anon_sym_import] = ACTIONS(435), - [anon_sym_BANG] = ACTIONS(757), - [anon_sym_LPAREN] = ACTIONS(515), - [anon_sym_await] = ACTIONS(759), - [anon_sym_yield] = ACTIONS(761), - [anon_sym_LBRACK] = ACTIONS(517), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(765), - [anon_sym_class] = ACTIONS(451), - [anon_sym_async] = ACTIONS(767), - [anon_sym_function] = ACTIONS(455), - [anon_sym_new] = ACTIONS(903), - [anon_sym_PLUS] = ACTIONS(905), - [anon_sym_DASH] = ACTIONS(905), - [anon_sym_TILDE] = ACTIONS(757), - [anon_sym_void] = ACTIONS(775), - [anon_sym_delete] = ACTIONS(775), - [anon_sym_PLUS_PLUS] = ACTIONS(777), - [anon_sym_DASH_DASH] = ACTIONS(777), - [anon_sym_DQUOTE] = ACTIONS(475), - [anon_sym_SQUOTE] = ACTIONS(477), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(479), - [sym_number] = ACTIONS(527), - [sym_this] = ACTIONS(485), - [sym_super] = ACTIONS(485), - [sym_true] = ACTIONS(485), - [sym_false] = ACTIONS(485), - [sym_null] = ACTIONS(485), - [sym_undefined] = ACTIONS(485), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(751), - [anon_sym_get] = ACTIONS(751), - [anon_sym_set] = ACTIONS(751), - [anon_sym_declare] = ACTIONS(751), - [anon_sym_public] = ACTIONS(751), - [anon_sym_private] = ACTIONS(751), - [anon_sym_protected] = ACTIONS(751), - [anon_sym_module] = ACTIONS(751), - [anon_sym_any] = ACTIONS(751), - [anon_sym_number] = ACTIONS(751), - [anon_sym_boolean] = ACTIONS(751), - [anon_sym_string] = ACTIONS(751), - [anon_sym_symbol] = ACTIONS(751), - [sym_readonly] = ACTIONS(751), - }, - [408] = { - [sym_import] = STATE(1682), - [sym_parenthesized_expression] = STATE(828), - [sym__expression] = STATE(1230), - [sym_yield_expression] = STATE(1680), - [sym_object] = STATE(1586), - [sym_array] = STATE(1585), - [sym_class] = STATE(1682), - [sym_function] = STATE(1682), - [sym_generator_function] = STATE(1682), - [sym_arrow_function] = STATE(1682), - [sym__call_signature] = STATE(3105), - [sym_call_expression] = STATE(1682), - [sym_new_expression] = STATE(1680), - [sym_await_expression] = STATE(1680), - [sym_member_expression] = STATE(828), - [sym_subscript_expression] = STATE(828), - [sym_assignment_expression] = STATE(1680), - [sym__augmented_assignment_lhs] = STATE(1918), - [sym_augmented_assignment_expression] = STATE(1680), - [sym_ternary_expression] = STATE(1680), - [sym_binary_expression] = STATE(1680), - [sym_unary_expression] = STATE(1680), - [sym_update_expression] = STATE(1680), - [sym_string] = STATE(1682), - [sym_template_string] = STATE(1682), - [sym_regex] = STATE(1682), - [sym_meta_property] = STATE(1682), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(827), - [sym_type_assertion] = STATE(1680), - [sym_as_expression] = STATE(1680), - [sym_internal_module] = STATE(1680), - [sym_type_arguments] = STATE(256), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2529), - [sym_identifier] = ACTIONS(879), - [anon_sym_export] = ACTIONS(531), - [anon_sym_namespace] = ACTIONS(533), - [anon_sym_LBRACE] = ACTIONS(1274), - [anon_sym_type] = ACTIONS(531), - [anon_sym_typeof] = ACTIONS(565), - [anon_sym_import] = ACTIONS(539), - [anon_sym_BANG] = ACTIONS(541), - [anon_sym_LPAREN] = ACTIONS(887), - [anon_sym_await] = ACTIONS(545), - [anon_sym_yield] = ACTIONS(547), - [anon_sym_LBRACK] = ACTIONS(889), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(551), - [anon_sym_class] = ACTIONS(553), - [anon_sym_async] = ACTIONS(555), - [anon_sym_function] = ACTIONS(557), - [anon_sym_new] = ACTIONS(891), - [anon_sym_PLUS] = ACTIONS(893), - [anon_sym_DASH] = ACTIONS(893), - [anon_sym_TILDE] = ACTIONS(541), - [anon_sym_void] = ACTIONS(565), - [anon_sym_delete] = ACTIONS(565), - [anon_sym_PLUS_PLUS] = ACTIONS(567), - [anon_sym_DASH_DASH] = ACTIONS(567), - [anon_sym_DQUOTE] = ACTIONS(569), - [anon_sym_SQUOTE] = ACTIONS(571), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(573), - [sym_number] = ACTIONS(895), - [sym_this] = ACTIONS(579), - [sym_super] = ACTIONS(579), - [sym_true] = ACTIONS(579), - [sym_false] = ACTIONS(579), - [sym_null] = ACTIONS(579), - [sym_undefined] = ACTIONS(579), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(531), - [anon_sym_get] = ACTIONS(531), - [anon_sym_set] = ACTIONS(531), - [anon_sym_declare] = ACTIONS(531), - [anon_sym_public] = ACTIONS(531), - [anon_sym_private] = ACTIONS(531), - [anon_sym_protected] = ACTIONS(531), - [anon_sym_module] = ACTIONS(531), - [anon_sym_any] = ACTIONS(531), - [anon_sym_number] = ACTIONS(531), - [anon_sym_boolean] = ACTIONS(531), - [anon_sym_string] = ACTIONS(531), - [anon_sym_symbol] = ACTIONS(531), - [sym_readonly] = ACTIONS(531), + [anon_sym_protected] = ACTIONS(635), + [anon_sym_module] = ACTIONS(635), + [anon_sym_any] = ACTIONS(635), + [anon_sym_number] = ACTIONS(635), + [anon_sym_boolean] = ACTIONS(635), + [anon_sym_string] = ACTIONS(635), + [anon_sym_symbol] = ACTIONS(635), + [sym_readonly] = ACTIONS(635), }, - [409] = { - [sym_import] = STATE(1682), - [sym_parenthesized_expression] = STATE(828), - [sym__expression] = STATE(1238), - [sym_yield_expression] = STATE(1680), - [sym_object] = STATE(1586), - [sym_array] = STATE(1585), - [sym_class] = STATE(1682), - [sym_function] = STATE(1682), - [sym_generator_function] = STATE(1682), - [sym_arrow_function] = STATE(1682), - [sym__call_signature] = STATE(3105), - [sym_call_expression] = STATE(1682), - [sym_new_expression] = STATE(1680), - [sym_await_expression] = STATE(1680), - [sym_member_expression] = STATE(828), - [sym_subscript_expression] = STATE(828), - [sym_assignment_expression] = STATE(1680), - [sym__augmented_assignment_lhs] = STATE(1918), - [sym_augmented_assignment_expression] = STATE(1680), - [sym_ternary_expression] = STATE(1680), - [sym_binary_expression] = STATE(1680), - [sym_unary_expression] = STATE(1680), - [sym_update_expression] = STATE(1680), - [sym_string] = STATE(1682), - [sym_template_string] = STATE(1682), - [sym_regex] = STATE(1682), - [sym_meta_property] = STATE(1682), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(827), - [sym_type_assertion] = STATE(1680), - [sym_as_expression] = STATE(1680), - [sym_internal_module] = STATE(1680), - [sym_type_arguments] = STATE(256), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2529), - [sym_identifier] = ACTIONS(879), - [anon_sym_export] = ACTIONS(531), - [anon_sym_namespace] = ACTIONS(533), - [anon_sym_LBRACE] = ACTIONS(1274), - [anon_sym_type] = ACTIONS(531), - [anon_sym_typeof] = ACTIONS(565), + [414] = { + [sym_import] = STATE(1523), + [sym_parenthesized_expression] = STATE(955), + [sym__expression] = STATE(1334), + [sym_yield_expression] = STATE(1567), + [sym_object] = STATE(1636), + [sym_array] = STATE(1643), + [sym_class] = STATE(1523), + [sym_function] = STATE(1523), + [sym_generator_function] = STATE(1523), + [sym_arrow_function] = STATE(1523), + [sym__call_signature] = STATE(3078), + [sym_call_expression] = STATE(1523), + [sym_new_expression] = STATE(1567), + [sym_await_expression] = STATE(1567), + [sym_member_expression] = STATE(955), + [sym_subscript_expression] = STATE(955), + [sym_assignment_expression] = STATE(1567), + [sym__augmented_assignment_lhs] = STATE(1929), + [sym_augmented_assignment_expression] = STATE(1567), + [sym_ternary_expression] = STATE(1567), + [sym_binary_expression] = STATE(1567), + [sym_unary_expression] = STATE(1567), + [sym_update_expression] = STATE(1567), + [sym_string] = STATE(1523), + [sym_template_string] = STATE(1523), + [sym_regex] = STATE(1523), + [sym_meta_property] = STATE(1523), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(953), + [sym_type_assertion] = STATE(1567), + [sym_as_expression] = STATE(1567), + [sym_internal_module] = STATE(1567), + [sym_type_arguments] = STATE(384), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2575), + [sym_identifier] = ACTIONS(887), + [anon_sym_export] = ACTIONS(635), + [anon_sym_namespace] = ACTIONS(637), + [anon_sym_LBRACE] = ACTIONS(571), + [anon_sym_type] = ACTIONS(635), + [anon_sym_typeof] = ACTIONS(657), [anon_sym_import] = ACTIONS(539), - [anon_sym_BANG] = ACTIONS(541), - [anon_sym_LPAREN] = ACTIONS(887), - [anon_sym_await] = ACTIONS(545), - [anon_sym_yield] = ACTIONS(547), - [anon_sym_LBRACK] = ACTIONS(889), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(551), - [anon_sym_class] = ACTIONS(553), - [anon_sym_async] = ACTIONS(555), - [anon_sym_function] = ACTIONS(557), - [anon_sym_new] = ACTIONS(891), - [anon_sym_PLUS] = ACTIONS(893), - [anon_sym_DASH] = ACTIONS(893), - [anon_sym_TILDE] = ACTIONS(541), - [anon_sym_void] = ACTIONS(565), - [anon_sym_delete] = ACTIONS(565), - [anon_sym_PLUS_PLUS] = ACTIONS(567), - [anon_sym_DASH_DASH] = ACTIONS(567), - [anon_sym_DQUOTE] = ACTIONS(569), - [anon_sym_SQUOTE] = ACTIONS(571), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(573), - [sym_number] = ACTIONS(895), - [sym_this] = ACTIONS(579), - [sym_super] = ACTIONS(579), - [sym_true] = ACTIONS(579), - [sym_false] = ACTIONS(579), - [sym_null] = ACTIONS(579), - [sym_undefined] = ACTIONS(579), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(531), - [anon_sym_get] = ACTIONS(531), - [anon_sym_set] = ACTIONS(531), - [anon_sym_declare] = ACTIONS(531), - [anon_sym_public] = ACTIONS(531), - [anon_sym_private] = ACTIONS(531), - [anon_sym_protected] = ACTIONS(531), - [anon_sym_module] = ACTIONS(531), - [anon_sym_any] = ACTIONS(531), - [anon_sym_number] = ACTIONS(531), - [anon_sym_boolean] = ACTIONS(531), - [anon_sym_string] = ACTIONS(531), - [anon_sym_symbol] = ACTIONS(531), - [sym_readonly] = ACTIONS(531), - }, - [410] = { - [sym_import] = STATE(1101), - [sym_parenthesized_expression] = STATE(921), - [sym__expression] = STATE(1256), - [sym_yield_expression] = STATE(1105), - [sym_object] = STATE(1531), - [sym_array] = STATE(1536), - [sym_class] = STATE(1101), - [sym_function] = STATE(1101), - [sym_generator_function] = STATE(1101), - [sym_arrow_function] = STATE(1101), - [sym__call_signature] = STATE(3170), - [sym_call_expression] = STATE(1101), - [sym_new_expression] = STATE(1105), - [sym_await_expression] = STATE(1105), - [sym_member_expression] = STATE(921), - [sym_subscript_expression] = STATE(921), - [sym_assignment_expression] = STATE(1105), - [sym__augmented_assignment_lhs] = STATE(1917), - [sym_augmented_assignment_expression] = STATE(1105), - [sym_ternary_expression] = STATE(1105), - [sym_binary_expression] = STATE(1105), - [sym_unary_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_string] = STATE(1101), - [sym_template_string] = STATE(1101), - [sym_regex] = STATE(1101), - [sym_meta_property] = STATE(1101), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(882), - [sym_type_assertion] = STATE(1105), - [sym_as_expression] = STATE(1105), - [sym_internal_module] = STATE(1105), - [sym_type_arguments] = STATE(355), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2497), - [sym_identifier] = ACTIONS(897), - [anon_sym_export] = ACTIONS(751), - [anon_sym_namespace] = ACTIONS(753), - [anon_sym_LBRACE] = ACTIONS(509), - [anon_sym_type] = ACTIONS(751), - [anon_sym_typeof] = ACTIONS(775), - [anon_sym_import] = ACTIONS(435), - [anon_sym_BANG] = ACTIONS(757), - [anon_sym_LPAREN] = ACTIONS(515), - [anon_sym_await] = ACTIONS(759), - [anon_sym_yield] = ACTIONS(761), - [anon_sym_LBRACK] = ACTIONS(517), + [anon_sym_BANG] = ACTIONS(641), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(643), + [anon_sym_yield] = ACTIONS(645), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(765), - [anon_sym_class] = ACTIONS(451), - [anon_sym_async] = ACTIONS(767), - [anon_sym_function] = ACTIONS(455), - [anon_sym_new] = ACTIONS(903), - [anon_sym_PLUS] = ACTIONS(905), - [anon_sym_DASH] = ACTIONS(905), - [anon_sym_TILDE] = ACTIONS(757), - [anon_sym_void] = ACTIONS(775), - [anon_sym_delete] = ACTIONS(775), - [anon_sym_PLUS_PLUS] = ACTIONS(777), - [anon_sym_DASH_DASH] = ACTIONS(777), - [anon_sym_DQUOTE] = ACTIONS(475), - [anon_sym_SQUOTE] = ACTIONS(477), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(545), + [anon_sym_async] = ACTIONS(649), + [anon_sym_function] = ACTIONS(549), + [anon_sym_new] = ACTIONS(893), + [anon_sym_PLUS] = ACTIONS(895), + [anon_sym_DASH] = ACTIONS(895), + [anon_sym_TILDE] = ACTIONS(641), + [anon_sym_void] = ACTIONS(657), + [anon_sym_delete] = ACTIONS(657), + [anon_sym_PLUS_PLUS] = ACTIONS(659), + [anon_sym_DASH_DASH] = ACTIONS(659), + [anon_sym_DQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(479), - [sym_number] = ACTIONS(527), - [sym_this] = ACTIONS(485), - [sym_super] = ACTIONS(485), - [sym_true] = ACTIONS(485), - [sym_false] = ACTIONS(485), - [sym_null] = ACTIONS(485), - [sym_undefined] = ACTIONS(485), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(751), - [anon_sym_get] = ACTIONS(751), - [anon_sym_set] = ACTIONS(751), - [anon_sym_declare] = ACTIONS(751), - [anon_sym_public] = ACTIONS(751), - [anon_sym_private] = ACTIONS(751), - [anon_sym_protected] = ACTIONS(751), - [anon_sym_module] = ACTIONS(751), - [anon_sym_any] = ACTIONS(751), - [anon_sym_number] = ACTIONS(751), - [anon_sym_boolean] = ACTIONS(751), - [anon_sym_string] = ACTIONS(751), - [anon_sym_symbol] = ACTIONS(751), - [sym_readonly] = ACTIONS(751), - }, - [411] = { - [sym_import] = STATE(1682), - [sym_parenthesized_expression] = STATE(828), - [sym__expression] = STATE(1231), - [sym_yield_expression] = STATE(1680), - [sym_object] = STATE(1586), - [sym_array] = STATE(1585), - [sym_class] = STATE(1682), - [sym_function] = STATE(1682), - [sym_generator_function] = STATE(1682), - [sym_arrow_function] = STATE(1682), - [sym__call_signature] = STATE(3105), - [sym_call_expression] = STATE(1682), - [sym_new_expression] = STATE(1680), - [sym_await_expression] = STATE(1680), - [sym_member_expression] = STATE(828), - [sym_subscript_expression] = STATE(828), - [sym_assignment_expression] = STATE(1680), - [sym__augmented_assignment_lhs] = STATE(1918), - [sym_augmented_assignment_expression] = STATE(1680), - [sym_ternary_expression] = STATE(1680), - [sym_binary_expression] = STATE(1680), - [sym_unary_expression] = STATE(1680), - [sym_update_expression] = STATE(1680), - [sym_string] = STATE(1682), - [sym_template_string] = STATE(1682), - [sym_regex] = STATE(1682), - [sym_meta_property] = STATE(1682), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(827), - [sym_type_assertion] = STATE(1680), - [sym_as_expression] = STATE(1680), - [sym_internal_module] = STATE(1680), - [sym_type_arguments] = STATE(256), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2529), - [sym_identifier] = ACTIONS(879), - [anon_sym_export] = ACTIONS(531), - [anon_sym_namespace] = ACTIONS(533), - [anon_sym_LBRACE] = ACTIONS(1274), - [anon_sym_type] = ACTIONS(531), - [anon_sym_typeof] = ACTIONS(565), - [anon_sym_import] = ACTIONS(539), - [anon_sym_BANG] = ACTIONS(541), - [anon_sym_LPAREN] = ACTIONS(887), - [anon_sym_await] = ACTIONS(545), - [anon_sym_yield] = ACTIONS(547), - [anon_sym_LBRACK] = ACTIONS(889), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(551), - [anon_sym_class] = ACTIONS(553), - [anon_sym_async] = ACTIONS(555), - [anon_sym_function] = ACTIONS(557), - [anon_sym_new] = ACTIONS(891), - [anon_sym_PLUS] = ACTIONS(893), - [anon_sym_DASH] = ACTIONS(893), - [anon_sym_TILDE] = ACTIONS(541), - [anon_sym_void] = ACTIONS(565), - [anon_sym_delete] = ACTIONS(565), - [anon_sym_PLUS_PLUS] = ACTIONS(567), - [anon_sym_DASH_DASH] = ACTIONS(567), - [anon_sym_DQUOTE] = ACTIONS(569), - [anon_sym_SQUOTE] = ACTIONS(571), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(573), - [sym_number] = ACTIONS(895), - [sym_this] = ACTIONS(579), - [sym_super] = ACTIONS(579), - [sym_true] = ACTIONS(579), - [sym_false] = ACTIONS(579), - [sym_null] = ACTIONS(579), - [sym_undefined] = ACTIONS(579), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(531), - [anon_sym_get] = ACTIONS(531), - [anon_sym_set] = ACTIONS(531), - [anon_sym_declare] = ACTIONS(531), - [anon_sym_public] = ACTIONS(531), - [anon_sym_private] = ACTIONS(531), - [anon_sym_protected] = ACTIONS(531), - [anon_sym_module] = ACTIONS(531), - [anon_sym_any] = ACTIONS(531), - [anon_sym_number] = ACTIONS(531), - [anon_sym_boolean] = ACTIONS(531), - [anon_sym_string] = ACTIONS(531), - [anon_sym_symbol] = ACTIONS(531), - [sym_readonly] = ACTIONS(531), - }, - [412] = { - [sym_import] = STATE(1682), - [sym_parenthesized_expression] = STATE(828), - [sym__expression] = STATE(1232), - [sym_yield_expression] = STATE(1680), - [sym_object] = STATE(1586), - [sym_array] = STATE(1585), - [sym_class] = STATE(1682), - [sym_function] = STATE(1682), - [sym_generator_function] = STATE(1682), - [sym_arrow_function] = STATE(1682), - [sym__call_signature] = STATE(3105), - [sym_call_expression] = STATE(1682), - [sym_new_expression] = STATE(1680), - [sym_await_expression] = STATE(1680), - [sym_member_expression] = STATE(828), - [sym_subscript_expression] = STATE(828), - [sym_assignment_expression] = STATE(1680), - [sym__augmented_assignment_lhs] = STATE(1918), - [sym_augmented_assignment_expression] = STATE(1680), - [sym_ternary_expression] = STATE(1680), - [sym_binary_expression] = STATE(1680), - [sym_unary_expression] = STATE(1680), - [sym_update_expression] = STATE(1680), - [sym_string] = STATE(1682), - [sym_template_string] = STATE(1682), - [sym_regex] = STATE(1682), - [sym_meta_property] = STATE(1682), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(827), - [sym_type_assertion] = STATE(1680), - [sym_as_expression] = STATE(1680), - [sym_internal_module] = STATE(1680), - [sym_type_arguments] = STATE(256), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2529), - [sym_identifier] = ACTIONS(879), - [anon_sym_export] = ACTIONS(531), - [anon_sym_namespace] = ACTIONS(533), - [anon_sym_LBRACE] = ACTIONS(1274), - [anon_sym_type] = ACTIONS(531), - [anon_sym_typeof] = ACTIONS(565), - [anon_sym_import] = ACTIONS(539), - [anon_sym_BANG] = ACTIONS(541), - [anon_sym_LPAREN] = ACTIONS(887), - [anon_sym_await] = ACTIONS(545), - [anon_sym_yield] = ACTIONS(547), - [anon_sym_LBRACK] = ACTIONS(889), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(551), - [anon_sym_class] = ACTIONS(553), - [anon_sym_async] = ACTIONS(555), - [anon_sym_function] = ACTIONS(557), - [anon_sym_new] = ACTIONS(891), - [anon_sym_PLUS] = ACTIONS(893), - [anon_sym_DASH] = ACTIONS(893), - [anon_sym_TILDE] = ACTIONS(541), - [anon_sym_void] = ACTIONS(565), - [anon_sym_delete] = ACTIONS(565), - [anon_sym_PLUS_PLUS] = ACTIONS(567), - [anon_sym_DASH_DASH] = ACTIONS(567), - [anon_sym_DQUOTE] = ACTIONS(569), - [anon_sym_SQUOTE] = ACTIONS(571), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(573), - [sym_number] = ACTIONS(895), - [sym_this] = ACTIONS(579), - [sym_super] = ACTIONS(579), - [sym_true] = ACTIONS(579), - [sym_false] = ACTIONS(579), - [sym_null] = ACTIONS(579), - [sym_undefined] = ACTIONS(579), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(531), - [anon_sym_get] = ACTIONS(531), - [anon_sym_set] = ACTIONS(531), - [anon_sym_declare] = ACTIONS(531), - [anon_sym_public] = ACTIONS(531), - [anon_sym_private] = ACTIONS(531), - [anon_sym_protected] = ACTIONS(531), - [anon_sym_module] = ACTIONS(531), - [anon_sym_any] = ACTIONS(531), - [anon_sym_number] = ACTIONS(531), - [anon_sym_boolean] = ACTIONS(531), - [anon_sym_string] = ACTIONS(531), - [anon_sym_symbol] = ACTIONS(531), - [sym_readonly] = ACTIONS(531), - }, - [413] = { - [sym_import] = STATE(1682), - [sym_parenthesized_expression] = STATE(828), - [sym__expression] = STATE(1233), - [sym_yield_expression] = STATE(1680), - [sym_object] = STATE(1586), - [sym_array] = STATE(1585), - [sym_class] = STATE(1682), - [sym_function] = STATE(1682), - [sym_generator_function] = STATE(1682), - [sym_arrow_function] = STATE(1682), - [sym__call_signature] = STATE(3105), - [sym_call_expression] = STATE(1682), - [sym_new_expression] = STATE(1680), - [sym_await_expression] = STATE(1680), - [sym_member_expression] = STATE(828), - [sym_subscript_expression] = STATE(828), - [sym_assignment_expression] = STATE(1680), - [sym__augmented_assignment_lhs] = STATE(1918), - [sym_augmented_assignment_expression] = STATE(1680), - [sym_ternary_expression] = STATE(1680), - [sym_binary_expression] = STATE(1680), - [sym_unary_expression] = STATE(1680), - [sym_update_expression] = STATE(1680), - [sym_string] = STATE(1682), - [sym_template_string] = STATE(1682), - [sym_regex] = STATE(1682), - [sym_meta_property] = STATE(1682), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(827), - [sym_type_assertion] = STATE(1680), - [sym_as_expression] = STATE(1680), - [sym_internal_module] = STATE(1680), - [sym_type_arguments] = STATE(256), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2529), - [sym_identifier] = ACTIONS(879), - [anon_sym_export] = ACTIONS(531), - [anon_sym_namespace] = ACTIONS(533), - [anon_sym_LBRACE] = ACTIONS(1274), - [anon_sym_type] = ACTIONS(531), - [anon_sym_typeof] = ACTIONS(565), - [anon_sym_import] = ACTIONS(539), - [anon_sym_BANG] = ACTIONS(541), - [anon_sym_LPAREN] = ACTIONS(887), - [anon_sym_await] = ACTIONS(545), - [anon_sym_yield] = ACTIONS(547), - [anon_sym_LBRACK] = ACTIONS(889), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(551), - [anon_sym_class] = ACTIONS(553), - [anon_sym_async] = ACTIONS(555), - [anon_sym_function] = ACTIONS(557), - [anon_sym_new] = ACTIONS(891), - [anon_sym_PLUS] = ACTIONS(893), - [anon_sym_DASH] = ACTIONS(893), - [anon_sym_TILDE] = ACTIONS(541), - [anon_sym_void] = ACTIONS(565), - [anon_sym_delete] = ACTIONS(565), - [anon_sym_PLUS_PLUS] = ACTIONS(567), - [anon_sym_DASH_DASH] = ACTIONS(567), - [anon_sym_DQUOTE] = ACTIONS(569), - [anon_sym_SQUOTE] = ACTIONS(571), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(573), - [sym_number] = ACTIONS(895), - [sym_this] = ACTIONS(579), - [sym_super] = ACTIONS(579), - [sym_true] = ACTIONS(579), - [sym_false] = ACTIONS(579), - [sym_null] = ACTIONS(579), - [sym_undefined] = ACTIONS(579), + [anon_sym_BQUOTE] = ACTIONS(85), + [sym_number] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(531), - [anon_sym_get] = ACTIONS(531), - [anon_sym_set] = ACTIONS(531), - [anon_sym_declare] = ACTIONS(531), - [anon_sym_public] = ACTIONS(531), - [anon_sym_private] = ACTIONS(531), - [anon_sym_protected] = ACTIONS(531), - [anon_sym_module] = ACTIONS(531), - [anon_sym_any] = ACTIONS(531), - [anon_sym_number] = ACTIONS(531), - [anon_sym_boolean] = ACTIONS(531), - [anon_sym_string] = ACTIONS(531), - [anon_sym_symbol] = ACTIONS(531), - [sym_readonly] = ACTIONS(531), + [anon_sym_static] = ACTIONS(635), + [anon_sym_get] = ACTIONS(635), + [anon_sym_set] = ACTIONS(635), + [anon_sym_declare] = ACTIONS(635), + [anon_sym_public] = ACTIONS(635), + [anon_sym_private] = ACTIONS(635), + [anon_sym_protected] = ACTIONS(635), + [anon_sym_module] = ACTIONS(635), + [anon_sym_any] = ACTIONS(635), + [anon_sym_number] = ACTIONS(635), + [anon_sym_boolean] = ACTIONS(635), + [anon_sym_string] = ACTIONS(635), + [anon_sym_symbol] = ACTIONS(635), + [sym_readonly] = ACTIONS(635), }, - [414] = { - [sym_import] = STATE(1682), - [sym_parenthesized_expression] = STATE(828), - [sym__expression] = STATE(1234), - [sym_yield_expression] = STATE(1680), - [sym_object] = STATE(1586), - [sym_array] = STATE(1585), - [sym_class] = STATE(1682), - [sym_function] = STATE(1682), - [sym_generator_function] = STATE(1682), - [sym_arrow_function] = STATE(1682), - [sym__call_signature] = STATE(3105), - [sym_call_expression] = STATE(1682), - [sym_new_expression] = STATE(1680), - [sym_await_expression] = STATE(1680), - [sym_member_expression] = STATE(828), - [sym_subscript_expression] = STATE(828), - [sym_assignment_expression] = STATE(1680), - [sym__augmented_assignment_lhs] = STATE(1918), - [sym_augmented_assignment_expression] = STATE(1680), - [sym_ternary_expression] = STATE(1680), - [sym_binary_expression] = STATE(1680), - [sym_unary_expression] = STATE(1680), - [sym_update_expression] = STATE(1680), - [sym_string] = STATE(1682), - [sym_template_string] = STATE(1682), - [sym_regex] = STATE(1682), - [sym_meta_property] = STATE(1682), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(827), - [sym_type_assertion] = STATE(1680), - [sym_as_expression] = STATE(1680), - [sym_internal_module] = STATE(1680), - [sym_type_arguments] = STATE(256), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2529), - [sym_identifier] = ACTIONS(879), - [anon_sym_export] = ACTIONS(531), - [anon_sym_namespace] = ACTIONS(533), - [anon_sym_LBRACE] = ACTIONS(1274), - [anon_sym_type] = ACTIONS(531), - [anon_sym_typeof] = ACTIONS(565), + [415] = { + [sym_import] = STATE(1523), + [sym_parenthesized_expression] = STATE(955), + [sym__expression] = STATE(1335), + [sym_yield_expression] = STATE(1567), + [sym_object] = STATE(1636), + [sym_array] = STATE(1643), + [sym_class] = STATE(1523), + [sym_function] = STATE(1523), + [sym_generator_function] = STATE(1523), + [sym_arrow_function] = STATE(1523), + [sym__call_signature] = STATE(3078), + [sym_call_expression] = STATE(1523), + [sym_new_expression] = STATE(1567), + [sym_await_expression] = STATE(1567), + [sym_member_expression] = STATE(955), + [sym_subscript_expression] = STATE(955), + [sym_assignment_expression] = STATE(1567), + [sym__augmented_assignment_lhs] = STATE(1929), + [sym_augmented_assignment_expression] = STATE(1567), + [sym_ternary_expression] = STATE(1567), + [sym_binary_expression] = STATE(1567), + [sym_unary_expression] = STATE(1567), + [sym_update_expression] = STATE(1567), + [sym_string] = STATE(1523), + [sym_template_string] = STATE(1523), + [sym_regex] = STATE(1523), + [sym_meta_property] = STATE(1523), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(953), + [sym_type_assertion] = STATE(1567), + [sym_as_expression] = STATE(1567), + [sym_internal_module] = STATE(1567), + [sym_type_arguments] = STATE(384), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2575), + [sym_identifier] = ACTIONS(887), + [anon_sym_export] = ACTIONS(635), + [anon_sym_namespace] = ACTIONS(637), + [anon_sym_LBRACE] = ACTIONS(571), + [anon_sym_type] = ACTIONS(635), + [anon_sym_typeof] = ACTIONS(657), [anon_sym_import] = ACTIONS(539), - [anon_sym_BANG] = ACTIONS(541), - [anon_sym_LPAREN] = ACTIONS(887), - [anon_sym_await] = ACTIONS(545), - [anon_sym_yield] = ACTIONS(547), - [anon_sym_LBRACK] = ACTIONS(889), + [anon_sym_BANG] = ACTIONS(641), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(643), + [anon_sym_yield] = ACTIONS(645), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(551), - [anon_sym_class] = ACTIONS(553), - [anon_sym_async] = ACTIONS(555), - [anon_sym_function] = ACTIONS(557), - [anon_sym_new] = ACTIONS(891), - [anon_sym_PLUS] = ACTIONS(893), - [anon_sym_DASH] = ACTIONS(893), - [anon_sym_TILDE] = ACTIONS(541), - [anon_sym_void] = ACTIONS(565), - [anon_sym_delete] = ACTIONS(565), - [anon_sym_PLUS_PLUS] = ACTIONS(567), - [anon_sym_DASH_DASH] = ACTIONS(567), - [anon_sym_DQUOTE] = ACTIONS(569), - [anon_sym_SQUOTE] = ACTIONS(571), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(573), - [sym_number] = ACTIONS(895), - [sym_this] = ACTIONS(579), - [sym_super] = ACTIONS(579), - [sym_true] = ACTIONS(579), - [sym_false] = ACTIONS(579), - [sym_null] = ACTIONS(579), - [sym_undefined] = ACTIONS(579), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(545), + [anon_sym_async] = ACTIONS(649), + [anon_sym_function] = ACTIONS(549), + [anon_sym_new] = ACTIONS(893), + [anon_sym_PLUS] = ACTIONS(895), + [anon_sym_DASH] = ACTIONS(895), + [anon_sym_TILDE] = ACTIONS(641), + [anon_sym_void] = ACTIONS(657), + [anon_sym_delete] = ACTIONS(657), + [anon_sym_PLUS_PLUS] = ACTIONS(659), + [anon_sym_DASH_DASH] = ACTIONS(659), + [anon_sym_DQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(85), + [sym_number] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(531), - [anon_sym_get] = ACTIONS(531), - [anon_sym_set] = ACTIONS(531), - [anon_sym_declare] = ACTIONS(531), - [anon_sym_public] = ACTIONS(531), - [anon_sym_private] = ACTIONS(531), - [anon_sym_protected] = ACTIONS(531), - [anon_sym_module] = ACTIONS(531), - [anon_sym_any] = ACTIONS(531), - [anon_sym_number] = ACTIONS(531), - [anon_sym_boolean] = ACTIONS(531), - [anon_sym_string] = ACTIONS(531), - [anon_sym_symbol] = ACTIONS(531), - [sym_readonly] = ACTIONS(531), + [anon_sym_static] = ACTIONS(635), + [anon_sym_get] = ACTIONS(635), + [anon_sym_set] = ACTIONS(635), + [anon_sym_declare] = ACTIONS(635), + [anon_sym_public] = ACTIONS(635), + [anon_sym_private] = ACTIONS(635), + [anon_sym_protected] = ACTIONS(635), + [anon_sym_module] = ACTIONS(635), + [anon_sym_any] = ACTIONS(635), + [anon_sym_number] = ACTIONS(635), + [anon_sym_boolean] = ACTIONS(635), + [anon_sym_string] = ACTIONS(635), + [anon_sym_symbol] = ACTIONS(635), + [sym_readonly] = ACTIONS(635), }, - [415] = { - [sym_import] = STATE(1101), - [sym_parenthesized_expression] = STATE(948), - [sym__expression] = STATE(1373), - [sym_yield_expression] = STATE(1105), - [sym_object] = STATE(1654), - [sym_array] = STATE(1640), - [sym_class] = STATE(1101), - [sym_function] = STATE(1101), - [sym_generator_function] = STATE(1101), - [sym_arrow_function] = STATE(1101), - [sym__call_signature] = STATE(3002), - [sym_call_expression] = STATE(1101), - [sym_new_expression] = STATE(1105), - [sym_await_expression] = STATE(1105), - [sym_member_expression] = STATE(948), - [sym_subscript_expression] = STATE(948), - [sym_assignment_expression] = STATE(1105), - [sym__augmented_assignment_lhs] = STATE(1921), - [sym_augmented_assignment_expression] = STATE(1105), - [sym_ternary_expression] = STATE(1105), - [sym_binary_expression] = STATE(1105), - [sym_unary_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_string] = STATE(1101), - [sym_template_string] = STATE(1101), - [sym_regex] = STATE(1101), - [sym_meta_property] = STATE(1101), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(949), - [sym_type_assertion] = STATE(1105), - [sym_as_expression] = STATE(1105), - [sym_internal_module] = STATE(1105), - [sym_type_arguments] = STATE(324), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2497), - [sym_identifier] = ACTIONS(859), + [416] = { + [sym_import] = STATE(1523), + [sym_parenthesized_expression] = STATE(955), + [sym__expression] = STATE(1336), + [sym_yield_expression] = STATE(1567), + [sym_object] = STATE(1636), + [sym_array] = STATE(1643), + [sym_class] = STATE(1523), + [sym_function] = STATE(1523), + [sym_generator_function] = STATE(1523), + [sym_arrow_function] = STATE(1523), + [sym__call_signature] = STATE(3078), + [sym_call_expression] = STATE(1523), + [sym_new_expression] = STATE(1567), + [sym_await_expression] = STATE(1567), + [sym_member_expression] = STATE(955), + [sym_subscript_expression] = STATE(955), + [sym_assignment_expression] = STATE(1567), + [sym__augmented_assignment_lhs] = STATE(1929), + [sym_augmented_assignment_expression] = STATE(1567), + [sym_ternary_expression] = STATE(1567), + [sym_binary_expression] = STATE(1567), + [sym_unary_expression] = STATE(1567), + [sym_update_expression] = STATE(1567), + [sym_string] = STATE(1523), + [sym_template_string] = STATE(1523), + [sym_regex] = STATE(1523), + [sym_meta_property] = STATE(1523), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(953), + [sym_type_assertion] = STATE(1567), + [sym_as_expression] = STATE(1567), + [sym_internal_module] = STATE(1567), + [sym_type_arguments] = STATE(384), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2575), + [sym_identifier] = ACTIONS(887), [anon_sym_export] = ACTIONS(635), [anon_sym_namespace] = ACTIONS(637), - [anon_sym_LBRACE] = ACTIONS(509), + [anon_sym_LBRACE] = ACTIONS(571), [anon_sym_type] = ACTIONS(635), - [anon_sym_typeof] = ACTIONS(659), - [anon_sym_import] = ACTIONS(435), - [anon_sym_BANG] = ACTIONS(643), - [anon_sym_LPAREN] = ACTIONS(515), - [anon_sym_await] = ACTIONS(645), - [anon_sym_yield] = ACTIONS(647), - [anon_sym_LBRACK] = ACTIONS(517), + [anon_sym_typeof] = ACTIONS(657), + [anon_sym_import] = ACTIONS(539), + [anon_sym_BANG] = ACTIONS(641), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(643), + [anon_sym_yield] = ACTIONS(645), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(449), - [anon_sym_class] = ACTIONS(451), - [anon_sym_async] = ACTIONS(651), - [anon_sym_function] = ACTIONS(455), - [anon_sym_new] = ACTIONS(865), - [anon_sym_PLUS] = ACTIONS(867), - [anon_sym_DASH] = ACTIONS(867), - [anon_sym_TILDE] = ACTIONS(643), - [anon_sym_void] = ACTIONS(659), - [anon_sym_delete] = ACTIONS(659), - [anon_sym_PLUS_PLUS] = ACTIONS(661), - [anon_sym_DASH_DASH] = ACTIONS(661), - [anon_sym_DQUOTE] = ACTIONS(475), - [anon_sym_SQUOTE] = ACTIONS(477), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(545), + [anon_sym_async] = ACTIONS(649), + [anon_sym_function] = ACTIONS(549), + [anon_sym_new] = ACTIONS(893), + [anon_sym_PLUS] = ACTIONS(895), + [anon_sym_DASH] = ACTIONS(895), + [anon_sym_TILDE] = ACTIONS(641), + [anon_sym_void] = ACTIONS(657), + [anon_sym_delete] = ACTIONS(657), + [anon_sym_PLUS_PLUS] = ACTIONS(659), + [anon_sym_DASH_DASH] = ACTIONS(659), + [anon_sym_DQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(479), - [sym_number] = ACTIONS(527), - [sym_this] = ACTIONS(485), - [sym_super] = ACTIONS(485), - [sym_true] = ACTIONS(485), - [sym_false] = ACTIONS(485), - [sym_null] = ACTIONS(485), - [sym_undefined] = ACTIONS(485), + [anon_sym_BQUOTE] = ACTIONS(85), + [sym_number] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(635), [anon_sym_get] = ACTIONS(635), @@ -50420,79 +50563,79 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(635), [sym_readonly] = ACTIONS(635), }, - [416] = { - [sym_import] = STATE(1101), - [sym_parenthesized_expression] = STATE(948), - [sym__expression] = STATE(1342), - [sym_yield_expression] = STATE(1105), - [sym_object] = STATE(1654), - [sym_array] = STATE(1640), - [sym_class] = STATE(1101), - [sym_function] = STATE(1101), - [sym_generator_function] = STATE(1101), - [sym_arrow_function] = STATE(1101), - [sym__call_signature] = STATE(3002), - [sym_call_expression] = STATE(1101), - [sym_new_expression] = STATE(1105), - [sym_await_expression] = STATE(1105), - [sym_member_expression] = STATE(948), - [sym_subscript_expression] = STATE(948), - [sym_assignment_expression] = STATE(1105), - [sym__augmented_assignment_lhs] = STATE(1921), - [sym_augmented_assignment_expression] = STATE(1105), - [sym_ternary_expression] = STATE(1105), - [sym_binary_expression] = STATE(1105), - [sym_unary_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_string] = STATE(1101), - [sym_template_string] = STATE(1101), - [sym_regex] = STATE(1101), - [sym_meta_property] = STATE(1101), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(949), - [sym_type_assertion] = STATE(1105), - [sym_as_expression] = STATE(1105), - [sym_internal_module] = STATE(1105), - [sym_type_arguments] = STATE(324), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2497), - [sym_identifier] = ACTIONS(859), + [417] = { + [sym_import] = STATE(1523), + [sym_parenthesized_expression] = STATE(955), + [sym__expression] = STATE(1339), + [sym_yield_expression] = STATE(1567), + [sym_object] = STATE(1636), + [sym_array] = STATE(1643), + [sym_class] = STATE(1523), + [sym_function] = STATE(1523), + [sym_generator_function] = STATE(1523), + [sym_arrow_function] = STATE(1523), + [sym__call_signature] = STATE(3078), + [sym_call_expression] = STATE(1523), + [sym_new_expression] = STATE(1567), + [sym_await_expression] = STATE(1567), + [sym_member_expression] = STATE(955), + [sym_subscript_expression] = STATE(955), + [sym_assignment_expression] = STATE(1567), + [sym__augmented_assignment_lhs] = STATE(1929), + [sym_augmented_assignment_expression] = STATE(1567), + [sym_ternary_expression] = STATE(1567), + [sym_binary_expression] = STATE(1567), + [sym_unary_expression] = STATE(1567), + [sym_update_expression] = STATE(1567), + [sym_string] = STATE(1523), + [sym_template_string] = STATE(1523), + [sym_regex] = STATE(1523), + [sym_meta_property] = STATE(1523), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(953), + [sym_type_assertion] = STATE(1567), + [sym_as_expression] = STATE(1567), + [sym_internal_module] = STATE(1567), + [sym_type_arguments] = STATE(384), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2575), + [sym_identifier] = ACTIONS(887), [anon_sym_export] = ACTIONS(635), [anon_sym_namespace] = ACTIONS(637), - [anon_sym_LBRACE] = ACTIONS(509), + [anon_sym_LBRACE] = ACTIONS(571), [anon_sym_type] = ACTIONS(635), - [anon_sym_typeof] = ACTIONS(659), - [anon_sym_import] = ACTIONS(435), - [anon_sym_BANG] = ACTIONS(643), - [anon_sym_LPAREN] = ACTIONS(515), - [anon_sym_await] = ACTIONS(645), - [anon_sym_yield] = ACTIONS(647), - [anon_sym_LBRACK] = ACTIONS(517), + [anon_sym_typeof] = ACTIONS(657), + [anon_sym_import] = ACTIONS(539), + [anon_sym_BANG] = ACTIONS(641), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(643), + [anon_sym_yield] = ACTIONS(645), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(449), - [anon_sym_class] = ACTIONS(451), - [anon_sym_async] = ACTIONS(651), - [anon_sym_function] = ACTIONS(455), - [anon_sym_new] = ACTIONS(865), - [anon_sym_PLUS] = ACTIONS(867), - [anon_sym_DASH] = ACTIONS(867), - [anon_sym_TILDE] = ACTIONS(643), - [anon_sym_void] = ACTIONS(659), - [anon_sym_delete] = ACTIONS(659), - [anon_sym_PLUS_PLUS] = ACTIONS(661), - [anon_sym_DASH_DASH] = ACTIONS(661), - [anon_sym_DQUOTE] = ACTIONS(475), - [anon_sym_SQUOTE] = ACTIONS(477), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(545), + [anon_sym_async] = ACTIONS(649), + [anon_sym_function] = ACTIONS(549), + [anon_sym_new] = ACTIONS(893), + [anon_sym_PLUS] = ACTIONS(895), + [anon_sym_DASH] = ACTIONS(895), + [anon_sym_TILDE] = ACTIONS(641), + [anon_sym_void] = ACTIONS(657), + [anon_sym_delete] = ACTIONS(657), + [anon_sym_PLUS_PLUS] = ACTIONS(659), + [anon_sym_DASH_DASH] = ACTIONS(659), + [anon_sym_DQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(479), - [sym_number] = ACTIONS(527), - [sym_this] = ACTIONS(485), - [sym_super] = ACTIONS(485), - [sym_true] = ACTIONS(485), - [sym_false] = ACTIONS(485), - [sym_null] = ACTIONS(485), - [sym_undefined] = ACTIONS(485), + [anon_sym_BQUOTE] = ACTIONS(85), + [sym_number] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(635), [anon_sym_get] = ACTIONS(635), @@ -50509,68 +50652,68 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(635), [sym_readonly] = ACTIONS(635), }, - [417] = { - [sym_import] = STATE(1101), - [sym_parenthesized_expression] = STATE(921), - [sym__expression] = STATE(1249), - [sym_yield_expression] = STATE(1105), - [sym_object] = STATE(1531), - [sym_array] = STATE(1536), - [sym_class] = STATE(1101), - [sym_function] = STATE(1101), - [sym_generator_function] = STATE(1101), - [sym_arrow_function] = STATE(1101), - [sym__call_signature] = STATE(3170), - [sym_call_expression] = STATE(1101), - [sym_new_expression] = STATE(1105), - [sym_await_expression] = STATE(1105), - [sym_member_expression] = STATE(921), - [sym_subscript_expression] = STATE(921), - [sym_assignment_expression] = STATE(1105), - [sym__augmented_assignment_lhs] = STATE(1917), - [sym_augmented_assignment_expression] = STATE(1105), - [sym_ternary_expression] = STATE(1105), - [sym_binary_expression] = STATE(1105), - [sym_unary_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_string] = STATE(1101), - [sym_template_string] = STATE(1101), - [sym_regex] = STATE(1101), - [sym_meta_property] = STATE(1101), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(882), - [sym_type_assertion] = STATE(1105), - [sym_as_expression] = STATE(1105), - [sym_internal_module] = STATE(1105), - [sym_type_arguments] = STATE(355), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2497), + [418] = { + [sym_import] = STATE(1151), + [sym_parenthesized_expression] = STATE(956), + [sym__expression] = STATE(1351), + [sym_yield_expression] = STATE(1144), + [sym_object] = STATE(1653), + [sym_array] = STATE(1660), + [sym_class] = STATE(1151), + [sym_function] = STATE(1151), + [sym_generator_function] = STATE(1151), + [sym_arrow_function] = STATE(1151), + [sym__call_signature] = STATE(3024), + [sym_call_expression] = STATE(1151), + [sym_new_expression] = STATE(1144), + [sym_await_expression] = STATE(1144), + [sym_member_expression] = STATE(956), + [sym_subscript_expression] = STATE(956), + [sym_assignment_expression] = STATE(1144), + [sym__augmented_assignment_lhs] = STATE(1925), + [sym_augmented_assignment_expression] = STATE(1144), + [sym_ternary_expression] = STATE(1144), + [sym_binary_expression] = STATE(1144), + [sym_unary_expression] = STATE(1144), + [sym_update_expression] = STATE(1144), + [sym_string] = STATE(1151), + [sym_template_string] = STATE(1151), + [sym_regex] = STATE(1151), + [sym_meta_property] = STATE(1151), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(950), + [sym_type_assertion] = STATE(1144), + [sym_as_expression] = STATE(1144), + [sym_internal_module] = STATE(1144), + [sym_type_arguments] = STATE(395), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2580), [sym_identifier] = ACTIONS(897), - [anon_sym_export] = ACTIONS(751), - [anon_sym_namespace] = ACTIONS(753), + [anon_sym_export] = ACTIONS(577), + [anon_sym_namespace] = ACTIONS(579), [anon_sym_LBRACE] = ACTIONS(509), - [anon_sym_type] = ACTIONS(751), - [anon_sym_typeof] = ACTIONS(775), + [anon_sym_type] = ACTIONS(577), + [anon_sym_typeof] = ACTIONS(601), [anon_sym_import] = ACTIONS(435), - [anon_sym_BANG] = ACTIONS(757), + [anon_sym_BANG] = ACTIONS(585), [anon_sym_LPAREN] = ACTIONS(515), - [anon_sym_await] = ACTIONS(759), - [anon_sym_yield] = ACTIONS(761), + [anon_sym_await] = ACTIONS(587), + [anon_sym_yield] = ACTIONS(589), [anon_sym_LBRACK] = ACTIONS(517), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(765), + [anon_sym_SLASH] = ACTIONS(449), [anon_sym_class] = ACTIONS(451), - [anon_sym_async] = ACTIONS(767), + [anon_sym_async] = ACTIONS(593), [anon_sym_function] = ACTIONS(455), [anon_sym_new] = ACTIONS(903), [anon_sym_PLUS] = ACTIONS(905), [anon_sym_DASH] = ACTIONS(905), - [anon_sym_TILDE] = ACTIONS(757), - [anon_sym_void] = ACTIONS(775), - [anon_sym_delete] = ACTIONS(775), - [anon_sym_PLUS_PLUS] = ACTIONS(777), - [anon_sym_DASH_DASH] = ACTIONS(777), + [anon_sym_TILDE] = ACTIONS(585), + [anon_sym_void] = ACTIONS(601), + [anon_sym_delete] = ACTIONS(601), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(603), [anon_sym_DQUOTE] = ACTIONS(475), [anon_sym_SQUOTE] = ACTIONS(477), [sym_comment] = ACTIONS(3), @@ -50583,83 +50726,83 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(485), [sym_undefined] = ACTIONS(485), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(751), - [anon_sym_get] = ACTIONS(751), - [anon_sym_set] = ACTIONS(751), - [anon_sym_declare] = ACTIONS(751), - [anon_sym_public] = ACTIONS(751), - [anon_sym_private] = ACTIONS(751), - [anon_sym_protected] = ACTIONS(751), - [anon_sym_module] = ACTIONS(751), - [anon_sym_any] = ACTIONS(751), - [anon_sym_number] = ACTIONS(751), - [anon_sym_boolean] = ACTIONS(751), - [anon_sym_string] = ACTIONS(751), - [anon_sym_symbol] = ACTIONS(751), - [sym_readonly] = ACTIONS(751), + [anon_sym_static] = ACTIONS(577), + [anon_sym_get] = ACTIONS(577), + [anon_sym_set] = ACTIONS(577), + [anon_sym_declare] = ACTIONS(577), + [anon_sym_public] = ACTIONS(577), + [anon_sym_private] = ACTIONS(577), + [anon_sym_protected] = ACTIONS(577), + [anon_sym_module] = ACTIONS(577), + [anon_sym_any] = ACTIONS(577), + [anon_sym_number] = ACTIONS(577), + [anon_sym_boolean] = ACTIONS(577), + [anon_sym_string] = ACTIONS(577), + [anon_sym_symbol] = ACTIONS(577), + [sym_readonly] = ACTIONS(577), }, - [418] = { - [sym_import] = STATE(1101), - [sym_parenthesized_expression] = STATE(948), - [sym__expression] = STATE(1341), - [sym_yield_expression] = STATE(1105), - [sym_object] = STATE(1654), - [sym_array] = STATE(1640), - [sym_class] = STATE(1101), - [sym_function] = STATE(1101), - [sym_generator_function] = STATE(1101), - [sym_arrow_function] = STATE(1101), - [sym__call_signature] = STATE(3002), - [sym_call_expression] = STATE(1101), - [sym_new_expression] = STATE(1105), - [sym_await_expression] = STATE(1105), - [sym_member_expression] = STATE(948), - [sym_subscript_expression] = STATE(948), - [sym_assignment_expression] = STATE(1105), - [sym__augmented_assignment_lhs] = STATE(1921), - [sym_augmented_assignment_expression] = STATE(1105), - [sym_ternary_expression] = STATE(1105), - [sym_binary_expression] = STATE(1105), - [sym_unary_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_string] = STATE(1101), - [sym_template_string] = STATE(1101), - [sym_regex] = STATE(1101), - [sym_meta_property] = STATE(1101), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(949), - [sym_type_assertion] = STATE(1105), - [sym_as_expression] = STATE(1105), - [sym_internal_module] = STATE(1105), - [sym_type_arguments] = STATE(324), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2497), - [sym_identifier] = ACTIONS(859), - [anon_sym_export] = ACTIONS(635), - [anon_sym_namespace] = ACTIONS(637), + [419] = { + [sym_import] = STATE(1151), + [sym_parenthesized_expression] = STATE(956), + [sym__expression] = STATE(993), + [sym_yield_expression] = STATE(1144), + [sym_object] = STATE(1653), + [sym_array] = STATE(1660), + [sym_class] = STATE(1151), + [sym_function] = STATE(1151), + [sym_generator_function] = STATE(1151), + [sym_arrow_function] = STATE(1151), + [sym__call_signature] = STATE(3024), + [sym_call_expression] = STATE(1151), + [sym_new_expression] = STATE(1144), + [sym_await_expression] = STATE(1144), + [sym_member_expression] = STATE(956), + [sym_subscript_expression] = STATE(956), + [sym_assignment_expression] = STATE(1144), + [sym__augmented_assignment_lhs] = STATE(1925), + [sym_augmented_assignment_expression] = STATE(1144), + [sym_ternary_expression] = STATE(1144), + [sym_binary_expression] = STATE(1144), + [sym_unary_expression] = STATE(1144), + [sym_update_expression] = STATE(1144), + [sym_string] = STATE(1151), + [sym_template_string] = STATE(1151), + [sym_regex] = STATE(1151), + [sym_meta_property] = STATE(1151), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(2253), + [sym_non_null_expression] = STATE(950), + [sym_type_assertion] = STATE(1144), + [sym_as_expression] = STATE(1144), + [sym_internal_module] = STATE(1144), + [sym_type_arguments] = STATE(395), + [sym_type_parameters] = STATE(2827), + [aux_sym_export_statement_repeat1] = STATE(2580), + [sym_identifier] = ACTIONS(897), + [anon_sym_export] = ACTIONS(577), + [anon_sym_namespace] = ACTIONS(579), [anon_sym_LBRACE] = ACTIONS(509), - [anon_sym_type] = ACTIONS(635), - [anon_sym_typeof] = ACTIONS(659), + [anon_sym_type] = ACTIONS(577), + [anon_sym_typeof] = ACTIONS(601), [anon_sym_import] = ACTIONS(435), - [anon_sym_BANG] = ACTIONS(643), + [anon_sym_BANG] = ACTIONS(585), [anon_sym_LPAREN] = ACTIONS(515), - [anon_sym_await] = ACTIONS(645), - [anon_sym_yield] = ACTIONS(647), + [anon_sym_await] = ACTIONS(587), + [anon_sym_yield] = ACTIONS(589), [anon_sym_LBRACK] = ACTIONS(517), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(449), [anon_sym_class] = ACTIONS(451), - [anon_sym_async] = ACTIONS(651), + [anon_sym_async] = ACTIONS(593), [anon_sym_function] = ACTIONS(455), - [anon_sym_new] = ACTIONS(865), - [anon_sym_PLUS] = ACTIONS(867), - [anon_sym_DASH] = ACTIONS(867), - [anon_sym_TILDE] = ACTIONS(643), - [anon_sym_void] = ACTIONS(659), - [anon_sym_delete] = ACTIONS(659), - [anon_sym_PLUS_PLUS] = ACTIONS(661), - [anon_sym_DASH_DASH] = ACTIONS(661), + [anon_sym_new] = ACTIONS(903), + [anon_sym_PLUS] = ACTIONS(905), + [anon_sym_DASH] = ACTIONS(905), + [anon_sym_TILDE] = ACTIONS(585), + [anon_sym_void] = ACTIONS(601), + [anon_sym_delete] = ACTIONS(601), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(603), [anon_sym_DQUOTE] = ACTIONS(475), [anon_sym_SQUOTE] = ACTIONS(477), [sym_comment] = ACTIONS(3), @@ -50672,109 +50815,20 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(485), [sym_undefined] = ACTIONS(485), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(635), - [anon_sym_get] = ACTIONS(635), - [anon_sym_set] = ACTIONS(635), - [anon_sym_declare] = ACTIONS(635), - [anon_sym_public] = ACTIONS(635), - [anon_sym_private] = ACTIONS(635), - [anon_sym_protected] = ACTIONS(635), - [anon_sym_module] = ACTIONS(635), - [anon_sym_any] = ACTIONS(635), - [anon_sym_number] = ACTIONS(635), - [anon_sym_boolean] = ACTIONS(635), - [anon_sym_string] = ACTIONS(635), - [anon_sym_symbol] = ACTIONS(635), - [sym_readonly] = ACTIONS(635), - }, - [419] = { - [sym_import] = STATE(1682), - [sym_parenthesized_expression] = STATE(828), - [sym__expression] = STATE(1237), - [sym_yield_expression] = STATE(1680), - [sym_object] = STATE(1586), - [sym_array] = STATE(1585), - [sym_class] = STATE(1682), - [sym_function] = STATE(1682), - [sym_generator_function] = STATE(1682), - [sym_arrow_function] = STATE(1682), - [sym__call_signature] = STATE(3105), - [sym_call_expression] = STATE(1682), - [sym_new_expression] = STATE(1680), - [sym_await_expression] = STATE(1680), - [sym_member_expression] = STATE(828), - [sym_subscript_expression] = STATE(828), - [sym_assignment_expression] = STATE(1680), - [sym__augmented_assignment_lhs] = STATE(1918), - [sym_augmented_assignment_expression] = STATE(1680), - [sym_ternary_expression] = STATE(1680), - [sym_binary_expression] = STATE(1680), - [sym_unary_expression] = STATE(1680), - [sym_update_expression] = STATE(1680), - [sym_string] = STATE(1682), - [sym_template_string] = STATE(1682), - [sym_regex] = STATE(1682), - [sym_meta_property] = STATE(1682), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2157), - [sym_non_null_expression] = STATE(827), - [sym_type_assertion] = STATE(1680), - [sym_as_expression] = STATE(1680), - [sym_internal_module] = STATE(1680), - [sym_type_arguments] = STATE(256), - [sym_type_parameters] = STATE(2850), - [aux_sym_export_statement_repeat1] = STATE(2529), - [sym_identifier] = ACTIONS(879), - [anon_sym_export] = ACTIONS(531), - [anon_sym_namespace] = ACTIONS(533), - [anon_sym_LBRACE] = ACTIONS(1274), - [anon_sym_type] = ACTIONS(531), - [anon_sym_typeof] = ACTIONS(565), - [anon_sym_import] = ACTIONS(539), - [anon_sym_BANG] = ACTIONS(541), - [anon_sym_LPAREN] = ACTIONS(887), - [anon_sym_await] = ACTIONS(545), - [anon_sym_yield] = ACTIONS(547), - [anon_sym_LBRACK] = ACTIONS(889), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(551), - [anon_sym_class] = ACTIONS(553), - [anon_sym_async] = ACTIONS(555), - [anon_sym_function] = ACTIONS(557), - [anon_sym_new] = ACTIONS(891), - [anon_sym_PLUS] = ACTIONS(893), - [anon_sym_DASH] = ACTIONS(893), - [anon_sym_TILDE] = ACTIONS(541), - [anon_sym_void] = ACTIONS(565), - [anon_sym_delete] = ACTIONS(565), - [anon_sym_PLUS_PLUS] = ACTIONS(567), - [anon_sym_DASH_DASH] = ACTIONS(567), - [anon_sym_DQUOTE] = ACTIONS(569), - [anon_sym_SQUOTE] = ACTIONS(571), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(573), - [sym_number] = ACTIONS(895), - [sym_this] = ACTIONS(579), - [sym_super] = ACTIONS(579), - [sym_true] = ACTIONS(579), - [sym_false] = ACTIONS(579), - [sym_null] = ACTIONS(579), - [sym_undefined] = ACTIONS(579), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(531), - [anon_sym_get] = ACTIONS(531), - [anon_sym_set] = ACTIONS(531), - [anon_sym_declare] = ACTIONS(531), - [anon_sym_public] = ACTIONS(531), - [anon_sym_private] = ACTIONS(531), - [anon_sym_protected] = ACTIONS(531), - [anon_sym_module] = ACTIONS(531), - [anon_sym_any] = ACTIONS(531), - [anon_sym_number] = ACTIONS(531), - [anon_sym_boolean] = ACTIONS(531), - [anon_sym_string] = ACTIONS(531), - [anon_sym_symbol] = ACTIONS(531), - [sym_readonly] = ACTIONS(531), + [anon_sym_static] = ACTIONS(577), + [anon_sym_get] = ACTIONS(577), + [anon_sym_set] = ACTIONS(577), + [anon_sym_declare] = ACTIONS(577), + [anon_sym_public] = ACTIONS(577), + [anon_sym_private] = ACTIONS(577), + [anon_sym_protected] = ACTIONS(577), + [anon_sym_module] = ACTIONS(577), + [anon_sym_any] = ACTIONS(577), + [anon_sym_number] = ACTIONS(577), + [anon_sym_boolean] = ACTIONS(577), + [anon_sym_string] = ACTIONS(577), + [anon_sym_symbol] = ACTIONS(577), + [sym_readonly] = ACTIONS(577), }, [420] = { [ts_builtin_sym_end] = ACTIONS(1497), @@ -51217,6 +51271,94 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_readonly] = ACTIONS(1515), }, [425] = { + [ts_builtin_sym_end] = ACTIONS(941), + [sym_identifier] = ACTIONS(943), + [anon_sym_export] = ACTIONS(943), + [anon_sym_default] = ACTIONS(943), + [anon_sym_EQ] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(943), + [anon_sym_LBRACE] = ACTIONS(941), + [anon_sym_COMMA] = ACTIONS(941), + [anon_sym_RBRACE] = ACTIONS(941), + [anon_sym_type] = ACTIONS(943), + [anon_sym_typeof] = ACTIONS(943), + [anon_sym_import] = ACTIONS(943), + [anon_sym_var] = ACTIONS(943), + [anon_sym_let] = ACTIONS(943), + [anon_sym_const] = ACTIONS(943), + [anon_sym_BANG] = ACTIONS(941), + [anon_sym_else] = ACTIONS(943), + [anon_sym_if] = ACTIONS(943), + [anon_sym_switch] = ACTIONS(943), + [anon_sym_for] = ACTIONS(943), + [anon_sym_LPAREN] = ACTIONS(941), + [anon_sym_RPAREN] = ACTIONS(941), + [anon_sym_await] = ACTIONS(943), + [anon_sym_while] = ACTIONS(943), + [anon_sym_do] = ACTIONS(943), + [anon_sym_try] = ACTIONS(943), + [anon_sym_with] = ACTIONS(943), + [anon_sym_break] = ACTIONS(943), + [anon_sym_continue] = ACTIONS(943), + [anon_sym_debugger] = ACTIONS(943), + [anon_sym_return] = ACTIONS(943), + [anon_sym_throw] = ACTIONS(943), + [anon_sym_SEMI] = ACTIONS(941), + [anon_sym_COLON] = ACTIONS(941), + [anon_sym_case] = ACTIONS(943), + [anon_sym_yield] = ACTIONS(943), + [anon_sym_LBRACK] = ACTIONS(941), + [anon_sym_RBRACK] = ACTIONS(941), + [anon_sym_LT] = ACTIONS(941), + [anon_sym_GT] = ACTIONS(941), + [anon_sym_SLASH] = ACTIONS(943), + [anon_sym_class] = ACTIONS(943), + [anon_sym_async] = ACTIONS(943), + [anon_sym_function] = ACTIONS(943), + [anon_sym_EQ_GT] = ACTIONS(941), + [anon_sym_new] = ACTIONS(943), + [anon_sym_QMARK] = ACTIONS(941), + [anon_sym_AMP] = ACTIONS(941), + [anon_sym_PIPE] = ACTIONS(941), + [anon_sym_PLUS] = ACTIONS(943), + [anon_sym_DASH] = ACTIONS(943), + [anon_sym_TILDE] = ACTIONS(941), + [anon_sym_void] = ACTIONS(943), + [anon_sym_delete] = ACTIONS(943), + [anon_sym_PLUS_PLUS] = ACTIONS(941), + [anon_sym_DASH_DASH] = ACTIONS(941), + [anon_sym_DQUOTE] = ACTIONS(941), + [anon_sym_SQUOTE] = ACTIONS(941), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(941), + [sym_number] = ACTIONS(941), + [sym_this] = ACTIONS(943), + [sym_super] = ACTIONS(943), + [sym_true] = ACTIONS(943), + [sym_false] = ACTIONS(943), + [sym_null] = ACTIONS(943), + [sym_undefined] = ACTIONS(943), + [anon_sym_AT] = ACTIONS(941), + [anon_sym_static] = ACTIONS(943), + [anon_sym_abstract] = ACTIONS(943), + [anon_sym_get] = ACTIONS(943), + [anon_sym_set] = ACTIONS(943), + [anon_sym_declare] = ACTIONS(943), + [anon_sym_public] = ACTIONS(943), + [anon_sym_private] = ACTIONS(943), + [anon_sym_protected] = ACTIONS(943), + [anon_sym_module] = ACTIONS(943), + [anon_sym_any] = ACTIONS(943), + [anon_sym_number] = ACTIONS(943), + [anon_sym_boolean] = ACTIONS(943), + [anon_sym_string] = ACTIONS(943), + [anon_sym_symbol] = ACTIONS(943), + [anon_sym_interface] = ACTIONS(943), + [anon_sym_extends] = ACTIONS(943), + [anon_sym_enum] = ACTIONS(943), + [sym_readonly] = ACTIONS(943), + }, + [426] = { [ts_builtin_sym_end] = ACTIONS(1517), [sym_identifier] = ACTIONS(1519), [anon_sym_export] = ACTIONS(1519), @@ -51304,7 +51446,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(1519), [sym_readonly] = ACTIONS(1519), }, - [426] = { + [427] = { [ts_builtin_sym_end] = ACTIONS(1521), [sym_identifier] = ACTIONS(1523), [anon_sym_export] = ACTIONS(1523), @@ -51392,94 +51534,6 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(1523), [sym_readonly] = ACTIONS(1523), }, - [427] = { - [ts_builtin_sym_end] = ACTIONS(995), - [sym_identifier] = ACTIONS(997), - [anon_sym_export] = ACTIONS(997), - [anon_sym_default] = ACTIONS(997), - [anon_sym_EQ] = ACTIONS(997), - [anon_sym_namespace] = ACTIONS(997), - [anon_sym_LBRACE] = ACTIONS(995), - [anon_sym_COMMA] = ACTIONS(995), - [anon_sym_RBRACE] = ACTIONS(995), - [anon_sym_type] = ACTIONS(997), - [anon_sym_typeof] = ACTIONS(997), - [anon_sym_import] = ACTIONS(997), - [anon_sym_var] = ACTIONS(997), - [anon_sym_let] = ACTIONS(997), - [anon_sym_const] = ACTIONS(997), - [anon_sym_BANG] = ACTIONS(995), - [anon_sym_else] = ACTIONS(997), - [anon_sym_if] = ACTIONS(997), - [anon_sym_switch] = ACTIONS(997), - [anon_sym_for] = ACTIONS(997), - [anon_sym_LPAREN] = ACTIONS(995), - [anon_sym_RPAREN] = ACTIONS(995), - [anon_sym_await] = ACTIONS(997), - [anon_sym_while] = ACTIONS(997), - [anon_sym_do] = ACTIONS(997), - [anon_sym_try] = ACTIONS(997), - [anon_sym_with] = ACTIONS(997), - [anon_sym_break] = ACTIONS(997), - [anon_sym_continue] = ACTIONS(997), - [anon_sym_debugger] = ACTIONS(997), - [anon_sym_return] = ACTIONS(997), - [anon_sym_throw] = ACTIONS(997), - [anon_sym_SEMI] = ACTIONS(995), - [anon_sym_COLON] = ACTIONS(995), - [anon_sym_case] = ACTIONS(997), - [anon_sym_yield] = ACTIONS(997), - [anon_sym_LBRACK] = ACTIONS(995), - [anon_sym_RBRACK] = ACTIONS(995), - [anon_sym_LT] = ACTIONS(995), - [anon_sym_GT] = ACTIONS(995), - [anon_sym_SLASH] = ACTIONS(997), - [anon_sym_class] = ACTIONS(997), - [anon_sym_async] = ACTIONS(997), - [anon_sym_function] = ACTIONS(997), - [anon_sym_EQ_GT] = ACTIONS(995), - [anon_sym_new] = ACTIONS(997), - [anon_sym_QMARK] = ACTIONS(995), - [anon_sym_AMP] = ACTIONS(995), - [anon_sym_PIPE] = ACTIONS(995), - [anon_sym_PLUS] = ACTIONS(997), - [anon_sym_DASH] = ACTIONS(997), - [anon_sym_TILDE] = ACTIONS(995), - [anon_sym_void] = ACTIONS(997), - [anon_sym_delete] = ACTIONS(997), - [anon_sym_PLUS_PLUS] = ACTIONS(995), - [anon_sym_DASH_DASH] = ACTIONS(995), - [anon_sym_DQUOTE] = ACTIONS(995), - [anon_sym_SQUOTE] = ACTIONS(995), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(995), - [sym_number] = ACTIONS(995), - [sym_this] = ACTIONS(997), - [sym_super] = ACTIONS(997), - [sym_true] = ACTIONS(997), - [sym_false] = ACTIONS(997), - [sym_null] = ACTIONS(997), - [sym_undefined] = ACTIONS(997), - [anon_sym_AT] = ACTIONS(995), - [anon_sym_static] = ACTIONS(997), - [anon_sym_abstract] = ACTIONS(997), - [anon_sym_get] = ACTIONS(997), - [anon_sym_set] = ACTIONS(997), - [anon_sym_declare] = ACTIONS(997), - [anon_sym_public] = ACTIONS(997), - [anon_sym_private] = ACTIONS(997), - [anon_sym_protected] = ACTIONS(997), - [anon_sym_module] = ACTIONS(997), - [anon_sym_any] = ACTIONS(997), - [anon_sym_number] = ACTIONS(997), - [anon_sym_boolean] = ACTIONS(997), - [anon_sym_string] = ACTIONS(997), - [anon_sym_symbol] = ACTIONS(997), - [anon_sym_interface] = ACTIONS(997), - [anon_sym_extends] = ACTIONS(997), - [anon_sym_enum] = ACTIONS(997), - [sym_readonly] = ACTIONS(997), - }, [428] = { [ts_builtin_sym_end] = ACTIONS(1525), [sym_identifier] = ACTIONS(1527), @@ -51869,7 +51923,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON] = ACTIONS(1543), [anon_sym_case] = ACTIONS(1545), [anon_sym_yield] = ACTIONS(1545), - [anon_sym_LBRACK] = ACTIONS(1543), + [anon_sym_LBRACK] = ACTIONS(1541), [anon_sym_RBRACK] = ACTIONS(1543), [anon_sym_LT] = ACTIONS(1543), [anon_sym_GT] = ACTIONS(1543), @@ -52068,35 +52122,123 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(1551), [anon_sym_SQUOTE] = ACTIONS(1551), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1551), - [sym_number] = ACTIONS(1551), - [sym_this] = ACTIONS(1553), - [sym_super] = ACTIONS(1553), - [sym_true] = ACTIONS(1553), - [sym_false] = ACTIONS(1553), - [sym_null] = ACTIONS(1553), - [sym_undefined] = ACTIONS(1553), - [anon_sym_AT] = ACTIONS(1551), - [anon_sym_static] = ACTIONS(1553), - [anon_sym_abstract] = ACTIONS(1553), - [anon_sym_get] = ACTIONS(1553), - [anon_sym_set] = ACTIONS(1553), - [anon_sym_declare] = ACTIONS(1553), - [anon_sym_public] = ACTIONS(1553), - [anon_sym_private] = ACTIONS(1553), - [anon_sym_protected] = ACTIONS(1553), - [anon_sym_module] = ACTIONS(1553), - [anon_sym_any] = ACTIONS(1553), - [anon_sym_number] = ACTIONS(1553), - [anon_sym_boolean] = ACTIONS(1553), - [anon_sym_string] = ACTIONS(1553), - [anon_sym_symbol] = ACTIONS(1553), - [anon_sym_interface] = ACTIONS(1553), - [anon_sym_extends] = ACTIONS(1553), - [anon_sym_enum] = ACTIONS(1553), - [sym_readonly] = ACTIONS(1553), + [anon_sym_BQUOTE] = ACTIONS(1551), + [sym_number] = ACTIONS(1551), + [sym_this] = ACTIONS(1553), + [sym_super] = ACTIONS(1553), + [sym_true] = ACTIONS(1553), + [sym_false] = ACTIONS(1553), + [sym_null] = ACTIONS(1553), + [sym_undefined] = ACTIONS(1553), + [anon_sym_AT] = ACTIONS(1551), + [anon_sym_static] = ACTIONS(1553), + [anon_sym_abstract] = ACTIONS(1553), + [anon_sym_get] = ACTIONS(1553), + [anon_sym_set] = ACTIONS(1553), + [anon_sym_declare] = ACTIONS(1553), + [anon_sym_public] = ACTIONS(1553), + [anon_sym_private] = ACTIONS(1553), + [anon_sym_protected] = ACTIONS(1553), + [anon_sym_module] = ACTIONS(1553), + [anon_sym_any] = ACTIONS(1553), + [anon_sym_number] = ACTIONS(1553), + [anon_sym_boolean] = ACTIONS(1553), + [anon_sym_string] = ACTIONS(1553), + [anon_sym_symbol] = ACTIONS(1553), + [anon_sym_interface] = ACTIONS(1553), + [anon_sym_extends] = ACTIONS(1553), + [anon_sym_enum] = ACTIONS(1553), + [sym_readonly] = ACTIONS(1553), + }, + [435] = { + [ts_builtin_sym_end] = ACTIONS(1185), + [sym_identifier] = ACTIONS(1187), + [anon_sym_export] = ACTIONS(1187), + [anon_sym_default] = ACTIONS(1187), + [anon_sym_EQ] = ACTIONS(1187), + [anon_sym_namespace] = ACTIONS(1187), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_COMMA] = ACTIONS(1185), + [anon_sym_RBRACE] = ACTIONS(1185), + [anon_sym_type] = ACTIONS(1187), + [anon_sym_typeof] = ACTIONS(1187), + [anon_sym_import] = ACTIONS(1187), + [anon_sym_var] = ACTIONS(1187), + [anon_sym_let] = ACTIONS(1187), + [anon_sym_const] = ACTIONS(1187), + [anon_sym_BANG] = ACTIONS(1185), + [anon_sym_else] = ACTIONS(1187), + [anon_sym_if] = ACTIONS(1187), + [anon_sym_switch] = ACTIONS(1187), + [anon_sym_for] = ACTIONS(1187), + [anon_sym_LPAREN] = ACTIONS(1185), + [anon_sym_RPAREN] = ACTIONS(1185), + [anon_sym_await] = ACTIONS(1187), + [anon_sym_while] = ACTIONS(1187), + [anon_sym_do] = ACTIONS(1187), + [anon_sym_try] = ACTIONS(1187), + [anon_sym_with] = ACTIONS(1187), + [anon_sym_break] = ACTIONS(1187), + [anon_sym_continue] = ACTIONS(1187), + [anon_sym_debugger] = ACTIONS(1187), + [anon_sym_return] = ACTIONS(1187), + [anon_sym_throw] = ACTIONS(1187), + [anon_sym_SEMI] = ACTIONS(1185), + [anon_sym_COLON] = ACTIONS(1185), + [anon_sym_case] = ACTIONS(1187), + [anon_sym_yield] = ACTIONS(1187), + [anon_sym_LBRACK] = ACTIONS(1185), + [anon_sym_RBRACK] = ACTIONS(1185), + [anon_sym_LT] = ACTIONS(1185), + [anon_sym_GT] = ACTIONS(1185), + [anon_sym_SLASH] = ACTIONS(1187), + [anon_sym_class] = ACTIONS(1187), + [anon_sym_async] = ACTIONS(1187), + [anon_sym_function] = ACTIONS(1187), + [anon_sym_EQ_GT] = ACTIONS(1185), + [anon_sym_new] = ACTIONS(1187), + [anon_sym_QMARK] = ACTIONS(1185), + [anon_sym_AMP] = ACTIONS(1185), + [anon_sym_PIPE] = ACTIONS(1185), + [anon_sym_PLUS] = ACTIONS(1187), + [anon_sym_DASH] = ACTIONS(1187), + [anon_sym_TILDE] = ACTIONS(1185), + [anon_sym_void] = ACTIONS(1187), + [anon_sym_delete] = ACTIONS(1187), + [anon_sym_PLUS_PLUS] = ACTIONS(1185), + [anon_sym_DASH_DASH] = ACTIONS(1185), + [anon_sym_DQUOTE] = ACTIONS(1185), + [anon_sym_SQUOTE] = ACTIONS(1185), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1185), + [sym_number] = ACTIONS(1185), + [sym_this] = ACTIONS(1187), + [sym_super] = ACTIONS(1187), + [sym_true] = ACTIONS(1187), + [sym_false] = ACTIONS(1187), + [sym_null] = ACTIONS(1187), + [sym_undefined] = ACTIONS(1187), + [anon_sym_AT] = ACTIONS(1185), + [anon_sym_static] = ACTIONS(1187), + [anon_sym_abstract] = ACTIONS(1187), + [anon_sym_get] = ACTIONS(1187), + [anon_sym_set] = ACTIONS(1187), + [anon_sym_declare] = ACTIONS(1187), + [anon_sym_public] = ACTIONS(1187), + [anon_sym_private] = ACTIONS(1187), + [anon_sym_protected] = ACTIONS(1187), + [anon_sym_module] = ACTIONS(1187), + [anon_sym_any] = ACTIONS(1187), + [anon_sym_number] = ACTIONS(1187), + [anon_sym_boolean] = ACTIONS(1187), + [anon_sym_string] = ACTIONS(1187), + [anon_sym_symbol] = ACTIONS(1187), + [anon_sym_interface] = ACTIONS(1187), + [anon_sym_extends] = ACTIONS(1187), + [anon_sym_enum] = ACTIONS(1187), + [sym_readonly] = ACTIONS(1187), }, - [435] = { + [436] = { [ts_builtin_sym_end] = ACTIONS(1555), [sym_identifier] = ACTIONS(1557), [anon_sym_export] = ACTIONS(1557), @@ -52184,7 +52326,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(1557), [sym_readonly] = ACTIONS(1557), }, - [436] = { + [437] = { [ts_builtin_sym_end] = ACTIONS(1559), [sym_identifier] = ACTIONS(1561), [anon_sym_export] = ACTIONS(1561), @@ -52221,7 +52363,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON] = ACTIONS(1559), [anon_sym_case] = ACTIONS(1561), [anon_sym_yield] = ACTIONS(1561), - [anon_sym_LBRACK] = ACTIONS(1563), + [anon_sym_LBRACK] = ACTIONS(1559), [anon_sym_RBRACK] = ACTIONS(1559), [anon_sym_LT] = ACTIONS(1559), [anon_sym_GT] = ACTIONS(1559), @@ -52232,8 +52374,8 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(1559), [anon_sym_new] = ACTIONS(1561), [anon_sym_QMARK] = ACTIONS(1559), - [anon_sym_AMP] = ACTIONS(1563), - [anon_sym_PIPE] = ACTIONS(1563), + [anon_sym_AMP] = ACTIONS(1559), + [anon_sym_PIPE] = ACTIONS(1559), [anon_sym_PLUS] = ACTIONS(1561), [anon_sym_DASH] = ACTIONS(1561), [anon_sym_TILDE] = ACTIONS(1559), @@ -52268,11 +52410,99 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(1561), [anon_sym_symbol] = ACTIONS(1561), [anon_sym_interface] = ACTIONS(1561), - [anon_sym_extends] = ACTIONS(1565), + [anon_sym_extends] = ACTIONS(1561), [anon_sym_enum] = ACTIONS(1561), [sym_readonly] = ACTIONS(1561), }, - [437] = { + [438] = { + [ts_builtin_sym_end] = ACTIONS(1563), + [sym_identifier] = ACTIONS(1565), + [anon_sym_export] = ACTIONS(1565), + [anon_sym_default] = ACTIONS(1565), + [anon_sym_EQ] = ACTIONS(1565), + [anon_sym_namespace] = ACTIONS(1565), + [anon_sym_LBRACE] = ACTIONS(1563), + [anon_sym_COMMA] = ACTIONS(1563), + [anon_sym_RBRACE] = ACTIONS(1563), + [anon_sym_type] = ACTIONS(1565), + [anon_sym_typeof] = ACTIONS(1565), + [anon_sym_import] = ACTIONS(1565), + [anon_sym_var] = ACTIONS(1565), + [anon_sym_let] = ACTIONS(1565), + [anon_sym_const] = ACTIONS(1565), + [anon_sym_BANG] = ACTIONS(1563), + [anon_sym_else] = ACTIONS(1565), + [anon_sym_if] = ACTIONS(1565), + [anon_sym_switch] = ACTIONS(1565), + [anon_sym_for] = ACTIONS(1565), + [anon_sym_LPAREN] = ACTIONS(1563), + [anon_sym_RPAREN] = ACTIONS(1563), + [anon_sym_await] = ACTIONS(1565), + [anon_sym_while] = ACTIONS(1565), + [anon_sym_do] = ACTIONS(1565), + [anon_sym_try] = ACTIONS(1565), + [anon_sym_with] = ACTIONS(1565), + [anon_sym_break] = ACTIONS(1565), + [anon_sym_continue] = ACTIONS(1565), + [anon_sym_debugger] = ACTIONS(1565), + [anon_sym_return] = ACTIONS(1565), + [anon_sym_throw] = ACTIONS(1565), + [anon_sym_SEMI] = ACTIONS(1563), + [anon_sym_COLON] = ACTIONS(1563), + [anon_sym_case] = ACTIONS(1565), + [anon_sym_yield] = ACTIONS(1565), + [anon_sym_LBRACK] = ACTIONS(1563), + [anon_sym_RBRACK] = ACTIONS(1563), + [anon_sym_LT] = ACTIONS(1563), + [anon_sym_GT] = ACTIONS(1563), + [anon_sym_SLASH] = ACTIONS(1565), + [anon_sym_class] = ACTIONS(1565), + [anon_sym_async] = ACTIONS(1565), + [anon_sym_function] = ACTIONS(1565), + [anon_sym_EQ_GT] = ACTIONS(1563), + [anon_sym_new] = ACTIONS(1565), + [anon_sym_QMARK] = ACTIONS(1563), + [anon_sym_AMP] = ACTIONS(1563), + [anon_sym_PIPE] = ACTIONS(1563), + [anon_sym_PLUS] = ACTIONS(1565), + [anon_sym_DASH] = ACTIONS(1565), + [anon_sym_TILDE] = ACTIONS(1563), + [anon_sym_void] = ACTIONS(1565), + [anon_sym_delete] = ACTIONS(1565), + [anon_sym_PLUS_PLUS] = ACTIONS(1563), + [anon_sym_DASH_DASH] = ACTIONS(1563), + [anon_sym_DQUOTE] = ACTIONS(1563), + [anon_sym_SQUOTE] = ACTIONS(1563), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1563), + [sym_number] = ACTIONS(1563), + [sym_this] = ACTIONS(1565), + [sym_super] = ACTIONS(1565), + [sym_true] = ACTIONS(1565), + [sym_false] = ACTIONS(1565), + [sym_null] = ACTIONS(1565), + [sym_undefined] = ACTIONS(1565), + [anon_sym_AT] = ACTIONS(1563), + [anon_sym_static] = ACTIONS(1565), + [anon_sym_abstract] = ACTIONS(1565), + [anon_sym_get] = ACTIONS(1565), + [anon_sym_set] = ACTIONS(1565), + [anon_sym_declare] = ACTIONS(1565), + [anon_sym_public] = ACTIONS(1565), + [anon_sym_private] = ACTIONS(1565), + [anon_sym_protected] = ACTIONS(1565), + [anon_sym_module] = ACTIONS(1565), + [anon_sym_any] = ACTIONS(1565), + [anon_sym_number] = ACTIONS(1565), + [anon_sym_boolean] = ACTIONS(1565), + [anon_sym_string] = ACTIONS(1565), + [anon_sym_symbol] = ACTIONS(1565), + [anon_sym_interface] = ACTIONS(1565), + [anon_sym_extends] = ACTIONS(1565), + [anon_sym_enum] = ACTIONS(1565), + [sym_readonly] = ACTIONS(1565), + }, + [439] = { [ts_builtin_sym_end] = ACTIONS(1567), [sym_identifier] = ACTIONS(1569), [anon_sym_export] = ACTIONS(1569), @@ -52360,7 +52590,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(1569), [sym_readonly] = ACTIONS(1569), }, - [438] = { + [440] = { [ts_builtin_sym_end] = ACTIONS(1571), [sym_identifier] = ACTIONS(1573), [anon_sym_export] = ACTIONS(1573), @@ -52448,7 +52678,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(1573), [sym_readonly] = ACTIONS(1573), }, - [439] = { + [441] = { [ts_builtin_sym_end] = ACTIONS(1575), [sym_identifier] = ACTIONS(1577), [anon_sym_export] = ACTIONS(1577), @@ -52536,7 +52766,95 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(1577), [sym_readonly] = ACTIONS(1577), }, - [440] = { + [442] = { + [ts_builtin_sym_end] = ACTIONS(999), + [sym_identifier] = ACTIONS(1001), + [anon_sym_export] = ACTIONS(1001), + [anon_sym_default] = ACTIONS(1001), + [anon_sym_EQ] = ACTIONS(1001), + [anon_sym_namespace] = ACTIONS(1001), + [anon_sym_LBRACE] = ACTIONS(999), + [anon_sym_COMMA] = ACTIONS(999), + [anon_sym_RBRACE] = ACTIONS(999), + [anon_sym_type] = ACTIONS(1001), + [anon_sym_typeof] = ACTIONS(1001), + [anon_sym_import] = ACTIONS(1001), + [anon_sym_var] = ACTIONS(1001), + [anon_sym_let] = ACTIONS(1001), + [anon_sym_const] = ACTIONS(1001), + [anon_sym_BANG] = ACTIONS(999), + [anon_sym_else] = ACTIONS(1001), + [anon_sym_if] = ACTIONS(1001), + [anon_sym_switch] = ACTIONS(1001), + [anon_sym_for] = ACTIONS(1001), + [anon_sym_LPAREN] = ACTIONS(999), + [anon_sym_RPAREN] = ACTIONS(999), + [anon_sym_await] = ACTIONS(1001), + [anon_sym_while] = ACTIONS(1001), + [anon_sym_do] = ACTIONS(1001), + [anon_sym_try] = ACTIONS(1001), + [anon_sym_with] = ACTIONS(1001), + [anon_sym_break] = ACTIONS(1001), + [anon_sym_continue] = ACTIONS(1001), + [anon_sym_debugger] = ACTIONS(1001), + [anon_sym_return] = ACTIONS(1001), + [anon_sym_throw] = ACTIONS(1001), + [anon_sym_SEMI] = ACTIONS(999), + [anon_sym_COLON] = ACTIONS(999), + [anon_sym_case] = ACTIONS(1001), + [anon_sym_yield] = ACTIONS(1001), + [anon_sym_LBRACK] = ACTIONS(999), + [anon_sym_RBRACK] = ACTIONS(999), + [anon_sym_LT] = ACTIONS(999), + [anon_sym_GT] = ACTIONS(999), + [anon_sym_SLASH] = ACTIONS(1001), + [anon_sym_class] = ACTIONS(1001), + [anon_sym_async] = ACTIONS(1001), + [anon_sym_function] = ACTIONS(1001), + [anon_sym_EQ_GT] = ACTIONS(999), + [anon_sym_new] = ACTIONS(1001), + [anon_sym_QMARK] = ACTIONS(999), + [anon_sym_AMP] = ACTIONS(999), + [anon_sym_PIPE] = ACTIONS(999), + [anon_sym_PLUS] = ACTIONS(1001), + [anon_sym_DASH] = ACTIONS(1001), + [anon_sym_TILDE] = ACTIONS(999), + [anon_sym_void] = ACTIONS(1001), + [anon_sym_delete] = ACTIONS(1001), + [anon_sym_PLUS_PLUS] = ACTIONS(999), + [anon_sym_DASH_DASH] = ACTIONS(999), + [anon_sym_DQUOTE] = ACTIONS(999), + [anon_sym_SQUOTE] = ACTIONS(999), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(999), + [sym_number] = ACTIONS(999), + [sym_this] = ACTIONS(1001), + [sym_super] = ACTIONS(1001), + [sym_true] = ACTIONS(1001), + [sym_false] = ACTIONS(1001), + [sym_null] = ACTIONS(1001), + [sym_undefined] = ACTIONS(1001), + [anon_sym_AT] = ACTIONS(999), + [anon_sym_static] = ACTIONS(1001), + [anon_sym_abstract] = ACTIONS(1001), + [anon_sym_get] = ACTIONS(1001), + [anon_sym_set] = ACTIONS(1001), + [anon_sym_declare] = ACTIONS(1001), + [anon_sym_public] = ACTIONS(1001), + [anon_sym_private] = ACTIONS(1001), + [anon_sym_protected] = ACTIONS(1001), + [anon_sym_module] = ACTIONS(1001), + [anon_sym_any] = ACTIONS(1001), + [anon_sym_number] = ACTIONS(1001), + [anon_sym_boolean] = ACTIONS(1001), + [anon_sym_string] = ACTIONS(1001), + [anon_sym_symbol] = ACTIONS(1001), + [anon_sym_interface] = ACTIONS(1001), + [anon_sym_extends] = ACTIONS(1001), + [anon_sym_enum] = ACTIONS(1001), + [sym_readonly] = ACTIONS(1001), + }, + [443] = { [ts_builtin_sym_end] = ACTIONS(1579), [sym_identifier] = ACTIONS(1581), [anon_sym_export] = ACTIONS(1581), @@ -52573,7 +52891,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON] = ACTIONS(1579), [anon_sym_case] = ACTIONS(1581), [anon_sym_yield] = ACTIONS(1581), - [anon_sym_LBRACK] = ACTIONS(1579), + [anon_sym_LBRACK] = ACTIONS(1583), [anon_sym_RBRACK] = ACTIONS(1579), [anon_sym_LT] = ACTIONS(1579), [anon_sym_GT] = ACTIONS(1579), @@ -52584,8 +52902,8 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(1579), [anon_sym_new] = ACTIONS(1581), [anon_sym_QMARK] = ACTIONS(1579), - [anon_sym_AMP] = ACTIONS(1579), - [anon_sym_PIPE] = ACTIONS(1579), + [anon_sym_AMP] = ACTIONS(1583), + [anon_sym_PIPE] = ACTIONS(1583), [anon_sym_PLUS] = ACTIONS(1581), [anon_sym_DASH] = ACTIONS(1581), [anon_sym_TILDE] = ACTIONS(1579), @@ -52620,99 +52938,11 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(1581), [anon_sym_symbol] = ACTIONS(1581), [anon_sym_interface] = ACTIONS(1581), - [anon_sym_extends] = ACTIONS(1581), + [anon_sym_extends] = ACTIONS(1585), [anon_sym_enum] = ACTIONS(1581), [sym_readonly] = ACTIONS(1581), }, - [441] = { - [ts_builtin_sym_end] = ACTIONS(1583), - [sym_identifier] = ACTIONS(1585), - [anon_sym_export] = ACTIONS(1585), - [anon_sym_default] = ACTIONS(1585), - [anon_sym_EQ] = ACTIONS(1585), - [anon_sym_namespace] = ACTIONS(1585), - [anon_sym_LBRACE] = ACTIONS(1583), - [anon_sym_COMMA] = ACTIONS(1583), - [anon_sym_RBRACE] = ACTIONS(1583), - [anon_sym_type] = ACTIONS(1585), - [anon_sym_typeof] = ACTIONS(1585), - [anon_sym_import] = ACTIONS(1585), - [anon_sym_var] = ACTIONS(1585), - [anon_sym_let] = ACTIONS(1585), - [anon_sym_const] = ACTIONS(1585), - [anon_sym_BANG] = ACTIONS(1583), - [anon_sym_else] = ACTIONS(1585), - [anon_sym_if] = ACTIONS(1585), - [anon_sym_switch] = ACTIONS(1585), - [anon_sym_for] = ACTIONS(1585), - [anon_sym_LPAREN] = ACTIONS(1583), - [anon_sym_RPAREN] = ACTIONS(1583), - [anon_sym_await] = ACTIONS(1585), - [anon_sym_while] = ACTIONS(1585), - [anon_sym_do] = ACTIONS(1585), - [anon_sym_try] = ACTIONS(1585), - [anon_sym_with] = ACTIONS(1585), - [anon_sym_break] = ACTIONS(1585), - [anon_sym_continue] = ACTIONS(1585), - [anon_sym_debugger] = ACTIONS(1585), - [anon_sym_return] = ACTIONS(1585), - [anon_sym_throw] = ACTIONS(1585), - [anon_sym_SEMI] = ACTIONS(1583), - [anon_sym_COLON] = ACTIONS(1583), - [anon_sym_case] = ACTIONS(1585), - [anon_sym_yield] = ACTIONS(1585), - [anon_sym_LBRACK] = ACTIONS(1583), - [anon_sym_RBRACK] = ACTIONS(1583), - [anon_sym_LT] = ACTIONS(1583), - [anon_sym_GT] = ACTIONS(1583), - [anon_sym_SLASH] = ACTIONS(1585), - [anon_sym_class] = ACTIONS(1585), - [anon_sym_async] = ACTIONS(1585), - [anon_sym_function] = ACTIONS(1585), - [anon_sym_EQ_GT] = ACTIONS(1583), - [anon_sym_new] = ACTIONS(1585), - [anon_sym_QMARK] = ACTIONS(1583), - [anon_sym_AMP] = ACTIONS(1583), - [anon_sym_PIPE] = ACTIONS(1583), - [anon_sym_PLUS] = ACTIONS(1585), - [anon_sym_DASH] = ACTIONS(1585), - [anon_sym_TILDE] = ACTIONS(1583), - [anon_sym_void] = ACTIONS(1585), - [anon_sym_delete] = ACTIONS(1585), - [anon_sym_PLUS_PLUS] = ACTIONS(1583), - [anon_sym_DASH_DASH] = ACTIONS(1583), - [anon_sym_DQUOTE] = ACTIONS(1583), - [anon_sym_SQUOTE] = ACTIONS(1583), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1583), - [sym_number] = ACTIONS(1583), - [sym_this] = ACTIONS(1585), - [sym_super] = ACTIONS(1585), - [sym_true] = ACTIONS(1585), - [sym_false] = ACTIONS(1585), - [sym_null] = ACTIONS(1585), - [sym_undefined] = ACTIONS(1585), - [anon_sym_AT] = ACTIONS(1583), - [anon_sym_static] = ACTIONS(1585), - [anon_sym_abstract] = ACTIONS(1585), - [anon_sym_get] = ACTIONS(1585), - [anon_sym_set] = ACTIONS(1585), - [anon_sym_declare] = ACTIONS(1585), - [anon_sym_public] = ACTIONS(1585), - [anon_sym_private] = ACTIONS(1585), - [anon_sym_protected] = ACTIONS(1585), - [anon_sym_module] = ACTIONS(1585), - [anon_sym_any] = ACTIONS(1585), - [anon_sym_number] = ACTIONS(1585), - [anon_sym_boolean] = ACTIONS(1585), - [anon_sym_string] = ACTIONS(1585), - [anon_sym_symbol] = ACTIONS(1585), - [anon_sym_interface] = ACTIONS(1585), - [anon_sym_extends] = ACTIONS(1585), - [anon_sym_enum] = ACTIONS(1585), - [sym_readonly] = ACTIONS(1585), - }, - [442] = { + [444] = { [ts_builtin_sym_end] = ACTIONS(1587), [sym_identifier] = ACTIONS(1589), [anon_sym_export] = ACTIONS(1589), @@ -52800,95 +53030,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(1589), [sym_readonly] = ACTIONS(1589), }, - [443] = { - [ts_builtin_sym_end] = ACTIONS(991), - [sym_identifier] = ACTIONS(993), - [anon_sym_export] = ACTIONS(993), - [anon_sym_default] = ACTIONS(993), - [anon_sym_EQ] = ACTIONS(993), - [anon_sym_namespace] = ACTIONS(993), - [anon_sym_LBRACE] = ACTIONS(991), - [anon_sym_COMMA] = ACTIONS(991), - [anon_sym_RBRACE] = ACTIONS(991), - [anon_sym_type] = ACTIONS(993), - [anon_sym_typeof] = ACTIONS(993), - [anon_sym_import] = ACTIONS(993), - [anon_sym_var] = ACTIONS(993), - [anon_sym_let] = ACTIONS(993), - [anon_sym_const] = ACTIONS(993), - [anon_sym_BANG] = ACTIONS(991), - [anon_sym_else] = ACTIONS(993), - [anon_sym_if] = ACTIONS(993), - [anon_sym_switch] = ACTIONS(993), - [anon_sym_for] = ACTIONS(993), - [anon_sym_LPAREN] = ACTIONS(991), - [anon_sym_RPAREN] = ACTIONS(991), - [anon_sym_await] = ACTIONS(993), - [anon_sym_while] = ACTIONS(993), - [anon_sym_do] = ACTIONS(993), - [anon_sym_try] = ACTIONS(993), - [anon_sym_with] = ACTIONS(993), - [anon_sym_break] = ACTIONS(993), - [anon_sym_continue] = ACTIONS(993), - [anon_sym_debugger] = ACTIONS(993), - [anon_sym_return] = ACTIONS(993), - [anon_sym_throw] = ACTIONS(993), - [anon_sym_SEMI] = ACTIONS(991), - [anon_sym_COLON] = ACTIONS(991), - [anon_sym_case] = ACTIONS(993), - [anon_sym_yield] = ACTIONS(993), - [anon_sym_LBRACK] = ACTIONS(991), - [anon_sym_RBRACK] = ACTIONS(991), - [anon_sym_LT] = ACTIONS(991), - [anon_sym_GT] = ACTIONS(991), - [anon_sym_SLASH] = ACTIONS(993), - [anon_sym_class] = ACTIONS(993), - [anon_sym_async] = ACTIONS(993), - [anon_sym_function] = ACTIONS(993), - [anon_sym_EQ_GT] = ACTIONS(991), - [anon_sym_new] = ACTIONS(993), - [anon_sym_QMARK] = ACTIONS(991), - [anon_sym_AMP] = ACTIONS(991), - [anon_sym_PIPE] = ACTIONS(991), - [anon_sym_PLUS] = ACTIONS(993), - [anon_sym_DASH] = ACTIONS(993), - [anon_sym_TILDE] = ACTIONS(991), - [anon_sym_void] = ACTIONS(993), - [anon_sym_delete] = ACTIONS(993), - [anon_sym_PLUS_PLUS] = ACTIONS(991), - [anon_sym_DASH_DASH] = ACTIONS(991), - [anon_sym_DQUOTE] = ACTIONS(991), - [anon_sym_SQUOTE] = ACTIONS(991), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(991), - [sym_number] = ACTIONS(991), - [sym_this] = ACTIONS(993), - [sym_super] = ACTIONS(993), - [sym_true] = ACTIONS(993), - [sym_false] = ACTIONS(993), - [sym_null] = ACTIONS(993), - [sym_undefined] = ACTIONS(993), - [anon_sym_AT] = ACTIONS(991), - [anon_sym_static] = ACTIONS(993), - [anon_sym_abstract] = ACTIONS(993), - [anon_sym_get] = ACTIONS(993), - [anon_sym_set] = ACTIONS(993), - [anon_sym_declare] = ACTIONS(993), - [anon_sym_public] = ACTIONS(993), - [anon_sym_private] = ACTIONS(993), - [anon_sym_protected] = ACTIONS(993), - [anon_sym_module] = ACTIONS(993), - [anon_sym_any] = ACTIONS(993), - [anon_sym_number] = ACTIONS(993), - [anon_sym_boolean] = ACTIONS(993), - [anon_sym_string] = ACTIONS(993), - [anon_sym_symbol] = ACTIONS(993), - [anon_sym_interface] = ACTIONS(993), - [anon_sym_extends] = ACTIONS(993), - [anon_sym_enum] = ACTIONS(993), - [sym_readonly] = ACTIONS(993), - }, - [444] = { + [445] = { [ts_builtin_sym_end] = ACTIONS(1591), [sym_identifier] = ACTIONS(1593), [anon_sym_export] = ACTIONS(1593), @@ -52976,94 +53118,6 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(1593), [sym_readonly] = ACTIONS(1593), }, - [445] = { - [ts_builtin_sym_end] = ACTIONS(1185), - [sym_identifier] = ACTIONS(1187), - [anon_sym_export] = ACTIONS(1187), - [anon_sym_default] = ACTIONS(1187), - [anon_sym_EQ] = ACTIONS(1187), - [anon_sym_namespace] = ACTIONS(1187), - [anon_sym_LBRACE] = ACTIONS(1185), - [anon_sym_COMMA] = ACTIONS(1185), - [anon_sym_RBRACE] = ACTIONS(1185), - [anon_sym_type] = ACTIONS(1187), - [anon_sym_typeof] = ACTIONS(1187), - [anon_sym_import] = ACTIONS(1187), - [anon_sym_var] = ACTIONS(1187), - [anon_sym_let] = ACTIONS(1187), - [anon_sym_const] = ACTIONS(1187), - [anon_sym_BANG] = ACTIONS(1185), - [anon_sym_else] = ACTIONS(1187), - [anon_sym_if] = ACTIONS(1187), - [anon_sym_switch] = ACTIONS(1187), - [anon_sym_for] = ACTIONS(1187), - [anon_sym_LPAREN] = ACTIONS(1185), - [anon_sym_RPAREN] = ACTIONS(1185), - [anon_sym_await] = ACTIONS(1187), - [anon_sym_while] = ACTIONS(1187), - [anon_sym_do] = ACTIONS(1187), - [anon_sym_try] = ACTIONS(1187), - [anon_sym_with] = ACTIONS(1187), - [anon_sym_break] = ACTIONS(1187), - [anon_sym_continue] = ACTIONS(1187), - [anon_sym_debugger] = ACTIONS(1187), - [anon_sym_return] = ACTIONS(1187), - [anon_sym_throw] = ACTIONS(1187), - [anon_sym_SEMI] = ACTIONS(1185), - [anon_sym_COLON] = ACTIONS(1185), - [anon_sym_case] = ACTIONS(1187), - [anon_sym_yield] = ACTIONS(1187), - [anon_sym_LBRACK] = ACTIONS(1185), - [anon_sym_RBRACK] = ACTIONS(1185), - [anon_sym_LT] = ACTIONS(1185), - [anon_sym_GT] = ACTIONS(1185), - [anon_sym_SLASH] = ACTIONS(1187), - [anon_sym_class] = ACTIONS(1187), - [anon_sym_async] = ACTIONS(1187), - [anon_sym_function] = ACTIONS(1187), - [anon_sym_EQ_GT] = ACTIONS(1185), - [anon_sym_new] = ACTIONS(1187), - [anon_sym_QMARK] = ACTIONS(1185), - [anon_sym_AMP] = ACTIONS(1185), - [anon_sym_PIPE] = ACTIONS(1185), - [anon_sym_PLUS] = ACTIONS(1187), - [anon_sym_DASH] = ACTIONS(1187), - [anon_sym_TILDE] = ACTIONS(1185), - [anon_sym_void] = ACTIONS(1187), - [anon_sym_delete] = ACTIONS(1187), - [anon_sym_PLUS_PLUS] = ACTIONS(1185), - [anon_sym_DASH_DASH] = ACTIONS(1185), - [anon_sym_DQUOTE] = ACTIONS(1185), - [anon_sym_SQUOTE] = ACTIONS(1185), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1185), - [sym_number] = ACTIONS(1185), - [sym_this] = ACTIONS(1187), - [sym_super] = ACTIONS(1187), - [sym_true] = ACTIONS(1187), - [sym_false] = ACTIONS(1187), - [sym_null] = ACTIONS(1187), - [sym_undefined] = ACTIONS(1187), - [anon_sym_AT] = ACTIONS(1185), - [anon_sym_static] = ACTIONS(1187), - [anon_sym_abstract] = ACTIONS(1187), - [anon_sym_get] = ACTIONS(1187), - [anon_sym_set] = ACTIONS(1187), - [anon_sym_declare] = ACTIONS(1187), - [anon_sym_public] = ACTIONS(1187), - [anon_sym_private] = ACTIONS(1187), - [anon_sym_protected] = ACTIONS(1187), - [anon_sym_module] = ACTIONS(1187), - [anon_sym_any] = ACTIONS(1187), - [anon_sym_number] = ACTIONS(1187), - [anon_sym_boolean] = ACTIONS(1187), - [anon_sym_string] = ACTIONS(1187), - [anon_sym_symbol] = ACTIONS(1187), - [anon_sym_interface] = ACTIONS(1187), - [anon_sym_extends] = ACTIONS(1187), - [anon_sym_enum] = ACTIONS(1187), - [sym_readonly] = ACTIONS(1187), - }, [446] = { [ts_builtin_sym_end] = ACTIONS(1595), [sym_identifier] = ACTIONS(1597), @@ -53153,92 +53207,92 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_readonly] = ACTIONS(1597), }, [447] = { - [ts_builtin_sym_end] = ACTIONS(1563), - [sym_identifier] = ACTIONS(1565), - [anon_sym_export] = ACTIONS(1565), - [anon_sym_default] = ACTIONS(1565), - [anon_sym_EQ] = ACTIONS(1565), - [anon_sym_namespace] = ACTIONS(1565), - [anon_sym_LBRACE] = ACTIONS(1563), - [anon_sym_COMMA] = ACTIONS(1563), - [anon_sym_RBRACE] = ACTIONS(1563), - [anon_sym_type] = ACTIONS(1565), - [anon_sym_typeof] = ACTIONS(1565), - [anon_sym_import] = ACTIONS(1565), - [anon_sym_var] = ACTIONS(1565), - [anon_sym_let] = ACTIONS(1565), - [anon_sym_const] = ACTIONS(1565), - [anon_sym_BANG] = ACTIONS(1563), - [anon_sym_else] = ACTIONS(1565), - [anon_sym_if] = ACTIONS(1565), - [anon_sym_switch] = ACTIONS(1565), - [anon_sym_for] = ACTIONS(1565), - [anon_sym_LPAREN] = ACTIONS(1563), - [anon_sym_RPAREN] = ACTIONS(1563), - [anon_sym_await] = ACTIONS(1565), - [anon_sym_while] = ACTIONS(1565), - [anon_sym_do] = ACTIONS(1565), - [anon_sym_try] = ACTIONS(1565), - [anon_sym_with] = ACTIONS(1565), - [anon_sym_break] = ACTIONS(1565), - [anon_sym_continue] = ACTIONS(1565), - [anon_sym_debugger] = ACTIONS(1565), - [anon_sym_return] = ACTIONS(1565), - [anon_sym_throw] = ACTIONS(1565), - [anon_sym_SEMI] = ACTIONS(1563), - [anon_sym_COLON] = ACTIONS(1563), - [anon_sym_case] = ACTIONS(1565), - [anon_sym_yield] = ACTIONS(1565), - [anon_sym_LBRACK] = ACTIONS(1563), - [anon_sym_RBRACK] = ACTIONS(1563), - [anon_sym_LT] = ACTIONS(1563), - [anon_sym_GT] = ACTIONS(1563), - [anon_sym_SLASH] = ACTIONS(1565), - [anon_sym_class] = ACTIONS(1565), - [anon_sym_async] = ACTIONS(1565), - [anon_sym_function] = ACTIONS(1565), - [anon_sym_EQ_GT] = ACTIONS(1563), - [anon_sym_new] = ACTIONS(1565), - [anon_sym_QMARK] = ACTIONS(1563), - [anon_sym_AMP] = ACTIONS(1563), - [anon_sym_PIPE] = ACTIONS(1563), - [anon_sym_PLUS] = ACTIONS(1565), - [anon_sym_DASH] = ACTIONS(1565), - [anon_sym_TILDE] = ACTIONS(1563), - [anon_sym_void] = ACTIONS(1565), - [anon_sym_delete] = ACTIONS(1565), - [anon_sym_PLUS_PLUS] = ACTIONS(1563), - [anon_sym_DASH_DASH] = ACTIONS(1563), - [anon_sym_DQUOTE] = ACTIONS(1563), - [anon_sym_SQUOTE] = ACTIONS(1563), + [ts_builtin_sym_end] = ACTIONS(1583), + [sym_identifier] = ACTIONS(1585), + [anon_sym_export] = ACTIONS(1585), + [anon_sym_default] = ACTIONS(1585), + [anon_sym_EQ] = ACTIONS(1585), + [anon_sym_namespace] = ACTIONS(1585), + [anon_sym_LBRACE] = ACTIONS(1583), + [anon_sym_COMMA] = ACTIONS(1583), + [anon_sym_RBRACE] = ACTIONS(1583), + [anon_sym_type] = ACTIONS(1585), + [anon_sym_typeof] = ACTIONS(1585), + [anon_sym_import] = ACTIONS(1585), + [anon_sym_var] = ACTIONS(1585), + [anon_sym_let] = ACTIONS(1585), + [anon_sym_const] = ACTIONS(1585), + [anon_sym_BANG] = ACTIONS(1583), + [anon_sym_else] = ACTIONS(1585), + [anon_sym_if] = ACTIONS(1585), + [anon_sym_switch] = ACTIONS(1585), + [anon_sym_for] = ACTIONS(1585), + [anon_sym_LPAREN] = ACTIONS(1583), + [anon_sym_RPAREN] = ACTIONS(1583), + [anon_sym_await] = ACTIONS(1585), + [anon_sym_while] = ACTIONS(1585), + [anon_sym_do] = ACTIONS(1585), + [anon_sym_try] = ACTIONS(1585), + [anon_sym_with] = ACTIONS(1585), + [anon_sym_break] = ACTIONS(1585), + [anon_sym_continue] = ACTIONS(1585), + [anon_sym_debugger] = ACTIONS(1585), + [anon_sym_return] = ACTIONS(1585), + [anon_sym_throw] = ACTIONS(1585), + [anon_sym_SEMI] = ACTIONS(1583), + [anon_sym_COLON] = ACTIONS(1583), + [anon_sym_case] = ACTIONS(1585), + [anon_sym_yield] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1583), + [anon_sym_RBRACK] = ACTIONS(1583), + [anon_sym_LT] = ACTIONS(1583), + [anon_sym_GT] = ACTIONS(1583), + [anon_sym_SLASH] = ACTIONS(1585), + [anon_sym_class] = ACTIONS(1585), + [anon_sym_async] = ACTIONS(1585), + [anon_sym_function] = ACTIONS(1585), + [anon_sym_EQ_GT] = ACTIONS(1583), + [anon_sym_new] = ACTIONS(1585), + [anon_sym_QMARK] = ACTIONS(1583), + [anon_sym_AMP] = ACTIONS(1583), + [anon_sym_PIPE] = ACTIONS(1583), + [anon_sym_PLUS] = ACTIONS(1585), + [anon_sym_DASH] = ACTIONS(1585), + [anon_sym_TILDE] = ACTIONS(1583), + [anon_sym_void] = ACTIONS(1585), + [anon_sym_delete] = ACTIONS(1585), + [anon_sym_PLUS_PLUS] = ACTIONS(1583), + [anon_sym_DASH_DASH] = ACTIONS(1583), + [anon_sym_DQUOTE] = ACTIONS(1583), + [anon_sym_SQUOTE] = ACTIONS(1583), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1563), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_super] = ACTIONS(1565), - [sym_true] = ACTIONS(1565), - [sym_false] = ACTIONS(1565), - [sym_null] = ACTIONS(1565), - [sym_undefined] = ACTIONS(1565), - [anon_sym_AT] = ACTIONS(1563), - [anon_sym_static] = ACTIONS(1565), - [anon_sym_abstract] = ACTIONS(1565), - [anon_sym_get] = ACTIONS(1565), - [anon_sym_set] = ACTIONS(1565), - [anon_sym_declare] = ACTIONS(1565), - [anon_sym_public] = ACTIONS(1565), - [anon_sym_private] = ACTIONS(1565), - [anon_sym_protected] = ACTIONS(1565), - [anon_sym_module] = ACTIONS(1565), - [anon_sym_any] = ACTIONS(1565), - [anon_sym_number] = ACTIONS(1565), - [anon_sym_boolean] = ACTIONS(1565), - [anon_sym_string] = ACTIONS(1565), - [anon_sym_symbol] = ACTIONS(1565), - [anon_sym_interface] = ACTIONS(1565), - [anon_sym_extends] = ACTIONS(1565), - [anon_sym_enum] = ACTIONS(1565), - [sym_readonly] = ACTIONS(1565), + [anon_sym_BQUOTE] = ACTIONS(1583), + [sym_number] = ACTIONS(1583), + [sym_this] = ACTIONS(1585), + [sym_super] = ACTIONS(1585), + [sym_true] = ACTIONS(1585), + [sym_false] = ACTIONS(1585), + [sym_null] = ACTIONS(1585), + [sym_undefined] = ACTIONS(1585), + [anon_sym_AT] = ACTIONS(1583), + [anon_sym_static] = ACTIONS(1585), + [anon_sym_abstract] = ACTIONS(1585), + [anon_sym_get] = ACTIONS(1585), + [anon_sym_set] = ACTIONS(1585), + [anon_sym_declare] = ACTIONS(1585), + [anon_sym_public] = ACTIONS(1585), + [anon_sym_private] = ACTIONS(1585), + [anon_sym_protected] = ACTIONS(1585), + [anon_sym_module] = ACTIONS(1585), + [anon_sym_any] = ACTIONS(1585), + [anon_sym_number] = ACTIONS(1585), + [anon_sym_boolean] = ACTIONS(1585), + [anon_sym_string] = ACTIONS(1585), + [anon_sym_symbol] = ACTIONS(1585), + [anon_sym_interface] = ACTIONS(1585), + [anon_sym_extends] = ACTIONS(1585), + [anon_sym_enum] = ACTIONS(1585), + [sym_readonly] = ACTIONS(1585), }, [448] = { [ts_builtin_sym_end] = ACTIONS(1599), @@ -53277,7 +53331,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON] = ACTIONS(1599), [anon_sym_case] = ACTIONS(1601), [anon_sym_yield] = ACTIONS(1601), - [anon_sym_LBRACK] = ACTIONS(1541), + [anon_sym_LBRACK] = ACTIONS(1599), [anon_sym_RBRACK] = ACTIONS(1599), [anon_sym_LT] = ACTIONS(1599), [anon_sym_GT] = ACTIONS(1599), @@ -53417,14 +53471,14 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_readonly] = ACTIONS(1605), }, [450] = { - [sym_string] = STATE(2189), - [sym__property_name] = STATE(2189), - [sym_computed_property_name] = STATE(2189), - [aux_sym_object_repeat1] = STATE(2645), + [sym_string] = STATE(2218), + [sym__property_name] = STATE(2218), + [sym_computed_property_name] = STATE(2218), + [aux_sym_object_repeat1] = STATE(2651), [sym_identifier] = ACTIONS(1607), [anon_sym_export] = ACTIONS(1607), - [anon_sym_STAR] = ACTIONS(808), - [anon_sym_EQ] = ACTIONS(1282), + [anon_sym_STAR] = ACTIONS(1388), + [anon_sym_EQ] = ACTIONS(1258), [anon_sym_as] = ACTIONS(808), [anon_sym_namespace] = ACTIONS(1607), [anon_sym_COMMA] = ACTIONS(841), @@ -53435,14 +53489,14 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_in] = ACTIONS(808), [anon_sym_SEMI] = ACTIONS(841), [anon_sym_COLON] = ACTIONS(1216), - [anon_sym_LBRACK] = ACTIONS(1369), + [anon_sym_LBRACK] = ACTIONS(1395), [anon_sym_LT] = ACTIONS(1221), [anon_sym_GT] = ACTIONS(808), [anon_sym_SLASH] = ACTIONS(808), - [anon_sym_DOT] = ACTIONS(1007), - [anon_sym_async] = ACTIONS(1607), - [anon_sym_EQ_GT] = ACTIONS(1009), - [anon_sym_QMARK_DOT] = ACTIONS(1011), + [anon_sym_DOT] = ACTIONS(1017), + [anon_sym_async] = ACTIONS(1609), + [anon_sym_EQ_GT] = ACTIONS(1019), + [anon_sym_QMARK_DOT] = ACTIONS(1021), [anon_sym_PLUS_EQ] = ACTIONS(831), [anon_sym_DASH_EQ] = ACTIONS(831), [anon_sym_STAR_EQ] = ACTIONS(831), @@ -53485,10 +53539,10 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(847), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(841), - [sym_number] = ACTIONS(1377), + [sym_number] = ACTIONS(1403), [anon_sym_static] = ACTIONS(1607), - [anon_sym_get] = ACTIONS(1607), - [anon_sym_set] = ACTIONS(1607), + [anon_sym_get] = ACTIONS(1611), + [anon_sym_set] = ACTIONS(1611), [anon_sym_declare] = ACTIONS(1607), [anon_sym_public] = ACTIONS(1607), [anon_sym_private] = ACTIONS(1607), @@ -53499,36 +53553,36 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_boolean] = ACTIONS(1607), [anon_sym_string] = ACTIONS(1607), [anon_sym_symbol] = ACTIONS(1607), - [sym_readonly] = ACTIONS(1607), + [sym_readonly] = ACTIONS(1613), [sym__automatic_semicolon] = ACTIONS(841), }, [451] = { - [sym_string] = STATE(2189), - [sym__property_name] = STATE(2189), - [sym_computed_property_name] = STATE(2189), - [aux_sym_object_repeat1] = STATE(2772), + [sym_string] = STATE(2218), + [sym__property_name] = STATE(2218), + [sym_computed_property_name] = STATE(2218), + [aux_sym_object_repeat1] = STATE(2641), [sym_identifier] = ACTIONS(1607), [anon_sym_export] = ACTIONS(1607), - [anon_sym_STAR] = ACTIONS(1362), - [anon_sym_EQ] = ACTIONS(1282), + [anon_sym_STAR] = ACTIONS(1388), + [anon_sym_EQ] = ACTIONS(1258), [anon_sym_as] = ACTIONS(808), [anon_sym_namespace] = ACTIONS(1607), [anon_sym_COMMA] = ACTIONS(841), - [anon_sym_RBRACE] = ACTIONS(1244), + [anon_sym_RBRACE] = ACTIONS(1201), [anon_sym_type] = ACTIONS(1607), [anon_sym_BANG] = ACTIONS(808), [anon_sym_LPAREN] = ACTIONS(1213), [anon_sym_in] = ACTIONS(808), [anon_sym_SEMI] = ACTIONS(841), [anon_sym_COLON] = ACTIONS(1216), - [anon_sym_LBRACK] = ACTIONS(1369), + [anon_sym_LBRACK] = ACTIONS(1395), [anon_sym_LT] = ACTIONS(1221), [anon_sym_GT] = ACTIONS(808), [anon_sym_SLASH] = ACTIONS(808), - [anon_sym_DOT] = ACTIONS(1007), + [anon_sym_DOT] = ACTIONS(1017), [anon_sym_async] = ACTIONS(1609), - [anon_sym_EQ_GT] = ACTIONS(1009), - [anon_sym_QMARK_DOT] = ACTIONS(1011), + [anon_sym_EQ_GT] = ACTIONS(1019), + [anon_sym_QMARK_DOT] = ACTIONS(1021), [anon_sym_PLUS_EQ] = ACTIONS(831), [anon_sym_DASH_EQ] = ACTIONS(831), [anon_sym_STAR_EQ] = ACTIONS(831), @@ -53571,7 +53625,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(847), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(841), - [sym_number] = ACTIONS(1377), + [sym_number] = ACTIONS(1403), [anon_sym_static] = ACTIONS(1607), [anon_sym_get] = ACTIONS(1611), [anon_sym_set] = ACTIONS(1611), @@ -53585,36 +53639,36 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_boolean] = ACTIONS(1607), [anon_sym_string] = ACTIONS(1607), [anon_sym_symbol] = ACTIONS(1607), - [sym_readonly] = ACTIONS(1613), + [sym_readonly] = ACTIONS(1607), [sym__automatic_semicolon] = ACTIONS(841), }, [452] = { - [sym_string] = STATE(2189), - [sym__property_name] = STATE(2189), - [sym_computed_property_name] = STATE(2189), - [aux_sym_object_repeat1] = STATE(2772), + [sym_string] = STATE(2218), + [sym__property_name] = STATE(2218), + [sym_computed_property_name] = STATE(2218), + [aux_sym_object_repeat1] = STATE(2651), [sym_identifier] = ACTIONS(1607), [anon_sym_export] = ACTIONS(1607), [anon_sym_STAR] = ACTIONS(808), - [anon_sym_EQ] = ACTIONS(1282), + [anon_sym_EQ] = ACTIONS(1258), [anon_sym_as] = ACTIONS(808), [anon_sym_namespace] = ACTIONS(1607), [anon_sym_COMMA] = ACTIONS(841), - [anon_sym_RBRACE] = ACTIONS(1244), + [anon_sym_RBRACE] = ACTIONS(1242), [anon_sym_type] = ACTIONS(1607), [anon_sym_BANG] = ACTIONS(808), [anon_sym_LPAREN] = ACTIONS(1213), [anon_sym_in] = ACTIONS(808), [anon_sym_SEMI] = ACTIONS(841), [anon_sym_COLON] = ACTIONS(1216), - [anon_sym_LBRACK] = ACTIONS(1369), + [anon_sym_LBRACK] = ACTIONS(1395), [anon_sym_LT] = ACTIONS(1221), [anon_sym_GT] = ACTIONS(808), [anon_sym_SLASH] = ACTIONS(808), - [anon_sym_DOT] = ACTIONS(1007), + [anon_sym_DOT] = ACTIONS(1017), [anon_sym_async] = ACTIONS(1607), - [anon_sym_EQ_GT] = ACTIONS(1009), - [anon_sym_QMARK_DOT] = ACTIONS(1011), + [anon_sym_EQ_GT] = ACTIONS(1019), + [anon_sym_QMARK_DOT] = ACTIONS(1021), [anon_sym_PLUS_EQ] = ACTIONS(831), [anon_sym_DASH_EQ] = ACTIONS(831), [anon_sym_STAR_EQ] = ACTIONS(831), @@ -53657,7 +53711,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(847), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(841), - [sym_number] = ACTIONS(1377), + [sym_number] = ACTIONS(1403), [anon_sym_static] = ACTIONS(1607), [anon_sym_get] = ACTIONS(1607), [anon_sym_set] = ACTIONS(1607), @@ -53675,32 +53729,32 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__automatic_semicolon] = ACTIONS(841), }, [453] = { - [sym_string] = STATE(2189), - [sym__property_name] = STATE(2189), - [sym_computed_property_name] = STATE(2189), - [aux_sym_object_repeat1] = STATE(2645), + [sym_string] = STATE(2218), + [sym__property_name] = STATE(2218), + [sym_computed_property_name] = STATE(2218), + [aux_sym_object_repeat1] = STATE(2757), [sym_identifier] = ACTIONS(1607), [anon_sym_export] = ACTIONS(1607), - [anon_sym_STAR] = ACTIONS(1362), - [anon_sym_EQ] = ACTIONS(1282), + [anon_sym_STAR] = ACTIONS(1388), + [anon_sym_EQ] = ACTIONS(1258), [anon_sym_as] = ACTIONS(808), [anon_sym_namespace] = ACTIONS(1607), [anon_sym_COMMA] = ACTIONS(841), - [anon_sym_RBRACE] = ACTIONS(1242), + [anon_sym_RBRACE] = ACTIONS(1244), [anon_sym_type] = ACTIONS(1607), [anon_sym_BANG] = ACTIONS(808), [anon_sym_LPAREN] = ACTIONS(1213), [anon_sym_in] = ACTIONS(808), [anon_sym_SEMI] = ACTIONS(841), [anon_sym_COLON] = ACTIONS(1216), - [anon_sym_LBRACK] = ACTIONS(1369), + [anon_sym_LBRACK] = ACTIONS(1395), [anon_sym_LT] = ACTIONS(1221), [anon_sym_GT] = ACTIONS(808), [anon_sym_SLASH] = ACTIONS(808), - [anon_sym_DOT] = ACTIONS(1007), + [anon_sym_DOT] = ACTIONS(1017), [anon_sym_async] = ACTIONS(1609), - [anon_sym_EQ_GT] = ACTIONS(1009), - [anon_sym_QMARK_DOT] = ACTIONS(1011), + [anon_sym_EQ_GT] = ACTIONS(1019), + [anon_sym_QMARK_DOT] = ACTIONS(1021), [anon_sym_PLUS_EQ] = ACTIONS(831), [anon_sym_DASH_EQ] = ACTIONS(831), [anon_sym_STAR_EQ] = ACTIONS(831), @@ -53743,7 +53797,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(847), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(841), - [sym_number] = ACTIONS(1377), + [sym_number] = ACTIONS(1403), [anon_sym_static] = ACTIONS(1607), [anon_sym_get] = ACTIONS(1611), [anon_sym_set] = ACTIONS(1611), @@ -53757,36 +53811,36 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_boolean] = ACTIONS(1607), [anon_sym_string] = ACTIONS(1607), [anon_sym_symbol] = ACTIONS(1607), - [sym_readonly] = ACTIONS(1607), + [sym_readonly] = ACTIONS(1613), [sym__automatic_semicolon] = ACTIONS(841), }, [454] = { - [sym_string] = STATE(2189), - [sym__property_name] = STATE(2189), - [sym_computed_property_name] = STATE(2189), - [aux_sym_object_repeat1] = STATE(2739), + [sym_string] = STATE(2218), + [sym__property_name] = STATE(2218), + [sym_computed_property_name] = STATE(2218), + [aux_sym_object_repeat1] = STATE(2651), [sym_identifier] = ACTIONS(1607), [anon_sym_export] = ACTIONS(1607), - [anon_sym_STAR] = ACTIONS(1362), - [anon_sym_EQ] = ACTIONS(1282), + [anon_sym_STAR] = ACTIONS(1388), + [anon_sym_EQ] = ACTIONS(1258), [anon_sym_as] = ACTIONS(808), [anon_sym_namespace] = ACTIONS(1607), [anon_sym_COMMA] = ACTIONS(841), - [anon_sym_RBRACE] = ACTIONS(1201), + [anon_sym_RBRACE] = ACTIONS(1242), [anon_sym_type] = ACTIONS(1607), [anon_sym_BANG] = ACTIONS(808), [anon_sym_LPAREN] = ACTIONS(1213), [anon_sym_in] = ACTIONS(808), [anon_sym_SEMI] = ACTIONS(841), [anon_sym_COLON] = ACTIONS(1216), - [anon_sym_LBRACK] = ACTIONS(1369), + [anon_sym_LBRACK] = ACTIONS(1395), [anon_sym_LT] = ACTIONS(1221), [anon_sym_GT] = ACTIONS(808), [anon_sym_SLASH] = ACTIONS(808), - [anon_sym_DOT] = ACTIONS(1007), + [anon_sym_DOT] = ACTIONS(1017), [anon_sym_async] = ACTIONS(1609), - [anon_sym_EQ_GT] = ACTIONS(1009), - [anon_sym_QMARK_DOT] = ACTIONS(1011), + [anon_sym_EQ_GT] = ACTIONS(1019), + [anon_sym_QMARK_DOT] = ACTIONS(1021), [anon_sym_PLUS_EQ] = ACTIONS(831), [anon_sym_DASH_EQ] = ACTIONS(831), [anon_sym_STAR_EQ] = ACTIONS(831), @@ -53829,7 +53883,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(847), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(841), - [sym_number] = ACTIONS(1377), + [sym_number] = ACTIONS(1403), [anon_sym_static] = ACTIONS(1607), [anon_sym_get] = ACTIONS(1611), [anon_sym_set] = ACTIONS(1611), @@ -53847,100 +53901,14 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__automatic_semicolon] = ACTIONS(841), }, [455] = { - [sym_string] = STATE(2189), - [sym__property_name] = STATE(2189), - [sym_computed_property_name] = STATE(2189), - [aux_sym_object_repeat1] = STATE(2645), - [sym_identifier] = ACTIONS(1607), - [anon_sym_export] = ACTIONS(1607), - [anon_sym_STAR] = ACTIONS(1362), - [anon_sym_EQ] = ACTIONS(1282), - [anon_sym_as] = ACTIONS(808), - [anon_sym_namespace] = ACTIONS(1607), - [anon_sym_COMMA] = ACTIONS(841), - [anon_sym_RBRACE] = ACTIONS(1242), - [anon_sym_type] = ACTIONS(1607), - [anon_sym_BANG] = ACTIONS(808), - [anon_sym_LPAREN] = ACTIONS(1213), - [anon_sym_in] = ACTIONS(808), - [anon_sym_SEMI] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(1216), - [anon_sym_LBRACK] = ACTIONS(1369), - [anon_sym_LT] = ACTIONS(1221), - [anon_sym_GT] = ACTIONS(808), - [anon_sym_SLASH] = ACTIONS(808), - [anon_sym_DOT] = ACTIONS(1007), - [anon_sym_async] = ACTIONS(1609), - [anon_sym_EQ_GT] = ACTIONS(1009), - [anon_sym_QMARK_DOT] = ACTIONS(1011), - [anon_sym_PLUS_EQ] = ACTIONS(831), - [anon_sym_DASH_EQ] = ACTIONS(831), - [anon_sym_STAR_EQ] = ACTIONS(831), - [anon_sym_SLASH_EQ] = ACTIONS(831), - [anon_sym_PERCENT_EQ] = ACTIONS(831), - [anon_sym_CARET_EQ] = ACTIONS(831), - [anon_sym_AMP_EQ] = ACTIONS(831), - [anon_sym_PIPE_EQ] = ACTIONS(831), - [anon_sym_GT_GT_EQ] = ACTIONS(831), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(831), - [anon_sym_LT_LT_EQ] = ACTIONS(831), - [anon_sym_STAR_STAR_EQ] = ACTIONS(831), - [anon_sym_AMP_AMP_EQ] = ACTIONS(831), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(831), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(831), - [anon_sym_QMARK] = ACTIONS(1221), - [anon_sym_AMP_AMP] = ACTIONS(808), - [anon_sym_PIPE_PIPE] = ACTIONS(808), - [anon_sym_GT_GT] = ACTIONS(808), - [anon_sym_GT_GT_GT] = ACTIONS(808), - [anon_sym_LT_LT] = ACTIONS(808), - [anon_sym_AMP] = ACTIONS(808), - [anon_sym_CARET] = ACTIONS(808), - [anon_sym_PIPE] = ACTIONS(808), - [anon_sym_PLUS] = ACTIONS(808), - [anon_sym_DASH] = ACTIONS(808), - [anon_sym_PERCENT] = ACTIONS(808), - [anon_sym_STAR_STAR] = ACTIONS(808), - [anon_sym_LT_EQ] = ACTIONS(841), - [anon_sym_EQ_EQ] = ACTIONS(808), - [anon_sym_EQ_EQ_EQ] = ACTIONS(841), - [anon_sym_BANG_EQ] = ACTIONS(808), - [anon_sym_BANG_EQ_EQ] = ACTIONS(841), - [anon_sym_GT_EQ] = ACTIONS(841), - [anon_sym_QMARK_QMARK] = ACTIONS(808), - [anon_sym_instanceof] = ACTIONS(808), - [anon_sym_PLUS_PLUS] = ACTIONS(841), - [anon_sym_DASH_DASH] = ACTIONS(841), - [anon_sym_DQUOTE] = ACTIONS(845), - [anon_sym_SQUOTE] = ACTIONS(847), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(841), - [sym_number] = ACTIONS(1377), - [anon_sym_static] = ACTIONS(1607), - [anon_sym_get] = ACTIONS(1611), - [anon_sym_set] = ACTIONS(1611), - [anon_sym_declare] = ACTIONS(1607), - [anon_sym_public] = ACTIONS(1607), - [anon_sym_private] = ACTIONS(1607), - [anon_sym_protected] = ACTIONS(1607), - [anon_sym_module] = ACTIONS(1607), - [anon_sym_any] = ACTIONS(1607), - [anon_sym_number] = ACTIONS(1607), - [anon_sym_boolean] = ACTIONS(1607), - [anon_sym_string] = ACTIONS(1607), - [anon_sym_symbol] = ACTIONS(1607), - [sym_readonly] = ACTIONS(1613), - [sym__automatic_semicolon] = ACTIONS(841), - }, - [456] = { - [sym_string] = STATE(2189), - [sym__property_name] = STATE(2189), - [sym_computed_property_name] = STATE(2189), - [aux_sym_object_repeat1] = STATE(2772), + [sym_string] = STATE(2218), + [sym__property_name] = STATE(2218), + [sym_computed_property_name] = STATE(2218), + [aux_sym_object_repeat1] = STATE(2757), [sym_identifier] = ACTIONS(1607), [anon_sym_export] = ACTIONS(1607), - [anon_sym_STAR] = ACTIONS(1362), - [anon_sym_EQ] = ACTIONS(1282), + [anon_sym_STAR] = ACTIONS(1388), + [anon_sym_EQ] = ACTIONS(1258), [anon_sym_as] = ACTIONS(808), [anon_sym_namespace] = ACTIONS(1607), [anon_sym_COMMA] = ACTIONS(841), @@ -53951,14 +53919,14 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_in] = ACTIONS(808), [anon_sym_SEMI] = ACTIONS(841), [anon_sym_COLON] = ACTIONS(1216), - [anon_sym_LBRACK] = ACTIONS(1369), + [anon_sym_LBRACK] = ACTIONS(1395), [anon_sym_LT] = ACTIONS(1221), [anon_sym_GT] = ACTIONS(808), [anon_sym_SLASH] = ACTIONS(808), - [anon_sym_DOT] = ACTIONS(1007), + [anon_sym_DOT] = ACTIONS(1017), [anon_sym_async] = ACTIONS(1609), - [anon_sym_EQ_GT] = ACTIONS(1009), - [anon_sym_QMARK_DOT] = ACTIONS(1011), + [anon_sym_EQ_GT] = ACTIONS(1019), + [anon_sym_QMARK_DOT] = ACTIONS(1021), [anon_sym_PLUS_EQ] = ACTIONS(831), [anon_sym_DASH_EQ] = ACTIONS(831), [anon_sym_STAR_EQ] = ACTIONS(831), @@ -54001,7 +53969,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(847), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(841), - [sym_number] = ACTIONS(1377), + [sym_number] = ACTIONS(1403), [anon_sym_static] = ACTIONS(1607), [anon_sym_get] = ACTIONS(1611), [anon_sym_set] = ACTIONS(1611), @@ -54018,15 +53986,15 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_readonly] = ACTIONS(1607), [sym__automatic_semicolon] = ACTIONS(841), }, - [457] = { - [sym_string] = STATE(2189), - [sym__property_name] = STATE(2189), - [sym_computed_property_name] = STATE(2189), - [aux_sym_object_repeat1] = STATE(2739), + [456] = { + [sym_string] = STATE(2218), + [sym__property_name] = STATE(2218), + [sym_computed_property_name] = STATE(2218), + [aux_sym_object_repeat1] = STATE(2641), [sym_identifier] = ACTIONS(1607), [anon_sym_export] = ACTIONS(1607), [anon_sym_STAR] = ACTIONS(808), - [anon_sym_EQ] = ACTIONS(1282), + [anon_sym_EQ] = ACTIONS(1258), [anon_sym_as] = ACTIONS(808), [anon_sym_namespace] = ACTIONS(1607), [anon_sym_COMMA] = ACTIONS(841), @@ -54037,14 +54005,14 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_in] = ACTIONS(808), [anon_sym_SEMI] = ACTIONS(841), [anon_sym_COLON] = ACTIONS(1216), - [anon_sym_LBRACK] = ACTIONS(1369), + [anon_sym_LBRACK] = ACTIONS(1395), [anon_sym_LT] = ACTIONS(1221), [anon_sym_GT] = ACTIONS(808), [anon_sym_SLASH] = ACTIONS(808), - [anon_sym_DOT] = ACTIONS(1007), + [anon_sym_DOT] = ACTIONS(1017), [anon_sym_async] = ACTIONS(1607), - [anon_sym_EQ_GT] = ACTIONS(1009), - [anon_sym_QMARK_DOT] = ACTIONS(1011), + [anon_sym_EQ_GT] = ACTIONS(1019), + [anon_sym_QMARK_DOT] = ACTIONS(1021), [anon_sym_PLUS_EQ] = ACTIONS(831), [anon_sym_DASH_EQ] = ACTIONS(831), [anon_sym_STAR_EQ] = ACTIONS(831), @@ -54087,7 +54055,93 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(847), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(841), - [sym_number] = ACTIONS(1377), + [sym_number] = ACTIONS(1403), + [anon_sym_static] = ACTIONS(1607), + [anon_sym_get] = ACTIONS(1607), + [anon_sym_set] = ACTIONS(1607), + [anon_sym_declare] = ACTIONS(1607), + [anon_sym_public] = ACTIONS(1607), + [anon_sym_private] = ACTIONS(1607), + [anon_sym_protected] = ACTIONS(1607), + [anon_sym_module] = ACTIONS(1607), + [anon_sym_any] = ACTIONS(1607), + [anon_sym_number] = ACTIONS(1607), + [anon_sym_boolean] = ACTIONS(1607), + [anon_sym_string] = ACTIONS(1607), + [anon_sym_symbol] = ACTIONS(1607), + [sym_readonly] = ACTIONS(1607), + [sym__automatic_semicolon] = ACTIONS(841), + }, + [457] = { + [sym_string] = STATE(2218), + [sym__property_name] = STATE(2218), + [sym_computed_property_name] = STATE(2218), + [aux_sym_object_repeat1] = STATE(2757), + [sym_identifier] = ACTIONS(1607), + [anon_sym_export] = ACTIONS(1607), + [anon_sym_STAR] = ACTIONS(808), + [anon_sym_EQ] = ACTIONS(1258), + [anon_sym_as] = ACTIONS(808), + [anon_sym_namespace] = ACTIONS(1607), + [anon_sym_COMMA] = ACTIONS(841), + [anon_sym_RBRACE] = ACTIONS(1244), + [anon_sym_type] = ACTIONS(1607), + [anon_sym_BANG] = ACTIONS(808), + [anon_sym_LPAREN] = ACTIONS(1213), + [anon_sym_in] = ACTIONS(808), + [anon_sym_SEMI] = ACTIONS(841), + [anon_sym_COLON] = ACTIONS(1216), + [anon_sym_LBRACK] = ACTIONS(1395), + [anon_sym_LT] = ACTIONS(1221), + [anon_sym_GT] = ACTIONS(808), + [anon_sym_SLASH] = ACTIONS(808), + [anon_sym_DOT] = ACTIONS(1017), + [anon_sym_async] = ACTIONS(1607), + [anon_sym_EQ_GT] = ACTIONS(1019), + [anon_sym_QMARK_DOT] = ACTIONS(1021), + [anon_sym_PLUS_EQ] = ACTIONS(831), + [anon_sym_DASH_EQ] = ACTIONS(831), + [anon_sym_STAR_EQ] = ACTIONS(831), + [anon_sym_SLASH_EQ] = ACTIONS(831), + [anon_sym_PERCENT_EQ] = ACTIONS(831), + [anon_sym_CARET_EQ] = ACTIONS(831), + [anon_sym_AMP_EQ] = ACTIONS(831), + [anon_sym_PIPE_EQ] = ACTIONS(831), + [anon_sym_GT_GT_EQ] = ACTIONS(831), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(831), + [anon_sym_LT_LT_EQ] = ACTIONS(831), + [anon_sym_STAR_STAR_EQ] = ACTIONS(831), + [anon_sym_AMP_AMP_EQ] = ACTIONS(831), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(831), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(831), + [anon_sym_QMARK] = ACTIONS(1221), + [anon_sym_AMP_AMP] = ACTIONS(808), + [anon_sym_PIPE_PIPE] = ACTIONS(808), + [anon_sym_GT_GT] = ACTIONS(808), + [anon_sym_GT_GT_GT] = ACTIONS(808), + [anon_sym_LT_LT] = ACTIONS(808), + [anon_sym_AMP] = ACTIONS(808), + [anon_sym_CARET] = ACTIONS(808), + [anon_sym_PIPE] = ACTIONS(808), + [anon_sym_PLUS] = ACTIONS(808), + [anon_sym_DASH] = ACTIONS(808), + [anon_sym_PERCENT] = ACTIONS(808), + [anon_sym_STAR_STAR] = ACTIONS(808), + [anon_sym_LT_EQ] = ACTIONS(841), + [anon_sym_EQ_EQ] = ACTIONS(808), + [anon_sym_EQ_EQ_EQ] = ACTIONS(841), + [anon_sym_BANG_EQ] = ACTIONS(808), + [anon_sym_BANG_EQ_EQ] = ACTIONS(841), + [anon_sym_GT_EQ] = ACTIONS(841), + [anon_sym_QMARK_QMARK] = ACTIONS(808), + [anon_sym_instanceof] = ACTIONS(808), + [anon_sym_PLUS_PLUS] = ACTIONS(841), + [anon_sym_DASH_DASH] = ACTIONS(841), + [anon_sym_DQUOTE] = ACTIONS(845), + [anon_sym_SQUOTE] = ACTIONS(847), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(841), + [sym_number] = ACTIONS(1403), [anon_sym_static] = ACTIONS(1607), [anon_sym_get] = ACTIONS(1607), [anon_sym_set] = ACTIONS(1607), @@ -54105,14 +54159,14 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__automatic_semicolon] = ACTIONS(841), }, [458] = { - [sym_string] = STATE(2189), - [sym__property_name] = STATE(2189), - [sym_computed_property_name] = STATE(2189), - [aux_sym_object_repeat1] = STATE(2739), + [sym_string] = STATE(2218), + [sym__property_name] = STATE(2218), + [sym_computed_property_name] = STATE(2218), + [aux_sym_object_repeat1] = STATE(2641), [sym_identifier] = ACTIONS(1607), [anon_sym_export] = ACTIONS(1607), - [anon_sym_STAR] = ACTIONS(1362), - [anon_sym_EQ] = ACTIONS(1282), + [anon_sym_STAR] = ACTIONS(1388), + [anon_sym_EQ] = ACTIONS(1258), [anon_sym_as] = ACTIONS(808), [anon_sym_namespace] = ACTIONS(1607), [anon_sym_COMMA] = ACTIONS(841), @@ -54123,14 +54177,14 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_in] = ACTIONS(808), [anon_sym_SEMI] = ACTIONS(841), [anon_sym_COLON] = ACTIONS(1216), - [anon_sym_LBRACK] = ACTIONS(1369), + [anon_sym_LBRACK] = ACTIONS(1395), [anon_sym_LT] = ACTIONS(1221), [anon_sym_GT] = ACTIONS(808), [anon_sym_SLASH] = ACTIONS(808), - [anon_sym_DOT] = ACTIONS(1007), + [anon_sym_DOT] = ACTIONS(1017), [anon_sym_async] = ACTIONS(1609), - [anon_sym_EQ_GT] = ACTIONS(1009), - [anon_sym_QMARK_DOT] = ACTIONS(1011), + [anon_sym_EQ_GT] = ACTIONS(1019), + [anon_sym_QMARK_DOT] = ACTIONS(1021), [anon_sym_PLUS_EQ] = ACTIONS(831), [anon_sym_DASH_EQ] = ACTIONS(831), [anon_sym_STAR_EQ] = ACTIONS(831), @@ -54173,7 +54227,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(847), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(841), - [sym_number] = ACTIONS(1377), + [sym_number] = ACTIONS(1403), [anon_sym_static] = ACTIONS(1607), [anon_sym_get] = ACTIONS(1611), [anon_sym_set] = ACTIONS(1611), @@ -54191,15 +54245,15 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__automatic_semicolon] = ACTIONS(841), }, [459] = { - [sym__call_signature] = STATE(3132), - [sym_arguments] = STATE(1147), - [sym_formal_parameters] = STATE(2157), - [sym_type_arguments] = STATE(1089), - [sym_type_parameters] = STATE(2850), + [sym__call_signature] = STATE(3071), + [sym_arguments] = STATE(1158), + [sym_formal_parameters] = STATE(2253), + [sym_type_arguments] = STATE(1049), + [sym_type_parameters] = STATE(2827), [sym_identifier] = ACTIONS(1615), [anon_sym_export] = ACTIONS(1617), [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_EQ] = ACTIONS(1127), + [anon_sym_EQ] = ACTIONS(1115), [anon_sym_as] = ACTIONS(1619), [anon_sym_namespace] = ACTIONS(1617), [anon_sym_COMMA] = ACTIONS(1621), @@ -54276,15 +54330,15 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_readonly] = ACTIONS(1617), }, [460] = { - [sym__call_signature] = STATE(3042), - [sym_arguments] = STATE(1489), - [sym_formal_parameters] = STATE(2157), - [sym_type_arguments] = STATE(1335), - [sym_type_parameters] = STATE(2850), + [sym__call_signature] = STATE(3073), + [sym_arguments] = STATE(1551), + [sym_formal_parameters] = STATE(2253), + [sym_type_arguments] = STATE(1316), + [sym_type_parameters] = STATE(2827), [sym_identifier] = ACTIONS(1629), [anon_sym_export] = ACTIONS(1631), [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_EQ] = ACTIONS(1127), + [anon_sym_EQ] = ACTIONS(1115), [anon_sym_as] = ACTIONS(1619), [anon_sym_namespace] = ACTIONS(1631), [anon_sym_COMMA] = ACTIONS(1621), @@ -54301,8 +54355,8 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(1224), [anon_sym_async] = ACTIONS(1631), [anon_sym_function] = ACTIONS(1633), - [anon_sym_EQ_GT] = ACTIONS(1009), - [anon_sym_QMARK_DOT] = ACTIONS(1011), + [anon_sym_EQ_GT] = ACTIONS(1019), + [anon_sym_QMARK_DOT] = ACTIONS(1021), [anon_sym_PLUS_EQ] = ACTIONS(831), [anon_sym_DASH_EQ] = ACTIONS(831), [anon_sym_STAR_EQ] = ACTIONS(831), @@ -54360,9 +54414,9 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__automatic_semicolon] = ACTIONS(1621), }, [461] = { - [sym__call_signature] = STATE(3132), - [sym_formal_parameters] = STATE(2157), - [sym_type_parameters] = STATE(2850), + [sym__call_signature] = STATE(3071), + [sym_formal_parameters] = STATE(2253), + [sym_type_parameters] = STATE(2827), [sym_identifier] = ACTIONS(1615), [anon_sym_export] = ACTIONS(1617), [anon_sym_STAR] = ACTIONS(808), @@ -54443,15 +54497,15 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_readonly] = ACTIONS(1617), }, [462] = { - [aux_sym_object_repeat1] = STATE(2772), + [aux_sym_object_repeat1] = STATE(2641), [sym_identifier] = ACTIONS(1641), [anon_sym_export] = ACTIONS(1641), [anon_sym_STAR] = ACTIONS(1641), - [anon_sym_EQ] = ACTIONS(1282), + [anon_sym_EQ] = ACTIONS(1258), [anon_sym_as] = ACTIONS(808), [anon_sym_namespace] = ACTIONS(1641), [anon_sym_COMMA] = ACTIONS(841), - [anon_sym_RBRACE] = ACTIONS(1244), + [anon_sym_RBRACE] = ACTIONS(1201), [anon_sym_type] = ACTIONS(1641), [anon_sym_BANG] = ACTIONS(808), [anon_sym_LPAREN] = ACTIONS(1213), @@ -54462,10 +54516,10 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(1221), [anon_sym_GT] = ACTIONS(808), [anon_sym_SLASH] = ACTIONS(808), - [anon_sym_DOT] = ACTIONS(1007), + [anon_sym_DOT] = ACTIONS(1017), [anon_sym_async] = ACTIONS(1641), - [anon_sym_EQ_GT] = ACTIONS(1009), - [anon_sym_QMARK_DOT] = ACTIONS(1011), + [anon_sym_EQ_GT] = ACTIONS(1019), + [anon_sym_QMARK_DOT] = ACTIONS(1021), [anon_sym_PLUS_EQ] = ACTIONS(831), [anon_sym_DASH_EQ] = ACTIONS(831), [anon_sym_STAR_EQ] = ACTIONS(831), @@ -54526,32 +54580,29 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__automatic_semicolon] = ACTIONS(841), }, [463] = { - [sym__call_signature] = STATE(3174), - [sym_arguments] = STATE(1147), - [sym_formal_parameters] = STATE(2157), - [sym_type_arguments] = STATE(1089), - [sym_type_parameters] = STATE(2850), - [sym_identifier] = ACTIONS(1645), - [anon_sym_export] = ACTIONS(1647), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_EQ] = ACTIONS(1127), - [anon_sym_as] = ACTIONS(1619), - [anon_sym_namespace] = ACTIONS(1647), - [anon_sym_LBRACE] = ACTIONS(1621), - [anon_sym_COMMA] = ACTIONS(1621), - [anon_sym_type] = ACTIONS(1647), - [anon_sym_BANG] = ACTIONS(1619), - [anon_sym_LPAREN] = ACTIONS(1621), - [anon_sym_in] = ACTIONS(1619), - [anon_sym_LBRACK] = ACTIONS(1623), - [anon_sym_LT] = ACTIONS(1619), - [anon_sym_GT] = ACTIONS(1619), - [anon_sym_SLASH] = ACTIONS(1619), - [anon_sym_DOT] = ACTIONS(1625), - [anon_sym_async] = ACTIONS(1647), - [anon_sym_function] = ACTIONS(1627), - [anon_sym_EQ_GT] = ACTIONS(1121), - [anon_sym_QMARK_DOT] = ACTIONS(827), + [aux_sym_object_repeat1] = STATE(2757), + [sym_identifier] = ACTIONS(1641), + [anon_sym_export] = ACTIONS(1641), + [anon_sym_STAR] = ACTIONS(1641), + [anon_sym_EQ] = ACTIONS(1258), + [anon_sym_as] = ACTIONS(808), + [anon_sym_namespace] = ACTIONS(1641), + [anon_sym_COMMA] = ACTIONS(841), + [anon_sym_RBRACE] = ACTIONS(1244), + [anon_sym_type] = ACTIONS(1641), + [anon_sym_BANG] = ACTIONS(808), + [anon_sym_LPAREN] = ACTIONS(1213), + [anon_sym_in] = ACTIONS(808), + [anon_sym_SEMI] = ACTIONS(841), + [anon_sym_COLON] = ACTIONS(1216), + [anon_sym_LBRACK] = ACTIONS(1219), + [anon_sym_LT] = ACTIONS(1221), + [anon_sym_GT] = ACTIONS(808), + [anon_sym_SLASH] = ACTIONS(808), + [anon_sym_DOT] = ACTIONS(1017), + [anon_sym_async] = ACTIONS(1641), + [anon_sym_EQ_GT] = ACTIONS(1019), + [anon_sym_QMARK_DOT] = ACTIONS(1021), [anon_sym_PLUS_EQ] = ACTIONS(831), [anon_sym_DASH_EQ] = ACTIONS(831), [anon_sym_STAR_EQ] = ACTIONS(831), @@ -54567,57 +54618,60 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP_EQ] = ACTIONS(831), [anon_sym_PIPE_PIPE_EQ] = ACTIONS(831), [anon_sym_QMARK_QMARK_EQ] = ACTIONS(831), - [anon_sym_QMARK] = ACTIONS(1619), - [anon_sym_AMP_AMP] = ACTIONS(1619), - [anon_sym_PIPE_PIPE] = ACTIONS(1619), - [anon_sym_GT_GT] = ACTIONS(1619), - [anon_sym_GT_GT_GT] = ACTIONS(1619), - [anon_sym_LT_LT] = ACTIONS(1619), - [anon_sym_AMP] = ACTIONS(1619), - [anon_sym_CARET] = ACTIONS(1619), - [anon_sym_PIPE] = ACTIONS(1619), - [anon_sym_PLUS] = ACTIONS(1619), - [anon_sym_DASH] = ACTIONS(1619), - [anon_sym_PERCENT] = ACTIONS(1619), - [anon_sym_STAR_STAR] = ACTIONS(1619), - [anon_sym_LT_EQ] = ACTIONS(1621), - [anon_sym_EQ_EQ] = ACTIONS(1619), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1621), - [anon_sym_BANG_EQ] = ACTIONS(1619), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1621), - [anon_sym_GT_EQ] = ACTIONS(1621), - [anon_sym_QMARK_QMARK] = ACTIONS(1619), - [anon_sym_instanceof] = ACTIONS(1619), - [anon_sym_PLUS_PLUS] = ACTIONS(1621), - [anon_sym_DASH_DASH] = ACTIONS(1621), + [anon_sym_QMARK] = ACTIONS(1221), + [anon_sym_AMP_AMP] = ACTIONS(808), + [anon_sym_PIPE_PIPE] = ACTIONS(808), + [anon_sym_GT_GT] = ACTIONS(808), + [anon_sym_GT_GT_GT] = ACTIONS(808), + [anon_sym_LT_LT] = ACTIONS(808), + [anon_sym_AMP] = ACTIONS(808), + [anon_sym_CARET] = ACTIONS(808), + [anon_sym_PIPE] = ACTIONS(808), + [anon_sym_PLUS] = ACTIONS(808), + [anon_sym_DASH] = ACTIONS(808), + [anon_sym_PERCENT] = ACTIONS(808), + [anon_sym_STAR_STAR] = ACTIONS(808), + [anon_sym_LT_EQ] = ACTIONS(841), + [anon_sym_EQ_EQ] = ACTIONS(808), + [anon_sym_EQ_EQ_EQ] = ACTIONS(841), + [anon_sym_BANG_EQ] = ACTIONS(808), + [anon_sym_BANG_EQ_EQ] = ACTIONS(841), + [anon_sym_GT_EQ] = ACTIONS(841), + [anon_sym_QMARK_QMARK] = ACTIONS(808), + [anon_sym_instanceof] = ACTIONS(808), + [anon_sym_PLUS_PLUS] = ACTIONS(841), + [anon_sym_DASH_DASH] = ACTIONS(841), + [anon_sym_DQUOTE] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1643), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1621), - [anon_sym_static] = ACTIONS(1647), - [anon_sym_get] = ACTIONS(1647), - [anon_sym_set] = ACTIONS(1647), - [anon_sym_declare] = ACTIONS(1647), - [anon_sym_public] = ACTIONS(1647), - [anon_sym_private] = ACTIONS(1647), - [anon_sym_protected] = ACTIONS(1647), - [anon_sym_module] = ACTIONS(1647), - [anon_sym_any] = ACTIONS(1647), - [anon_sym_number] = ACTIONS(1647), - [anon_sym_boolean] = ACTIONS(1647), - [anon_sym_string] = ACTIONS(1647), - [anon_sym_symbol] = ACTIONS(1647), - [anon_sym_implements] = ACTIONS(1619), - [sym_readonly] = ACTIONS(1647), + [anon_sym_BQUOTE] = ACTIONS(841), + [sym_number] = ACTIONS(1643), + [anon_sym_static] = ACTIONS(1641), + [anon_sym_get] = ACTIONS(1641), + [anon_sym_set] = ACTIONS(1641), + [anon_sym_declare] = ACTIONS(1641), + [anon_sym_public] = ACTIONS(1641), + [anon_sym_private] = ACTIONS(1641), + [anon_sym_protected] = ACTIONS(1641), + [anon_sym_module] = ACTIONS(1641), + [anon_sym_any] = ACTIONS(1641), + [anon_sym_number] = ACTIONS(1641), + [anon_sym_boolean] = ACTIONS(1641), + [anon_sym_string] = ACTIONS(1641), + [anon_sym_symbol] = ACTIONS(1641), + [sym_readonly] = ACTIONS(1641), + [sym__automatic_semicolon] = ACTIONS(841), }, [464] = { - [aux_sym_object_repeat1] = STATE(2739), + [aux_sym_object_repeat1] = STATE(2651), [sym_identifier] = ACTIONS(1641), [anon_sym_export] = ACTIONS(1641), [anon_sym_STAR] = ACTIONS(1641), - [anon_sym_EQ] = ACTIONS(1282), + [anon_sym_EQ] = ACTIONS(1258), [anon_sym_as] = ACTIONS(808), [anon_sym_namespace] = ACTIONS(1641), [anon_sym_COMMA] = ACTIONS(841), - [anon_sym_RBRACE] = ACTIONS(1201), + [anon_sym_RBRACE] = ACTIONS(1242), [anon_sym_type] = ACTIONS(1641), [anon_sym_BANG] = ACTIONS(808), [anon_sym_LPAREN] = ACTIONS(1213), @@ -54628,10 +54682,10 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(1221), [anon_sym_GT] = ACTIONS(808), [anon_sym_SLASH] = ACTIONS(808), - [anon_sym_DOT] = ACTIONS(1007), + [anon_sym_DOT] = ACTIONS(1017), [anon_sym_async] = ACTIONS(1641), - [anon_sym_EQ_GT] = ACTIONS(1009), - [anon_sym_QMARK_DOT] = ACTIONS(1011), + [anon_sym_EQ_GT] = ACTIONS(1019), + [anon_sym_QMARK_DOT] = ACTIONS(1021), [anon_sym_PLUS_EQ] = ACTIONS(831), [anon_sym_DASH_EQ] = ACTIONS(831), [anon_sym_STAR_EQ] = ACTIONS(831), @@ -54673,34 +54727,117 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(1643), [anon_sym_SQUOTE] = ACTIONS(1643), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(841), - [sym_number] = ACTIONS(1643), - [anon_sym_static] = ACTIONS(1641), - [anon_sym_get] = ACTIONS(1641), - [anon_sym_set] = ACTIONS(1641), - [anon_sym_declare] = ACTIONS(1641), - [anon_sym_public] = ACTIONS(1641), - [anon_sym_private] = ACTIONS(1641), - [anon_sym_protected] = ACTIONS(1641), - [anon_sym_module] = ACTIONS(1641), - [anon_sym_any] = ACTIONS(1641), - [anon_sym_number] = ACTIONS(1641), - [anon_sym_boolean] = ACTIONS(1641), - [anon_sym_string] = ACTIONS(1641), - [anon_sym_symbol] = ACTIONS(1641), - [sym_readonly] = ACTIONS(1641), - [sym__automatic_semicolon] = ACTIONS(841), + [anon_sym_BQUOTE] = ACTIONS(841), + [sym_number] = ACTIONS(1643), + [anon_sym_static] = ACTIONS(1641), + [anon_sym_get] = ACTIONS(1641), + [anon_sym_set] = ACTIONS(1641), + [anon_sym_declare] = ACTIONS(1641), + [anon_sym_public] = ACTIONS(1641), + [anon_sym_private] = ACTIONS(1641), + [anon_sym_protected] = ACTIONS(1641), + [anon_sym_module] = ACTIONS(1641), + [anon_sym_any] = ACTIONS(1641), + [anon_sym_number] = ACTIONS(1641), + [anon_sym_boolean] = ACTIONS(1641), + [anon_sym_string] = ACTIONS(1641), + [anon_sym_symbol] = ACTIONS(1641), + [sym_readonly] = ACTIONS(1641), + [sym__automatic_semicolon] = ACTIONS(841), + }, + [465] = { + [sym__call_signature] = STATE(3194), + [sym_arguments] = STATE(1158), + [sym_formal_parameters] = STATE(2253), + [sym_type_arguments] = STATE(1049), + [sym_type_parameters] = STATE(2827), + [sym_identifier] = ACTIONS(1645), + [anon_sym_export] = ACTIONS(1647), + [anon_sym_STAR] = ACTIONS(1619), + [anon_sym_EQ] = ACTIONS(1115), + [anon_sym_as] = ACTIONS(1619), + [anon_sym_namespace] = ACTIONS(1647), + [anon_sym_LBRACE] = ACTIONS(1621), + [anon_sym_COMMA] = ACTIONS(1621), + [anon_sym_type] = ACTIONS(1647), + [anon_sym_BANG] = ACTIONS(1619), + [anon_sym_LPAREN] = ACTIONS(1621), + [anon_sym_in] = ACTIONS(1619), + [anon_sym_LBRACK] = ACTIONS(1623), + [anon_sym_LT] = ACTIONS(1619), + [anon_sym_GT] = ACTIONS(1619), + [anon_sym_SLASH] = ACTIONS(1619), + [anon_sym_DOT] = ACTIONS(1625), + [anon_sym_async] = ACTIONS(1647), + [anon_sym_function] = ACTIONS(1627), + [anon_sym_EQ_GT] = ACTIONS(1121), + [anon_sym_QMARK_DOT] = ACTIONS(827), + [anon_sym_PLUS_EQ] = ACTIONS(831), + [anon_sym_DASH_EQ] = ACTIONS(831), + [anon_sym_STAR_EQ] = ACTIONS(831), + [anon_sym_SLASH_EQ] = ACTIONS(831), + [anon_sym_PERCENT_EQ] = ACTIONS(831), + [anon_sym_CARET_EQ] = ACTIONS(831), + [anon_sym_AMP_EQ] = ACTIONS(831), + [anon_sym_PIPE_EQ] = ACTIONS(831), + [anon_sym_GT_GT_EQ] = ACTIONS(831), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(831), + [anon_sym_LT_LT_EQ] = ACTIONS(831), + [anon_sym_STAR_STAR_EQ] = ACTIONS(831), + [anon_sym_AMP_AMP_EQ] = ACTIONS(831), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(831), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(831), + [anon_sym_QMARK] = ACTIONS(1619), + [anon_sym_AMP_AMP] = ACTIONS(1619), + [anon_sym_PIPE_PIPE] = ACTIONS(1619), + [anon_sym_GT_GT] = ACTIONS(1619), + [anon_sym_GT_GT_GT] = ACTIONS(1619), + [anon_sym_LT_LT] = ACTIONS(1619), + [anon_sym_AMP] = ACTIONS(1619), + [anon_sym_CARET] = ACTIONS(1619), + [anon_sym_PIPE] = ACTIONS(1619), + [anon_sym_PLUS] = ACTIONS(1619), + [anon_sym_DASH] = ACTIONS(1619), + [anon_sym_PERCENT] = ACTIONS(1619), + [anon_sym_STAR_STAR] = ACTIONS(1619), + [anon_sym_LT_EQ] = ACTIONS(1621), + [anon_sym_EQ_EQ] = ACTIONS(1619), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1621), + [anon_sym_BANG_EQ] = ACTIONS(1619), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1621), + [anon_sym_GT_EQ] = ACTIONS(1621), + [anon_sym_QMARK_QMARK] = ACTIONS(1619), + [anon_sym_instanceof] = ACTIONS(1619), + [anon_sym_PLUS_PLUS] = ACTIONS(1621), + [anon_sym_DASH_DASH] = ACTIONS(1621), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1621), + [anon_sym_static] = ACTIONS(1647), + [anon_sym_get] = ACTIONS(1647), + [anon_sym_set] = ACTIONS(1647), + [anon_sym_declare] = ACTIONS(1647), + [anon_sym_public] = ACTIONS(1647), + [anon_sym_private] = ACTIONS(1647), + [anon_sym_protected] = ACTIONS(1647), + [anon_sym_module] = ACTIONS(1647), + [anon_sym_any] = ACTIONS(1647), + [anon_sym_number] = ACTIONS(1647), + [anon_sym_boolean] = ACTIONS(1647), + [anon_sym_string] = ACTIONS(1647), + [anon_sym_symbol] = ACTIONS(1647), + [anon_sym_implements] = ACTIONS(1619), + [sym_readonly] = ACTIONS(1647), }, - [465] = { - [sym__call_signature] = STATE(3084), - [sym_arguments] = STATE(1646), - [sym_formal_parameters] = STATE(2157), - [sym_type_arguments] = STATE(1557), - [sym_type_parameters] = STATE(2850), + [466] = { + [sym__call_signature] = STATE(3092), + [sym_arguments] = STATE(1706), + [sym_formal_parameters] = STATE(2253), + [sym_type_arguments] = STATE(1501), + [sym_type_parameters] = STATE(2827), [sym_identifier] = ACTIONS(1649), [anon_sym_export] = ACTIONS(1651), [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_EQ] = ACTIONS(1127), + [anon_sym_EQ] = ACTIONS(1115), [anon_sym_as] = ACTIONS(1619), [anon_sym_namespace] = ACTIONS(1651), [anon_sym_LBRACE] = ACTIONS(1619), @@ -54716,8 +54853,8 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(1655), [anon_sym_async] = ACTIONS(1651), [anon_sym_function] = ACTIONS(1657), - [anon_sym_EQ_GT] = ACTIONS(1137), - [anon_sym_QMARK_DOT] = ACTIONS(1139), + [anon_sym_EQ_GT] = ACTIONS(1145), + [anon_sym_QMARK_DOT] = ACTIONS(1147), [anon_sym_PLUS_EQ] = ACTIONS(831), [anon_sym_DASH_EQ] = ACTIONS(831), [anon_sym_STAR_EQ] = ACTIONS(831), @@ -54774,91 +54911,8 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_readonly] = ACTIONS(1651), [anon_sym_LBRACE_PIPE] = ACTIONS(1621), }, - [466] = { - [aux_sym_object_repeat1] = STATE(2645), - [sym_identifier] = ACTIONS(1641), - [anon_sym_export] = ACTIONS(1641), - [anon_sym_STAR] = ACTIONS(1641), - [anon_sym_EQ] = ACTIONS(1282), - [anon_sym_as] = ACTIONS(808), - [anon_sym_namespace] = ACTIONS(1641), - [anon_sym_COMMA] = ACTIONS(841), - [anon_sym_RBRACE] = ACTIONS(1242), - [anon_sym_type] = ACTIONS(1641), - [anon_sym_BANG] = ACTIONS(808), - [anon_sym_LPAREN] = ACTIONS(1213), - [anon_sym_in] = ACTIONS(808), - [anon_sym_SEMI] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(1216), - [anon_sym_LBRACK] = ACTIONS(1219), - [anon_sym_LT] = ACTIONS(1221), - [anon_sym_GT] = ACTIONS(808), - [anon_sym_SLASH] = ACTIONS(808), - [anon_sym_DOT] = ACTIONS(1007), - [anon_sym_async] = ACTIONS(1641), - [anon_sym_EQ_GT] = ACTIONS(1009), - [anon_sym_QMARK_DOT] = ACTIONS(1011), - [anon_sym_PLUS_EQ] = ACTIONS(831), - [anon_sym_DASH_EQ] = ACTIONS(831), - [anon_sym_STAR_EQ] = ACTIONS(831), - [anon_sym_SLASH_EQ] = ACTIONS(831), - [anon_sym_PERCENT_EQ] = ACTIONS(831), - [anon_sym_CARET_EQ] = ACTIONS(831), - [anon_sym_AMP_EQ] = ACTIONS(831), - [anon_sym_PIPE_EQ] = ACTIONS(831), - [anon_sym_GT_GT_EQ] = ACTIONS(831), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(831), - [anon_sym_LT_LT_EQ] = ACTIONS(831), - [anon_sym_STAR_STAR_EQ] = ACTIONS(831), - [anon_sym_AMP_AMP_EQ] = ACTIONS(831), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(831), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(831), - [anon_sym_QMARK] = ACTIONS(1221), - [anon_sym_AMP_AMP] = ACTIONS(808), - [anon_sym_PIPE_PIPE] = ACTIONS(808), - [anon_sym_GT_GT] = ACTIONS(808), - [anon_sym_GT_GT_GT] = ACTIONS(808), - [anon_sym_LT_LT] = ACTIONS(808), - [anon_sym_AMP] = ACTIONS(808), - [anon_sym_CARET] = ACTIONS(808), - [anon_sym_PIPE] = ACTIONS(808), - [anon_sym_PLUS] = ACTIONS(808), - [anon_sym_DASH] = ACTIONS(808), - [anon_sym_PERCENT] = ACTIONS(808), - [anon_sym_STAR_STAR] = ACTIONS(808), - [anon_sym_LT_EQ] = ACTIONS(841), - [anon_sym_EQ_EQ] = ACTIONS(808), - [anon_sym_EQ_EQ_EQ] = ACTIONS(841), - [anon_sym_BANG_EQ] = ACTIONS(808), - [anon_sym_BANG_EQ_EQ] = ACTIONS(841), - [anon_sym_GT_EQ] = ACTIONS(841), - [anon_sym_QMARK_QMARK] = ACTIONS(808), - [anon_sym_instanceof] = ACTIONS(808), - [anon_sym_PLUS_PLUS] = ACTIONS(841), - [anon_sym_DASH_DASH] = ACTIONS(841), - [anon_sym_DQUOTE] = ACTIONS(1643), - [anon_sym_SQUOTE] = ACTIONS(1643), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(841), - [sym_number] = ACTIONS(1643), - [anon_sym_static] = ACTIONS(1641), - [anon_sym_get] = ACTIONS(1641), - [anon_sym_set] = ACTIONS(1641), - [anon_sym_declare] = ACTIONS(1641), - [anon_sym_public] = ACTIONS(1641), - [anon_sym_private] = ACTIONS(1641), - [anon_sym_protected] = ACTIONS(1641), - [anon_sym_module] = ACTIONS(1641), - [anon_sym_any] = ACTIONS(1641), - [anon_sym_number] = ACTIONS(1641), - [anon_sym_boolean] = ACTIONS(1641), - [anon_sym_string] = ACTIONS(1641), - [anon_sym_symbol] = ACTIONS(1641), - [sym_readonly] = ACTIONS(1641), - [sym__automatic_semicolon] = ACTIONS(841), - }, [467] = { - [sym_type_arguments] = STATE(313), + [sym_type_arguments] = STATE(378), [ts_builtin_sym_end] = ACTIONS(1659), [sym_identifier] = ACTIONS(1661), [anon_sym_export] = ACTIONS(1661), @@ -54940,13 +54994,13 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_readonly] = ACTIONS(1661), }, [468] = { - [sym__call_signature] = STATE(3042), - [sym_formal_parameters] = STATE(2157), - [sym_type_parameters] = STATE(2850), + [sym__call_signature] = STATE(3073), + [sym_formal_parameters] = STATE(2253), + [sym_type_parameters] = STATE(2827), [sym_identifier] = ACTIONS(1629), [anon_sym_export] = ACTIONS(1631), [anon_sym_STAR] = ACTIONS(808), - [anon_sym_EQ] = ACTIONS(1003), + [anon_sym_EQ] = ACTIONS(1013), [anon_sym_as] = ACTIONS(808), [anon_sym_namespace] = ACTIONS(1631), [anon_sym_COMMA] = ACTIONS(841), @@ -54963,8 +55017,8 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(1224), [anon_sym_async] = ACTIONS(1631), [anon_sym_function] = ACTIONS(1633), - [anon_sym_EQ_GT] = ACTIONS(1009), - [anon_sym_QMARK_DOT] = ACTIONS(1011), + [anon_sym_EQ_GT] = ACTIONS(1019), + [anon_sym_QMARK_DOT] = ACTIONS(1021), [anon_sym_PLUS_EQ] = ACTIONS(831), [anon_sym_DASH_EQ] = ACTIONS(831), [anon_sym_STAR_EQ] = ACTIONS(831), @@ -55022,259 +55076,13 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__automatic_semicolon] = ACTIONS(841), }, [469] = { - [sym_type_arguments] = STATE(313), - [ts_builtin_sym_end] = ACTIONS(1670), - [sym_identifier] = ACTIONS(1672), - [anon_sym_export] = ACTIONS(1672), - [anon_sym_default] = ACTIONS(1672), - [anon_sym_namespace] = ACTIONS(1672), - [anon_sym_LBRACE] = ACTIONS(1670), - [anon_sym_RBRACE] = ACTIONS(1670), - [anon_sym_type] = ACTIONS(1672), - [anon_sym_typeof] = ACTIONS(1672), - [anon_sym_import] = ACTIONS(1672), - [anon_sym_var] = ACTIONS(1672), - [anon_sym_let] = ACTIONS(1672), - [anon_sym_const] = ACTIONS(1672), - [anon_sym_BANG] = ACTIONS(1670), - [anon_sym_else] = ACTIONS(1672), - [anon_sym_if] = ACTIONS(1672), - [anon_sym_switch] = ACTIONS(1672), - [anon_sym_for] = ACTIONS(1672), - [anon_sym_LPAREN] = ACTIONS(1670), - [anon_sym_await] = ACTIONS(1672), - [anon_sym_while] = ACTIONS(1672), - [anon_sym_do] = ACTIONS(1672), - [anon_sym_try] = ACTIONS(1672), - [anon_sym_with] = ACTIONS(1672), - [anon_sym_break] = ACTIONS(1672), - [anon_sym_continue] = ACTIONS(1672), - [anon_sym_debugger] = ACTIONS(1672), - [anon_sym_return] = ACTIONS(1672), - [anon_sym_throw] = ACTIONS(1672), - [anon_sym_SEMI] = ACTIONS(1670), - [anon_sym_case] = ACTIONS(1672), - [anon_sym_yield] = ACTIONS(1672), - [anon_sym_LBRACK] = ACTIONS(1670), - [anon_sym_LT] = ACTIONS(1674), - [anon_sym_SLASH] = ACTIONS(1672), - [anon_sym_DOT] = ACTIONS(1663), - [anon_sym_class] = ACTIONS(1672), - [anon_sym_async] = ACTIONS(1672), - [anon_sym_function] = ACTIONS(1672), - [anon_sym_new] = ACTIONS(1672), - [anon_sym_AMP] = ACTIONS(1670), - [anon_sym_PIPE] = ACTIONS(1670), - [anon_sym_PLUS] = ACTIONS(1672), - [anon_sym_DASH] = ACTIONS(1672), - [anon_sym_TILDE] = ACTIONS(1670), - [anon_sym_void] = ACTIONS(1672), - [anon_sym_delete] = ACTIONS(1672), - [anon_sym_PLUS_PLUS] = ACTIONS(1670), - [anon_sym_DASH_DASH] = ACTIONS(1670), - [anon_sym_DQUOTE] = ACTIONS(1670), - [anon_sym_SQUOTE] = ACTIONS(1670), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1670), - [sym_number] = ACTIONS(1670), - [sym_this] = ACTIONS(1672), - [sym_super] = ACTIONS(1672), - [sym_true] = ACTIONS(1672), - [sym_false] = ACTIONS(1672), - [sym_null] = ACTIONS(1672), - [sym_undefined] = ACTIONS(1672), - [anon_sym_AT] = ACTIONS(1670), - [anon_sym_static] = ACTIONS(1672), - [anon_sym_abstract] = ACTIONS(1672), - [anon_sym_get] = ACTIONS(1672), - [anon_sym_set] = ACTIONS(1672), - [anon_sym_declare] = ACTIONS(1672), - [anon_sym_public] = ACTIONS(1672), - [anon_sym_private] = ACTIONS(1672), - [anon_sym_protected] = ACTIONS(1672), - [anon_sym_module] = ACTIONS(1672), - [anon_sym_any] = ACTIONS(1672), - [anon_sym_number] = ACTIONS(1672), - [anon_sym_boolean] = ACTIONS(1672), - [anon_sym_string] = ACTIONS(1672), - [anon_sym_symbol] = ACTIONS(1672), - [anon_sym_interface] = ACTIONS(1672), - [anon_sym_extends] = ACTIONS(1672), - [anon_sym_enum] = ACTIONS(1672), - [sym_readonly] = ACTIONS(1672), - }, - [470] = { - [sym_type_arguments] = STATE(313), - [ts_builtin_sym_end] = ACTIONS(1583), - [sym_identifier] = ACTIONS(1585), - [anon_sym_export] = ACTIONS(1585), - [anon_sym_default] = ACTIONS(1585), - [anon_sym_namespace] = ACTIONS(1585), - [anon_sym_LBRACE] = ACTIONS(1583), - [anon_sym_RBRACE] = ACTIONS(1583), - [anon_sym_type] = ACTIONS(1585), - [anon_sym_typeof] = ACTIONS(1585), - [anon_sym_import] = ACTIONS(1585), - [anon_sym_var] = ACTIONS(1585), - [anon_sym_let] = ACTIONS(1585), - [anon_sym_const] = ACTIONS(1585), - [anon_sym_BANG] = ACTIONS(1583), - [anon_sym_else] = ACTIONS(1585), - [anon_sym_if] = ACTIONS(1585), - [anon_sym_switch] = ACTIONS(1585), - [anon_sym_for] = ACTIONS(1585), - [anon_sym_LPAREN] = ACTIONS(1583), - [anon_sym_await] = ACTIONS(1585), - [anon_sym_while] = ACTIONS(1585), - [anon_sym_do] = ACTIONS(1585), - [anon_sym_try] = ACTIONS(1585), - [anon_sym_with] = ACTIONS(1585), - [anon_sym_break] = ACTIONS(1585), - [anon_sym_continue] = ACTIONS(1585), - [anon_sym_debugger] = ACTIONS(1585), - [anon_sym_return] = ACTIONS(1585), - [anon_sym_throw] = ACTIONS(1585), - [anon_sym_SEMI] = ACTIONS(1583), - [anon_sym_case] = ACTIONS(1585), - [anon_sym_yield] = ACTIONS(1585), - [anon_sym_LBRACK] = ACTIONS(1583), - [anon_sym_LT] = ACTIONS(1583), - [anon_sym_SLASH] = ACTIONS(1585), - [anon_sym_DOT] = ACTIONS(1677), - [anon_sym_class] = ACTIONS(1585), - [anon_sym_async] = ACTIONS(1585), - [anon_sym_function] = ACTIONS(1585), - [anon_sym_new] = ACTIONS(1585), - [anon_sym_AMP] = ACTIONS(1583), - [anon_sym_PIPE] = ACTIONS(1583), - [anon_sym_PLUS] = ACTIONS(1585), - [anon_sym_DASH] = ACTIONS(1585), - [anon_sym_TILDE] = ACTIONS(1583), - [anon_sym_void] = ACTIONS(1585), - [anon_sym_delete] = ACTIONS(1585), - [anon_sym_PLUS_PLUS] = ACTIONS(1583), - [anon_sym_DASH_DASH] = ACTIONS(1583), - [anon_sym_DQUOTE] = ACTIONS(1583), - [anon_sym_SQUOTE] = ACTIONS(1583), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1583), - [sym_number] = ACTIONS(1583), - [sym_this] = ACTIONS(1585), - [sym_super] = ACTIONS(1585), - [sym_true] = ACTIONS(1585), - [sym_false] = ACTIONS(1585), - [sym_null] = ACTIONS(1585), - [sym_undefined] = ACTIONS(1585), - [anon_sym_AT] = ACTIONS(1583), - [anon_sym_static] = ACTIONS(1585), - [anon_sym_abstract] = ACTIONS(1585), - [anon_sym_get] = ACTIONS(1585), - [anon_sym_set] = ACTIONS(1585), - [anon_sym_declare] = ACTIONS(1585), - [anon_sym_public] = ACTIONS(1585), - [anon_sym_private] = ACTIONS(1585), - [anon_sym_protected] = ACTIONS(1585), - [anon_sym_module] = ACTIONS(1585), - [anon_sym_any] = ACTIONS(1585), - [anon_sym_number] = ACTIONS(1585), - [anon_sym_boolean] = ACTIONS(1585), - [anon_sym_string] = ACTIONS(1585), - [anon_sym_symbol] = ACTIONS(1585), - [anon_sym_interface] = ACTIONS(1585), - [anon_sym_extends] = ACTIONS(1585), - [anon_sym_enum] = ACTIONS(1585), - [sym_readonly] = ACTIONS(1585), - }, - [471] = { - [sym__call_signature] = STATE(3072), - [sym_arguments] = STATE(1489), - [sym_formal_parameters] = STATE(2157), - [sym_type_arguments] = STATE(1335), - [sym_type_parameters] = STATE(2850), - [sym_identifier] = ACTIONS(1679), - [anon_sym_export] = ACTIONS(1681), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_EQ] = ACTIONS(1127), - [anon_sym_as] = ACTIONS(1619), - [anon_sym_namespace] = ACTIONS(1681), - [anon_sym_type] = ACTIONS(1681), - [anon_sym_BANG] = ACTIONS(1619), - [anon_sym_LPAREN] = ACTIONS(1621), - [anon_sym_in] = ACTIONS(1619), - [anon_sym_SEMI] = ACTIONS(1621), - [anon_sym_LBRACK] = ACTIONS(1219), - [anon_sym_LT] = ACTIONS(1619), - [anon_sym_GT] = ACTIONS(1619), - [anon_sym_SLASH] = ACTIONS(1619), - [anon_sym_DOT] = ACTIONS(1224), - [anon_sym_async] = ACTIONS(1681), - [anon_sym_function] = ACTIONS(1633), - [anon_sym_EQ_GT] = ACTIONS(1117), - [anon_sym_QMARK_DOT] = ACTIONS(1011), - [anon_sym_PLUS_EQ] = ACTIONS(831), - [anon_sym_DASH_EQ] = ACTIONS(831), - [anon_sym_STAR_EQ] = ACTIONS(831), - [anon_sym_SLASH_EQ] = ACTIONS(831), - [anon_sym_PERCENT_EQ] = ACTIONS(831), - [anon_sym_CARET_EQ] = ACTIONS(831), - [anon_sym_AMP_EQ] = ACTIONS(831), - [anon_sym_PIPE_EQ] = ACTIONS(831), - [anon_sym_GT_GT_EQ] = ACTIONS(831), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(831), - [anon_sym_LT_LT_EQ] = ACTIONS(831), - [anon_sym_STAR_STAR_EQ] = ACTIONS(831), - [anon_sym_AMP_AMP_EQ] = ACTIONS(831), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(831), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(831), - [anon_sym_QMARK] = ACTIONS(1619), - [anon_sym_AMP_AMP] = ACTIONS(1619), - [anon_sym_PIPE_PIPE] = ACTIONS(1619), - [anon_sym_GT_GT] = ACTIONS(1619), - [anon_sym_GT_GT_GT] = ACTIONS(1619), - [anon_sym_LT_LT] = ACTIONS(1619), - [anon_sym_AMP] = ACTIONS(1619), - [anon_sym_CARET] = ACTIONS(1619), - [anon_sym_PIPE] = ACTIONS(1619), - [anon_sym_PLUS] = ACTIONS(1619), - [anon_sym_DASH] = ACTIONS(1619), - [anon_sym_PERCENT] = ACTIONS(1619), - [anon_sym_STAR_STAR] = ACTIONS(1619), - [anon_sym_LT_EQ] = ACTIONS(1621), - [anon_sym_EQ_EQ] = ACTIONS(1619), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1621), - [anon_sym_BANG_EQ] = ACTIONS(1619), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1621), - [anon_sym_GT_EQ] = ACTIONS(1621), - [anon_sym_QMARK_QMARK] = ACTIONS(1619), - [anon_sym_instanceof] = ACTIONS(1619), - [anon_sym_PLUS_PLUS] = ACTIONS(1621), - [anon_sym_DASH_DASH] = ACTIONS(1621), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1621), - [anon_sym_static] = ACTIONS(1681), - [anon_sym_get] = ACTIONS(1681), - [anon_sym_set] = ACTIONS(1681), - [anon_sym_declare] = ACTIONS(1681), - [anon_sym_public] = ACTIONS(1681), - [anon_sym_private] = ACTIONS(1681), - [anon_sym_protected] = ACTIONS(1681), - [anon_sym_module] = ACTIONS(1681), - [anon_sym_any] = ACTIONS(1681), - [anon_sym_number] = ACTIONS(1681), - [anon_sym_boolean] = ACTIONS(1681), - [anon_sym_string] = ACTIONS(1681), - [anon_sym_symbol] = ACTIONS(1681), - [sym_readonly] = ACTIONS(1681), - [sym__automatic_semicolon] = ACTIONS(1621), - }, - [472] = { - [sym__call_signature] = STATE(3042), - [sym_formal_parameters] = STATE(2157), - [sym_type_parameters] = STATE(2850), + [sym__call_signature] = STATE(3073), + [sym_formal_parameters] = STATE(2253), + [sym_type_parameters] = STATE(2827), [sym_identifier] = ACTIONS(1629), [anon_sym_export] = ACTIONS(1631), [anon_sym_STAR] = ACTIONS(808), - [anon_sym_EQ] = ACTIONS(1003), + [anon_sym_EQ] = ACTIONS(1013), [anon_sym_as] = ACTIONS(808), [anon_sym_namespace] = ACTIONS(1631), [anon_sym_COMMA] = ACTIONS(841), @@ -55291,8 +55099,8 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(1224), [anon_sym_async] = ACTIONS(1631), [anon_sym_function] = ACTIONS(1633), - [anon_sym_EQ_GT] = ACTIONS(1009), - [anon_sym_QMARK_DOT] = ACTIONS(1011), + [anon_sym_EQ_GT] = ACTIONS(1019), + [anon_sym_QMARK_DOT] = ACTIONS(1021), [anon_sym_PLUS_EQ] = ACTIONS(831), [anon_sym_DASH_EQ] = ACTIONS(831), [anon_sym_STAR_EQ] = ACTIONS(831), @@ -55349,96 +55157,342 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_readonly] = ACTIONS(1631), [sym__automatic_semicolon] = ACTIONS(841), }, + [470] = { + [sym_object] = STATE(2345), + [sym_array] = STATE(2340), + [sym_nested_identifier] = STATE(3123), + [sym_string] = STATE(433), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(3122), + [sym_rest_parameter] = STATE(2622), + [sym_nested_type_identifier] = STATE(1917), + [sym_accessibility_modifier] = STATE(1910), + [sym_required_parameter] = STATE(2622), + [sym_optional_parameter] = STATE(2622), + [sym__parameter_name] = STATE(2103), + [sym__rest_identifier] = STATE(2595), + [sym__type] = STATE(2557), + [sym_constructor_type] = STATE(2557), + [sym__primary_type] = STATE(432), + [sym_conditional_type] = STATE(432), + [sym_generic_type] = STATE(432), + [sym_type_query] = STATE(432), + [sym_index_type_query] = STATE(432), + [sym_lookup_type] = STATE(432), + [sym_literal_type] = STATE(432), + [sym__number] = STATE(433), + [sym_existential_type] = STATE(432), + [sym_flow_maybe_type] = STATE(432), + [sym_parenthesized_type] = STATE(432), + [sym_predefined_type] = STATE(432), + [sym_object_type] = STATE(432), + [sym_type_parameters] = STATE(2916), + [sym_array_type] = STATE(432), + [sym__tuple_type_body] = STATE(434), + [sym_tuple_type] = STATE(432), + [sym_union_type] = STATE(2557), + [sym_intersection_type] = STATE(2557), + [sym_function_type] = STATE(2557), + [aux_sym_export_statement_repeat1] = STATE(1799), + [sym_identifier] = ACTIONS(1670), + [anon_sym_export] = ACTIONS(1672), + [anon_sym_STAR] = ACTIONS(427), + [anon_sym_namespace] = ACTIONS(1672), + [anon_sym_LBRACE] = ACTIONS(1674), + [anon_sym_type] = ACTIONS(1672), + [anon_sym_typeof] = ACTIONS(815), + [anon_sym_LPAREN] = ACTIONS(817), + [anon_sym_RPAREN] = ACTIONS(441), + [anon_sym_LBRACK] = ACTIONS(1676), + [anon_sym_LT] = ACTIONS(1678), + [anon_sym_async] = ACTIONS(1672), + [anon_sym_new] = ACTIONS(829), + [anon_sym_DOT_DOT_DOT] = ACTIONS(459), + [anon_sym_QMARK] = ACTIONS(461), + [anon_sym_AMP] = ACTIONS(463), + [anon_sym_PIPE] = ACTIONS(465), + [anon_sym_PLUS] = ACTIONS(1680), + [anon_sym_DASH] = ACTIONS(1680), + [anon_sym_void] = ACTIONS(843), + [anon_sym_DQUOTE] = ACTIONS(845), + [anon_sym_SQUOTE] = ACTIONS(847), + [sym_comment] = ACTIONS(3), + [sym_number] = ACTIONS(849), + [sym_this] = ACTIONS(1682), + [sym_true] = ACTIONS(853), + [sym_false] = ACTIONS(853), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(1672), + [anon_sym_get] = ACTIONS(1672), + [anon_sym_set] = ACTIONS(1672), + [anon_sym_declare] = ACTIONS(1672), + [anon_sym_public] = ACTIONS(1684), + [anon_sym_private] = ACTIONS(1684), + [anon_sym_protected] = ACTIONS(1684), + [anon_sym_module] = ACTIONS(1672), + [anon_sym_any] = ACTIONS(1686), + [anon_sym_number] = ACTIONS(1686), + [anon_sym_boolean] = ACTIONS(1686), + [anon_sym_string] = ACTIONS(1686), + [anon_sym_symbol] = ACTIONS(1686), + [sym_readonly] = ACTIONS(1688), + [anon_sym_keyof] = ACTIONS(495), + [anon_sym_LBRACE_PIPE] = ACTIONS(497), + }, + [471] = { + [sym__call_signature] = STATE(3091), + [sym_arguments] = STATE(1551), + [sym_formal_parameters] = STATE(2253), + [sym_type_arguments] = STATE(1316), + [sym_type_parameters] = STATE(2827), + [sym_identifier] = ACTIONS(1690), + [anon_sym_export] = ACTIONS(1692), + [anon_sym_STAR] = ACTIONS(1619), + [anon_sym_EQ] = ACTIONS(1115), + [anon_sym_as] = ACTIONS(1619), + [anon_sym_namespace] = ACTIONS(1692), + [anon_sym_type] = ACTIONS(1692), + [anon_sym_BANG] = ACTIONS(1619), + [anon_sym_LPAREN] = ACTIONS(1621), + [anon_sym_in] = ACTIONS(1619), + [anon_sym_SEMI] = ACTIONS(1621), + [anon_sym_LBRACK] = ACTIONS(1219), + [anon_sym_LT] = ACTIONS(1619), + [anon_sym_GT] = ACTIONS(1619), + [anon_sym_SLASH] = ACTIONS(1619), + [anon_sym_DOT] = ACTIONS(1224), + [anon_sym_async] = ACTIONS(1692), + [anon_sym_function] = ACTIONS(1633), + [anon_sym_EQ_GT] = ACTIONS(1129), + [anon_sym_QMARK_DOT] = ACTIONS(1021), + [anon_sym_PLUS_EQ] = ACTIONS(831), + [anon_sym_DASH_EQ] = ACTIONS(831), + [anon_sym_STAR_EQ] = ACTIONS(831), + [anon_sym_SLASH_EQ] = ACTIONS(831), + [anon_sym_PERCENT_EQ] = ACTIONS(831), + [anon_sym_CARET_EQ] = ACTIONS(831), + [anon_sym_AMP_EQ] = ACTIONS(831), + [anon_sym_PIPE_EQ] = ACTIONS(831), + [anon_sym_GT_GT_EQ] = ACTIONS(831), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(831), + [anon_sym_LT_LT_EQ] = ACTIONS(831), + [anon_sym_STAR_STAR_EQ] = ACTIONS(831), + [anon_sym_AMP_AMP_EQ] = ACTIONS(831), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(831), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(831), + [anon_sym_QMARK] = ACTIONS(1619), + [anon_sym_AMP_AMP] = ACTIONS(1619), + [anon_sym_PIPE_PIPE] = ACTIONS(1619), + [anon_sym_GT_GT] = ACTIONS(1619), + [anon_sym_GT_GT_GT] = ACTIONS(1619), + [anon_sym_LT_LT] = ACTIONS(1619), + [anon_sym_AMP] = ACTIONS(1619), + [anon_sym_CARET] = ACTIONS(1619), + [anon_sym_PIPE] = ACTIONS(1619), + [anon_sym_PLUS] = ACTIONS(1619), + [anon_sym_DASH] = ACTIONS(1619), + [anon_sym_PERCENT] = ACTIONS(1619), + [anon_sym_STAR_STAR] = ACTIONS(1619), + [anon_sym_LT_EQ] = ACTIONS(1621), + [anon_sym_EQ_EQ] = ACTIONS(1619), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1621), + [anon_sym_BANG_EQ] = ACTIONS(1619), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1621), + [anon_sym_GT_EQ] = ACTIONS(1621), + [anon_sym_QMARK_QMARK] = ACTIONS(1619), + [anon_sym_instanceof] = ACTIONS(1619), + [anon_sym_PLUS_PLUS] = ACTIONS(1621), + [anon_sym_DASH_DASH] = ACTIONS(1621), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1621), + [anon_sym_static] = ACTIONS(1692), + [anon_sym_get] = ACTIONS(1692), + [anon_sym_set] = ACTIONS(1692), + [anon_sym_declare] = ACTIONS(1692), + [anon_sym_public] = ACTIONS(1692), + [anon_sym_private] = ACTIONS(1692), + [anon_sym_protected] = ACTIONS(1692), + [anon_sym_module] = ACTIONS(1692), + [anon_sym_any] = ACTIONS(1692), + [anon_sym_number] = ACTIONS(1692), + [anon_sym_boolean] = ACTIONS(1692), + [anon_sym_string] = ACTIONS(1692), + [anon_sym_symbol] = ACTIONS(1692), + [sym_readonly] = ACTIONS(1692), + [sym__automatic_semicolon] = ACTIONS(1621), + }, + [472] = { + [sym_object] = STATE(2345), + [sym_array] = STATE(2340), + [sym_nested_identifier] = STATE(3123), + [sym_string] = STATE(433), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(3122), + [sym_rest_parameter] = STATE(2622), + [sym_nested_type_identifier] = STATE(1917), + [sym_accessibility_modifier] = STATE(1910), + [sym_required_parameter] = STATE(2622), + [sym_optional_parameter] = STATE(2622), + [sym__parameter_name] = STATE(2103), + [sym__rest_identifier] = STATE(2595), + [sym__type] = STATE(2511), + [sym_constructor_type] = STATE(2511), + [sym__primary_type] = STATE(432), + [sym_conditional_type] = STATE(432), + [sym_generic_type] = STATE(432), + [sym_type_query] = STATE(432), + [sym_index_type_query] = STATE(432), + [sym_lookup_type] = STATE(432), + [sym_literal_type] = STATE(432), + [sym__number] = STATE(433), + [sym_existential_type] = STATE(432), + [sym_flow_maybe_type] = STATE(432), + [sym_parenthesized_type] = STATE(432), + [sym_predefined_type] = STATE(432), + [sym_object_type] = STATE(432), + [sym_type_parameters] = STATE(2916), + [sym_array_type] = STATE(432), + [sym__tuple_type_body] = STATE(434), + [sym_tuple_type] = STATE(432), + [sym_union_type] = STATE(2511), + [sym_intersection_type] = STATE(2511), + [sym_function_type] = STATE(2511), + [aux_sym_export_statement_repeat1] = STATE(1799), + [sym_identifier] = ACTIONS(1670), + [anon_sym_export] = ACTIONS(1672), + [anon_sym_STAR] = ACTIONS(427), + [anon_sym_namespace] = ACTIONS(1672), + [anon_sym_LBRACE] = ACTIONS(1674), + [anon_sym_type] = ACTIONS(1672), + [anon_sym_typeof] = ACTIONS(815), + [anon_sym_LPAREN] = ACTIONS(817), + [anon_sym_RPAREN] = ACTIONS(441), + [anon_sym_LBRACK] = ACTIONS(1676), + [anon_sym_LT] = ACTIONS(1678), + [anon_sym_async] = ACTIONS(1672), + [anon_sym_new] = ACTIONS(829), + [anon_sym_DOT_DOT_DOT] = ACTIONS(459), + [anon_sym_QMARK] = ACTIONS(461), + [anon_sym_AMP] = ACTIONS(463), + [anon_sym_PIPE] = ACTIONS(465), + [anon_sym_PLUS] = ACTIONS(1680), + [anon_sym_DASH] = ACTIONS(1680), + [anon_sym_void] = ACTIONS(843), + [anon_sym_DQUOTE] = ACTIONS(845), + [anon_sym_SQUOTE] = ACTIONS(847), + [sym_comment] = ACTIONS(3), + [sym_number] = ACTIONS(849), + [sym_this] = ACTIONS(1682), + [sym_true] = ACTIONS(853), + [sym_false] = ACTIONS(853), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(1672), + [anon_sym_get] = ACTIONS(1672), + [anon_sym_set] = ACTIONS(1672), + [anon_sym_declare] = ACTIONS(1672), + [anon_sym_public] = ACTIONS(1684), + [anon_sym_private] = ACTIONS(1684), + [anon_sym_protected] = ACTIONS(1684), + [anon_sym_module] = ACTIONS(1672), + [anon_sym_any] = ACTIONS(1686), + [anon_sym_number] = ACTIONS(1686), + [anon_sym_boolean] = ACTIONS(1686), + [anon_sym_string] = ACTIONS(1686), + [anon_sym_symbol] = ACTIONS(1686), + [sym_readonly] = ACTIONS(1688), + [anon_sym_keyof] = ACTIONS(495), + [anon_sym_LBRACE_PIPE] = ACTIONS(497), + }, [473] = { - [sym_object] = STATE(2372), - [sym_array] = STATE(2378), - [sym_nested_identifier] = STATE(2999), - [sym_string] = STATE(446), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2996), - [sym_rest_parameter] = STATE(2686), - [sym_nested_type_identifier] = STATE(1913), - [sym_accessibility_modifier] = STATE(1906), - [sym_required_parameter] = STATE(2686), - [sym_optional_parameter] = STATE(2686), - [sym__parameter_name] = STATE(2094), - [sym__rest_identifier] = STATE(2534), - [sym__type] = STATE(2544), - [sym_constructor_type] = STATE(2544), - [sym__primary_type] = STATE(448), - [sym_conditional_type] = STATE(448), - [sym_generic_type] = STATE(448), - [sym_type_query] = STATE(448), - [sym_index_type_query] = STATE(448), - [sym_lookup_type] = STATE(448), - [sym_literal_type] = STATE(448), - [sym__number] = STATE(446), - [sym_existential_type] = STATE(448), - [sym_flow_maybe_type] = STATE(448), - [sym_parenthesized_type] = STATE(448), - [sym_predefined_type] = STATE(448), - [sym_object_type] = STATE(448), - [sym_type_parameters] = STATE(2959), - [sym_array_type] = STATE(448), - [sym__tuple_type_body] = STATE(444), - [sym_tuple_type] = STATE(448), - [sym_union_type] = STATE(2544), - [sym_intersection_type] = STATE(2544), - [sym_function_type] = STATE(2544), - [aux_sym_export_statement_repeat1] = STATE(1798), - [sym_identifier] = ACTIONS(1683), - [anon_sym_export] = ACTIONS(1685), + [sym_object] = STATE(2345), + [sym_array] = STATE(2340), + [sym_nested_identifier] = STATE(3123), + [sym_string] = STATE(433), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(3122), + [sym_rest_parameter] = STATE(2622), + [sym_nested_type_identifier] = STATE(1917), + [sym_accessibility_modifier] = STATE(1910), + [sym_required_parameter] = STATE(2622), + [sym_optional_parameter] = STATE(2622), + [sym__parameter_name] = STATE(2103), + [sym__rest_identifier] = STATE(2595), + [sym__type] = STATE(2598), + [sym_constructor_type] = STATE(2598), + [sym__primary_type] = STATE(432), + [sym_conditional_type] = STATE(432), + [sym_generic_type] = STATE(432), + [sym_type_query] = STATE(432), + [sym_index_type_query] = STATE(432), + [sym_lookup_type] = STATE(432), + [sym_literal_type] = STATE(432), + [sym__number] = STATE(433), + [sym_existential_type] = STATE(432), + [sym_flow_maybe_type] = STATE(432), + [sym_parenthesized_type] = STATE(432), + [sym_predefined_type] = STATE(432), + [sym_object_type] = STATE(432), + [sym_type_parameters] = STATE(2916), + [sym_array_type] = STATE(432), + [sym__tuple_type_body] = STATE(434), + [sym_tuple_type] = STATE(432), + [sym_union_type] = STATE(2598), + [sym_intersection_type] = STATE(2598), + [sym_function_type] = STATE(2598), + [aux_sym_export_statement_repeat1] = STATE(1799), + [sym_identifier] = ACTIONS(1670), + [anon_sym_export] = ACTIONS(1672), [anon_sym_STAR] = ACTIONS(427), - [anon_sym_namespace] = ACTIONS(1685), - [anon_sym_LBRACE] = ACTIONS(1687), - [anon_sym_type] = ACTIONS(1685), + [anon_sym_namespace] = ACTIONS(1672), + [anon_sym_LBRACE] = ACTIONS(1674), + [anon_sym_type] = ACTIONS(1672), [anon_sym_typeof] = ACTIONS(815), [anon_sym_LPAREN] = ACTIONS(817), [anon_sym_RPAREN] = ACTIONS(441), - [anon_sym_LBRACK] = ACTIONS(1689), - [anon_sym_LT] = ACTIONS(1691), - [anon_sym_async] = ACTIONS(1685), + [anon_sym_LBRACK] = ACTIONS(1676), + [anon_sym_LT] = ACTIONS(1678), + [anon_sym_async] = ACTIONS(1672), [anon_sym_new] = ACTIONS(829), [anon_sym_DOT_DOT_DOT] = ACTIONS(459), [anon_sym_QMARK] = ACTIONS(461), [anon_sym_AMP] = ACTIONS(463), [anon_sym_PIPE] = ACTIONS(465), - [anon_sym_PLUS] = ACTIONS(1693), - [anon_sym_DASH] = ACTIONS(1693), + [anon_sym_PLUS] = ACTIONS(1680), + [anon_sym_DASH] = ACTIONS(1680), [anon_sym_void] = ACTIONS(843), [anon_sym_DQUOTE] = ACTIONS(845), [anon_sym_SQUOTE] = ACTIONS(847), [sym_comment] = ACTIONS(3), [sym_number] = ACTIONS(849), - [sym_this] = ACTIONS(1695), + [sym_this] = ACTIONS(1682), [sym_true] = ACTIONS(853), [sym_false] = ACTIONS(853), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(1685), - [anon_sym_get] = ACTIONS(1685), - [anon_sym_set] = ACTIONS(1685), - [anon_sym_declare] = ACTIONS(1685), - [anon_sym_public] = ACTIONS(1697), - [anon_sym_private] = ACTIONS(1697), - [anon_sym_protected] = ACTIONS(1697), - [anon_sym_module] = ACTIONS(1685), - [anon_sym_any] = ACTIONS(1699), - [anon_sym_number] = ACTIONS(1699), - [anon_sym_boolean] = ACTIONS(1699), - [anon_sym_string] = ACTIONS(1699), - [anon_sym_symbol] = ACTIONS(1699), - [sym_readonly] = ACTIONS(1701), + [anon_sym_static] = ACTIONS(1672), + [anon_sym_get] = ACTIONS(1672), + [anon_sym_set] = ACTIONS(1672), + [anon_sym_declare] = ACTIONS(1672), + [anon_sym_public] = ACTIONS(1684), + [anon_sym_private] = ACTIONS(1684), + [anon_sym_protected] = ACTIONS(1684), + [anon_sym_module] = ACTIONS(1672), + [anon_sym_any] = ACTIONS(1686), + [anon_sym_number] = ACTIONS(1686), + [anon_sym_boolean] = ACTIONS(1686), + [anon_sym_string] = ACTIONS(1686), + [anon_sym_symbol] = ACTIONS(1686), + [sym_readonly] = ACTIONS(1688), [anon_sym_keyof] = ACTIONS(495), [anon_sym_LBRACE_PIPE] = ACTIONS(497), }, [474] = { - [sym__call_signature] = STATE(3042), - [sym_formal_parameters] = STATE(2157), - [sym_type_parameters] = STATE(2850), + [sym__call_signature] = STATE(3073), + [sym_formal_parameters] = STATE(2253), + [sym_type_parameters] = STATE(2827), [sym_identifier] = ACTIONS(1629), [anon_sym_export] = ACTIONS(1631), [anon_sym_STAR] = ACTIONS(808), - [anon_sym_EQ] = ACTIONS(1003), + [anon_sym_EQ] = ACTIONS(1013), [anon_sym_as] = ACTIONS(808), [anon_sym_namespace] = ACTIONS(1631), [anon_sym_COMMA] = ACTIONS(841), @@ -55447,16 +55501,16 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(1635), [anon_sym_in] = ACTIONS(808), [anon_sym_SEMI] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(1262), + [anon_sym_COLON] = ACTIONS(1274), [anon_sym_LBRACK] = ACTIONS(1219), [anon_sym_LT] = ACTIONS(1638), [anon_sym_GT] = ACTIONS(808), [anon_sym_SLASH] = ACTIONS(808), [anon_sym_DOT] = ACTIONS(1224), [anon_sym_async] = ACTIONS(1631), - [anon_sym_function] = ACTIONS(1375), - [anon_sym_EQ_GT] = ACTIONS(1009), - [anon_sym_QMARK_DOT] = ACTIONS(1011), + [anon_sym_function] = ACTIONS(1401), + [anon_sym_EQ_GT] = ACTIONS(1019), + [anon_sym_QMARK_DOT] = ACTIONS(1021), [anon_sym_PLUS_EQ] = ACTIONS(831), [anon_sym_DASH_EQ] = ACTIONS(831), [anon_sym_STAR_EQ] = ACTIONS(831), @@ -55514,95 +55568,95 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__automatic_semicolon] = ACTIONS(841), }, [475] = { - [sym_object] = STATE(2372), - [sym_array] = STATE(2378), - [sym_nested_identifier] = STATE(2999), - [sym_string] = STATE(446), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2996), - [sym_rest_parameter] = STATE(2686), - [sym_nested_type_identifier] = STATE(1913), - [sym_accessibility_modifier] = STATE(1906), - [sym_required_parameter] = STATE(2686), - [sym_optional_parameter] = STATE(2686), - [sym__parameter_name] = STATE(2094), - [sym__rest_identifier] = STATE(2534), - [sym__type] = STATE(2547), - [sym_constructor_type] = STATE(2547), - [sym__primary_type] = STATE(448), - [sym_conditional_type] = STATE(448), - [sym_generic_type] = STATE(448), - [sym_type_query] = STATE(448), - [sym_index_type_query] = STATE(448), - [sym_lookup_type] = STATE(448), - [sym_literal_type] = STATE(448), - [sym__number] = STATE(446), - [sym_existential_type] = STATE(448), - [sym_flow_maybe_type] = STATE(448), - [sym_parenthesized_type] = STATE(448), - [sym_predefined_type] = STATE(448), - [sym_object_type] = STATE(448), - [sym_type_parameters] = STATE(2959), - [sym_array_type] = STATE(448), - [sym__tuple_type_body] = STATE(444), - [sym_tuple_type] = STATE(448), - [sym_union_type] = STATE(2547), - [sym_intersection_type] = STATE(2547), - [sym_function_type] = STATE(2547), - [aux_sym_export_statement_repeat1] = STATE(1798), - [sym_identifier] = ACTIONS(1683), - [anon_sym_export] = ACTIONS(1685), - [anon_sym_STAR] = ACTIONS(427), - [anon_sym_namespace] = ACTIONS(1685), - [anon_sym_LBRACE] = ACTIONS(1687), - [anon_sym_type] = ACTIONS(1685), - [anon_sym_typeof] = ACTIONS(815), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_RPAREN] = ACTIONS(441), - [anon_sym_LBRACK] = ACTIONS(1689), - [anon_sym_LT] = ACTIONS(1691), - [anon_sym_async] = ACTIONS(1685), - [anon_sym_new] = ACTIONS(829), - [anon_sym_DOT_DOT_DOT] = ACTIONS(459), - [anon_sym_QMARK] = ACTIONS(461), - [anon_sym_AMP] = ACTIONS(463), - [anon_sym_PIPE] = ACTIONS(465), - [anon_sym_PLUS] = ACTIONS(1693), - [anon_sym_DASH] = ACTIONS(1693), - [anon_sym_void] = ACTIONS(843), - [anon_sym_DQUOTE] = ACTIONS(845), - [anon_sym_SQUOTE] = ACTIONS(847), + [sym_type_arguments] = STATE(378), + [ts_builtin_sym_end] = ACTIONS(1501), + [sym_identifier] = ACTIONS(1503), + [anon_sym_export] = ACTIONS(1503), + [anon_sym_default] = ACTIONS(1503), + [anon_sym_namespace] = ACTIONS(1503), + [anon_sym_LBRACE] = ACTIONS(1501), + [anon_sym_RBRACE] = ACTIONS(1501), + [anon_sym_type] = ACTIONS(1503), + [anon_sym_typeof] = ACTIONS(1503), + [anon_sym_import] = ACTIONS(1503), + [anon_sym_var] = ACTIONS(1503), + [anon_sym_let] = ACTIONS(1503), + [anon_sym_const] = ACTIONS(1503), + [anon_sym_BANG] = ACTIONS(1501), + [anon_sym_else] = ACTIONS(1503), + [anon_sym_if] = ACTIONS(1503), + [anon_sym_switch] = ACTIONS(1503), + [anon_sym_for] = ACTIONS(1503), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_await] = ACTIONS(1503), + [anon_sym_while] = ACTIONS(1503), + [anon_sym_do] = ACTIONS(1503), + [anon_sym_try] = ACTIONS(1503), + [anon_sym_with] = ACTIONS(1503), + [anon_sym_break] = ACTIONS(1503), + [anon_sym_continue] = ACTIONS(1503), + [anon_sym_debugger] = ACTIONS(1503), + [anon_sym_return] = ACTIONS(1503), + [anon_sym_throw] = ACTIONS(1503), + [anon_sym_SEMI] = ACTIONS(1501), + [anon_sym_case] = ACTIONS(1503), + [anon_sym_yield] = ACTIONS(1503), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LT] = ACTIONS(1501), + [anon_sym_SLASH] = ACTIONS(1503), + [anon_sym_DOT] = ACTIONS(1694), + [anon_sym_class] = ACTIONS(1503), + [anon_sym_async] = ACTIONS(1503), + [anon_sym_function] = ACTIONS(1503), + [anon_sym_new] = ACTIONS(1503), + [anon_sym_AMP] = ACTIONS(1501), + [anon_sym_PIPE] = ACTIONS(1501), + [anon_sym_PLUS] = ACTIONS(1503), + [anon_sym_DASH] = ACTIONS(1503), + [anon_sym_TILDE] = ACTIONS(1501), + [anon_sym_void] = ACTIONS(1503), + [anon_sym_delete] = ACTIONS(1503), + [anon_sym_PLUS_PLUS] = ACTIONS(1501), + [anon_sym_DASH_DASH] = ACTIONS(1501), + [anon_sym_DQUOTE] = ACTIONS(1501), + [anon_sym_SQUOTE] = ACTIONS(1501), [sym_comment] = ACTIONS(3), - [sym_number] = ACTIONS(849), - [sym_this] = ACTIONS(1695), - [sym_true] = ACTIONS(853), - [sym_false] = ACTIONS(853), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(1685), - [anon_sym_get] = ACTIONS(1685), - [anon_sym_set] = ACTIONS(1685), - [anon_sym_declare] = ACTIONS(1685), - [anon_sym_public] = ACTIONS(1697), - [anon_sym_private] = ACTIONS(1697), - [anon_sym_protected] = ACTIONS(1697), - [anon_sym_module] = ACTIONS(1685), - [anon_sym_any] = ACTIONS(1699), - [anon_sym_number] = ACTIONS(1699), - [anon_sym_boolean] = ACTIONS(1699), - [anon_sym_string] = ACTIONS(1699), - [anon_sym_symbol] = ACTIONS(1699), - [sym_readonly] = ACTIONS(1701), - [anon_sym_keyof] = ACTIONS(495), - [anon_sym_LBRACE_PIPE] = ACTIONS(497), + [anon_sym_BQUOTE] = ACTIONS(1501), + [sym_number] = ACTIONS(1501), + [sym_this] = ACTIONS(1503), + [sym_super] = ACTIONS(1503), + [sym_true] = ACTIONS(1503), + [sym_false] = ACTIONS(1503), + [sym_null] = ACTIONS(1503), + [sym_undefined] = ACTIONS(1503), + [anon_sym_AT] = ACTIONS(1501), + [anon_sym_static] = ACTIONS(1503), + [anon_sym_abstract] = ACTIONS(1503), + [anon_sym_get] = ACTIONS(1503), + [anon_sym_set] = ACTIONS(1503), + [anon_sym_declare] = ACTIONS(1503), + [anon_sym_public] = ACTIONS(1503), + [anon_sym_private] = ACTIONS(1503), + [anon_sym_protected] = ACTIONS(1503), + [anon_sym_module] = ACTIONS(1503), + [anon_sym_any] = ACTIONS(1503), + [anon_sym_number] = ACTIONS(1503), + [anon_sym_boolean] = ACTIONS(1503), + [anon_sym_string] = ACTIONS(1503), + [anon_sym_symbol] = ACTIONS(1503), + [anon_sym_interface] = ACTIONS(1503), + [anon_sym_extends] = ACTIONS(1503), + [anon_sym_enum] = ACTIONS(1503), + [sym_readonly] = ACTIONS(1503), }, [476] = { - [sym__call_signature] = STATE(3042), - [sym_formal_parameters] = STATE(2157), - [sym_type_parameters] = STATE(2850), + [sym__call_signature] = STATE(3073), + [sym_formal_parameters] = STATE(2253), + [sym_type_parameters] = STATE(2827), [sym_identifier] = ACTIONS(1629), [anon_sym_export] = ACTIONS(1631), [anon_sym_STAR] = ACTIONS(808), - [anon_sym_EQ] = ACTIONS(1003), + [anon_sym_EQ] = ACTIONS(1013), [anon_sym_as] = ACTIONS(808), [anon_sym_namespace] = ACTIONS(1631), [anon_sym_COMMA] = ACTIONS(841), @@ -55611,16 +55665,16 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(1635), [anon_sym_in] = ACTIONS(808), [anon_sym_SEMI] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(1258), + [anon_sym_COLON] = ACTIONS(1284), [anon_sym_LBRACK] = ACTIONS(1219), [anon_sym_LT] = ACTIONS(1638), [anon_sym_GT] = ACTIONS(808), [anon_sym_SLASH] = ACTIONS(808), [anon_sym_DOT] = ACTIONS(1224), [anon_sym_async] = ACTIONS(1631), - [anon_sym_function] = ACTIONS(1703), - [anon_sym_EQ_GT] = ACTIONS(1009), - [anon_sym_QMARK_DOT] = ACTIONS(1011), + [anon_sym_function] = ACTIONS(1696), + [anon_sym_EQ_GT] = ACTIONS(1019), + [anon_sym_QMARK_DOT] = ACTIONS(1021), [anon_sym_PLUS_EQ] = ACTIONS(831), [anon_sym_DASH_EQ] = ACTIONS(831), [anon_sym_STAR_EQ] = ACTIONS(831), @@ -55677,101 +55731,183 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_readonly] = ACTIONS(1631), [sym__automatic_semicolon] = ACTIONS(841), }, - [477] = { - [sym_object] = STATE(2372), - [sym_array] = STATE(2378), - [sym_nested_identifier] = STATE(2999), - [sym_string] = STATE(446), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2996), - [sym_rest_parameter] = STATE(2686), - [sym_nested_type_identifier] = STATE(1913), - [sym_accessibility_modifier] = STATE(1906), - [sym_required_parameter] = STATE(2686), - [sym_optional_parameter] = STATE(2686), - [sym__parameter_name] = STATE(2094), - [sym__rest_identifier] = STATE(2534), - [sym__type] = STATE(2588), - [sym_constructor_type] = STATE(2588), - [sym__primary_type] = STATE(448), - [sym_conditional_type] = STATE(448), - [sym_generic_type] = STATE(448), - [sym_type_query] = STATE(448), - [sym_index_type_query] = STATE(448), - [sym_lookup_type] = STATE(448), - [sym_literal_type] = STATE(448), - [sym__number] = STATE(446), - [sym_existential_type] = STATE(448), - [sym_flow_maybe_type] = STATE(448), - [sym_parenthesized_type] = STATE(448), - [sym_predefined_type] = STATE(448), - [sym_object_type] = STATE(448), - [sym_type_parameters] = STATE(2959), - [sym_array_type] = STATE(448), - [sym__tuple_type_body] = STATE(444), - [sym_tuple_type] = STATE(448), - [sym_union_type] = STATE(2588), - [sym_intersection_type] = STATE(2588), - [sym_function_type] = STATE(2588), - [aux_sym_export_statement_repeat1] = STATE(1798), - [sym_identifier] = ACTIONS(1683), - [anon_sym_export] = ACTIONS(1685), + [477] = { + [sym_object] = STATE(2345), + [sym_array] = STATE(2340), + [sym_nested_identifier] = STATE(3123), + [sym_string] = STATE(433), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(3122), + [sym_rest_parameter] = STATE(2622), + [sym_nested_type_identifier] = STATE(1917), + [sym_accessibility_modifier] = STATE(1910), + [sym_required_parameter] = STATE(2622), + [sym_optional_parameter] = STATE(2622), + [sym__parameter_name] = STATE(2103), + [sym__rest_identifier] = STATE(2595), + [sym__type] = STATE(2609), + [sym_constructor_type] = STATE(2609), + [sym__primary_type] = STATE(432), + [sym_conditional_type] = STATE(432), + [sym_generic_type] = STATE(432), + [sym_type_query] = STATE(432), + [sym_index_type_query] = STATE(432), + [sym_lookup_type] = STATE(432), + [sym_literal_type] = STATE(432), + [sym__number] = STATE(433), + [sym_existential_type] = STATE(432), + [sym_flow_maybe_type] = STATE(432), + [sym_parenthesized_type] = STATE(432), + [sym_predefined_type] = STATE(432), + [sym_object_type] = STATE(432), + [sym_type_parameters] = STATE(2916), + [sym_array_type] = STATE(432), + [sym__tuple_type_body] = STATE(434), + [sym_tuple_type] = STATE(432), + [sym_union_type] = STATE(2609), + [sym_intersection_type] = STATE(2609), + [sym_function_type] = STATE(2609), + [aux_sym_export_statement_repeat1] = STATE(1799), + [sym_identifier] = ACTIONS(1670), + [anon_sym_export] = ACTIONS(1672), + [anon_sym_STAR] = ACTIONS(427), + [anon_sym_namespace] = ACTIONS(1672), + [anon_sym_LBRACE] = ACTIONS(1674), + [anon_sym_type] = ACTIONS(1672), + [anon_sym_typeof] = ACTIONS(815), + [anon_sym_LPAREN] = ACTIONS(817), + [anon_sym_RPAREN] = ACTIONS(441), + [anon_sym_LBRACK] = ACTIONS(1676), + [anon_sym_LT] = ACTIONS(1678), + [anon_sym_async] = ACTIONS(1672), + [anon_sym_new] = ACTIONS(829), + [anon_sym_DOT_DOT_DOT] = ACTIONS(459), + [anon_sym_QMARK] = ACTIONS(461), + [anon_sym_AMP] = ACTIONS(463), + [anon_sym_PIPE] = ACTIONS(465), + [anon_sym_PLUS] = ACTIONS(1680), + [anon_sym_DASH] = ACTIONS(1680), + [anon_sym_void] = ACTIONS(843), + [anon_sym_DQUOTE] = ACTIONS(845), + [anon_sym_SQUOTE] = ACTIONS(847), + [sym_comment] = ACTIONS(3), + [sym_number] = ACTIONS(849), + [sym_this] = ACTIONS(1682), + [sym_true] = ACTIONS(853), + [sym_false] = ACTIONS(853), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(1672), + [anon_sym_get] = ACTIONS(1672), + [anon_sym_set] = ACTIONS(1672), + [anon_sym_declare] = ACTIONS(1672), + [anon_sym_public] = ACTIONS(1684), + [anon_sym_private] = ACTIONS(1684), + [anon_sym_protected] = ACTIONS(1684), + [anon_sym_module] = ACTIONS(1672), + [anon_sym_any] = ACTIONS(1686), + [anon_sym_number] = ACTIONS(1686), + [anon_sym_boolean] = ACTIONS(1686), + [anon_sym_string] = ACTIONS(1686), + [anon_sym_symbol] = ACTIONS(1686), + [sym_readonly] = ACTIONS(1688), + [anon_sym_keyof] = ACTIONS(495), + [anon_sym_LBRACE_PIPE] = ACTIONS(497), + }, + [478] = { + [sym_object] = STATE(2345), + [sym_array] = STATE(2340), + [sym_nested_identifier] = STATE(3123), + [sym_string] = STATE(433), + [sym_decorator] = STATE(1890), + [sym_formal_parameters] = STATE(3122), + [sym_rest_parameter] = STATE(2622), + [sym_nested_type_identifier] = STATE(1917), + [sym_accessibility_modifier] = STATE(1910), + [sym_required_parameter] = STATE(2622), + [sym_optional_parameter] = STATE(2622), + [sym__parameter_name] = STATE(2103), + [sym__rest_identifier] = STATE(2595), + [sym__type] = STATE(2510), + [sym_constructor_type] = STATE(2510), + [sym__primary_type] = STATE(432), + [sym_conditional_type] = STATE(432), + [sym_generic_type] = STATE(432), + [sym_type_query] = STATE(432), + [sym_index_type_query] = STATE(432), + [sym_lookup_type] = STATE(432), + [sym_literal_type] = STATE(432), + [sym__number] = STATE(433), + [sym_existential_type] = STATE(432), + [sym_flow_maybe_type] = STATE(432), + [sym_parenthesized_type] = STATE(432), + [sym_predefined_type] = STATE(432), + [sym_object_type] = STATE(432), + [sym_type_parameters] = STATE(2916), + [sym_array_type] = STATE(432), + [sym__tuple_type_body] = STATE(434), + [sym_tuple_type] = STATE(432), + [sym_union_type] = STATE(2510), + [sym_intersection_type] = STATE(2510), + [sym_function_type] = STATE(2510), + [aux_sym_export_statement_repeat1] = STATE(1799), + [sym_identifier] = ACTIONS(1670), + [anon_sym_export] = ACTIONS(1672), [anon_sym_STAR] = ACTIONS(427), - [anon_sym_namespace] = ACTIONS(1685), - [anon_sym_LBRACE] = ACTIONS(1687), - [anon_sym_type] = ACTIONS(1685), + [anon_sym_namespace] = ACTIONS(1672), + [anon_sym_LBRACE] = ACTIONS(1674), + [anon_sym_type] = ACTIONS(1672), [anon_sym_typeof] = ACTIONS(815), [anon_sym_LPAREN] = ACTIONS(817), [anon_sym_RPAREN] = ACTIONS(441), - [anon_sym_LBRACK] = ACTIONS(1689), - [anon_sym_LT] = ACTIONS(1691), - [anon_sym_async] = ACTIONS(1685), + [anon_sym_LBRACK] = ACTIONS(1676), + [anon_sym_LT] = ACTIONS(1678), + [anon_sym_async] = ACTIONS(1672), [anon_sym_new] = ACTIONS(829), [anon_sym_DOT_DOT_DOT] = ACTIONS(459), [anon_sym_QMARK] = ACTIONS(461), [anon_sym_AMP] = ACTIONS(463), [anon_sym_PIPE] = ACTIONS(465), - [anon_sym_PLUS] = ACTIONS(1693), - [anon_sym_DASH] = ACTIONS(1693), + [anon_sym_PLUS] = ACTIONS(1680), + [anon_sym_DASH] = ACTIONS(1680), [anon_sym_void] = ACTIONS(843), [anon_sym_DQUOTE] = ACTIONS(845), [anon_sym_SQUOTE] = ACTIONS(847), [sym_comment] = ACTIONS(3), [sym_number] = ACTIONS(849), - [sym_this] = ACTIONS(1695), + [sym_this] = ACTIONS(1682), [sym_true] = ACTIONS(853), [sym_false] = ACTIONS(853), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(1685), - [anon_sym_get] = ACTIONS(1685), - [anon_sym_set] = ACTIONS(1685), - [anon_sym_declare] = ACTIONS(1685), - [anon_sym_public] = ACTIONS(1697), - [anon_sym_private] = ACTIONS(1697), - [anon_sym_protected] = ACTIONS(1697), - [anon_sym_module] = ACTIONS(1685), - [anon_sym_any] = ACTIONS(1699), - [anon_sym_number] = ACTIONS(1699), - [anon_sym_boolean] = ACTIONS(1699), - [anon_sym_string] = ACTIONS(1699), - [anon_sym_symbol] = ACTIONS(1699), - [sym_readonly] = ACTIONS(1701), + [anon_sym_static] = ACTIONS(1672), + [anon_sym_get] = ACTIONS(1672), + [anon_sym_set] = ACTIONS(1672), + [anon_sym_declare] = ACTIONS(1672), + [anon_sym_public] = ACTIONS(1684), + [anon_sym_private] = ACTIONS(1684), + [anon_sym_protected] = ACTIONS(1684), + [anon_sym_module] = ACTIONS(1672), + [anon_sym_any] = ACTIONS(1686), + [anon_sym_number] = ACTIONS(1686), + [anon_sym_boolean] = ACTIONS(1686), + [anon_sym_string] = ACTIONS(1686), + [anon_sym_symbol] = ACTIONS(1686), + [sym_readonly] = ACTIONS(1688), [anon_sym_keyof] = ACTIONS(495), [anon_sym_LBRACE_PIPE] = ACTIONS(497), }, - [478] = { - [sym__call_signature] = STATE(3007), - [sym_arguments] = STATE(1147), - [sym_formal_parameters] = STATE(2157), - [sym_type_arguments] = STATE(1089), - [sym_type_parameters] = STATE(2850), - [sym_identifier] = ACTIONS(1705), - [anon_sym_export] = ACTIONS(1707), + [479] = { + [sym__call_signature] = STATE(3018), + [sym_arguments] = STATE(1158), + [sym_formal_parameters] = STATE(2253), + [sym_type_arguments] = STATE(1049), + [sym_type_parameters] = STATE(2827), + [sym_identifier] = ACTIONS(1698), + [anon_sym_export] = ACTIONS(1700), [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_EQ] = ACTIONS(1127), + [anon_sym_EQ] = ACTIONS(1115), [anon_sym_as] = ACTIONS(1619), - [anon_sym_namespace] = ACTIONS(1707), - [anon_sym_type] = ACTIONS(1707), + [anon_sym_namespace] = ACTIONS(1700), + [anon_sym_type] = ACTIONS(1700), [anon_sym_BANG] = ACTIONS(1619), [anon_sym_LPAREN] = ACTIONS(1621), [anon_sym_in] = ACTIONS(1619), @@ -55782,9 +55918,9 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(1619), [anon_sym_SLASH] = ACTIONS(1619), [anon_sym_DOT] = ACTIONS(1625), - [anon_sym_async] = ACTIONS(1707), + [anon_sym_async] = ACTIONS(1700), [anon_sym_function] = ACTIONS(1627), - [anon_sym_EQ_GT] = ACTIONS(1129), + [anon_sym_EQ_GT] = ACTIONS(1117), [anon_sym_QMARK_DOT] = ACTIONS(827), [anon_sym_PLUS_EQ] = ACTIONS(831), [anon_sym_DASH_EQ] = ACTIONS(831), @@ -55826,513 +55962,107 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1621), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1621), - [anon_sym_static] = ACTIONS(1707), - [anon_sym_get] = ACTIONS(1707), - [anon_sym_set] = ACTIONS(1707), - [anon_sym_declare] = ACTIONS(1707), - [anon_sym_public] = ACTIONS(1707), - [anon_sym_private] = ACTIONS(1707), - [anon_sym_protected] = ACTIONS(1707), - [anon_sym_module] = ACTIONS(1707), - [anon_sym_any] = ACTIONS(1707), - [anon_sym_number] = ACTIONS(1707), - [anon_sym_boolean] = ACTIONS(1707), - [anon_sym_string] = ACTIONS(1707), - [anon_sym_symbol] = ACTIONS(1707), - [sym_readonly] = ACTIONS(1707), - }, - [479] = { - [sym_object] = STATE(2372), - [sym_array] = STATE(2378), - [sym_nested_identifier] = STATE(2999), - [sym_string] = STATE(446), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2996), - [sym_rest_parameter] = STATE(2686), - [sym_nested_type_identifier] = STATE(1913), - [sym_accessibility_modifier] = STATE(1906), - [sym_required_parameter] = STATE(2686), - [sym_optional_parameter] = STATE(2686), - [sym__parameter_name] = STATE(2094), - [sym__rest_identifier] = STATE(2534), - [sym__type] = STATE(2494), - [sym_constructor_type] = STATE(2494), - [sym__primary_type] = STATE(448), - [sym_conditional_type] = STATE(448), - [sym_generic_type] = STATE(448), - [sym_type_query] = STATE(448), - [sym_index_type_query] = STATE(448), - [sym_lookup_type] = STATE(448), - [sym_literal_type] = STATE(448), - [sym__number] = STATE(446), - [sym_existential_type] = STATE(448), - [sym_flow_maybe_type] = STATE(448), - [sym_parenthesized_type] = STATE(448), - [sym_predefined_type] = STATE(448), - [sym_object_type] = STATE(448), - [sym_type_parameters] = STATE(2959), - [sym_array_type] = STATE(448), - [sym__tuple_type_body] = STATE(444), - [sym_tuple_type] = STATE(448), - [sym_union_type] = STATE(2494), - [sym_intersection_type] = STATE(2494), - [sym_function_type] = STATE(2494), - [aux_sym_export_statement_repeat1] = STATE(1798), - [sym_identifier] = ACTIONS(1683), - [anon_sym_export] = ACTIONS(1685), - [anon_sym_STAR] = ACTIONS(427), - [anon_sym_namespace] = ACTIONS(1685), - [anon_sym_LBRACE] = ACTIONS(1687), - [anon_sym_type] = ACTIONS(1685), - [anon_sym_typeof] = ACTIONS(815), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_RPAREN] = ACTIONS(441), - [anon_sym_LBRACK] = ACTIONS(1689), - [anon_sym_LT] = ACTIONS(1691), - [anon_sym_async] = ACTIONS(1685), - [anon_sym_new] = ACTIONS(829), - [anon_sym_DOT_DOT_DOT] = ACTIONS(459), - [anon_sym_QMARK] = ACTIONS(461), - [anon_sym_AMP] = ACTIONS(463), - [anon_sym_PIPE] = ACTIONS(465), - [anon_sym_PLUS] = ACTIONS(1693), - [anon_sym_DASH] = ACTIONS(1693), - [anon_sym_void] = ACTIONS(843), - [anon_sym_DQUOTE] = ACTIONS(845), - [anon_sym_SQUOTE] = ACTIONS(847), - [sym_comment] = ACTIONS(3), - [sym_number] = ACTIONS(849), - [sym_this] = ACTIONS(1695), - [sym_true] = ACTIONS(853), - [sym_false] = ACTIONS(853), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(1685), - [anon_sym_get] = ACTIONS(1685), - [anon_sym_set] = ACTIONS(1685), - [anon_sym_declare] = ACTIONS(1685), - [anon_sym_public] = ACTIONS(1697), - [anon_sym_private] = ACTIONS(1697), - [anon_sym_protected] = ACTIONS(1697), - [anon_sym_module] = ACTIONS(1685), - [anon_sym_any] = ACTIONS(1699), - [anon_sym_number] = ACTIONS(1699), - [anon_sym_boolean] = ACTIONS(1699), - [anon_sym_string] = ACTIONS(1699), - [anon_sym_symbol] = ACTIONS(1699), - [sym_readonly] = ACTIONS(1701), - [anon_sym_keyof] = ACTIONS(495), - [anon_sym_LBRACE_PIPE] = ACTIONS(497), + [anon_sym_static] = ACTIONS(1700), + [anon_sym_get] = ACTIONS(1700), + [anon_sym_set] = ACTIONS(1700), + [anon_sym_declare] = ACTIONS(1700), + [anon_sym_public] = ACTIONS(1700), + [anon_sym_private] = ACTIONS(1700), + [anon_sym_protected] = ACTIONS(1700), + [anon_sym_module] = ACTIONS(1700), + [anon_sym_any] = ACTIONS(1700), + [anon_sym_number] = ACTIONS(1700), + [anon_sym_boolean] = ACTIONS(1700), + [anon_sym_string] = ACTIONS(1700), + [anon_sym_symbol] = ACTIONS(1700), + [sym_readonly] = ACTIONS(1700), }, [480] = { - [sym_object] = STATE(2372), - [sym_array] = STATE(2378), - [sym_nested_identifier] = STATE(2999), - [sym_string] = STATE(446), - [sym_decorator] = STATE(1905), - [sym_formal_parameters] = STATE(2996), - [sym_rest_parameter] = STATE(2686), - [sym_nested_type_identifier] = STATE(1913), - [sym_accessibility_modifier] = STATE(1906), - [sym_required_parameter] = STATE(2686), - [sym_optional_parameter] = STATE(2686), - [sym__parameter_name] = STATE(2094), - [sym__rest_identifier] = STATE(2534), - [sym__type] = STATE(2591), - [sym_constructor_type] = STATE(2591), - [sym__primary_type] = STATE(448), - [sym_conditional_type] = STATE(448), - [sym_generic_type] = STATE(448), - [sym_type_query] = STATE(448), - [sym_index_type_query] = STATE(448), - [sym_lookup_type] = STATE(448), - [sym_literal_type] = STATE(448), - [sym__number] = STATE(446), - [sym_existential_type] = STATE(448), - [sym_flow_maybe_type] = STATE(448), - [sym_parenthesized_type] = STATE(448), - [sym_predefined_type] = STATE(448), - [sym_object_type] = STATE(448), - [sym_type_parameters] = STATE(2959), - [sym_array_type] = STATE(448), - [sym__tuple_type_body] = STATE(444), - [sym_tuple_type] = STATE(448), - [sym_union_type] = STATE(2591), - [sym_intersection_type] = STATE(2591), - [sym_function_type] = STATE(2591), - [aux_sym_export_statement_repeat1] = STATE(1798), - [sym_identifier] = ACTIONS(1683), - [anon_sym_export] = ACTIONS(1685), - [anon_sym_STAR] = ACTIONS(427), - [anon_sym_namespace] = ACTIONS(1685), - [anon_sym_LBRACE] = ACTIONS(1687), - [anon_sym_type] = ACTIONS(1685), - [anon_sym_typeof] = ACTIONS(815), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_RPAREN] = ACTIONS(441), - [anon_sym_LBRACK] = ACTIONS(1689), - [anon_sym_LT] = ACTIONS(1691), - [anon_sym_async] = ACTIONS(1685), - [anon_sym_new] = ACTIONS(829), - [anon_sym_DOT_DOT_DOT] = ACTIONS(459), - [anon_sym_QMARK] = ACTIONS(461), - [anon_sym_AMP] = ACTIONS(463), - [anon_sym_PIPE] = ACTIONS(465), - [anon_sym_PLUS] = ACTIONS(1693), - [anon_sym_DASH] = ACTIONS(1693), - [anon_sym_void] = ACTIONS(843), - [anon_sym_DQUOTE] = ACTIONS(845), - [anon_sym_SQUOTE] = ACTIONS(847), - [sym_comment] = ACTIONS(3), - [sym_number] = ACTIONS(849), - [sym_this] = ACTIONS(1695), - [sym_true] = ACTIONS(853), - [sym_false] = ACTIONS(853), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(1685), - [anon_sym_get] = ACTIONS(1685), - [anon_sym_set] = ACTIONS(1685), - [anon_sym_declare] = ACTIONS(1685), - [anon_sym_public] = ACTIONS(1697), - [anon_sym_private] = ACTIONS(1697), - [anon_sym_protected] = ACTIONS(1697), - [anon_sym_module] = ACTIONS(1685), - [anon_sym_any] = ACTIONS(1699), - [anon_sym_number] = ACTIONS(1699), - [anon_sym_boolean] = ACTIONS(1699), - [anon_sym_string] = ACTIONS(1699), - [anon_sym_symbol] = ACTIONS(1699), - [sym_readonly] = ACTIONS(1701), - [anon_sym_keyof] = ACTIONS(495), - [anon_sym_LBRACE_PIPE] = ACTIONS(497), + [sym_type_arguments] = STATE(378), + [ts_builtin_sym_end] = ACTIONS(1702), + [sym_identifier] = ACTIONS(1704), + [anon_sym_export] = ACTIONS(1704), + [anon_sym_default] = ACTIONS(1704), + [anon_sym_namespace] = ACTIONS(1704), + [anon_sym_LBRACE] = ACTIONS(1702), + [anon_sym_RBRACE] = ACTIONS(1702), + [anon_sym_type] = ACTIONS(1704), + [anon_sym_typeof] = ACTIONS(1704), + [anon_sym_import] = ACTIONS(1704), + [anon_sym_var] = ACTIONS(1704), + [anon_sym_let] = ACTIONS(1704), + [anon_sym_const] = ACTIONS(1704), + [anon_sym_BANG] = ACTIONS(1702), + [anon_sym_else] = ACTIONS(1704), + [anon_sym_if] = ACTIONS(1704), + [anon_sym_switch] = ACTIONS(1704), + [anon_sym_for] = ACTIONS(1704), + [anon_sym_LPAREN] = ACTIONS(1702), + [anon_sym_await] = ACTIONS(1704), + [anon_sym_while] = ACTIONS(1704), + [anon_sym_do] = ACTIONS(1704), + [anon_sym_try] = ACTIONS(1704), + [anon_sym_with] = ACTIONS(1704), + [anon_sym_break] = ACTIONS(1704), + [anon_sym_continue] = ACTIONS(1704), + [anon_sym_debugger] = ACTIONS(1704), + [anon_sym_return] = ACTIONS(1704), + [anon_sym_throw] = ACTIONS(1704), + [anon_sym_SEMI] = ACTIONS(1702), + [anon_sym_case] = ACTIONS(1704), + [anon_sym_yield] = ACTIONS(1704), + [anon_sym_LBRACK] = ACTIONS(1702), + [anon_sym_LT] = ACTIONS(1706), + [anon_sym_SLASH] = ACTIONS(1704), + [anon_sym_DOT] = ACTIONS(1663), + [anon_sym_class] = ACTIONS(1704), + [anon_sym_async] = ACTIONS(1704), + [anon_sym_function] = ACTIONS(1704), + [anon_sym_new] = ACTIONS(1704), + [anon_sym_AMP] = ACTIONS(1702), + [anon_sym_PIPE] = ACTIONS(1702), + [anon_sym_PLUS] = ACTIONS(1704), + [anon_sym_DASH] = ACTIONS(1704), + [anon_sym_TILDE] = ACTIONS(1702), + [anon_sym_void] = ACTIONS(1704), + [anon_sym_delete] = ACTIONS(1704), + [anon_sym_PLUS_PLUS] = ACTIONS(1702), + [anon_sym_DASH_DASH] = ACTIONS(1702), + [anon_sym_DQUOTE] = ACTIONS(1702), + [anon_sym_SQUOTE] = ACTIONS(1702), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1702), + [sym_number] = ACTIONS(1702), + [sym_this] = ACTIONS(1704), + [sym_super] = ACTIONS(1704), + [sym_true] = ACTIONS(1704), + [sym_false] = ACTIONS(1704), + [sym_null] = ACTIONS(1704), + [sym_undefined] = ACTIONS(1704), + [anon_sym_AT] = ACTIONS(1702), + [anon_sym_static] = ACTIONS(1704), + [anon_sym_abstract] = ACTIONS(1704), + [anon_sym_get] = ACTIONS(1704), + [anon_sym_set] = ACTIONS(1704), + [anon_sym_declare] = ACTIONS(1704), + [anon_sym_public] = ACTIONS(1704), + [anon_sym_private] = ACTIONS(1704), + [anon_sym_protected] = ACTIONS(1704), + [anon_sym_module] = ACTIONS(1704), + [anon_sym_any] = ACTIONS(1704), + [anon_sym_number] = ACTIONS(1704), + [anon_sym_boolean] = ACTIONS(1704), + [anon_sym_string] = ACTIONS(1704), + [anon_sym_symbol] = ACTIONS(1704), + [anon_sym_interface] = ACTIONS(1704), + [anon_sym_extends] = ACTIONS(1704), + [anon_sym_enum] = ACTIONS(1704), + [sym_readonly] = ACTIONS(1704), }, [481] = { - [ts_builtin_sym_end] = ACTIONS(1583), - [sym_identifier] = ACTIONS(1585), - [anon_sym_export] = ACTIONS(1585), - [anon_sym_default] = ACTIONS(1585), - [anon_sym_namespace] = ACTIONS(1585), - [anon_sym_LBRACE] = ACTIONS(1583), - [anon_sym_RBRACE] = ACTIONS(1583), - [anon_sym_type] = ACTIONS(1585), - [anon_sym_typeof] = ACTIONS(1585), - [anon_sym_import] = ACTIONS(1585), - [anon_sym_var] = ACTIONS(1585), - [anon_sym_let] = ACTIONS(1585), - [anon_sym_const] = ACTIONS(1585), - [anon_sym_BANG] = ACTIONS(1583), - [anon_sym_else] = ACTIONS(1585), - [anon_sym_if] = ACTIONS(1585), - [anon_sym_switch] = ACTIONS(1585), - [anon_sym_for] = ACTIONS(1585), - [anon_sym_LPAREN] = ACTIONS(1583), - [anon_sym_await] = ACTIONS(1585), - [anon_sym_while] = ACTIONS(1585), - [anon_sym_do] = ACTIONS(1585), - [anon_sym_try] = ACTIONS(1585), - [anon_sym_with] = ACTIONS(1585), - [anon_sym_break] = ACTIONS(1585), - [anon_sym_continue] = ACTIONS(1585), - [anon_sym_debugger] = ACTIONS(1585), - [anon_sym_return] = ACTIONS(1585), - [anon_sym_throw] = ACTIONS(1585), - [anon_sym_SEMI] = ACTIONS(1583), - [anon_sym_case] = ACTIONS(1585), - [anon_sym_yield] = ACTIONS(1585), - [anon_sym_LBRACK] = ACTIONS(1583), - [anon_sym_LT] = ACTIONS(1583), - [anon_sym_SLASH] = ACTIONS(1585), - [anon_sym_DOT] = ACTIONS(1677), - [anon_sym_class] = ACTIONS(1585), - [anon_sym_async] = ACTIONS(1585), - [anon_sym_function] = ACTIONS(1585), - [anon_sym_new] = ACTIONS(1585), - [anon_sym_AMP] = ACTIONS(1583), - [anon_sym_PIPE] = ACTIONS(1583), - [anon_sym_PLUS] = ACTIONS(1585), - [anon_sym_DASH] = ACTIONS(1585), - [anon_sym_TILDE] = ACTIONS(1583), - [anon_sym_void] = ACTIONS(1585), - [anon_sym_delete] = ACTIONS(1585), - [anon_sym_PLUS_PLUS] = ACTIONS(1583), - [anon_sym_DASH_DASH] = ACTIONS(1583), - [anon_sym_DQUOTE] = ACTIONS(1583), - [anon_sym_SQUOTE] = ACTIONS(1583), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1583), - [sym_number] = ACTIONS(1583), - [sym_this] = ACTIONS(1585), - [sym_super] = ACTIONS(1585), - [sym_true] = ACTIONS(1585), - [sym_false] = ACTIONS(1585), - [sym_null] = ACTIONS(1585), - [sym_undefined] = ACTIONS(1585), - [anon_sym_AT] = ACTIONS(1583), - [anon_sym_static] = ACTIONS(1585), - [anon_sym_abstract] = ACTIONS(1585), - [anon_sym_get] = ACTIONS(1585), - [anon_sym_set] = ACTIONS(1585), - [anon_sym_declare] = ACTIONS(1585), - [anon_sym_public] = ACTIONS(1585), - [anon_sym_private] = ACTIONS(1585), - [anon_sym_protected] = ACTIONS(1585), - [anon_sym_module] = ACTIONS(1585), - [anon_sym_any] = ACTIONS(1585), - [anon_sym_number] = ACTIONS(1585), - [anon_sym_boolean] = ACTIONS(1585), - [anon_sym_string] = ACTIONS(1585), - [anon_sym_symbol] = ACTIONS(1585), - [anon_sym_interface] = ACTIONS(1585), - [anon_sym_extends] = ACTIONS(1585), - [anon_sym_enum] = ACTIONS(1585), - [sym_readonly] = ACTIONS(1585), - }, - [482] = { - [sym_type_arguments] = STATE(301), - [ts_builtin_sym_end] = ACTIONS(1517), - [sym_identifier] = ACTIONS(1519), - [anon_sym_export] = ACTIONS(1519), - [anon_sym_default] = ACTIONS(1519), - [anon_sym_namespace] = ACTIONS(1519), - [anon_sym_LBRACE] = ACTIONS(1517), - [anon_sym_RBRACE] = ACTIONS(1517), - [anon_sym_type] = ACTIONS(1519), - [anon_sym_typeof] = ACTIONS(1519), - [anon_sym_import] = ACTIONS(1519), - [anon_sym_var] = ACTIONS(1519), - [anon_sym_let] = ACTIONS(1519), - [anon_sym_const] = ACTIONS(1519), - [anon_sym_BANG] = ACTIONS(1517), - [anon_sym_else] = ACTIONS(1519), - [anon_sym_if] = ACTIONS(1519), - [anon_sym_switch] = ACTIONS(1519), - [anon_sym_for] = ACTIONS(1519), - [anon_sym_LPAREN] = ACTIONS(1517), - [anon_sym_await] = ACTIONS(1519), - [anon_sym_while] = ACTIONS(1519), - [anon_sym_do] = ACTIONS(1519), - [anon_sym_try] = ACTIONS(1519), - [anon_sym_with] = ACTIONS(1519), - [anon_sym_break] = ACTIONS(1519), - [anon_sym_continue] = ACTIONS(1519), - [anon_sym_debugger] = ACTIONS(1519), - [anon_sym_return] = ACTIONS(1519), - [anon_sym_throw] = ACTIONS(1519), - [anon_sym_SEMI] = ACTIONS(1517), - [anon_sym_case] = ACTIONS(1519), - [anon_sym_yield] = ACTIONS(1519), - [anon_sym_LBRACK] = ACTIONS(1517), - [anon_sym_LT] = ACTIONS(1517), - [anon_sym_SLASH] = ACTIONS(1519), - [anon_sym_class] = ACTIONS(1519), - [anon_sym_async] = ACTIONS(1519), - [anon_sym_function] = ACTIONS(1519), - [anon_sym_new] = ACTIONS(1519), - [anon_sym_AMP] = ACTIONS(1517), - [anon_sym_PIPE] = ACTIONS(1517), - [anon_sym_PLUS] = ACTIONS(1519), - [anon_sym_DASH] = ACTIONS(1519), - [anon_sym_TILDE] = ACTIONS(1517), - [anon_sym_void] = ACTIONS(1519), - [anon_sym_delete] = ACTIONS(1519), - [anon_sym_PLUS_PLUS] = ACTIONS(1517), - [anon_sym_DASH_DASH] = ACTIONS(1517), - [anon_sym_DQUOTE] = ACTIONS(1517), - [anon_sym_SQUOTE] = ACTIONS(1517), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1517), - [sym_number] = ACTIONS(1517), - [sym_this] = ACTIONS(1519), - [sym_super] = ACTIONS(1519), - [sym_true] = ACTIONS(1519), - [sym_false] = ACTIONS(1519), - [sym_null] = ACTIONS(1519), - [sym_undefined] = ACTIONS(1519), - [anon_sym_AT] = ACTIONS(1517), - [anon_sym_static] = ACTIONS(1519), - [anon_sym_abstract] = ACTIONS(1519), - [anon_sym_get] = ACTIONS(1519), - [anon_sym_set] = ACTIONS(1519), - [anon_sym_declare] = ACTIONS(1519), - [anon_sym_public] = ACTIONS(1519), - [anon_sym_private] = ACTIONS(1519), - [anon_sym_protected] = ACTIONS(1519), - [anon_sym_module] = ACTIONS(1519), - [anon_sym_any] = ACTIONS(1519), - [anon_sym_number] = ACTIONS(1519), - [anon_sym_boolean] = ACTIONS(1519), - [anon_sym_string] = ACTIONS(1519), - [anon_sym_symbol] = ACTIONS(1519), - [anon_sym_interface] = ACTIONS(1519), - [anon_sym_extends] = ACTIONS(1519), - [anon_sym_enum] = ACTIONS(1519), - [sym_readonly] = ACTIONS(1519), - }, - [483] = { - [sym__call_signature] = STATE(3174), - [sym_formal_parameters] = STATE(2157), - [sym_type_parameters] = STATE(2850), - [sym_identifier] = ACTIONS(1645), - [anon_sym_export] = ACTIONS(1647), - [anon_sym_STAR] = ACTIONS(808), - [anon_sym_EQ] = ACTIONS(1119), - [anon_sym_as] = ACTIONS(808), - [anon_sym_namespace] = ACTIONS(1647), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_COMMA] = ACTIONS(841), - [anon_sym_type] = ACTIONS(1647), - [anon_sym_BANG] = ACTIONS(808), - [anon_sym_LPAREN] = ACTIONS(1635), - [anon_sym_in] = ACTIONS(808), - [anon_sym_LBRACK] = ACTIONS(1623), - [anon_sym_LT] = ACTIONS(1638), - [anon_sym_GT] = ACTIONS(808), - [anon_sym_SLASH] = ACTIONS(808), - [anon_sym_DOT] = ACTIONS(1625), - [anon_sym_async] = ACTIONS(1647), - [anon_sym_function] = ACTIONS(1627), - [anon_sym_EQ_GT] = ACTIONS(1121), - [anon_sym_QMARK_DOT] = ACTIONS(827), - [anon_sym_PLUS_EQ] = ACTIONS(831), - [anon_sym_DASH_EQ] = ACTIONS(831), - [anon_sym_STAR_EQ] = ACTIONS(831), - [anon_sym_SLASH_EQ] = ACTIONS(831), - [anon_sym_PERCENT_EQ] = ACTIONS(831), - [anon_sym_CARET_EQ] = ACTIONS(831), - [anon_sym_AMP_EQ] = ACTIONS(831), - [anon_sym_PIPE_EQ] = ACTIONS(831), - [anon_sym_GT_GT_EQ] = ACTIONS(831), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(831), - [anon_sym_LT_LT_EQ] = ACTIONS(831), - [anon_sym_STAR_STAR_EQ] = ACTIONS(831), - [anon_sym_AMP_AMP_EQ] = ACTIONS(831), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(831), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(831), - [anon_sym_QMARK] = ACTIONS(808), - [anon_sym_AMP_AMP] = ACTIONS(808), - [anon_sym_PIPE_PIPE] = ACTIONS(808), - [anon_sym_GT_GT] = ACTIONS(808), - [anon_sym_GT_GT_GT] = ACTIONS(808), - [anon_sym_LT_LT] = ACTIONS(808), - [anon_sym_AMP] = ACTIONS(808), - [anon_sym_CARET] = ACTIONS(808), - [anon_sym_PIPE] = ACTIONS(808), - [anon_sym_PLUS] = ACTIONS(808), - [anon_sym_DASH] = ACTIONS(808), - [anon_sym_PERCENT] = ACTIONS(808), - [anon_sym_STAR_STAR] = ACTIONS(808), - [anon_sym_LT_EQ] = ACTIONS(841), - [anon_sym_EQ_EQ] = ACTIONS(808), - [anon_sym_EQ_EQ_EQ] = ACTIONS(841), - [anon_sym_BANG_EQ] = ACTIONS(808), - [anon_sym_BANG_EQ_EQ] = ACTIONS(841), - [anon_sym_GT_EQ] = ACTIONS(841), - [anon_sym_QMARK_QMARK] = ACTIONS(808), - [anon_sym_instanceof] = ACTIONS(808), - [anon_sym_PLUS_PLUS] = ACTIONS(841), - [anon_sym_DASH_DASH] = ACTIONS(841), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(841), - [anon_sym_static] = ACTIONS(1647), - [anon_sym_get] = ACTIONS(1647), - [anon_sym_set] = ACTIONS(1647), - [anon_sym_declare] = ACTIONS(1647), - [anon_sym_public] = ACTIONS(1647), - [anon_sym_private] = ACTIONS(1647), - [anon_sym_protected] = ACTIONS(1647), - [anon_sym_module] = ACTIONS(1647), - [anon_sym_any] = ACTIONS(1647), - [anon_sym_number] = ACTIONS(1647), - [anon_sym_boolean] = ACTIONS(1647), - [anon_sym_string] = ACTIONS(1647), - [anon_sym_symbol] = ACTIONS(1647), - [anon_sym_implements] = ACTIONS(808), - [sym_readonly] = ACTIONS(1647), - }, - [484] = { - [sym_catch_clause] = STATE(514), - [sym_finally_clause] = STATE(555), - [ts_builtin_sym_end] = ACTIONS(1709), - [sym_identifier] = ACTIONS(1711), - [anon_sym_export] = ACTIONS(1711), - [anon_sym_default] = ACTIONS(1711), - [anon_sym_namespace] = ACTIONS(1711), - [anon_sym_LBRACE] = ACTIONS(1709), - [anon_sym_RBRACE] = ACTIONS(1709), - [anon_sym_type] = ACTIONS(1711), - [anon_sym_typeof] = ACTIONS(1711), - [anon_sym_import] = ACTIONS(1711), - [anon_sym_var] = ACTIONS(1711), - [anon_sym_let] = ACTIONS(1711), - [anon_sym_const] = ACTIONS(1711), - [anon_sym_BANG] = ACTIONS(1709), - [anon_sym_else] = ACTIONS(1711), - [anon_sym_if] = ACTIONS(1711), - [anon_sym_switch] = ACTIONS(1711), - [anon_sym_for] = ACTIONS(1711), - [anon_sym_LPAREN] = ACTIONS(1709), - [anon_sym_await] = ACTIONS(1711), - [anon_sym_while] = ACTIONS(1711), - [anon_sym_do] = ACTIONS(1711), - [anon_sym_try] = ACTIONS(1711), - [anon_sym_with] = ACTIONS(1711), - [anon_sym_break] = ACTIONS(1711), - [anon_sym_continue] = ACTIONS(1711), - [anon_sym_debugger] = ACTIONS(1711), - [anon_sym_return] = ACTIONS(1711), - [anon_sym_throw] = ACTIONS(1711), - [anon_sym_SEMI] = ACTIONS(1709), - [anon_sym_case] = ACTIONS(1711), - [anon_sym_catch] = ACTIONS(1713), - [anon_sym_finally] = ACTIONS(1715), - [anon_sym_yield] = ACTIONS(1711), - [anon_sym_LBRACK] = ACTIONS(1709), - [anon_sym_LT] = ACTIONS(1709), - [anon_sym_SLASH] = ACTIONS(1711), - [anon_sym_class] = ACTIONS(1711), - [anon_sym_async] = ACTIONS(1711), - [anon_sym_function] = ACTIONS(1711), - [anon_sym_new] = ACTIONS(1711), - [anon_sym_PLUS] = ACTIONS(1711), - [anon_sym_DASH] = ACTIONS(1711), - [anon_sym_TILDE] = ACTIONS(1709), - [anon_sym_void] = ACTIONS(1711), - [anon_sym_delete] = ACTIONS(1711), - [anon_sym_PLUS_PLUS] = ACTIONS(1709), - [anon_sym_DASH_DASH] = ACTIONS(1709), - [anon_sym_DQUOTE] = ACTIONS(1709), - [anon_sym_SQUOTE] = ACTIONS(1709), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1709), - [sym_number] = ACTIONS(1709), - [sym_this] = ACTIONS(1711), - [sym_super] = ACTIONS(1711), - [sym_true] = ACTIONS(1711), - [sym_false] = ACTIONS(1711), - [sym_null] = ACTIONS(1711), - [sym_undefined] = ACTIONS(1711), - [anon_sym_AT] = ACTIONS(1709), - [anon_sym_static] = ACTIONS(1711), - [anon_sym_abstract] = ACTIONS(1711), - [anon_sym_get] = ACTIONS(1711), - [anon_sym_set] = ACTIONS(1711), - [anon_sym_declare] = ACTIONS(1711), - [anon_sym_public] = ACTIONS(1711), - [anon_sym_private] = ACTIONS(1711), - [anon_sym_protected] = ACTIONS(1711), - [anon_sym_module] = ACTIONS(1711), - [anon_sym_any] = ACTIONS(1711), - [anon_sym_number] = ACTIONS(1711), - [anon_sym_boolean] = ACTIONS(1711), - [anon_sym_string] = ACTIONS(1711), - [anon_sym_symbol] = ACTIONS(1711), - [anon_sym_interface] = ACTIONS(1711), - [anon_sym_enum] = ACTIONS(1711), - [sym_readonly] = ACTIONS(1711), - }, - [485] = { - [sym__call_signature] = STATE(3132), - [sym_formal_parameters] = STATE(2157), - [sym_type_parameters] = STATE(2850), + [sym__call_signature] = STATE(3071), + [sym_formal_parameters] = STATE(2253), + [sym_type_parameters] = STATE(2827), [sym_identifier] = ACTIONS(1615), [anon_sym_export] = ACTIONS(1617), [anon_sym_STAR] = ACTIONS(808), @@ -56370,7 +56100,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP_EQ] = ACTIONS(831), [anon_sym_PIPE_PIPE_EQ] = ACTIONS(831), [anon_sym_QMARK_QMARK_EQ] = ACTIONS(831), - [anon_sym_QMARK] = ACTIONS(1717), + [anon_sym_QMARK] = ACTIONS(1709), [anon_sym_AMP_AMP] = ACTIONS(808), [anon_sym_PIPE_PIPE] = ACTIONS(808), [anon_sym_GT_GT] = ACTIONS(808), @@ -56410,110 +56140,354 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(1617), [sym_readonly] = ACTIONS(1617), }, - [486] = { - [sym__call_signature] = STATE(3084), - [sym_formal_parameters] = STATE(2157), - [sym_type_parameters] = STATE(2850), - [sym_identifier] = ACTIONS(1649), - [anon_sym_export] = ACTIONS(1651), - [anon_sym_STAR] = ACTIONS(808), - [anon_sym_EQ] = ACTIONS(1131), - [anon_sym_as] = ACTIONS(808), - [anon_sym_namespace] = ACTIONS(1651), - [anon_sym_LBRACE] = ACTIONS(808), - [anon_sym_COMMA] = ACTIONS(841), - [anon_sym_type] = ACTIONS(1651), - [anon_sym_BANG] = ACTIONS(808), - [anon_sym_LPAREN] = ACTIONS(1635), - [anon_sym_in] = ACTIONS(808), - [anon_sym_LBRACK] = ACTIONS(1653), - [anon_sym_LT] = ACTIONS(1638), - [anon_sym_GT] = ACTIONS(808), - [anon_sym_SLASH] = ACTIONS(808), - [anon_sym_DOT] = ACTIONS(1655), - [anon_sym_async] = ACTIONS(1651), - [anon_sym_function] = ACTIONS(1657), - [anon_sym_EQ_GT] = ACTIONS(1137), - [anon_sym_QMARK_DOT] = ACTIONS(1139), - [anon_sym_PLUS_EQ] = ACTIONS(831), - [anon_sym_DASH_EQ] = ACTIONS(831), - [anon_sym_STAR_EQ] = ACTIONS(831), - [anon_sym_SLASH_EQ] = ACTIONS(831), - [anon_sym_PERCENT_EQ] = ACTIONS(831), - [anon_sym_CARET_EQ] = ACTIONS(831), - [anon_sym_AMP_EQ] = ACTIONS(831), - [anon_sym_PIPE_EQ] = ACTIONS(831), - [anon_sym_GT_GT_EQ] = ACTIONS(831), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(831), - [anon_sym_LT_LT_EQ] = ACTIONS(831), - [anon_sym_STAR_STAR_EQ] = ACTIONS(831), - [anon_sym_AMP_AMP_EQ] = ACTIONS(831), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(831), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(831), - [anon_sym_QMARK] = ACTIONS(808), - [anon_sym_AMP_AMP] = ACTIONS(808), - [anon_sym_PIPE_PIPE] = ACTIONS(808), - [anon_sym_GT_GT] = ACTIONS(808), - [anon_sym_GT_GT_GT] = ACTIONS(808), - [anon_sym_LT_LT] = ACTIONS(808), - [anon_sym_AMP] = ACTIONS(808), - [anon_sym_CARET] = ACTIONS(808), - [anon_sym_PIPE] = ACTIONS(808), - [anon_sym_PLUS] = ACTIONS(808), - [anon_sym_DASH] = ACTIONS(808), - [anon_sym_PERCENT] = ACTIONS(808), - [anon_sym_STAR_STAR] = ACTIONS(808), - [anon_sym_LT_EQ] = ACTIONS(841), - [anon_sym_EQ_EQ] = ACTIONS(808), - [anon_sym_EQ_EQ_EQ] = ACTIONS(841), - [anon_sym_BANG_EQ] = ACTIONS(808), - [anon_sym_BANG_EQ_EQ] = ACTIONS(841), - [anon_sym_GT_EQ] = ACTIONS(841), - [anon_sym_QMARK_QMARK] = ACTIONS(808), - [anon_sym_instanceof] = ACTIONS(808), - [anon_sym_PLUS_PLUS] = ACTIONS(841), - [anon_sym_DASH_DASH] = ACTIONS(841), + [482] = { + [sym_type_arguments] = STATE(372), + [ts_builtin_sym_end] = ACTIONS(1712), + [sym_identifier] = ACTIONS(1714), + [anon_sym_export] = ACTIONS(1714), + [anon_sym_default] = ACTIONS(1714), + [anon_sym_namespace] = ACTIONS(1714), + [anon_sym_LBRACE] = ACTIONS(1712), + [anon_sym_RBRACE] = ACTIONS(1712), + [anon_sym_type] = ACTIONS(1714), + [anon_sym_typeof] = ACTIONS(1714), + [anon_sym_import] = ACTIONS(1714), + [anon_sym_var] = ACTIONS(1714), + [anon_sym_let] = ACTIONS(1714), + [anon_sym_const] = ACTIONS(1714), + [anon_sym_BANG] = ACTIONS(1712), + [anon_sym_else] = ACTIONS(1714), + [anon_sym_if] = ACTIONS(1714), + [anon_sym_switch] = ACTIONS(1714), + [anon_sym_for] = ACTIONS(1714), + [anon_sym_LPAREN] = ACTIONS(1712), + [anon_sym_await] = ACTIONS(1714), + [anon_sym_while] = ACTIONS(1714), + [anon_sym_do] = ACTIONS(1714), + [anon_sym_try] = ACTIONS(1714), + [anon_sym_with] = ACTIONS(1714), + [anon_sym_break] = ACTIONS(1714), + [anon_sym_continue] = ACTIONS(1714), + [anon_sym_debugger] = ACTIONS(1714), + [anon_sym_return] = ACTIONS(1714), + [anon_sym_throw] = ACTIONS(1714), + [anon_sym_SEMI] = ACTIONS(1712), + [anon_sym_case] = ACTIONS(1714), + [anon_sym_yield] = ACTIONS(1714), + [anon_sym_LBRACK] = ACTIONS(1712), + [anon_sym_LT] = ACTIONS(1716), + [anon_sym_SLASH] = ACTIONS(1714), + [anon_sym_class] = ACTIONS(1714), + [anon_sym_async] = ACTIONS(1714), + [anon_sym_function] = ACTIONS(1714), + [anon_sym_new] = ACTIONS(1714), + [anon_sym_AMP] = ACTIONS(1712), + [anon_sym_PIPE] = ACTIONS(1712), + [anon_sym_PLUS] = ACTIONS(1714), + [anon_sym_DASH] = ACTIONS(1714), + [anon_sym_TILDE] = ACTIONS(1712), + [anon_sym_void] = ACTIONS(1714), + [anon_sym_delete] = ACTIONS(1714), + [anon_sym_PLUS_PLUS] = ACTIONS(1712), + [anon_sym_DASH_DASH] = ACTIONS(1712), + [anon_sym_DQUOTE] = ACTIONS(1712), + [anon_sym_SQUOTE] = ACTIONS(1712), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1712), + [sym_number] = ACTIONS(1712), + [sym_this] = ACTIONS(1714), + [sym_super] = ACTIONS(1714), + [sym_true] = ACTIONS(1714), + [sym_false] = ACTIONS(1714), + [sym_null] = ACTIONS(1714), + [sym_undefined] = ACTIONS(1714), + [anon_sym_AT] = ACTIONS(1712), + [anon_sym_static] = ACTIONS(1714), + [anon_sym_abstract] = ACTIONS(1714), + [anon_sym_get] = ACTIONS(1714), + [anon_sym_set] = ACTIONS(1714), + [anon_sym_declare] = ACTIONS(1714), + [anon_sym_public] = ACTIONS(1714), + [anon_sym_private] = ACTIONS(1714), + [anon_sym_protected] = ACTIONS(1714), + [anon_sym_module] = ACTIONS(1714), + [anon_sym_any] = ACTIONS(1714), + [anon_sym_number] = ACTIONS(1714), + [anon_sym_boolean] = ACTIONS(1714), + [anon_sym_string] = ACTIONS(1714), + [anon_sym_symbol] = ACTIONS(1714), + [anon_sym_interface] = ACTIONS(1714), + [anon_sym_extends] = ACTIONS(1714), + [anon_sym_enum] = ACTIONS(1714), + [sym_readonly] = ACTIONS(1714), + }, + [483] = { + [sym_type_arguments] = STATE(372), + [ts_builtin_sym_end] = ACTIONS(1567), + [sym_identifier] = ACTIONS(1569), + [anon_sym_export] = ACTIONS(1569), + [anon_sym_default] = ACTIONS(1569), + [anon_sym_namespace] = ACTIONS(1569), + [anon_sym_LBRACE] = ACTIONS(1567), + [anon_sym_RBRACE] = ACTIONS(1567), + [anon_sym_type] = ACTIONS(1569), + [anon_sym_typeof] = ACTIONS(1569), + [anon_sym_import] = ACTIONS(1569), + [anon_sym_var] = ACTIONS(1569), + [anon_sym_let] = ACTIONS(1569), + [anon_sym_const] = ACTIONS(1569), + [anon_sym_BANG] = ACTIONS(1567), + [anon_sym_else] = ACTIONS(1569), + [anon_sym_if] = ACTIONS(1569), + [anon_sym_switch] = ACTIONS(1569), + [anon_sym_for] = ACTIONS(1569), + [anon_sym_LPAREN] = ACTIONS(1567), + [anon_sym_await] = ACTIONS(1569), + [anon_sym_while] = ACTIONS(1569), + [anon_sym_do] = ACTIONS(1569), + [anon_sym_try] = ACTIONS(1569), + [anon_sym_with] = ACTIONS(1569), + [anon_sym_break] = ACTIONS(1569), + [anon_sym_continue] = ACTIONS(1569), + [anon_sym_debugger] = ACTIONS(1569), + [anon_sym_return] = ACTIONS(1569), + [anon_sym_throw] = ACTIONS(1569), + [anon_sym_SEMI] = ACTIONS(1567), + [anon_sym_case] = ACTIONS(1569), + [anon_sym_yield] = ACTIONS(1569), + [anon_sym_LBRACK] = ACTIONS(1567), + [anon_sym_LT] = ACTIONS(1567), + [anon_sym_SLASH] = ACTIONS(1569), + [anon_sym_class] = ACTIONS(1569), + [anon_sym_async] = ACTIONS(1569), + [anon_sym_function] = ACTIONS(1569), + [anon_sym_new] = ACTIONS(1569), + [anon_sym_AMP] = ACTIONS(1567), + [anon_sym_PIPE] = ACTIONS(1567), + [anon_sym_PLUS] = ACTIONS(1569), + [anon_sym_DASH] = ACTIONS(1569), + [anon_sym_TILDE] = ACTIONS(1567), + [anon_sym_void] = ACTIONS(1569), + [anon_sym_delete] = ACTIONS(1569), + [anon_sym_PLUS_PLUS] = ACTIONS(1567), + [anon_sym_DASH_DASH] = ACTIONS(1567), + [anon_sym_DQUOTE] = ACTIONS(1567), + [anon_sym_SQUOTE] = ACTIONS(1567), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(841), - [anon_sym_static] = ACTIONS(1651), - [anon_sym_get] = ACTIONS(1651), - [anon_sym_set] = ACTIONS(1651), - [anon_sym_declare] = ACTIONS(1651), - [anon_sym_public] = ACTIONS(1651), - [anon_sym_private] = ACTIONS(1651), - [anon_sym_protected] = ACTIONS(1651), - [anon_sym_module] = ACTIONS(1651), - [anon_sym_any] = ACTIONS(1651), - [anon_sym_number] = ACTIONS(1651), - [anon_sym_boolean] = ACTIONS(1651), - [anon_sym_string] = ACTIONS(1651), - [anon_sym_symbol] = ACTIONS(1651), - [sym_readonly] = ACTIONS(1651), - [anon_sym_LBRACE_PIPE] = ACTIONS(841), + [anon_sym_BQUOTE] = ACTIONS(1567), + [sym_number] = ACTIONS(1567), + [sym_this] = ACTIONS(1569), + [sym_super] = ACTIONS(1569), + [sym_true] = ACTIONS(1569), + [sym_false] = ACTIONS(1569), + [sym_null] = ACTIONS(1569), + [sym_undefined] = ACTIONS(1569), + [anon_sym_AT] = ACTIONS(1567), + [anon_sym_static] = ACTIONS(1569), + [anon_sym_abstract] = ACTIONS(1569), + [anon_sym_get] = ACTIONS(1569), + [anon_sym_set] = ACTIONS(1569), + [anon_sym_declare] = ACTIONS(1569), + [anon_sym_public] = ACTIONS(1569), + [anon_sym_private] = ACTIONS(1569), + [anon_sym_protected] = ACTIONS(1569), + [anon_sym_module] = ACTIONS(1569), + [anon_sym_any] = ACTIONS(1569), + [anon_sym_number] = ACTIONS(1569), + [anon_sym_boolean] = ACTIONS(1569), + [anon_sym_string] = ACTIONS(1569), + [anon_sym_symbol] = ACTIONS(1569), + [anon_sym_interface] = ACTIONS(1569), + [anon_sym_extends] = ACTIONS(1569), + [anon_sym_enum] = ACTIONS(1569), + [sym_readonly] = ACTIONS(1569), + }, + [484] = { + [ts_builtin_sym_end] = ACTIONS(937), + [sym_identifier] = ACTIONS(939), + [anon_sym_export] = ACTIONS(939), + [anon_sym_default] = ACTIONS(939), + [anon_sym_namespace] = ACTIONS(939), + [anon_sym_LBRACE] = ACTIONS(937), + [anon_sym_COMMA] = ACTIONS(937), + [anon_sym_RBRACE] = ACTIONS(937), + [anon_sym_type] = ACTIONS(939), + [anon_sym_typeof] = ACTIONS(939), + [anon_sym_import] = ACTIONS(939), + [anon_sym_var] = ACTIONS(939), + [anon_sym_let] = ACTIONS(939), + [anon_sym_const] = ACTIONS(939), + [anon_sym_BANG] = ACTIONS(937), + [anon_sym_else] = ACTIONS(939), + [anon_sym_if] = ACTIONS(939), + [anon_sym_switch] = ACTIONS(939), + [anon_sym_for] = ACTIONS(939), + [anon_sym_LPAREN] = ACTIONS(937), + [anon_sym_await] = ACTIONS(939), + [anon_sym_while] = ACTIONS(939), + [anon_sym_do] = ACTIONS(939), + [anon_sym_try] = ACTIONS(939), + [anon_sym_with] = ACTIONS(939), + [anon_sym_break] = ACTIONS(939), + [anon_sym_continue] = ACTIONS(939), + [anon_sym_debugger] = ACTIONS(939), + [anon_sym_return] = ACTIONS(939), + [anon_sym_throw] = ACTIONS(939), + [anon_sym_SEMI] = ACTIONS(937), + [anon_sym_case] = ACTIONS(939), + [anon_sym_catch] = ACTIONS(939), + [anon_sym_finally] = ACTIONS(939), + [anon_sym_yield] = ACTIONS(939), + [anon_sym_LBRACK] = ACTIONS(937), + [anon_sym_LT] = ACTIONS(937), + [anon_sym_SLASH] = ACTIONS(939), + [anon_sym_class] = ACTIONS(939), + [anon_sym_async] = ACTIONS(939), + [anon_sym_function] = ACTIONS(939), + [anon_sym_new] = ACTIONS(939), + [anon_sym_PLUS] = ACTIONS(939), + [anon_sym_DASH] = ACTIONS(939), + [anon_sym_TILDE] = ACTIONS(937), + [anon_sym_void] = ACTIONS(939), + [anon_sym_delete] = ACTIONS(939), + [anon_sym_PLUS_PLUS] = ACTIONS(937), + [anon_sym_DASH_DASH] = ACTIONS(937), + [anon_sym_DQUOTE] = ACTIONS(937), + [anon_sym_SQUOTE] = ACTIONS(937), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(937), + [sym_number] = ACTIONS(937), + [sym_this] = ACTIONS(939), + [sym_super] = ACTIONS(939), + [sym_true] = ACTIONS(939), + [sym_false] = ACTIONS(939), + [sym_null] = ACTIONS(939), + [sym_undefined] = ACTIONS(939), + [anon_sym_AT] = ACTIONS(937), + [anon_sym_static] = ACTIONS(939), + [anon_sym_abstract] = ACTIONS(939), + [anon_sym_get] = ACTIONS(939), + [anon_sym_set] = ACTIONS(939), + [anon_sym_declare] = ACTIONS(939), + [anon_sym_public] = ACTIONS(939), + [anon_sym_private] = ACTIONS(939), + [anon_sym_protected] = ACTIONS(939), + [anon_sym_module] = ACTIONS(939), + [anon_sym_any] = ACTIONS(939), + [anon_sym_number] = ACTIONS(939), + [anon_sym_boolean] = ACTIONS(939), + [anon_sym_string] = ACTIONS(939), + [anon_sym_symbol] = ACTIONS(939), + [anon_sym_interface] = ACTIONS(939), + [anon_sym_enum] = ACTIONS(939), + [sym_readonly] = ACTIONS(939), + [sym__automatic_semicolon] = ACTIONS(1719), }, - [487] = { - [sym_object] = STATE(2322), - [sym_array] = STATE(2325), - [sym_identifier] = ACTIONS(1720), - [anon_sym_export] = ACTIONS(801), + [485] = { + [ts_builtin_sym_end] = ACTIONS(945), + [sym_identifier] = ACTIONS(947), + [anon_sym_export] = ACTIONS(947), + [anon_sym_default] = ACTIONS(947), + [anon_sym_namespace] = ACTIONS(947), + [anon_sym_LBRACE] = ACTIONS(945), + [anon_sym_RBRACE] = ACTIONS(945), + [anon_sym_type] = ACTIONS(947), + [anon_sym_typeof] = ACTIONS(947), + [anon_sym_import] = ACTIONS(947), + [anon_sym_var] = ACTIONS(947), + [anon_sym_let] = ACTIONS(947), + [anon_sym_const] = ACTIONS(947), + [anon_sym_BANG] = ACTIONS(945), + [anon_sym_else] = ACTIONS(947), + [anon_sym_if] = ACTIONS(947), + [anon_sym_switch] = ACTIONS(947), + [anon_sym_for] = ACTIONS(947), + [anon_sym_LPAREN] = ACTIONS(945), + [anon_sym_await] = ACTIONS(947), + [anon_sym_while] = ACTIONS(947), + [anon_sym_do] = ACTIONS(947), + [anon_sym_try] = ACTIONS(947), + [anon_sym_with] = ACTIONS(947), + [anon_sym_break] = ACTIONS(947), + [anon_sym_continue] = ACTIONS(947), + [anon_sym_debugger] = ACTIONS(947), + [anon_sym_return] = ACTIONS(947), + [anon_sym_throw] = ACTIONS(947), + [anon_sym_SEMI] = ACTIONS(945), + [anon_sym_case] = ACTIONS(947), + [anon_sym_yield] = ACTIONS(947), + [anon_sym_LBRACK] = ACTIONS(945), + [anon_sym_LT] = ACTIONS(1721), + [anon_sym_SLASH] = ACTIONS(947), + [anon_sym_DOT] = ACTIONS(947), + [anon_sym_class] = ACTIONS(947), + [anon_sym_async] = ACTIONS(947), + [anon_sym_function] = ACTIONS(947), + [anon_sym_new] = ACTIONS(947), + [anon_sym_AMP] = ACTIONS(945), + [anon_sym_PIPE] = ACTIONS(945), + [anon_sym_PLUS] = ACTIONS(947), + [anon_sym_DASH] = ACTIONS(947), + [anon_sym_TILDE] = ACTIONS(945), + [anon_sym_void] = ACTIONS(947), + [anon_sym_delete] = ACTIONS(947), + [anon_sym_PLUS_PLUS] = ACTIONS(945), + [anon_sym_DASH_DASH] = ACTIONS(945), + [anon_sym_DQUOTE] = ACTIONS(945), + [anon_sym_SQUOTE] = ACTIONS(945), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(945), + [sym_number] = ACTIONS(945), + [sym_this] = ACTIONS(947), + [sym_super] = ACTIONS(947), + [sym_true] = ACTIONS(947), + [sym_false] = ACTIONS(947), + [sym_null] = ACTIONS(947), + [sym_undefined] = ACTIONS(947), + [anon_sym_AT] = ACTIONS(945), + [anon_sym_static] = ACTIONS(947), + [anon_sym_abstract] = ACTIONS(947), + [anon_sym_get] = ACTIONS(947), + [anon_sym_set] = ACTIONS(947), + [anon_sym_declare] = ACTIONS(947), + [anon_sym_public] = ACTIONS(947), + [anon_sym_private] = ACTIONS(947), + [anon_sym_protected] = ACTIONS(947), + [anon_sym_module] = ACTIONS(947), + [anon_sym_any] = ACTIONS(947), + [anon_sym_number] = ACTIONS(947), + [anon_sym_boolean] = ACTIONS(947), + [anon_sym_string] = ACTIONS(947), + [anon_sym_symbol] = ACTIONS(947), + [anon_sym_interface] = ACTIONS(947), + [anon_sym_extends] = ACTIONS(947), + [anon_sym_enum] = ACTIONS(947), + [sym_readonly] = ACTIONS(947), + }, + [486] = { + [sym__call_signature] = STATE(3071), + [sym_formal_parameters] = STATE(2253), + [sym_type_parameters] = STATE(2827), + [sym_identifier] = ACTIONS(1615), + [anon_sym_export] = ACTIONS(1617), [anon_sym_STAR] = ACTIONS(808), [anon_sym_EQ] = ACTIONS(805), [anon_sym_as] = ACTIONS(808), - [anon_sym_namespace] = ACTIONS(801), - [anon_sym_LBRACE] = ACTIONS(1722), + [anon_sym_namespace] = ACTIONS(1617), [anon_sym_COMMA] = ACTIONS(812), - [anon_sym_type] = ACTIONS(801), + [anon_sym_type] = ACTIONS(1617), [anon_sym_BANG] = ACTIONS(808), - [anon_sym_LPAREN] = ACTIONS(841), + [anon_sym_LPAREN] = ACTIONS(1635), [anon_sym_RPAREN] = ACTIONS(812), [anon_sym_in] = ACTIONS(808), - [anon_sym_COLON] = ACTIONS(812), - [anon_sym_LBRACK] = ACTIONS(1724), - [anon_sym_LT] = ACTIONS(808), + [anon_sym_COLON] = ACTIONS(1724), + [anon_sym_LBRACK] = ACTIONS(1623), + [anon_sym_LT] = ACTIONS(1638), [anon_sym_GT] = ACTIONS(808), [anon_sym_SLASH] = ACTIONS(808), [anon_sym_DOT] = ACTIONS(1625), - [anon_sym_async] = ACTIONS(801), + [anon_sym_async] = ACTIONS(1617), + [anon_sym_function] = ACTIONS(1627), [anon_sym_EQ_GT] = ACTIONS(825), [anon_sym_QMARK_DOT] = ACTIONS(827), [anon_sym_PLUS_EQ] = ACTIONS(831), @@ -56531,7 +56505,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP_EQ] = ACTIONS(831), [anon_sym_PIPE_PIPE_EQ] = ACTIONS(831), [anon_sym_QMARK_QMARK_EQ] = ACTIONS(831), - [anon_sym_QMARK] = ACTIONS(1717), + [anon_sym_QMARK] = ACTIONS(1709), [anon_sym_AMP_AMP] = ACTIONS(808), [anon_sym_PIPE_PIPE] = ACTIONS(808), [anon_sym_GT_GT] = ACTIONS(808), @@ -56556,48 +56530,46 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(841), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(841), - [sym_this] = ACTIONS(1720), - [anon_sym_static] = ACTIONS(801), - [anon_sym_get] = ACTIONS(801), - [anon_sym_set] = ACTIONS(801), - [anon_sym_declare] = ACTIONS(801), - [anon_sym_public] = ACTIONS(801), - [anon_sym_private] = ACTIONS(801), - [anon_sym_protected] = ACTIONS(801), - [anon_sym_module] = ACTIONS(801), - [anon_sym_any] = ACTIONS(801), - [anon_sym_number] = ACTIONS(801), - [anon_sym_boolean] = ACTIONS(801), - [anon_sym_string] = ACTIONS(801), - [anon_sym_symbol] = ACTIONS(801), - [sym_readonly] = ACTIONS(801), + [anon_sym_static] = ACTIONS(1617), + [anon_sym_get] = ACTIONS(1617), + [anon_sym_set] = ACTIONS(1617), + [anon_sym_declare] = ACTIONS(1617), + [anon_sym_public] = ACTIONS(1617), + [anon_sym_private] = ACTIONS(1617), + [anon_sym_protected] = ACTIONS(1617), + [anon_sym_module] = ACTIONS(1617), + [anon_sym_any] = ACTIONS(1617), + [anon_sym_number] = ACTIONS(1617), + [anon_sym_boolean] = ACTIONS(1617), + [anon_sym_string] = ACTIONS(1617), + [anon_sym_symbol] = ACTIONS(1617), + [sym_readonly] = ACTIONS(1617), }, - [488] = { - [sym__call_signature] = STATE(3132), - [sym_formal_parameters] = STATE(2157), - [sym_type_parameters] = STATE(2850), - [sym_identifier] = ACTIONS(1615), - [anon_sym_export] = ACTIONS(1617), + [487] = { + [sym__call_signature] = STATE(3092), + [sym_formal_parameters] = STATE(2253), + [sym_type_parameters] = STATE(2827), + [sym_identifier] = ACTIONS(1649), + [anon_sym_export] = ACTIONS(1651), [anon_sym_STAR] = ACTIONS(808), - [anon_sym_EQ] = ACTIONS(927), + [anon_sym_EQ] = ACTIONS(1139), [anon_sym_as] = ACTIONS(808), - [anon_sym_namespace] = ACTIONS(1617), + [anon_sym_namespace] = ACTIONS(1651), + [anon_sym_LBRACE] = ACTIONS(808), [anon_sym_COMMA] = ACTIONS(841), - [anon_sym_type] = ACTIONS(1617), + [anon_sym_type] = ACTIONS(1651), [anon_sym_BANG] = ACTIONS(808), [anon_sym_LPAREN] = ACTIONS(1635), [anon_sym_in] = ACTIONS(808), - [anon_sym_COLON] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(1623), - [anon_sym_RBRACK] = ACTIONS(841), + [anon_sym_LBRACK] = ACTIONS(1653), [anon_sym_LT] = ACTIONS(1638), [anon_sym_GT] = ACTIONS(808), [anon_sym_SLASH] = ACTIONS(808), - [anon_sym_DOT] = ACTIONS(1625), - [anon_sym_async] = ACTIONS(1617), - [anon_sym_function] = ACTIONS(1627), - [anon_sym_EQ_GT] = ACTIONS(825), - [anon_sym_QMARK_DOT] = ACTIONS(827), + [anon_sym_DOT] = ACTIONS(1655), + [anon_sym_async] = ACTIONS(1651), + [anon_sym_function] = ACTIONS(1657), + [anon_sym_EQ_GT] = ACTIONS(1145), + [anon_sym_QMARK_DOT] = ACTIONS(1147), [anon_sym_PLUS_EQ] = ACTIONS(831), [anon_sym_DASH_EQ] = ACTIONS(831), [anon_sym_STAR_EQ] = ACTIONS(831), @@ -56638,38 +56610,39 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(841), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(841), - [anon_sym_static] = ACTIONS(1617), - [anon_sym_get] = ACTIONS(1617), - [anon_sym_set] = ACTIONS(1617), - [anon_sym_declare] = ACTIONS(1617), - [anon_sym_public] = ACTIONS(1617), - [anon_sym_private] = ACTIONS(1617), - [anon_sym_protected] = ACTIONS(1617), - [anon_sym_module] = ACTIONS(1617), - [anon_sym_any] = ACTIONS(1617), - [anon_sym_number] = ACTIONS(1617), - [anon_sym_boolean] = ACTIONS(1617), - [anon_sym_string] = ACTIONS(1617), - [anon_sym_symbol] = ACTIONS(1617), - [sym_readonly] = ACTIONS(1617), + [anon_sym_static] = ACTIONS(1651), + [anon_sym_get] = ACTIONS(1651), + [anon_sym_set] = ACTIONS(1651), + [anon_sym_declare] = ACTIONS(1651), + [anon_sym_public] = ACTIONS(1651), + [anon_sym_private] = ACTIONS(1651), + [anon_sym_protected] = ACTIONS(1651), + [anon_sym_module] = ACTIONS(1651), + [anon_sym_any] = ACTIONS(1651), + [anon_sym_number] = ACTIONS(1651), + [anon_sym_boolean] = ACTIONS(1651), + [anon_sym_string] = ACTIONS(1651), + [anon_sym_symbol] = ACTIONS(1651), + [sym_readonly] = ACTIONS(1651), + [anon_sym_LBRACE_PIPE] = ACTIONS(841), }, - [489] = { - [sym_object] = STATE(2322), - [sym_array] = STATE(2325), - [sym_identifier] = ACTIONS(1720), + [488] = { + [sym_object] = STATE(2357), + [sym_array] = STATE(2356), + [sym_identifier] = ACTIONS(1726), [anon_sym_export] = ACTIONS(801), [anon_sym_STAR] = ACTIONS(808), [anon_sym_EQ] = ACTIONS(805), [anon_sym_as] = ACTIONS(808), [anon_sym_namespace] = ACTIONS(801), - [anon_sym_LBRACE] = ACTIONS(1722), + [anon_sym_LBRACE] = ACTIONS(1728), [anon_sym_COMMA] = ACTIONS(812), [anon_sym_type] = ACTIONS(801), [anon_sym_BANG] = ACTIONS(808), [anon_sym_LPAREN] = ACTIONS(841), [anon_sym_RPAREN] = ACTIONS(812), [anon_sym_in] = ACTIONS(808), - [anon_sym_COLON] = ACTIONS(1728), + [anon_sym_COLON] = ACTIONS(812), [anon_sym_LBRACK] = ACTIONS(1730), [anon_sym_LT] = ACTIONS(808), [anon_sym_GT] = ACTIONS(808), @@ -56693,7 +56666,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP_EQ] = ACTIONS(831), [anon_sym_PIPE_PIPE_EQ] = ACTIONS(831), [anon_sym_QMARK_QMARK_EQ] = ACTIONS(831), - [anon_sym_QMARK] = ACTIONS(1717), + [anon_sym_QMARK] = ACTIONS(1709), [anon_sym_AMP_AMP] = ACTIONS(808), [anon_sym_PIPE_PIPE] = ACTIONS(808), [anon_sym_GT_GT] = ACTIONS(808), @@ -56718,7 +56691,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(841), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(841), - [sym_this] = ACTIONS(1720), + [sym_this] = ACTIONS(1726), [anon_sym_static] = ACTIONS(801), [anon_sym_get] = ACTIONS(801), [anon_sym_set] = ACTIONS(801), @@ -56734,112 +56707,30 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(801), [sym_readonly] = ACTIONS(801), }, - [490] = { - [ts_builtin_sym_end] = ACTIONS(947), - [sym_identifier] = ACTIONS(949), - [anon_sym_export] = ACTIONS(949), - [anon_sym_default] = ACTIONS(949), - [anon_sym_namespace] = ACTIONS(949), - [anon_sym_LBRACE] = ACTIONS(947), - [anon_sym_COMMA] = ACTIONS(947), - [anon_sym_RBRACE] = ACTIONS(947), - [anon_sym_type] = ACTIONS(949), - [anon_sym_typeof] = ACTIONS(949), - [anon_sym_import] = ACTIONS(949), - [anon_sym_var] = ACTIONS(949), - [anon_sym_let] = ACTIONS(949), - [anon_sym_const] = ACTIONS(949), - [anon_sym_BANG] = ACTIONS(947), - [anon_sym_else] = ACTIONS(949), - [anon_sym_if] = ACTIONS(949), - [anon_sym_switch] = ACTIONS(949), - [anon_sym_for] = ACTIONS(949), - [anon_sym_LPAREN] = ACTIONS(947), - [anon_sym_await] = ACTIONS(949), - [anon_sym_while] = ACTIONS(949), - [anon_sym_do] = ACTIONS(949), - [anon_sym_try] = ACTIONS(949), - [anon_sym_with] = ACTIONS(949), - [anon_sym_break] = ACTIONS(949), - [anon_sym_continue] = ACTIONS(949), - [anon_sym_debugger] = ACTIONS(949), - [anon_sym_return] = ACTIONS(949), - [anon_sym_throw] = ACTIONS(949), - [anon_sym_SEMI] = ACTIONS(947), - [anon_sym_case] = ACTIONS(949), - [anon_sym_catch] = ACTIONS(949), - [anon_sym_finally] = ACTIONS(949), - [anon_sym_yield] = ACTIONS(949), - [anon_sym_LBRACK] = ACTIONS(947), - [anon_sym_LT] = ACTIONS(947), - [anon_sym_SLASH] = ACTIONS(949), - [anon_sym_class] = ACTIONS(949), - [anon_sym_async] = ACTIONS(949), - [anon_sym_function] = ACTIONS(949), - [anon_sym_new] = ACTIONS(949), - [anon_sym_PLUS] = ACTIONS(949), - [anon_sym_DASH] = ACTIONS(949), - [anon_sym_TILDE] = ACTIONS(947), - [anon_sym_void] = ACTIONS(949), - [anon_sym_delete] = ACTIONS(949), - [anon_sym_PLUS_PLUS] = ACTIONS(947), - [anon_sym_DASH_DASH] = ACTIONS(947), - [anon_sym_DQUOTE] = ACTIONS(947), - [anon_sym_SQUOTE] = ACTIONS(947), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(947), - [sym_number] = ACTIONS(947), - [sym_this] = ACTIONS(949), - [sym_super] = ACTIONS(949), - [sym_true] = ACTIONS(949), - [sym_false] = ACTIONS(949), - [sym_null] = ACTIONS(949), - [sym_undefined] = ACTIONS(949), - [anon_sym_AT] = ACTIONS(947), - [anon_sym_static] = ACTIONS(949), - [anon_sym_abstract] = ACTIONS(949), - [anon_sym_get] = ACTIONS(949), - [anon_sym_set] = ACTIONS(949), - [anon_sym_declare] = ACTIONS(949), - [anon_sym_public] = ACTIONS(949), - [anon_sym_private] = ACTIONS(949), - [anon_sym_protected] = ACTIONS(949), - [anon_sym_module] = ACTIONS(949), - [anon_sym_any] = ACTIONS(949), - [anon_sym_number] = ACTIONS(949), - [anon_sym_boolean] = ACTIONS(949), - [anon_sym_string] = ACTIONS(949), - [anon_sym_symbol] = ACTIONS(949), - [anon_sym_interface] = ACTIONS(949), - [anon_sym_enum] = ACTIONS(949), - [sym_readonly] = ACTIONS(949), - [sym__automatic_semicolon] = ACTIONS(1732), - }, - [491] = { - [sym__call_signature] = STATE(3132), - [sym_formal_parameters] = STATE(2157), - [sym_type_parameters] = STATE(2850), - [sym_identifier] = ACTIONS(1615), - [anon_sym_export] = ACTIONS(1617), + [489] = { + [sym__call_signature] = STATE(3194), + [sym_formal_parameters] = STATE(2253), + [sym_type_parameters] = STATE(2827), + [sym_identifier] = ACTIONS(1645), + [anon_sym_export] = ACTIONS(1647), [anon_sym_STAR] = ACTIONS(808), - [anon_sym_EQ] = ACTIONS(805), + [anon_sym_EQ] = ACTIONS(1119), [anon_sym_as] = ACTIONS(808), - [anon_sym_namespace] = ACTIONS(1617), - [anon_sym_COMMA] = ACTIONS(812), - [anon_sym_type] = ACTIONS(1617), + [anon_sym_namespace] = ACTIONS(1647), + [anon_sym_LBRACE] = ACTIONS(841), + [anon_sym_COMMA] = ACTIONS(841), + [anon_sym_type] = ACTIONS(1647), [anon_sym_BANG] = ACTIONS(808), [anon_sym_LPAREN] = ACTIONS(1635), - [anon_sym_RPAREN] = ACTIONS(812), [anon_sym_in] = ACTIONS(808), - [anon_sym_COLON] = ACTIONS(1728), [anon_sym_LBRACK] = ACTIONS(1623), [anon_sym_LT] = ACTIONS(1638), [anon_sym_GT] = ACTIONS(808), [anon_sym_SLASH] = ACTIONS(808), [anon_sym_DOT] = ACTIONS(1625), - [anon_sym_async] = ACTIONS(1617), + [anon_sym_async] = ACTIONS(1647), [anon_sym_function] = ACTIONS(1627), - [anon_sym_EQ_GT] = ACTIONS(825), + [anon_sym_EQ_GT] = ACTIONS(1121), [anon_sym_QMARK_DOT] = ACTIONS(827), [anon_sym_PLUS_EQ] = ACTIONS(831), [anon_sym_DASH_EQ] = ACTIONS(831), @@ -56856,7 +56747,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP_EQ] = ACTIONS(831), [anon_sym_PIPE_PIPE_EQ] = ACTIONS(831), [anon_sym_QMARK_QMARK_EQ] = ACTIONS(831), - [anon_sym_QMARK] = ACTIONS(1717), + [anon_sym_QMARK] = ACTIONS(808), [anon_sym_AMP_AMP] = ACTIONS(808), [anon_sym_PIPE_PIPE] = ACTIONS(808), [anon_sym_GT_GT] = ACTIONS(808), @@ -56881,22 +56772,23 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(841), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(841), - [anon_sym_static] = ACTIONS(1617), - [anon_sym_get] = ACTIONS(1617), - [anon_sym_set] = ACTIONS(1617), - [anon_sym_declare] = ACTIONS(1617), - [anon_sym_public] = ACTIONS(1617), - [anon_sym_private] = ACTIONS(1617), - [anon_sym_protected] = ACTIONS(1617), - [anon_sym_module] = ACTIONS(1617), - [anon_sym_any] = ACTIONS(1617), - [anon_sym_number] = ACTIONS(1617), - [anon_sym_boolean] = ACTIONS(1617), - [anon_sym_string] = ACTIONS(1617), - [anon_sym_symbol] = ACTIONS(1617), - [sym_readonly] = ACTIONS(1617), + [anon_sym_static] = ACTIONS(1647), + [anon_sym_get] = ACTIONS(1647), + [anon_sym_set] = ACTIONS(1647), + [anon_sym_declare] = ACTIONS(1647), + [anon_sym_public] = ACTIONS(1647), + [anon_sym_private] = ACTIONS(1647), + [anon_sym_protected] = ACTIONS(1647), + [anon_sym_module] = ACTIONS(1647), + [anon_sym_any] = ACTIONS(1647), + [anon_sym_number] = ACTIONS(1647), + [anon_sym_boolean] = ACTIONS(1647), + [anon_sym_string] = ACTIONS(1647), + [anon_sym_symbol] = ACTIONS(1647), + [anon_sym_implements] = ACTIONS(808), + [sym_readonly] = ACTIONS(1647), }, - [492] = { + [490] = { [ts_builtin_sym_end] = ACTIONS(907), [sym_identifier] = ACTIONS(909), [anon_sym_export] = ACTIONS(909), @@ -56977,8 +56869,171 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_readonly] = ACTIONS(909), [sym__automatic_semicolon] = ACTIONS(915), }, + [491] = { + [ts_builtin_sym_end] = ACTIONS(1501), + [sym_identifier] = ACTIONS(1503), + [anon_sym_export] = ACTIONS(1503), + [anon_sym_default] = ACTIONS(1503), + [anon_sym_namespace] = ACTIONS(1503), + [anon_sym_LBRACE] = ACTIONS(1501), + [anon_sym_RBRACE] = ACTIONS(1501), + [anon_sym_type] = ACTIONS(1503), + [anon_sym_typeof] = ACTIONS(1503), + [anon_sym_import] = ACTIONS(1503), + [anon_sym_var] = ACTIONS(1503), + [anon_sym_let] = ACTIONS(1503), + [anon_sym_const] = ACTIONS(1503), + [anon_sym_BANG] = ACTIONS(1501), + [anon_sym_else] = ACTIONS(1503), + [anon_sym_if] = ACTIONS(1503), + [anon_sym_switch] = ACTIONS(1503), + [anon_sym_for] = ACTIONS(1503), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_await] = ACTIONS(1503), + [anon_sym_while] = ACTIONS(1503), + [anon_sym_do] = ACTIONS(1503), + [anon_sym_try] = ACTIONS(1503), + [anon_sym_with] = ACTIONS(1503), + [anon_sym_break] = ACTIONS(1503), + [anon_sym_continue] = ACTIONS(1503), + [anon_sym_debugger] = ACTIONS(1503), + [anon_sym_return] = ACTIONS(1503), + [anon_sym_throw] = ACTIONS(1503), + [anon_sym_SEMI] = ACTIONS(1501), + [anon_sym_case] = ACTIONS(1503), + [anon_sym_yield] = ACTIONS(1503), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LT] = ACTIONS(1501), + [anon_sym_SLASH] = ACTIONS(1503), + [anon_sym_DOT] = ACTIONS(1694), + [anon_sym_class] = ACTIONS(1503), + [anon_sym_async] = ACTIONS(1503), + [anon_sym_function] = ACTIONS(1503), + [anon_sym_new] = ACTIONS(1503), + [anon_sym_AMP] = ACTIONS(1501), + [anon_sym_PIPE] = ACTIONS(1501), + [anon_sym_PLUS] = ACTIONS(1503), + [anon_sym_DASH] = ACTIONS(1503), + [anon_sym_TILDE] = ACTIONS(1501), + [anon_sym_void] = ACTIONS(1503), + [anon_sym_delete] = ACTIONS(1503), + [anon_sym_PLUS_PLUS] = ACTIONS(1501), + [anon_sym_DASH_DASH] = ACTIONS(1501), + [anon_sym_DQUOTE] = ACTIONS(1501), + [anon_sym_SQUOTE] = ACTIONS(1501), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1501), + [sym_number] = ACTIONS(1501), + [sym_this] = ACTIONS(1503), + [sym_super] = ACTIONS(1503), + [sym_true] = ACTIONS(1503), + [sym_false] = ACTIONS(1503), + [sym_null] = ACTIONS(1503), + [sym_undefined] = ACTIONS(1503), + [anon_sym_AT] = ACTIONS(1501), + [anon_sym_static] = ACTIONS(1503), + [anon_sym_abstract] = ACTIONS(1503), + [anon_sym_get] = ACTIONS(1503), + [anon_sym_set] = ACTIONS(1503), + [anon_sym_declare] = ACTIONS(1503), + [anon_sym_public] = ACTIONS(1503), + [anon_sym_private] = ACTIONS(1503), + [anon_sym_protected] = ACTIONS(1503), + [anon_sym_module] = ACTIONS(1503), + [anon_sym_any] = ACTIONS(1503), + [anon_sym_number] = ACTIONS(1503), + [anon_sym_boolean] = ACTIONS(1503), + [anon_sym_string] = ACTIONS(1503), + [anon_sym_symbol] = ACTIONS(1503), + [anon_sym_interface] = ACTIONS(1503), + [anon_sym_extends] = ACTIONS(1503), + [anon_sym_enum] = ACTIONS(1503), + [sym_readonly] = ACTIONS(1503), + }, + [492] = { + [sym__call_signature] = STATE(3071), + [sym_formal_parameters] = STATE(2253), + [sym_type_parameters] = STATE(2827), + [sym_identifier] = ACTIONS(1615), + [anon_sym_export] = ACTIONS(1617), + [anon_sym_STAR] = ACTIONS(808), + [anon_sym_EQ] = ACTIONS(927), + [anon_sym_as] = ACTIONS(808), + [anon_sym_namespace] = ACTIONS(1617), + [anon_sym_COMMA] = ACTIONS(841), + [anon_sym_type] = ACTIONS(1617), + [anon_sym_BANG] = ACTIONS(808), + [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_in] = ACTIONS(808), + [anon_sym_COLON] = ACTIONS(1732), + [anon_sym_LBRACK] = ACTIONS(1623), + [anon_sym_RBRACK] = ACTIONS(841), + [anon_sym_LT] = ACTIONS(1638), + [anon_sym_GT] = ACTIONS(808), + [anon_sym_SLASH] = ACTIONS(808), + [anon_sym_DOT] = ACTIONS(1625), + [anon_sym_async] = ACTIONS(1617), + [anon_sym_function] = ACTIONS(1627), + [anon_sym_EQ_GT] = ACTIONS(825), + [anon_sym_QMARK_DOT] = ACTIONS(827), + [anon_sym_PLUS_EQ] = ACTIONS(831), + [anon_sym_DASH_EQ] = ACTIONS(831), + [anon_sym_STAR_EQ] = ACTIONS(831), + [anon_sym_SLASH_EQ] = ACTIONS(831), + [anon_sym_PERCENT_EQ] = ACTIONS(831), + [anon_sym_CARET_EQ] = ACTIONS(831), + [anon_sym_AMP_EQ] = ACTIONS(831), + [anon_sym_PIPE_EQ] = ACTIONS(831), + [anon_sym_GT_GT_EQ] = ACTIONS(831), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(831), + [anon_sym_LT_LT_EQ] = ACTIONS(831), + [anon_sym_STAR_STAR_EQ] = ACTIONS(831), + [anon_sym_AMP_AMP_EQ] = ACTIONS(831), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(831), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(831), + [anon_sym_QMARK] = ACTIONS(808), + [anon_sym_AMP_AMP] = ACTIONS(808), + [anon_sym_PIPE_PIPE] = ACTIONS(808), + [anon_sym_GT_GT] = ACTIONS(808), + [anon_sym_GT_GT_GT] = ACTIONS(808), + [anon_sym_LT_LT] = ACTIONS(808), + [anon_sym_AMP] = ACTIONS(808), + [anon_sym_CARET] = ACTIONS(808), + [anon_sym_PIPE] = ACTIONS(808), + [anon_sym_PLUS] = ACTIONS(808), + [anon_sym_DASH] = ACTIONS(808), + [anon_sym_PERCENT] = ACTIONS(808), + [anon_sym_STAR_STAR] = ACTIONS(808), + [anon_sym_LT_EQ] = ACTIONS(841), + [anon_sym_EQ_EQ] = ACTIONS(808), + [anon_sym_EQ_EQ_EQ] = ACTIONS(841), + [anon_sym_BANG_EQ] = ACTIONS(808), + [anon_sym_BANG_EQ_EQ] = ACTIONS(841), + [anon_sym_GT_EQ] = ACTIONS(841), + [anon_sym_QMARK_QMARK] = ACTIONS(808), + [anon_sym_instanceof] = ACTIONS(808), + [anon_sym_PLUS_PLUS] = ACTIONS(841), + [anon_sym_DASH_DASH] = ACTIONS(841), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(841), + [anon_sym_static] = ACTIONS(1617), + [anon_sym_get] = ACTIONS(1617), + [anon_sym_set] = ACTIONS(1617), + [anon_sym_declare] = ACTIONS(1617), + [anon_sym_public] = ACTIONS(1617), + [anon_sym_private] = ACTIONS(1617), + [anon_sym_protected] = ACTIONS(1617), + [anon_sym_module] = ACTIONS(1617), + [anon_sym_any] = ACTIONS(1617), + [anon_sym_number] = ACTIONS(1617), + [anon_sym_boolean] = ACTIONS(1617), + [anon_sym_string] = ACTIONS(1617), + [anon_sym_symbol] = ACTIONS(1617), + [sym_readonly] = ACTIONS(1617), + }, [493] = { - [sym_type_arguments] = STATE(301), + [sym_catch_clause] = STATE(512), + [sym_finally_clause] = STATE(611), [ts_builtin_sym_end] = ACTIONS(1734), [sym_identifier] = ACTIONS(1736), [anon_sym_export] = ACTIONS(1736), @@ -57010,16 +57065,16 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(1736), [anon_sym_SEMI] = ACTIONS(1734), [anon_sym_case] = ACTIONS(1736), + [anon_sym_catch] = ACTIONS(1738), + [anon_sym_finally] = ACTIONS(1740), [anon_sym_yield] = ACTIONS(1736), [anon_sym_LBRACK] = ACTIONS(1734), - [anon_sym_LT] = ACTIONS(1738), + [anon_sym_LT] = ACTIONS(1734), [anon_sym_SLASH] = ACTIONS(1736), [anon_sym_class] = ACTIONS(1736), [anon_sym_async] = ACTIONS(1736), [anon_sym_function] = ACTIONS(1736), [anon_sym_new] = ACTIONS(1736), - [anon_sym_AMP] = ACTIONS(1734), - [anon_sym_PIPE] = ACTIONS(1734), [anon_sym_PLUS] = ACTIONS(1736), [anon_sym_DASH] = ACTIONS(1736), [anon_sym_TILDE] = ACTIONS(1734), @@ -57054,115 +57109,33 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(1736), [anon_sym_symbol] = ACTIONS(1736), [anon_sym_interface] = ACTIONS(1736), - [anon_sym_extends] = ACTIONS(1736), [anon_sym_enum] = ACTIONS(1736), [sym_readonly] = ACTIONS(1736), }, [494] = { - [ts_builtin_sym_end] = ACTIONS(1089), - [sym_identifier] = ACTIONS(1091), - [anon_sym_export] = ACTIONS(1091), - [anon_sym_default] = ACTIONS(1091), - [anon_sym_namespace] = ACTIONS(1091), - [anon_sym_LBRACE] = ACTIONS(1089), - [anon_sym_RBRACE] = ACTIONS(1089), - [anon_sym_type] = ACTIONS(1091), - [anon_sym_typeof] = ACTIONS(1091), - [anon_sym_import] = ACTIONS(1091), - [anon_sym_var] = ACTIONS(1091), - [anon_sym_let] = ACTIONS(1091), - [anon_sym_const] = ACTIONS(1091), - [anon_sym_BANG] = ACTIONS(1089), - [anon_sym_else] = ACTIONS(1091), - [anon_sym_if] = ACTIONS(1091), - [anon_sym_switch] = ACTIONS(1091), - [anon_sym_for] = ACTIONS(1091), - [anon_sym_LPAREN] = ACTIONS(1089), - [anon_sym_await] = ACTIONS(1091), - [anon_sym_while] = ACTIONS(1091), - [anon_sym_do] = ACTIONS(1091), - [anon_sym_try] = ACTIONS(1091), - [anon_sym_with] = ACTIONS(1091), - [anon_sym_break] = ACTIONS(1091), - [anon_sym_continue] = ACTIONS(1091), - [anon_sym_debugger] = ACTIONS(1091), - [anon_sym_return] = ACTIONS(1091), - [anon_sym_throw] = ACTIONS(1091), - [anon_sym_SEMI] = ACTIONS(1089), - [anon_sym_case] = ACTIONS(1091), - [anon_sym_yield] = ACTIONS(1091), - [anon_sym_LBRACK] = ACTIONS(1089), - [anon_sym_LT] = ACTIONS(1741), - [anon_sym_SLASH] = ACTIONS(1091), - [anon_sym_DOT] = ACTIONS(1091), - [anon_sym_class] = ACTIONS(1091), - [anon_sym_async] = ACTIONS(1091), - [anon_sym_function] = ACTIONS(1091), - [anon_sym_new] = ACTIONS(1091), - [anon_sym_AMP] = ACTIONS(1089), - [anon_sym_PIPE] = ACTIONS(1089), - [anon_sym_PLUS] = ACTIONS(1091), - [anon_sym_DASH] = ACTIONS(1091), - [anon_sym_TILDE] = ACTIONS(1089), - [anon_sym_void] = ACTIONS(1091), - [anon_sym_delete] = ACTIONS(1091), - [anon_sym_PLUS_PLUS] = ACTIONS(1089), - [anon_sym_DASH_DASH] = ACTIONS(1089), - [anon_sym_DQUOTE] = ACTIONS(1089), - [anon_sym_SQUOTE] = ACTIONS(1089), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1089), - [sym_number] = ACTIONS(1089), - [sym_this] = ACTIONS(1091), - [sym_super] = ACTIONS(1091), - [sym_true] = ACTIONS(1091), - [sym_false] = ACTIONS(1091), - [sym_null] = ACTIONS(1091), - [sym_undefined] = ACTIONS(1091), - [anon_sym_AT] = ACTIONS(1089), - [anon_sym_static] = ACTIONS(1091), - [anon_sym_abstract] = ACTIONS(1091), - [anon_sym_get] = ACTIONS(1091), - [anon_sym_set] = ACTIONS(1091), - [anon_sym_declare] = ACTIONS(1091), - [anon_sym_public] = ACTIONS(1091), - [anon_sym_private] = ACTIONS(1091), - [anon_sym_protected] = ACTIONS(1091), - [anon_sym_module] = ACTIONS(1091), - [anon_sym_any] = ACTIONS(1091), - [anon_sym_number] = ACTIONS(1091), - [anon_sym_boolean] = ACTIONS(1091), - [anon_sym_string] = ACTIONS(1091), - [anon_sym_symbol] = ACTIONS(1091), - [anon_sym_interface] = ACTIONS(1091), - [anon_sym_extends] = ACTIONS(1091), - [anon_sym_enum] = ACTIONS(1091), - [sym_readonly] = ACTIONS(1091), - }, - [495] = { - [sym__call_signature] = STATE(3007), - [sym_formal_parameters] = STATE(2157), - [sym_type_parameters] = STATE(2850), - [sym_identifier] = ACTIONS(1705), - [anon_sym_export] = ACTIONS(1707), + [sym_object] = STATE(2357), + [sym_array] = STATE(2356), + [sym_identifier] = ACTIONS(1726), + [anon_sym_export] = ACTIONS(801), [anon_sym_STAR] = ACTIONS(808), - [anon_sym_EQ] = ACTIONS(1127), + [anon_sym_EQ] = ACTIONS(805), [anon_sym_as] = ACTIONS(808), - [anon_sym_namespace] = ACTIONS(1707), - [anon_sym_type] = ACTIONS(1707), + [anon_sym_namespace] = ACTIONS(801), + [anon_sym_LBRACE] = ACTIONS(1728), + [anon_sym_COMMA] = ACTIONS(812), + [anon_sym_type] = ACTIONS(801), [anon_sym_BANG] = ACTIONS(808), - [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_LPAREN] = ACTIONS(841), + [anon_sym_RPAREN] = ACTIONS(812), [anon_sym_in] = ACTIONS(808), - [anon_sym_COLON] = ACTIONS(1744), - [anon_sym_LBRACK] = ACTIONS(1623), - [anon_sym_RBRACK] = ACTIONS(841), - [anon_sym_LT] = ACTIONS(1638), + [anon_sym_COLON] = ACTIONS(1724), + [anon_sym_LBRACK] = ACTIONS(1742), + [anon_sym_LT] = ACTIONS(808), [anon_sym_GT] = ACTIONS(808), [anon_sym_SLASH] = ACTIONS(808), [anon_sym_DOT] = ACTIONS(1625), - [anon_sym_async] = ACTIONS(1707), - [anon_sym_function] = ACTIONS(1627), - [anon_sym_EQ_GT] = ACTIONS(1129), + [anon_sym_async] = ACTIONS(801), + [anon_sym_EQ_GT] = ACTIONS(825), [anon_sym_QMARK_DOT] = ACTIONS(827), [anon_sym_PLUS_EQ] = ACTIONS(831), [anon_sym_DASH_EQ] = ACTIONS(831), @@ -57179,7 +57152,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP_EQ] = ACTIONS(831), [anon_sym_PIPE_PIPE_EQ] = ACTIONS(831), [anon_sym_QMARK_QMARK_EQ] = ACTIONS(831), - [anon_sym_QMARK] = ACTIONS(808), + [anon_sym_QMARK] = ACTIONS(1709), [anon_sym_AMP_AMP] = ACTIONS(808), [anon_sym_PIPE_PIPE] = ACTIONS(808), [anon_sym_GT_GT] = ACTIONS(808), @@ -57204,45 +57177,46 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(841), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(841), - [anon_sym_static] = ACTIONS(1707), - [anon_sym_get] = ACTIONS(1707), - [anon_sym_set] = ACTIONS(1707), - [anon_sym_declare] = ACTIONS(1707), - [anon_sym_public] = ACTIONS(1707), - [anon_sym_private] = ACTIONS(1707), - [anon_sym_protected] = ACTIONS(1707), - [anon_sym_module] = ACTIONS(1707), - [anon_sym_any] = ACTIONS(1707), - [anon_sym_number] = ACTIONS(1707), - [anon_sym_boolean] = ACTIONS(1707), - [anon_sym_string] = ACTIONS(1707), - [anon_sym_symbol] = ACTIONS(1707), - [sym_readonly] = ACTIONS(1707), + [sym_this] = ACTIONS(1726), + [anon_sym_static] = ACTIONS(801), + [anon_sym_get] = ACTIONS(801), + [anon_sym_set] = ACTIONS(801), + [anon_sym_declare] = ACTIONS(801), + [anon_sym_public] = ACTIONS(801), + [anon_sym_private] = ACTIONS(801), + [anon_sym_protected] = ACTIONS(801), + [anon_sym_module] = ACTIONS(801), + [anon_sym_any] = ACTIONS(801), + [anon_sym_number] = ACTIONS(801), + [anon_sym_boolean] = ACTIONS(801), + [anon_sym_string] = ACTIONS(801), + [anon_sym_symbol] = ACTIONS(801), + [sym_readonly] = ACTIONS(801), }, - [496] = { - [sym__call_signature] = STATE(3007), - [sym_formal_parameters] = STATE(2157), - [sym_type_parameters] = STATE(2850), - [sym_identifier] = ACTIONS(1705), - [anon_sym_export] = ACTIONS(1707), + [495] = { + [sym__call_signature] = STATE(3018), + [sym_formal_parameters] = STATE(2253), + [sym_type_parameters] = STATE(2827), + [sym_identifier] = ACTIONS(1698), + [anon_sym_export] = ACTIONS(1700), [anon_sym_STAR] = ACTIONS(808), - [anon_sym_EQ] = ACTIONS(1127), + [anon_sym_EQ] = ACTIONS(1115), [anon_sym_as] = ACTIONS(808), - [anon_sym_namespace] = ACTIONS(1707), - [anon_sym_type] = ACTIONS(1707), + [anon_sym_namespace] = ACTIONS(1700), + [anon_sym_type] = ACTIONS(1700), [anon_sym_BANG] = ACTIONS(808), [anon_sym_LPAREN] = ACTIONS(1635), [anon_sym_in] = ACTIONS(808), - [anon_sym_COLON] = ACTIONS(841), + [anon_sym_COLON] = ACTIONS(1732), [anon_sym_LBRACK] = ACTIONS(1623), [anon_sym_RBRACK] = ACTIONS(841), [anon_sym_LT] = ACTIONS(1638), [anon_sym_GT] = ACTIONS(808), [anon_sym_SLASH] = ACTIONS(808), [anon_sym_DOT] = ACTIONS(1625), - [anon_sym_async] = ACTIONS(1707), + [anon_sym_async] = ACTIONS(1700), [anon_sym_function] = ACTIONS(1627), - [anon_sym_EQ_GT] = ACTIONS(1129), + [anon_sym_EQ_GT] = ACTIONS(1117), [anon_sym_QMARK_DOT] = ACTIONS(827), [anon_sym_PLUS_EQ] = ACTIONS(831), [anon_sym_DASH_EQ] = ACTIONS(831), @@ -57283,126 +57257,206 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(841), [anon_sym_DASH_DASH] = ACTIONS(841), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(841), - [anon_sym_static] = ACTIONS(1707), - [anon_sym_get] = ACTIONS(1707), - [anon_sym_set] = ACTIONS(1707), - [anon_sym_declare] = ACTIONS(1707), - [anon_sym_public] = ACTIONS(1707), - [anon_sym_private] = ACTIONS(1707), - [anon_sym_protected] = ACTIONS(1707), - [anon_sym_module] = ACTIONS(1707), - [anon_sym_any] = ACTIONS(1707), - [anon_sym_number] = ACTIONS(1707), - [anon_sym_boolean] = ACTIONS(1707), - [anon_sym_string] = ACTIONS(1707), - [anon_sym_symbol] = ACTIONS(1707), - [sym_readonly] = ACTIONS(1707), - }, - [497] = { - [ts_builtin_sym_end] = ACTIONS(1746), - [sym_identifier] = ACTIONS(1748), - [anon_sym_export] = ACTIONS(1748), - [anon_sym_default] = ACTIONS(1748), - [anon_sym_namespace] = ACTIONS(1748), - [anon_sym_LBRACE] = ACTIONS(1746), - [anon_sym_RBRACE] = ACTIONS(1746), - [anon_sym_type] = ACTIONS(1748), - [anon_sym_typeof] = ACTIONS(1748), - [anon_sym_import] = ACTIONS(1748), - [anon_sym_var] = ACTIONS(1748), - [anon_sym_let] = ACTIONS(1748), - [anon_sym_const] = ACTIONS(1748), - [anon_sym_BANG] = ACTIONS(1746), - [anon_sym_else] = ACTIONS(1748), - [anon_sym_if] = ACTIONS(1748), - [anon_sym_switch] = ACTIONS(1748), - [anon_sym_for] = ACTIONS(1748), - [anon_sym_LPAREN] = ACTIONS(1746), - [anon_sym_await] = ACTIONS(1748), - [anon_sym_while] = ACTIONS(1748), - [anon_sym_do] = ACTIONS(1748), - [anon_sym_try] = ACTIONS(1748), - [anon_sym_with] = ACTIONS(1748), - [anon_sym_break] = ACTIONS(1748), - [anon_sym_continue] = ACTIONS(1748), - [anon_sym_debugger] = ACTIONS(1748), - [anon_sym_return] = ACTIONS(1748), - [anon_sym_throw] = ACTIONS(1748), - [anon_sym_SEMI] = ACTIONS(1746), - [anon_sym_case] = ACTIONS(1748), - [anon_sym_yield] = ACTIONS(1748), - [anon_sym_LBRACK] = ACTIONS(1746), - [anon_sym_LT] = ACTIONS(1746), - [anon_sym_SLASH] = ACTIONS(1748), - [anon_sym_class] = ACTIONS(1748), - [anon_sym_async] = ACTIONS(1748), - [anon_sym_function] = ACTIONS(1748), - [anon_sym_new] = ACTIONS(1748), - [anon_sym_AMP] = ACTIONS(1750), - [anon_sym_PIPE] = ACTIONS(1752), - [anon_sym_PLUS] = ACTIONS(1748), - [anon_sym_DASH] = ACTIONS(1748), - [anon_sym_TILDE] = ACTIONS(1746), - [anon_sym_void] = ACTIONS(1748), - [anon_sym_delete] = ACTIONS(1748), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [anon_sym_DQUOTE] = ACTIONS(1746), - [anon_sym_SQUOTE] = ACTIONS(1746), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1746), - [sym_number] = ACTIONS(1746), - [sym_this] = ACTIONS(1748), - [sym_super] = ACTIONS(1748), - [sym_true] = ACTIONS(1748), - [sym_false] = ACTIONS(1748), - [sym_null] = ACTIONS(1748), - [sym_undefined] = ACTIONS(1748), - [anon_sym_AT] = ACTIONS(1746), - [anon_sym_static] = ACTIONS(1748), - [anon_sym_abstract] = ACTIONS(1748), - [anon_sym_get] = ACTIONS(1748), - [anon_sym_set] = ACTIONS(1748), - [anon_sym_declare] = ACTIONS(1748), - [anon_sym_public] = ACTIONS(1748), - [anon_sym_private] = ACTIONS(1748), - [anon_sym_protected] = ACTIONS(1748), - [anon_sym_module] = ACTIONS(1748), - [anon_sym_any] = ACTIONS(1748), - [anon_sym_number] = ACTIONS(1748), - [anon_sym_boolean] = ACTIONS(1748), - [anon_sym_string] = ACTIONS(1748), - [anon_sym_symbol] = ACTIONS(1748), - [anon_sym_interface] = ACTIONS(1748), - [anon_sym_extends] = ACTIONS(1754), - [anon_sym_enum] = ACTIONS(1748), - [sym_readonly] = ACTIONS(1748), + [anon_sym_BQUOTE] = ACTIONS(841), + [anon_sym_static] = ACTIONS(1700), + [anon_sym_get] = ACTIONS(1700), + [anon_sym_set] = ACTIONS(1700), + [anon_sym_declare] = ACTIONS(1700), + [anon_sym_public] = ACTIONS(1700), + [anon_sym_private] = ACTIONS(1700), + [anon_sym_protected] = ACTIONS(1700), + [anon_sym_module] = ACTIONS(1700), + [anon_sym_any] = ACTIONS(1700), + [anon_sym_number] = ACTIONS(1700), + [anon_sym_boolean] = ACTIONS(1700), + [anon_sym_string] = ACTIONS(1700), + [anon_sym_symbol] = ACTIONS(1700), + [sym_readonly] = ACTIONS(1700), + }, + [496] = { + [ts_builtin_sym_end] = ACTIONS(937), + [sym_identifier] = ACTIONS(939), + [anon_sym_export] = ACTIONS(939), + [anon_sym_default] = ACTIONS(939), + [anon_sym_namespace] = ACTIONS(939), + [anon_sym_LBRACE] = ACTIONS(937), + [anon_sym_COMMA] = ACTIONS(937), + [anon_sym_RBRACE] = ACTIONS(937), + [anon_sym_type] = ACTIONS(939), + [anon_sym_typeof] = ACTIONS(939), + [anon_sym_import] = ACTIONS(939), + [anon_sym_var] = ACTIONS(939), + [anon_sym_let] = ACTIONS(939), + [anon_sym_const] = ACTIONS(939), + [anon_sym_BANG] = ACTIONS(937), + [anon_sym_else] = ACTIONS(939), + [anon_sym_if] = ACTIONS(939), + [anon_sym_switch] = ACTIONS(939), + [anon_sym_for] = ACTIONS(939), + [anon_sym_LPAREN] = ACTIONS(937), + [anon_sym_await] = ACTIONS(939), + [anon_sym_while] = ACTIONS(939), + [anon_sym_do] = ACTIONS(939), + [anon_sym_try] = ACTIONS(939), + [anon_sym_with] = ACTIONS(939), + [anon_sym_break] = ACTIONS(939), + [anon_sym_continue] = ACTIONS(939), + [anon_sym_debugger] = ACTIONS(939), + [anon_sym_return] = ACTIONS(939), + [anon_sym_throw] = ACTIONS(939), + [anon_sym_SEMI] = ACTIONS(937), + [anon_sym_case] = ACTIONS(939), + [anon_sym_catch] = ACTIONS(939), + [anon_sym_finally] = ACTIONS(939), + [anon_sym_yield] = ACTIONS(939), + [anon_sym_LBRACK] = ACTIONS(937), + [anon_sym_LT] = ACTIONS(937), + [anon_sym_SLASH] = ACTIONS(939), + [anon_sym_class] = ACTIONS(939), + [anon_sym_async] = ACTIONS(939), + [anon_sym_function] = ACTIONS(939), + [anon_sym_new] = ACTIONS(939), + [anon_sym_PLUS] = ACTIONS(939), + [anon_sym_DASH] = ACTIONS(939), + [anon_sym_TILDE] = ACTIONS(937), + [anon_sym_void] = ACTIONS(939), + [anon_sym_delete] = ACTIONS(939), + [anon_sym_PLUS_PLUS] = ACTIONS(937), + [anon_sym_DASH_DASH] = ACTIONS(937), + [anon_sym_DQUOTE] = ACTIONS(937), + [anon_sym_SQUOTE] = ACTIONS(937), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(937), + [sym_number] = ACTIONS(937), + [sym_this] = ACTIONS(939), + [sym_super] = ACTIONS(939), + [sym_true] = ACTIONS(939), + [sym_false] = ACTIONS(939), + [sym_null] = ACTIONS(939), + [sym_undefined] = ACTIONS(939), + [anon_sym_AT] = ACTIONS(937), + [anon_sym_static] = ACTIONS(939), + [anon_sym_abstract] = ACTIONS(939), + [anon_sym_get] = ACTIONS(939), + [anon_sym_set] = ACTIONS(939), + [anon_sym_declare] = ACTIONS(939), + [anon_sym_public] = ACTIONS(939), + [anon_sym_private] = ACTIONS(939), + [anon_sym_protected] = ACTIONS(939), + [anon_sym_module] = ACTIONS(939), + [anon_sym_any] = ACTIONS(939), + [anon_sym_number] = ACTIONS(939), + [anon_sym_boolean] = ACTIONS(939), + [anon_sym_string] = ACTIONS(939), + [anon_sym_symbol] = ACTIONS(939), + [anon_sym_interface] = ACTIONS(939), + [anon_sym_enum] = ACTIONS(939), + [sym_readonly] = ACTIONS(939), + }, + [497] = { + [ts_builtin_sym_end] = ACTIONS(937), + [sym_identifier] = ACTIONS(939), + [anon_sym_export] = ACTIONS(939), + [anon_sym_default] = ACTIONS(939), + [anon_sym_namespace] = ACTIONS(939), + [anon_sym_LBRACE] = ACTIONS(937), + [anon_sym_COMMA] = ACTIONS(937), + [anon_sym_RBRACE] = ACTIONS(937), + [anon_sym_type] = ACTIONS(939), + [anon_sym_typeof] = ACTIONS(939), + [anon_sym_import] = ACTIONS(939), + [anon_sym_var] = ACTIONS(939), + [anon_sym_let] = ACTIONS(939), + [anon_sym_const] = ACTIONS(939), + [anon_sym_BANG] = ACTIONS(937), + [anon_sym_else] = ACTIONS(939), + [anon_sym_if] = ACTIONS(939), + [anon_sym_switch] = ACTIONS(939), + [anon_sym_for] = ACTIONS(939), + [anon_sym_LPAREN] = ACTIONS(937), + [anon_sym_await] = ACTIONS(939), + [anon_sym_while] = ACTIONS(939), + [anon_sym_do] = ACTIONS(939), + [anon_sym_try] = ACTIONS(939), + [anon_sym_with] = ACTIONS(939), + [anon_sym_break] = ACTIONS(939), + [anon_sym_continue] = ACTIONS(939), + [anon_sym_debugger] = ACTIONS(939), + [anon_sym_return] = ACTIONS(939), + [anon_sym_throw] = ACTIONS(939), + [anon_sym_SEMI] = ACTIONS(937), + [anon_sym_case] = ACTIONS(939), + [anon_sym_yield] = ACTIONS(939), + [anon_sym_LBRACK] = ACTIONS(937), + [anon_sym_LT] = ACTIONS(937), + [anon_sym_SLASH] = ACTIONS(939), + [anon_sym_class] = ACTIONS(939), + [anon_sym_async] = ACTIONS(939), + [anon_sym_function] = ACTIONS(939), + [anon_sym_new] = ACTIONS(939), + [anon_sym_PLUS] = ACTIONS(939), + [anon_sym_DASH] = ACTIONS(939), + [anon_sym_TILDE] = ACTIONS(937), + [anon_sym_void] = ACTIONS(939), + [anon_sym_delete] = ACTIONS(939), + [anon_sym_PLUS_PLUS] = ACTIONS(937), + [anon_sym_DASH_DASH] = ACTIONS(937), + [anon_sym_DQUOTE] = ACTIONS(937), + [anon_sym_SQUOTE] = ACTIONS(937), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(937), + [sym_number] = ACTIONS(937), + [sym_this] = ACTIONS(939), + [sym_super] = ACTIONS(939), + [sym_true] = ACTIONS(939), + [sym_false] = ACTIONS(939), + [sym_null] = ACTIONS(939), + [sym_undefined] = ACTIONS(939), + [anon_sym_AT] = ACTIONS(937), + [anon_sym_static] = ACTIONS(939), + [anon_sym_abstract] = ACTIONS(939), + [anon_sym_get] = ACTIONS(939), + [anon_sym_set] = ACTIONS(939), + [anon_sym_declare] = ACTIONS(939), + [anon_sym_public] = ACTIONS(939), + [anon_sym_private] = ACTIONS(939), + [anon_sym_protected] = ACTIONS(939), + [anon_sym_module] = ACTIONS(939), + [anon_sym_any] = ACTIONS(939), + [anon_sym_number] = ACTIONS(939), + [anon_sym_boolean] = ACTIONS(939), + [anon_sym_string] = ACTIONS(939), + [anon_sym_symbol] = ACTIONS(939), + [anon_sym_interface] = ACTIONS(939), + [anon_sym_enum] = ACTIONS(939), + [sym_readonly] = ACTIONS(939), + [anon_sym_PIPE_RBRACE] = ACTIONS(937), + [sym__automatic_semicolon] = ACTIONS(1744), }, [498] = { - [sym__call_signature] = STATE(3007), - [sym_formal_parameters] = STATE(2157), - [sym_type_parameters] = STATE(2850), - [sym_identifier] = ACTIONS(1705), - [anon_sym_export] = ACTIONS(1707), + [sym__call_signature] = STATE(3018), + [sym_formal_parameters] = STATE(2253), + [sym_type_parameters] = STATE(2827), + [sym_identifier] = ACTIONS(1698), + [anon_sym_export] = ACTIONS(1700), [anon_sym_STAR] = ACTIONS(808), - [anon_sym_EQ] = ACTIONS(1127), + [anon_sym_EQ] = ACTIONS(1115), [anon_sym_as] = ACTIONS(808), - [anon_sym_namespace] = ACTIONS(1707), - [anon_sym_type] = ACTIONS(1707), + [anon_sym_namespace] = ACTIONS(1700), + [anon_sym_type] = ACTIONS(1700), [anon_sym_BANG] = ACTIONS(808), [anon_sym_LPAREN] = ACTIONS(1635), [anon_sym_in] = ACTIONS(808), - [anon_sym_COLON] = ACTIONS(1726), + [anon_sym_COLON] = ACTIONS(1746), [anon_sym_LBRACK] = ACTIONS(1623), [anon_sym_RBRACK] = ACTIONS(841), [anon_sym_LT] = ACTIONS(1638), [anon_sym_GT] = ACTIONS(808), [anon_sym_SLASH] = ACTIONS(808), [anon_sym_DOT] = ACTIONS(1625), - [anon_sym_async] = ACTIONS(1707), + [anon_sym_async] = ACTIONS(1700), [anon_sym_function] = ACTIONS(1627), - [anon_sym_EQ_GT] = ACTIONS(1129), + [anon_sym_EQ_GT] = ACTIONS(1117), [anon_sym_QMARK_DOT] = ACTIONS(827), [anon_sym_PLUS_EQ] = ACTIONS(831), [anon_sym_DASH_EQ] = ACTIONS(831), @@ -57444,582 +57498,262 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(841), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(841), - [anon_sym_static] = ACTIONS(1707), - [anon_sym_get] = ACTIONS(1707), - [anon_sym_set] = ACTIONS(1707), - [anon_sym_declare] = ACTIONS(1707), - [anon_sym_public] = ACTIONS(1707), - [anon_sym_private] = ACTIONS(1707), - [anon_sym_protected] = ACTIONS(1707), - [anon_sym_module] = ACTIONS(1707), - [anon_sym_any] = ACTIONS(1707), - [anon_sym_number] = ACTIONS(1707), - [anon_sym_boolean] = ACTIONS(1707), - [anon_sym_string] = ACTIONS(1707), - [anon_sym_symbol] = ACTIONS(1707), - [sym_readonly] = ACTIONS(1707), + [anon_sym_static] = ACTIONS(1700), + [anon_sym_get] = ACTIONS(1700), + [anon_sym_set] = ACTIONS(1700), + [anon_sym_declare] = ACTIONS(1700), + [anon_sym_public] = ACTIONS(1700), + [anon_sym_private] = ACTIONS(1700), + [anon_sym_protected] = ACTIONS(1700), + [anon_sym_module] = ACTIONS(1700), + [anon_sym_any] = ACTIONS(1700), + [anon_sym_number] = ACTIONS(1700), + [anon_sym_boolean] = ACTIONS(1700), + [anon_sym_string] = ACTIONS(1700), + [anon_sym_symbol] = ACTIONS(1700), + [sym_readonly] = ACTIONS(1700), }, [499] = { - [ts_builtin_sym_end] = ACTIONS(947), - [sym_identifier] = ACTIONS(949), - [anon_sym_export] = ACTIONS(949), - [anon_sym_default] = ACTIONS(949), - [anon_sym_namespace] = ACTIONS(949), - [anon_sym_LBRACE] = ACTIONS(947), - [anon_sym_COMMA] = ACTIONS(947), - [anon_sym_RBRACE] = ACTIONS(947), - [anon_sym_type] = ACTIONS(949), - [anon_sym_typeof] = ACTIONS(949), - [anon_sym_import] = ACTIONS(949), - [anon_sym_var] = ACTIONS(949), - [anon_sym_let] = ACTIONS(949), - [anon_sym_const] = ACTIONS(949), - [anon_sym_BANG] = ACTIONS(947), - [anon_sym_else] = ACTIONS(949), - [anon_sym_if] = ACTIONS(949), - [anon_sym_switch] = ACTIONS(949), - [anon_sym_for] = ACTIONS(949), - [anon_sym_LPAREN] = ACTIONS(947), - [anon_sym_await] = ACTIONS(949), - [anon_sym_while] = ACTIONS(949), - [anon_sym_do] = ACTIONS(949), - [anon_sym_try] = ACTIONS(949), - [anon_sym_with] = ACTIONS(949), - [anon_sym_break] = ACTIONS(949), - [anon_sym_continue] = ACTIONS(949), - [anon_sym_debugger] = ACTIONS(949), - [anon_sym_return] = ACTIONS(949), - [anon_sym_throw] = ACTIONS(949), - [anon_sym_SEMI] = ACTIONS(947), - [anon_sym_case] = ACTIONS(949), - [anon_sym_yield] = ACTIONS(949), - [anon_sym_LBRACK] = ACTIONS(947), - [anon_sym_LT] = ACTIONS(947), - [anon_sym_SLASH] = ACTIONS(949), - [anon_sym_class] = ACTIONS(949), - [anon_sym_async] = ACTIONS(949), - [anon_sym_function] = ACTIONS(949), - [anon_sym_new] = ACTIONS(949), - [anon_sym_PLUS] = ACTIONS(949), - [anon_sym_DASH] = ACTIONS(949), - [anon_sym_TILDE] = ACTIONS(947), - [anon_sym_void] = ACTIONS(949), - [anon_sym_delete] = ACTIONS(949), - [anon_sym_PLUS_PLUS] = ACTIONS(947), - [anon_sym_DASH_DASH] = ACTIONS(947), - [anon_sym_DQUOTE] = ACTIONS(947), - [anon_sym_SQUOTE] = ACTIONS(947), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(947), - [sym_number] = ACTIONS(947), - [sym_this] = ACTIONS(949), - [sym_super] = ACTIONS(949), - [sym_true] = ACTIONS(949), - [sym_false] = ACTIONS(949), - [sym_null] = ACTIONS(949), - [sym_undefined] = ACTIONS(949), - [anon_sym_AT] = ACTIONS(947), - [anon_sym_static] = ACTIONS(949), - [anon_sym_abstract] = ACTIONS(949), - [anon_sym_get] = ACTIONS(949), - [anon_sym_set] = ACTIONS(949), - [anon_sym_declare] = ACTIONS(949), - [anon_sym_public] = ACTIONS(949), - [anon_sym_private] = ACTIONS(949), - [anon_sym_protected] = ACTIONS(949), - [anon_sym_module] = ACTIONS(949), - [anon_sym_any] = ACTIONS(949), - [anon_sym_number] = ACTIONS(949), - [anon_sym_boolean] = ACTIONS(949), - [anon_sym_string] = ACTIONS(949), - [anon_sym_symbol] = ACTIONS(949), - [anon_sym_interface] = ACTIONS(949), - [anon_sym_enum] = ACTIONS(949), - [sym_readonly] = ACTIONS(949), - [anon_sym_PIPE_RBRACE] = ACTIONS(947), - [sym__automatic_semicolon] = ACTIONS(1756), + [ts_builtin_sym_end] = ACTIONS(1748), + [sym_identifier] = ACTIONS(1750), + [anon_sym_export] = ACTIONS(1750), + [anon_sym_default] = ACTIONS(1750), + [anon_sym_namespace] = ACTIONS(1750), + [anon_sym_LBRACE] = ACTIONS(1748), + [anon_sym_RBRACE] = ACTIONS(1748), + [anon_sym_type] = ACTIONS(1750), + [anon_sym_typeof] = ACTIONS(1750), + [anon_sym_import] = ACTIONS(1750), + [anon_sym_var] = ACTIONS(1750), + [anon_sym_let] = ACTIONS(1750), + [anon_sym_const] = ACTIONS(1750), + [anon_sym_BANG] = ACTIONS(1748), + [anon_sym_else] = ACTIONS(1750), + [anon_sym_if] = ACTIONS(1750), + [anon_sym_switch] = ACTIONS(1750), + [anon_sym_for] = ACTIONS(1750), + [anon_sym_LPAREN] = ACTIONS(1748), + [anon_sym_await] = ACTIONS(1750), + [anon_sym_while] = ACTIONS(1750), + [anon_sym_do] = ACTIONS(1750), + [anon_sym_try] = ACTIONS(1750), + [anon_sym_with] = ACTIONS(1750), + [anon_sym_break] = ACTIONS(1750), + [anon_sym_continue] = ACTIONS(1750), + [anon_sym_debugger] = ACTIONS(1750), + [anon_sym_return] = ACTIONS(1750), + [anon_sym_throw] = ACTIONS(1750), + [anon_sym_SEMI] = ACTIONS(1748), + [anon_sym_case] = ACTIONS(1750), + [anon_sym_yield] = ACTIONS(1750), + [anon_sym_LBRACK] = ACTIONS(1748), + [anon_sym_LT] = ACTIONS(1748), + [anon_sym_SLASH] = ACTIONS(1750), + [anon_sym_class] = ACTIONS(1750), + [anon_sym_async] = ACTIONS(1750), + [anon_sym_function] = ACTIONS(1750), + [anon_sym_new] = ACTIONS(1750), + [anon_sym_AMP] = ACTIONS(1752), + [anon_sym_PIPE] = ACTIONS(1754), + [anon_sym_PLUS] = ACTIONS(1750), + [anon_sym_DASH] = ACTIONS(1750), + [anon_sym_TILDE] = ACTIONS(1748), + [anon_sym_void] = ACTIONS(1750), + [anon_sym_delete] = ACTIONS(1750), + [anon_sym_PLUS_PLUS] = ACTIONS(1748), + [anon_sym_DASH_DASH] = ACTIONS(1748), + [anon_sym_DQUOTE] = ACTIONS(1748), + [anon_sym_SQUOTE] = ACTIONS(1748), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1748), + [sym_number] = ACTIONS(1748), + [sym_this] = ACTIONS(1750), + [sym_super] = ACTIONS(1750), + [sym_true] = ACTIONS(1750), + [sym_false] = ACTIONS(1750), + [sym_null] = ACTIONS(1750), + [sym_undefined] = ACTIONS(1750), + [anon_sym_AT] = ACTIONS(1748), + [anon_sym_static] = ACTIONS(1750), + [anon_sym_abstract] = ACTIONS(1750), + [anon_sym_get] = ACTIONS(1750), + [anon_sym_set] = ACTIONS(1750), + [anon_sym_declare] = ACTIONS(1750), + [anon_sym_public] = ACTIONS(1750), + [anon_sym_private] = ACTIONS(1750), + [anon_sym_protected] = ACTIONS(1750), + [anon_sym_module] = ACTIONS(1750), + [anon_sym_any] = ACTIONS(1750), + [anon_sym_number] = ACTIONS(1750), + [anon_sym_boolean] = ACTIONS(1750), + [anon_sym_string] = ACTIONS(1750), + [anon_sym_symbol] = ACTIONS(1750), + [anon_sym_interface] = ACTIONS(1750), + [anon_sym_extends] = ACTIONS(1756), + [anon_sym_enum] = ACTIONS(1750), + [sym_readonly] = ACTIONS(1750), }, [500] = { - [ts_builtin_sym_end] = ACTIONS(947), - [sym_identifier] = ACTIONS(949), - [anon_sym_export] = ACTIONS(949), - [anon_sym_default] = ACTIONS(949), - [anon_sym_namespace] = ACTIONS(949), - [anon_sym_LBRACE] = ACTIONS(947), - [anon_sym_COMMA] = ACTIONS(947), - [anon_sym_RBRACE] = ACTIONS(947), - [anon_sym_type] = ACTIONS(949), - [anon_sym_typeof] = ACTIONS(949), - [anon_sym_import] = ACTIONS(949), - [anon_sym_var] = ACTIONS(949), - [anon_sym_let] = ACTIONS(949), - [anon_sym_const] = ACTIONS(949), - [anon_sym_BANG] = ACTIONS(947), - [anon_sym_else] = ACTIONS(949), - [anon_sym_if] = ACTIONS(949), - [anon_sym_switch] = ACTIONS(949), - [anon_sym_for] = ACTIONS(949), - [anon_sym_LPAREN] = ACTIONS(947), - [anon_sym_await] = ACTIONS(949), - [anon_sym_while] = ACTIONS(949), - [anon_sym_do] = ACTIONS(949), - [anon_sym_try] = ACTIONS(949), - [anon_sym_with] = ACTIONS(949), - [anon_sym_break] = ACTIONS(949), - [anon_sym_continue] = ACTIONS(949), - [anon_sym_debugger] = ACTIONS(949), - [anon_sym_return] = ACTIONS(949), - [anon_sym_throw] = ACTIONS(949), - [anon_sym_SEMI] = ACTIONS(947), - [anon_sym_case] = ACTIONS(949), - [anon_sym_yield] = ACTIONS(949), - [anon_sym_LBRACK] = ACTIONS(947), - [anon_sym_LT] = ACTIONS(947), - [anon_sym_SLASH] = ACTIONS(949), - [anon_sym_class] = ACTIONS(949), - [anon_sym_async] = ACTIONS(949), - [anon_sym_function] = ACTIONS(949), - [anon_sym_new] = ACTIONS(949), - [anon_sym_PLUS] = ACTIONS(949), - [anon_sym_DASH] = ACTIONS(949), - [anon_sym_TILDE] = ACTIONS(947), - [anon_sym_void] = ACTIONS(949), - [anon_sym_delete] = ACTIONS(949), - [anon_sym_PLUS_PLUS] = ACTIONS(947), - [anon_sym_DASH_DASH] = ACTIONS(947), - [anon_sym_DQUOTE] = ACTIONS(947), - [anon_sym_SQUOTE] = ACTIONS(947), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(947), - [sym_number] = ACTIONS(947), - [sym_this] = ACTIONS(949), - [sym_super] = ACTIONS(949), - [sym_true] = ACTIONS(949), - [sym_false] = ACTIONS(949), - [sym_null] = ACTIONS(949), - [sym_undefined] = ACTIONS(949), - [anon_sym_AT] = ACTIONS(947), - [anon_sym_static] = ACTIONS(949), - [anon_sym_abstract] = ACTIONS(949), - [anon_sym_get] = ACTIONS(949), - [anon_sym_set] = ACTIONS(949), - [anon_sym_declare] = ACTIONS(949), - [anon_sym_public] = ACTIONS(949), - [anon_sym_private] = ACTIONS(949), - [anon_sym_protected] = ACTIONS(949), - [anon_sym_module] = ACTIONS(949), - [anon_sym_any] = ACTIONS(949), - [anon_sym_number] = ACTIONS(949), - [anon_sym_boolean] = ACTIONS(949), - [anon_sym_string] = ACTIONS(949), - [anon_sym_symbol] = ACTIONS(949), - [anon_sym_interface] = ACTIONS(949), - [anon_sym_enum] = ACTIONS(949), - [sym_readonly] = ACTIONS(949), - [anon_sym_PIPE_RBRACE] = ACTIONS(947), - [sym__automatic_semicolon] = ACTIONS(947), + [ts_builtin_sym_end] = ACTIONS(1003), + [sym_identifier] = ACTIONS(1005), + [anon_sym_export] = ACTIONS(1005), + [anon_sym_default] = ACTIONS(1005), + [anon_sym_namespace] = ACTIONS(1005), + [anon_sym_LBRACE] = ACTIONS(1003), + [anon_sym_COMMA] = ACTIONS(1003), + [anon_sym_RBRACE] = ACTIONS(1003), + [anon_sym_type] = ACTIONS(1005), + [anon_sym_typeof] = ACTIONS(1005), + [anon_sym_import] = ACTIONS(1005), + [anon_sym_var] = ACTIONS(1005), + [anon_sym_let] = ACTIONS(1005), + [anon_sym_const] = ACTIONS(1005), + [anon_sym_BANG] = ACTIONS(1003), + [anon_sym_else] = ACTIONS(1005), + [anon_sym_if] = ACTIONS(1005), + [anon_sym_switch] = ACTIONS(1005), + [anon_sym_for] = ACTIONS(1005), + [anon_sym_LPAREN] = ACTIONS(1003), + [anon_sym_await] = ACTIONS(1005), + [anon_sym_while] = ACTIONS(1005), + [anon_sym_do] = ACTIONS(1005), + [anon_sym_try] = ACTIONS(1005), + [anon_sym_with] = ACTIONS(1005), + [anon_sym_break] = ACTIONS(1005), + [anon_sym_continue] = ACTIONS(1005), + [anon_sym_debugger] = ACTIONS(1005), + [anon_sym_return] = ACTIONS(1005), + [anon_sym_throw] = ACTIONS(1005), + [anon_sym_SEMI] = ACTIONS(1003), + [anon_sym_case] = ACTIONS(1005), + [anon_sym_yield] = ACTIONS(1005), + [anon_sym_LBRACK] = ACTIONS(1003), + [anon_sym_LT] = ACTIONS(1003), + [anon_sym_SLASH] = ACTIONS(1005), + [anon_sym_class] = ACTIONS(1005), + [anon_sym_async] = ACTIONS(1005), + [anon_sym_function] = ACTIONS(1005), + [anon_sym_new] = ACTIONS(1005), + [anon_sym_PLUS] = ACTIONS(1005), + [anon_sym_DASH] = ACTIONS(1005), + [anon_sym_TILDE] = ACTIONS(1003), + [anon_sym_void] = ACTIONS(1005), + [anon_sym_delete] = ACTIONS(1005), + [anon_sym_PLUS_PLUS] = ACTIONS(1003), + [anon_sym_DASH_DASH] = ACTIONS(1003), + [anon_sym_DQUOTE] = ACTIONS(1003), + [anon_sym_SQUOTE] = ACTIONS(1003), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1003), + [sym_number] = ACTIONS(1003), + [sym_this] = ACTIONS(1005), + [sym_super] = ACTIONS(1005), + [sym_true] = ACTIONS(1005), + [sym_false] = ACTIONS(1005), + [sym_null] = ACTIONS(1005), + [sym_undefined] = ACTIONS(1005), + [anon_sym_AT] = ACTIONS(1003), + [anon_sym_static] = ACTIONS(1005), + [anon_sym_abstract] = ACTIONS(1005), + [anon_sym_get] = ACTIONS(1005), + [anon_sym_set] = ACTIONS(1005), + [anon_sym_declare] = ACTIONS(1005), + [anon_sym_public] = ACTIONS(1005), + [anon_sym_private] = ACTIONS(1005), + [anon_sym_protected] = ACTIONS(1005), + [anon_sym_module] = ACTIONS(1005), + [anon_sym_any] = ACTIONS(1005), + [anon_sym_number] = ACTIONS(1005), + [anon_sym_boolean] = ACTIONS(1005), + [anon_sym_string] = ACTIONS(1005), + [anon_sym_symbol] = ACTIONS(1005), + [anon_sym_interface] = ACTIONS(1005), + [anon_sym_enum] = ACTIONS(1005), + [sym_readonly] = ACTIONS(1005), + [anon_sym_PIPE_RBRACE] = ACTIONS(1003), + [sym__automatic_semicolon] = ACTIONS(1003), }, [501] = { - [sym__call_signature] = STATE(3072), - [sym_formal_parameters] = STATE(2157), - [sym_type_parameters] = STATE(2850), - [sym_identifier] = ACTIONS(1679), - [anon_sym_export] = ACTIONS(1681), - [anon_sym_STAR] = ACTIONS(808), - [anon_sym_EQ] = ACTIONS(1115), - [anon_sym_as] = ACTIONS(808), - [anon_sym_namespace] = ACTIONS(1681), - [anon_sym_type] = ACTIONS(1681), - [anon_sym_BANG] = ACTIONS(808), - [anon_sym_LPAREN] = ACTIONS(1635), - [anon_sym_in] = ACTIONS(808), - [anon_sym_SEMI] = ACTIONS(841), - [anon_sym_LBRACK] = ACTIONS(1219), - [anon_sym_LT] = ACTIONS(1638), - [anon_sym_GT] = ACTIONS(808), - [anon_sym_SLASH] = ACTIONS(808), - [anon_sym_DOT] = ACTIONS(1224), - [anon_sym_async] = ACTIONS(1681), - [anon_sym_function] = ACTIONS(1633), - [anon_sym_EQ_GT] = ACTIONS(1117), - [anon_sym_QMARK_DOT] = ACTIONS(1011), - [anon_sym_PLUS_EQ] = ACTIONS(831), - [anon_sym_DASH_EQ] = ACTIONS(831), - [anon_sym_STAR_EQ] = ACTIONS(831), - [anon_sym_SLASH_EQ] = ACTIONS(831), - [anon_sym_PERCENT_EQ] = ACTIONS(831), - [anon_sym_CARET_EQ] = ACTIONS(831), - [anon_sym_AMP_EQ] = ACTIONS(831), - [anon_sym_PIPE_EQ] = ACTIONS(831), - [anon_sym_GT_GT_EQ] = ACTIONS(831), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(831), - [anon_sym_LT_LT_EQ] = ACTIONS(831), - [anon_sym_STAR_STAR_EQ] = ACTIONS(831), - [anon_sym_AMP_AMP_EQ] = ACTIONS(831), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(831), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(831), - [anon_sym_QMARK] = ACTIONS(808), - [anon_sym_AMP_AMP] = ACTIONS(808), - [anon_sym_PIPE_PIPE] = ACTIONS(808), - [anon_sym_GT_GT] = ACTIONS(808), - [anon_sym_GT_GT_GT] = ACTIONS(808), - [anon_sym_LT_LT] = ACTIONS(808), - [anon_sym_AMP] = ACTIONS(808), - [anon_sym_CARET] = ACTIONS(808), - [anon_sym_PIPE] = ACTIONS(808), - [anon_sym_PLUS] = ACTIONS(808), - [anon_sym_DASH] = ACTIONS(808), - [anon_sym_PERCENT] = ACTIONS(808), - [anon_sym_STAR_STAR] = ACTIONS(808), - [anon_sym_LT_EQ] = ACTIONS(841), - [anon_sym_EQ_EQ] = ACTIONS(808), - [anon_sym_EQ_EQ_EQ] = ACTIONS(841), - [anon_sym_BANG_EQ] = ACTIONS(808), - [anon_sym_BANG_EQ_EQ] = ACTIONS(841), - [anon_sym_GT_EQ] = ACTIONS(841), - [anon_sym_QMARK_QMARK] = ACTIONS(808), - [anon_sym_instanceof] = ACTIONS(808), - [anon_sym_PLUS_PLUS] = ACTIONS(841), - [anon_sym_DASH_DASH] = ACTIONS(841), + [ts_builtin_sym_end] = ACTIONS(991), + [sym_identifier] = ACTIONS(993), + [anon_sym_export] = ACTIONS(993), + [anon_sym_default] = ACTIONS(993), + [anon_sym_namespace] = ACTIONS(993), + [anon_sym_LBRACE] = ACTIONS(991), + [anon_sym_COMMA] = ACTIONS(991), + [anon_sym_RBRACE] = ACTIONS(991), + [anon_sym_type] = ACTIONS(993), + [anon_sym_typeof] = ACTIONS(993), + [anon_sym_import] = ACTIONS(993), + [anon_sym_var] = ACTIONS(993), + [anon_sym_let] = ACTIONS(993), + [anon_sym_const] = ACTIONS(993), + [anon_sym_BANG] = ACTIONS(991), + [anon_sym_else] = ACTIONS(993), + [anon_sym_if] = ACTIONS(993), + [anon_sym_switch] = ACTIONS(993), + [anon_sym_for] = ACTIONS(993), + [anon_sym_LPAREN] = ACTIONS(991), + [anon_sym_await] = ACTIONS(993), + [anon_sym_while] = ACTIONS(993), + [anon_sym_do] = ACTIONS(993), + [anon_sym_try] = ACTIONS(993), + [anon_sym_with] = ACTIONS(993), + [anon_sym_break] = ACTIONS(993), + [anon_sym_continue] = ACTIONS(993), + [anon_sym_debugger] = ACTIONS(993), + [anon_sym_return] = ACTIONS(993), + [anon_sym_throw] = ACTIONS(993), + [anon_sym_SEMI] = ACTIONS(991), + [anon_sym_case] = ACTIONS(993), + [anon_sym_yield] = ACTIONS(993), + [anon_sym_LBRACK] = ACTIONS(991), + [anon_sym_LT] = ACTIONS(991), + [anon_sym_SLASH] = ACTIONS(993), + [anon_sym_class] = ACTIONS(993), + [anon_sym_async] = ACTIONS(993), + [anon_sym_function] = ACTIONS(993), + [anon_sym_new] = ACTIONS(993), + [anon_sym_PLUS] = ACTIONS(993), + [anon_sym_DASH] = ACTIONS(993), + [anon_sym_TILDE] = ACTIONS(991), + [anon_sym_void] = ACTIONS(993), + [anon_sym_delete] = ACTIONS(993), + [anon_sym_PLUS_PLUS] = ACTIONS(991), + [anon_sym_DASH_DASH] = ACTIONS(991), + [anon_sym_DQUOTE] = ACTIONS(991), + [anon_sym_SQUOTE] = ACTIONS(991), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(841), - [anon_sym_static] = ACTIONS(1681), - [anon_sym_get] = ACTIONS(1681), - [anon_sym_set] = ACTIONS(1681), - [anon_sym_declare] = ACTIONS(1681), - [anon_sym_public] = ACTIONS(1681), - [anon_sym_private] = ACTIONS(1681), - [anon_sym_protected] = ACTIONS(1681), - [anon_sym_module] = ACTIONS(1681), - [anon_sym_any] = ACTIONS(1681), - [anon_sym_number] = ACTIONS(1681), - [anon_sym_boolean] = ACTIONS(1681), - [anon_sym_string] = ACTIONS(1681), - [anon_sym_symbol] = ACTIONS(1681), - [sym_readonly] = ACTIONS(1681), - [sym__automatic_semicolon] = ACTIONS(841), + [anon_sym_BQUOTE] = ACTIONS(991), + [sym_number] = ACTIONS(991), + [sym_this] = ACTIONS(993), + [sym_super] = ACTIONS(993), + [sym_true] = ACTIONS(993), + [sym_false] = ACTIONS(993), + [sym_null] = ACTIONS(993), + [sym_undefined] = ACTIONS(993), + [anon_sym_AT] = ACTIONS(991), + [anon_sym_static] = ACTIONS(993), + [anon_sym_abstract] = ACTIONS(993), + [anon_sym_get] = ACTIONS(993), + [anon_sym_set] = ACTIONS(993), + [anon_sym_declare] = ACTIONS(993), + [anon_sym_public] = ACTIONS(993), + [anon_sym_private] = ACTIONS(993), + [anon_sym_protected] = ACTIONS(993), + [anon_sym_module] = ACTIONS(993), + [anon_sym_any] = ACTIONS(993), + [anon_sym_number] = ACTIONS(993), + [anon_sym_boolean] = ACTIONS(993), + [anon_sym_string] = ACTIONS(993), + [anon_sym_symbol] = ACTIONS(993), + [anon_sym_interface] = ACTIONS(993), + [anon_sym_enum] = ACTIONS(993), + [sym_readonly] = ACTIONS(993), + [anon_sym_PIPE_RBRACE] = ACTIONS(991), + [sym__automatic_semicolon] = ACTIONS(991), }, [502] = { - [ts_builtin_sym_end] = ACTIONS(1758), - [sym_identifier] = ACTIONS(1760), - [anon_sym_export] = ACTIONS(1760), - [anon_sym_default] = ACTIONS(1760), - [anon_sym_namespace] = ACTIONS(1760), - [anon_sym_LBRACE] = ACTIONS(1758), - [anon_sym_RBRACE] = ACTIONS(1758), - [anon_sym_type] = ACTIONS(1760), - [anon_sym_typeof] = ACTIONS(1760), - [anon_sym_import] = ACTIONS(1760), - [anon_sym_var] = ACTIONS(1760), - [anon_sym_let] = ACTIONS(1760), - [anon_sym_const] = ACTIONS(1760), - [anon_sym_BANG] = ACTIONS(1758), - [anon_sym_else] = ACTIONS(1760), - [anon_sym_if] = ACTIONS(1760), - [anon_sym_switch] = ACTIONS(1760), - [anon_sym_for] = ACTIONS(1760), - [anon_sym_LPAREN] = ACTIONS(1758), - [anon_sym_await] = ACTIONS(1760), - [anon_sym_while] = ACTIONS(1760), - [anon_sym_do] = ACTIONS(1760), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_with] = ACTIONS(1760), - [anon_sym_break] = ACTIONS(1760), - [anon_sym_continue] = ACTIONS(1760), - [anon_sym_debugger] = ACTIONS(1760), - [anon_sym_return] = ACTIONS(1760), - [anon_sym_throw] = ACTIONS(1760), - [anon_sym_SEMI] = ACTIONS(1758), - [anon_sym_case] = ACTIONS(1760), - [anon_sym_yield] = ACTIONS(1760), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_LT] = ACTIONS(1758), - [anon_sym_SLASH] = ACTIONS(1760), - [anon_sym_class] = ACTIONS(1760), - [anon_sym_async] = ACTIONS(1760), - [anon_sym_function] = ACTIONS(1760), - [anon_sym_new] = ACTIONS(1760), - [anon_sym_AMP] = ACTIONS(1750), - [anon_sym_PIPE] = ACTIONS(1752), - [anon_sym_PLUS] = ACTIONS(1760), - [anon_sym_DASH] = ACTIONS(1760), - [anon_sym_TILDE] = ACTIONS(1758), - [anon_sym_void] = ACTIONS(1760), - [anon_sym_delete] = ACTIONS(1760), - [anon_sym_PLUS_PLUS] = ACTIONS(1758), - [anon_sym_DASH_DASH] = ACTIONS(1758), - [anon_sym_DQUOTE] = ACTIONS(1758), - [anon_sym_SQUOTE] = ACTIONS(1758), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1758), - [sym_number] = ACTIONS(1758), - [sym_this] = ACTIONS(1760), - [sym_super] = ACTIONS(1760), - [sym_true] = ACTIONS(1760), - [sym_false] = ACTIONS(1760), - [sym_null] = ACTIONS(1760), - [sym_undefined] = ACTIONS(1760), - [anon_sym_AT] = ACTIONS(1758), - [anon_sym_static] = ACTIONS(1760), - [anon_sym_abstract] = ACTIONS(1760), - [anon_sym_get] = ACTIONS(1760), - [anon_sym_set] = ACTIONS(1760), - [anon_sym_declare] = ACTIONS(1760), - [anon_sym_public] = ACTIONS(1760), - [anon_sym_private] = ACTIONS(1760), - [anon_sym_protected] = ACTIONS(1760), - [anon_sym_module] = ACTIONS(1760), - [anon_sym_any] = ACTIONS(1760), - [anon_sym_number] = ACTIONS(1760), - [anon_sym_boolean] = ACTIONS(1760), - [anon_sym_string] = ACTIONS(1760), - [anon_sym_symbol] = ACTIONS(1760), - [anon_sym_interface] = ACTIONS(1760), - [anon_sym_extends] = ACTIONS(1760), - [anon_sym_enum] = ACTIONS(1760), - [sym_readonly] = ACTIONS(1760), - }, - [503] = { - [ts_builtin_sym_end] = ACTIONS(1762), - [sym_identifier] = ACTIONS(1764), - [anon_sym_export] = ACTIONS(1764), - [anon_sym_default] = ACTIONS(1764), - [anon_sym_namespace] = ACTIONS(1764), - [anon_sym_LBRACE] = ACTIONS(1762), - [anon_sym_RBRACE] = ACTIONS(1762), - [anon_sym_type] = ACTIONS(1764), - [anon_sym_typeof] = ACTIONS(1764), - [anon_sym_import] = ACTIONS(1764), - [anon_sym_var] = ACTIONS(1764), - [anon_sym_let] = ACTIONS(1764), - [anon_sym_const] = ACTIONS(1764), - [anon_sym_BANG] = ACTIONS(1762), - [anon_sym_else] = ACTIONS(1764), - [anon_sym_if] = ACTIONS(1764), - [anon_sym_switch] = ACTIONS(1764), - [anon_sym_for] = ACTIONS(1764), - [anon_sym_LPAREN] = ACTIONS(1762), - [anon_sym_await] = ACTIONS(1764), - [anon_sym_while] = ACTIONS(1764), - [anon_sym_do] = ACTIONS(1764), - [anon_sym_try] = ACTIONS(1764), - [anon_sym_with] = ACTIONS(1764), - [anon_sym_break] = ACTIONS(1764), - [anon_sym_continue] = ACTIONS(1764), - [anon_sym_debugger] = ACTIONS(1764), - [anon_sym_return] = ACTIONS(1764), - [anon_sym_throw] = ACTIONS(1764), - [anon_sym_SEMI] = ACTIONS(1762), - [anon_sym_case] = ACTIONS(1764), - [anon_sym_yield] = ACTIONS(1764), - [anon_sym_LBRACK] = ACTIONS(1762), - [anon_sym_LT] = ACTIONS(1762), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_class] = ACTIONS(1764), - [anon_sym_async] = ACTIONS(1764), - [anon_sym_function] = ACTIONS(1764), - [anon_sym_new] = ACTIONS(1764), - [anon_sym_AMP] = ACTIONS(1750), - [anon_sym_PIPE] = ACTIONS(1752), - [anon_sym_PLUS] = ACTIONS(1764), - [anon_sym_DASH] = ACTIONS(1764), - [anon_sym_TILDE] = ACTIONS(1762), - [anon_sym_void] = ACTIONS(1764), - [anon_sym_delete] = ACTIONS(1764), - [anon_sym_PLUS_PLUS] = ACTIONS(1762), - [anon_sym_DASH_DASH] = ACTIONS(1762), - [anon_sym_DQUOTE] = ACTIONS(1762), - [anon_sym_SQUOTE] = ACTIONS(1762), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1762), - [sym_number] = ACTIONS(1762), - [sym_this] = ACTIONS(1764), - [sym_super] = ACTIONS(1764), - [sym_true] = ACTIONS(1764), - [sym_false] = ACTIONS(1764), - [sym_null] = ACTIONS(1764), - [sym_undefined] = ACTIONS(1764), - [anon_sym_AT] = ACTIONS(1762), - [anon_sym_static] = ACTIONS(1764), - [anon_sym_abstract] = ACTIONS(1764), - [anon_sym_get] = ACTIONS(1764), - [anon_sym_set] = ACTIONS(1764), - [anon_sym_declare] = ACTIONS(1764), - [anon_sym_public] = ACTIONS(1764), - [anon_sym_private] = ACTIONS(1764), - [anon_sym_protected] = ACTIONS(1764), - [anon_sym_module] = ACTIONS(1764), - [anon_sym_any] = ACTIONS(1764), - [anon_sym_number] = ACTIONS(1764), - [anon_sym_boolean] = ACTIONS(1764), - [anon_sym_string] = ACTIONS(1764), - [anon_sym_symbol] = ACTIONS(1764), - [anon_sym_interface] = ACTIONS(1764), - [anon_sym_extends] = ACTIONS(1754), - [anon_sym_enum] = ACTIONS(1764), - [sym_readonly] = ACTIONS(1764), - }, - [504] = { - [ts_builtin_sym_end] = ACTIONS(947), - [sym_identifier] = ACTIONS(949), - [anon_sym_export] = ACTIONS(949), - [anon_sym_default] = ACTIONS(949), - [anon_sym_namespace] = ACTIONS(949), - [anon_sym_LBRACE] = ACTIONS(947), - [anon_sym_COMMA] = ACTIONS(947), - [anon_sym_RBRACE] = ACTIONS(947), - [anon_sym_type] = ACTIONS(949), - [anon_sym_typeof] = ACTIONS(949), - [anon_sym_import] = ACTIONS(949), - [anon_sym_var] = ACTIONS(949), - [anon_sym_let] = ACTIONS(949), - [anon_sym_const] = ACTIONS(949), - [anon_sym_BANG] = ACTIONS(947), - [anon_sym_else] = ACTIONS(949), - [anon_sym_if] = ACTIONS(949), - [anon_sym_switch] = ACTIONS(949), - [anon_sym_for] = ACTIONS(949), - [anon_sym_LPAREN] = ACTIONS(947), - [anon_sym_await] = ACTIONS(949), - [anon_sym_while] = ACTIONS(949), - [anon_sym_do] = ACTIONS(949), - [anon_sym_try] = ACTIONS(949), - [anon_sym_with] = ACTIONS(949), - [anon_sym_break] = ACTIONS(949), - [anon_sym_continue] = ACTIONS(949), - [anon_sym_debugger] = ACTIONS(949), - [anon_sym_return] = ACTIONS(949), - [anon_sym_throw] = ACTIONS(949), - [anon_sym_SEMI] = ACTIONS(947), - [anon_sym_case] = ACTIONS(949), - [anon_sym_catch] = ACTIONS(949), - [anon_sym_finally] = ACTIONS(949), - [anon_sym_yield] = ACTIONS(949), - [anon_sym_LBRACK] = ACTIONS(947), - [anon_sym_LT] = ACTIONS(947), - [anon_sym_SLASH] = ACTIONS(949), - [anon_sym_class] = ACTIONS(949), - [anon_sym_async] = ACTIONS(949), - [anon_sym_function] = ACTIONS(949), - [anon_sym_new] = ACTIONS(949), - [anon_sym_PLUS] = ACTIONS(949), - [anon_sym_DASH] = ACTIONS(949), - [anon_sym_TILDE] = ACTIONS(947), - [anon_sym_void] = ACTIONS(949), - [anon_sym_delete] = ACTIONS(949), - [anon_sym_PLUS_PLUS] = ACTIONS(947), - [anon_sym_DASH_DASH] = ACTIONS(947), - [anon_sym_DQUOTE] = ACTIONS(947), - [anon_sym_SQUOTE] = ACTIONS(947), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(947), - [sym_number] = ACTIONS(947), - [sym_this] = ACTIONS(949), - [sym_super] = ACTIONS(949), - [sym_true] = ACTIONS(949), - [sym_false] = ACTIONS(949), - [sym_null] = ACTIONS(949), - [sym_undefined] = ACTIONS(949), - [anon_sym_AT] = ACTIONS(947), - [anon_sym_static] = ACTIONS(949), - [anon_sym_abstract] = ACTIONS(949), - [anon_sym_get] = ACTIONS(949), - [anon_sym_set] = ACTIONS(949), - [anon_sym_declare] = ACTIONS(949), - [anon_sym_public] = ACTIONS(949), - [anon_sym_private] = ACTIONS(949), - [anon_sym_protected] = ACTIONS(949), - [anon_sym_module] = ACTIONS(949), - [anon_sym_any] = ACTIONS(949), - [anon_sym_number] = ACTIONS(949), - [anon_sym_boolean] = ACTIONS(949), - [anon_sym_string] = ACTIONS(949), - [anon_sym_symbol] = ACTIONS(949), - [anon_sym_interface] = ACTIONS(949), - [anon_sym_enum] = ACTIONS(949), - [sym_readonly] = ACTIONS(949), - }, - [505] = { - [ts_builtin_sym_end] = ACTIONS(1085), - [sym_identifier] = ACTIONS(1087), - [anon_sym_export] = ACTIONS(1087), - [anon_sym_default] = ACTIONS(1087), - [anon_sym_namespace] = ACTIONS(1087), - [anon_sym_LBRACE] = ACTIONS(1085), - [anon_sym_COMMA] = ACTIONS(1085), - [anon_sym_RBRACE] = ACTIONS(1085), - [anon_sym_type] = ACTIONS(1087), - [anon_sym_typeof] = ACTIONS(1087), - [anon_sym_import] = ACTIONS(1087), - [anon_sym_var] = ACTIONS(1087), - [anon_sym_let] = ACTIONS(1087), - [anon_sym_const] = ACTIONS(1087), - [anon_sym_BANG] = ACTIONS(1085), - [anon_sym_else] = ACTIONS(1087), - [anon_sym_if] = ACTIONS(1087), - [anon_sym_switch] = ACTIONS(1087), - [anon_sym_for] = ACTIONS(1087), - [anon_sym_LPAREN] = ACTIONS(1085), - [anon_sym_await] = ACTIONS(1087), - [anon_sym_while] = ACTIONS(1087), - [anon_sym_do] = ACTIONS(1087), - [anon_sym_try] = ACTIONS(1087), - [anon_sym_with] = ACTIONS(1087), - [anon_sym_break] = ACTIONS(1087), - [anon_sym_continue] = ACTIONS(1087), - [anon_sym_debugger] = ACTIONS(1087), - [anon_sym_return] = ACTIONS(1087), - [anon_sym_throw] = ACTIONS(1087), - [anon_sym_SEMI] = ACTIONS(1085), - [anon_sym_case] = ACTIONS(1087), - [anon_sym_yield] = ACTIONS(1087), - [anon_sym_LBRACK] = ACTIONS(1085), - [anon_sym_LT] = ACTIONS(1085), - [anon_sym_SLASH] = ACTIONS(1087), - [anon_sym_class] = ACTIONS(1087), - [anon_sym_async] = ACTIONS(1087), - [anon_sym_function] = ACTIONS(1087), - [anon_sym_new] = ACTIONS(1087), - [anon_sym_PLUS] = ACTIONS(1087), - [anon_sym_DASH] = ACTIONS(1087), - [anon_sym_TILDE] = ACTIONS(1085), - [anon_sym_void] = ACTIONS(1087), - [anon_sym_delete] = ACTIONS(1087), - [anon_sym_PLUS_PLUS] = ACTIONS(1085), - [anon_sym_DASH_DASH] = ACTIONS(1085), - [anon_sym_DQUOTE] = ACTIONS(1085), - [anon_sym_SQUOTE] = ACTIONS(1085), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1085), - [sym_number] = ACTIONS(1085), - [sym_this] = ACTIONS(1087), - [sym_super] = ACTIONS(1087), - [sym_true] = ACTIONS(1087), - [sym_false] = ACTIONS(1087), - [sym_null] = ACTIONS(1087), - [sym_undefined] = ACTIONS(1087), - [anon_sym_AT] = ACTIONS(1085), - [anon_sym_static] = ACTIONS(1087), - [anon_sym_abstract] = ACTIONS(1087), - [anon_sym_get] = ACTIONS(1087), - [anon_sym_set] = ACTIONS(1087), - [anon_sym_declare] = ACTIONS(1087), - [anon_sym_public] = ACTIONS(1087), - [anon_sym_private] = ACTIONS(1087), - [anon_sym_protected] = ACTIONS(1087), - [anon_sym_module] = ACTIONS(1087), - [anon_sym_any] = ACTIONS(1087), - [anon_sym_number] = ACTIONS(1087), - [anon_sym_boolean] = ACTIONS(1087), - [anon_sym_string] = ACTIONS(1087), - [anon_sym_symbol] = ACTIONS(1087), - [anon_sym_interface] = ACTIONS(1087), - [anon_sym_enum] = ACTIONS(1087), - [sym_readonly] = ACTIONS(1087), - [anon_sym_PIPE_RBRACE] = ACTIONS(1085), - [sym__automatic_semicolon] = ACTIONS(1085), - }, - [506] = { [ts_builtin_sym_end] = ACTIONS(907), [sym_identifier] = ACTIONS(909), [anon_sym_export] = ACTIONS(909), @@ -58097,169 +57831,409 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(909), [sym_readonly] = ACTIONS(909), [anon_sym_PIPE_RBRACE] = ACTIONS(907), - [sym__automatic_semicolon] = ACTIONS(1766), + [sym__automatic_semicolon] = ACTIONS(1758), }, - [507] = { - [ts_builtin_sym_end] = ACTIONS(1081), - [sym_identifier] = ACTIONS(1083), - [anon_sym_export] = ACTIONS(1083), - [anon_sym_default] = ACTIONS(1083), - [anon_sym_namespace] = ACTIONS(1083), - [anon_sym_LBRACE] = ACTIONS(1081), - [anon_sym_COMMA] = ACTIONS(1081), - [anon_sym_RBRACE] = ACTIONS(1081), - [anon_sym_type] = ACTIONS(1083), - [anon_sym_typeof] = ACTIONS(1083), - [anon_sym_import] = ACTIONS(1083), - [anon_sym_var] = ACTIONS(1083), - [anon_sym_let] = ACTIONS(1083), - [anon_sym_const] = ACTIONS(1083), - [anon_sym_BANG] = ACTIONS(1081), - [anon_sym_else] = ACTIONS(1083), - [anon_sym_if] = ACTIONS(1083), - [anon_sym_switch] = ACTIONS(1083), - [anon_sym_for] = ACTIONS(1083), - [anon_sym_LPAREN] = ACTIONS(1081), - [anon_sym_await] = ACTIONS(1083), - [anon_sym_while] = ACTIONS(1083), - [anon_sym_do] = ACTIONS(1083), - [anon_sym_try] = ACTIONS(1083), - [anon_sym_with] = ACTIONS(1083), - [anon_sym_break] = ACTIONS(1083), - [anon_sym_continue] = ACTIONS(1083), - [anon_sym_debugger] = ACTIONS(1083), - [anon_sym_return] = ACTIONS(1083), - [anon_sym_throw] = ACTIONS(1083), - [anon_sym_SEMI] = ACTIONS(1081), - [anon_sym_case] = ACTIONS(1083), - [anon_sym_yield] = ACTIONS(1083), - [anon_sym_LBRACK] = ACTIONS(1081), - [anon_sym_LT] = ACTIONS(1081), - [anon_sym_SLASH] = ACTIONS(1083), - [anon_sym_class] = ACTIONS(1083), - [anon_sym_async] = ACTIONS(1083), - [anon_sym_function] = ACTIONS(1083), - [anon_sym_new] = ACTIONS(1083), - [anon_sym_PLUS] = ACTIONS(1083), - [anon_sym_DASH] = ACTIONS(1083), - [anon_sym_TILDE] = ACTIONS(1081), - [anon_sym_void] = ACTIONS(1083), - [anon_sym_delete] = ACTIONS(1083), - [anon_sym_PLUS_PLUS] = ACTIONS(1081), - [anon_sym_DASH_DASH] = ACTIONS(1081), - [anon_sym_DQUOTE] = ACTIONS(1081), - [anon_sym_SQUOTE] = ACTIONS(1081), + [503] = { + [ts_builtin_sym_end] = ACTIONS(937), + [sym_identifier] = ACTIONS(939), + [anon_sym_export] = ACTIONS(939), + [anon_sym_default] = ACTIONS(939), + [anon_sym_namespace] = ACTIONS(939), + [anon_sym_LBRACE] = ACTIONS(937), + [anon_sym_COMMA] = ACTIONS(937), + [anon_sym_RBRACE] = ACTIONS(937), + [anon_sym_type] = ACTIONS(939), + [anon_sym_typeof] = ACTIONS(939), + [anon_sym_import] = ACTIONS(939), + [anon_sym_var] = ACTIONS(939), + [anon_sym_let] = ACTIONS(939), + [anon_sym_const] = ACTIONS(939), + [anon_sym_BANG] = ACTIONS(937), + [anon_sym_else] = ACTIONS(939), + [anon_sym_if] = ACTIONS(939), + [anon_sym_switch] = ACTIONS(939), + [anon_sym_for] = ACTIONS(939), + [anon_sym_LPAREN] = ACTIONS(937), + [anon_sym_await] = ACTIONS(939), + [anon_sym_while] = ACTIONS(939), + [anon_sym_do] = ACTIONS(939), + [anon_sym_try] = ACTIONS(939), + [anon_sym_with] = ACTIONS(939), + [anon_sym_break] = ACTIONS(939), + [anon_sym_continue] = ACTIONS(939), + [anon_sym_debugger] = ACTIONS(939), + [anon_sym_return] = ACTIONS(939), + [anon_sym_throw] = ACTIONS(939), + [anon_sym_SEMI] = ACTIONS(937), + [anon_sym_case] = ACTIONS(939), + [anon_sym_yield] = ACTIONS(939), + [anon_sym_LBRACK] = ACTIONS(937), + [anon_sym_LT] = ACTIONS(937), + [anon_sym_SLASH] = ACTIONS(939), + [anon_sym_class] = ACTIONS(939), + [anon_sym_async] = ACTIONS(939), + [anon_sym_function] = ACTIONS(939), + [anon_sym_new] = ACTIONS(939), + [anon_sym_PLUS] = ACTIONS(939), + [anon_sym_DASH] = ACTIONS(939), + [anon_sym_TILDE] = ACTIONS(937), + [anon_sym_void] = ACTIONS(939), + [anon_sym_delete] = ACTIONS(939), + [anon_sym_PLUS_PLUS] = ACTIONS(937), + [anon_sym_DASH_DASH] = ACTIONS(937), + [anon_sym_DQUOTE] = ACTIONS(937), + [anon_sym_SQUOTE] = ACTIONS(937), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1081), - [sym_number] = ACTIONS(1081), - [sym_this] = ACTIONS(1083), - [sym_super] = ACTIONS(1083), - [sym_true] = ACTIONS(1083), - [sym_false] = ACTIONS(1083), - [sym_null] = ACTIONS(1083), - [sym_undefined] = ACTIONS(1083), - [anon_sym_AT] = ACTIONS(1081), - [anon_sym_static] = ACTIONS(1083), - [anon_sym_abstract] = ACTIONS(1083), - [anon_sym_get] = ACTIONS(1083), - [anon_sym_set] = ACTIONS(1083), - [anon_sym_declare] = ACTIONS(1083), - [anon_sym_public] = ACTIONS(1083), - [anon_sym_private] = ACTIONS(1083), - [anon_sym_protected] = ACTIONS(1083), - [anon_sym_module] = ACTIONS(1083), - [anon_sym_any] = ACTIONS(1083), - [anon_sym_number] = ACTIONS(1083), - [anon_sym_boolean] = ACTIONS(1083), - [anon_sym_string] = ACTIONS(1083), - [anon_sym_symbol] = ACTIONS(1083), - [anon_sym_interface] = ACTIONS(1083), - [anon_sym_enum] = ACTIONS(1083), - [sym_readonly] = ACTIONS(1083), - [anon_sym_PIPE_RBRACE] = ACTIONS(1081), - [sym__automatic_semicolon] = ACTIONS(1081), + [anon_sym_BQUOTE] = ACTIONS(937), + [sym_number] = ACTIONS(937), + [sym_this] = ACTIONS(939), + [sym_super] = ACTIONS(939), + [sym_true] = ACTIONS(939), + [sym_false] = ACTIONS(939), + [sym_null] = ACTIONS(939), + [sym_undefined] = ACTIONS(939), + [anon_sym_AT] = ACTIONS(937), + [anon_sym_static] = ACTIONS(939), + [anon_sym_abstract] = ACTIONS(939), + [anon_sym_get] = ACTIONS(939), + [anon_sym_set] = ACTIONS(939), + [anon_sym_declare] = ACTIONS(939), + [anon_sym_public] = ACTIONS(939), + [anon_sym_private] = ACTIONS(939), + [anon_sym_protected] = ACTIONS(939), + [anon_sym_module] = ACTIONS(939), + [anon_sym_any] = ACTIONS(939), + [anon_sym_number] = ACTIONS(939), + [anon_sym_boolean] = ACTIONS(939), + [anon_sym_string] = ACTIONS(939), + [anon_sym_symbol] = ACTIONS(939), + [anon_sym_interface] = ACTIONS(939), + [anon_sym_enum] = ACTIONS(939), + [sym_readonly] = ACTIONS(939), + [anon_sym_PIPE_RBRACE] = ACTIONS(937), + [sym__automatic_semicolon] = ACTIONS(937), }, - [508] = { - [ts_builtin_sym_end] = ACTIONS(1081), - [sym_identifier] = ACTIONS(1083), - [anon_sym_export] = ACTIONS(1083), - [anon_sym_default] = ACTIONS(1083), - [anon_sym_namespace] = ACTIONS(1083), - [anon_sym_LBRACE] = ACTIONS(1081), - [anon_sym_COMMA] = ACTIONS(1081), - [anon_sym_RBRACE] = ACTIONS(1081), - [anon_sym_type] = ACTIONS(1083), - [anon_sym_typeof] = ACTIONS(1083), - [anon_sym_import] = ACTIONS(1083), - [anon_sym_var] = ACTIONS(1083), - [anon_sym_let] = ACTIONS(1083), - [anon_sym_const] = ACTIONS(1083), - [anon_sym_BANG] = ACTIONS(1081), - [anon_sym_else] = ACTIONS(1083), - [anon_sym_if] = ACTIONS(1083), - [anon_sym_switch] = ACTIONS(1083), - [anon_sym_for] = ACTIONS(1083), - [anon_sym_LPAREN] = ACTIONS(1081), - [anon_sym_await] = ACTIONS(1083), - [anon_sym_while] = ACTIONS(1083), - [anon_sym_do] = ACTIONS(1083), - [anon_sym_try] = ACTIONS(1083), - [anon_sym_with] = ACTIONS(1083), - [anon_sym_break] = ACTIONS(1083), - [anon_sym_continue] = ACTIONS(1083), - [anon_sym_debugger] = ACTIONS(1083), - [anon_sym_return] = ACTIONS(1083), - [anon_sym_throw] = ACTIONS(1083), - [anon_sym_SEMI] = ACTIONS(1081), - [anon_sym_case] = ACTIONS(1083), - [anon_sym_catch] = ACTIONS(1083), - [anon_sym_finally] = ACTIONS(1083), - [anon_sym_yield] = ACTIONS(1083), - [anon_sym_LBRACK] = ACTIONS(1081), - [anon_sym_LT] = ACTIONS(1081), - [anon_sym_SLASH] = ACTIONS(1083), - [anon_sym_class] = ACTIONS(1083), - [anon_sym_async] = ACTIONS(1083), - [anon_sym_function] = ACTIONS(1083), - [anon_sym_new] = ACTIONS(1083), - [anon_sym_PLUS] = ACTIONS(1083), - [anon_sym_DASH] = ACTIONS(1083), - [anon_sym_TILDE] = ACTIONS(1081), - [anon_sym_void] = ACTIONS(1083), - [anon_sym_delete] = ACTIONS(1083), - [anon_sym_PLUS_PLUS] = ACTIONS(1081), - [anon_sym_DASH_DASH] = ACTIONS(1081), - [anon_sym_DQUOTE] = ACTIONS(1081), - [anon_sym_SQUOTE] = ACTIONS(1081), + [504] = { + [ts_builtin_sym_end] = ACTIONS(1760), + [sym_identifier] = ACTIONS(1762), + [anon_sym_export] = ACTIONS(1762), + [anon_sym_default] = ACTIONS(1762), + [anon_sym_namespace] = ACTIONS(1762), + [anon_sym_LBRACE] = ACTIONS(1760), + [anon_sym_RBRACE] = ACTIONS(1760), + [anon_sym_type] = ACTIONS(1762), + [anon_sym_typeof] = ACTIONS(1762), + [anon_sym_import] = ACTIONS(1762), + [anon_sym_var] = ACTIONS(1762), + [anon_sym_let] = ACTIONS(1762), + [anon_sym_const] = ACTIONS(1762), + [anon_sym_BANG] = ACTIONS(1760), + [anon_sym_else] = ACTIONS(1762), + [anon_sym_if] = ACTIONS(1762), + [anon_sym_switch] = ACTIONS(1762), + [anon_sym_for] = ACTIONS(1762), + [anon_sym_LPAREN] = ACTIONS(1760), + [anon_sym_await] = ACTIONS(1762), + [anon_sym_while] = ACTIONS(1762), + [anon_sym_do] = ACTIONS(1762), + [anon_sym_try] = ACTIONS(1762), + [anon_sym_with] = ACTIONS(1762), + [anon_sym_break] = ACTIONS(1762), + [anon_sym_continue] = ACTIONS(1762), + [anon_sym_debugger] = ACTIONS(1762), + [anon_sym_return] = ACTIONS(1762), + [anon_sym_throw] = ACTIONS(1762), + [anon_sym_SEMI] = ACTIONS(1760), + [anon_sym_case] = ACTIONS(1762), + [anon_sym_yield] = ACTIONS(1762), + [anon_sym_LBRACK] = ACTIONS(1760), + [anon_sym_LT] = ACTIONS(1760), + [anon_sym_SLASH] = ACTIONS(1762), + [anon_sym_class] = ACTIONS(1762), + [anon_sym_async] = ACTIONS(1762), + [anon_sym_function] = ACTIONS(1762), + [anon_sym_new] = ACTIONS(1762), + [anon_sym_AMP] = ACTIONS(1752), + [anon_sym_PIPE] = ACTIONS(1754), + [anon_sym_PLUS] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_TILDE] = ACTIONS(1760), + [anon_sym_void] = ACTIONS(1762), + [anon_sym_delete] = ACTIONS(1762), + [anon_sym_PLUS_PLUS] = ACTIONS(1760), + [anon_sym_DASH_DASH] = ACTIONS(1760), + [anon_sym_DQUOTE] = ACTIONS(1760), + [anon_sym_SQUOTE] = ACTIONS(1760), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1760), + [sym_number] = ACTIONS(1760), + [sym_this] = ACTIONS(1762), + [sym_super] = ACTIONS(1762), + [sym_true] = ACTIONS(1762), + [sym_false] = ACTIONS(1762), + [sym_null] = ACTIONS(1762), + [sym_undefined] = ACTIONS(1762), + [anon_sym_AT] = ACTIONS(1760), + [anon_sym_static] = ACTIONS(1762), + [anon_sym_abstract] = ACTIONS(1762), + [anon_sym_get] = ACTIONS(1762), + [anon_sym_set] = ACTIONS(1762), + [anon_sym_declare] = ACTIONS(1762), + [anon_sym_public] = ACTIONS(1762), + [anon_sym_private] = ACTIONS(1762), + [anon_sym_protected] = ACTIONS(1762), + [anon_sym_module] = ACTIONS(1762), + [anon_sym_any] = ACTIONS(1762), + [anon_sym_number] = ACTIONS(1762), + [anon_sym_boolean] = ACTIONS(1762), + [anon_sym_string] = ACTIONS(1762), + [anon_sym_symbol] = ACTIONS(1762), + [anon_sym_interface] = ACTIONS(1762), + [anon_sym_extends] = ACTIONS(1762), + [anon_sym_enum] = ACTIONS(1762), + [sym_readonly] = ACTIONS(1762), + }, + [505] = { + [ts_builtin_sym_end] = ACTIONS(1764), + [sym_identifier] = ACTIONS(1766), + [anon_sym_export] = ACTIONS(1766), + [anon_sym_default] = ACTIONS(1766), + [anon_sym_namespace] = ACTIONS(1766), + [anon_sym_LBRACE] = ACTIONS(1764), + [anon_sym_RBRACE] = ACTIONS(1764), + [anon_sym_type] = ACTIONS(1766), + [anon_sym_typeof] = ACTIONS(1766), + [anon_sym_import] = ACTIONS(1766), + [anon_sym_var] = ACTIONS(1766), + [anon_sym_let] = ACTIONS(1766), + [anon_sym_const] = ACTIONS(1766), + [anon_sym_BANG] = ACTIONS(1764), + [anon_sym_else] = ACTIONS(1766), + [anon_sym_if] = ACTIONS(1766), + [anon_sym_switch] = ACTIONS(1766), + [anon_sym_for] = ACTIONS(1766), + [anon_sym_LPAREN] = ACTIONS(1764), + [anon_sym_await] = ACTIONS(1766), + [anon_sym_while] = ACTIONS(1766), + [anon_sym_do] = ACTIONS(1766), + [anon_sym_try] = ACTIONS(1766), + [anon_sym_with] = ACTIONS(1766), + [anon_sym_break] = ACTIONS(1766), + [anon_sym_continue] = ACTIONS(1766), + [anon_sym_debugger] = ACTIONS(1766), + [anon_sym_return] = ACTIONS(1766), + [anon_sym_throw] = ACTIONS(1766), + [anon_sym_SEMI] = ACTIONS(1764), + [anon_sym_case] = ACTIONS(1766), + [anon_sym_yield] = ACTIONS(1766), + [anon_sym_LBRACK] = ACTIONS(1764), + [anon_sym_LT] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1766), + [anon_sym_class] = ACTIONS(1766), + [anon_sym_async] = ACTIONS(1766), + [anon_sym_function] = ACTIONS(1766), + [anon_sym_new] = ACTIONS(1766), + [anon_sym_AMP] = ACTIONS(1752), + [anon_sym_PIPE] = ACTIONS(1754), + [anon_sym_PLUS] = ACTIONS(1766), + [anon_sym_DASH] = ACTIONS(1766), + [anon_sym_TILDE] = ACTIONS(1764), + [anon_sym_void] = ACTIONS(1766), + [anon_sym_delete] = ACTIONS(1766), + [anon_sym_PLUS_PLUS] = ACTIONS(1764), + [anon_sym_DASH_DASH] = ACTIONS(1764), + [anon_sym_DQUOTE] = ACTIONS(1764), + [anon_sym_SQUOTE] = ACTIONS(1764), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1764), + [sym_number] = ACTIONS(1764), + [sym_this] = ACTIONS(1766), + [sym_super] = ACTIONS(1766), + [sym_true] = ACTIONS(1766), + [sym_false] = ACTIONS(1766), + [sym_null] = ACTIONS(1766), + [sym_undefined] = ACTIONS(1766), + [anon_sym_AT] = ACTIONS(1764), + [anon_sym_static] = ACTIONS(1766), + [anon_sym_abstract] = ACTIONS(1766), + [anon_sym_get] = ACTIONS(1766), + [anon_sym_set] = ACTIONS(1766), + [anon_sym_declare] = ACTIONS(1766), + [anon_sym_public] = ACTIONS(1766), + [anon_sym_private] = ACTIONS(1766), + [anon_sym_protected] = ACTIONS(1766), + [anon_sym_module] = ACTIONS(1766), + [anon_sym_any] = ACTIONS(1766), + [anon_sym_number] = ACTIONS(1766), + [anon_sym_boolean] = ACTIONS(1766), + [anon_sym_string] = ACTIONS(1766), + [anon_sym_symbol] = ACTIONS(1766), + [anon_sym_interface] = ACTIONS(1766), + [anon_sym_extends] = ACTIONS(1756), + [anon_sym_enum] = ACTIONS(1766), + [sym_readonly] = ACTIONS(1766), + }, + [506] = { + [ts_builtin_sym_end] = ACTIONS(1007), + [sym_identifier] = ACTIONS(1009), + [anon_sym_export] = ACTIONS(1009), + [anon_sym_default] = ACTIONS(1009), + [anon_sym_namespace] = ACTIONS(1009), + [anon_sym_LBRACE] = ACTIONS(1007), + [anon_sym_COMMA] = ACTIONS(1007), + [anon_sym_RBRACE] = ACTIONS(1007), + [anon_sym_type] = ACTIONS(1009), + [anon_sym_typeof] = ACTIONS(1009), + [anon_sym_import] = ACTIONS(1009), + [anon_sym_var] = ACTIONS(1009), + [anon_sym_let] = ACTIONS(1009), + [anon_sym_const] = ACTIONS(1009), + [anon_sym_BANG] = ACTIONS(1007), + [anon_sym_else] = ACTIONS(1009), + [anon_sym_if] = ACTIONS(1009), + [anon_sym_switch] = ACTIONS(1009), + [anon_sym_for] = ACTIONS(1009), + [anon_sym_LPAREN] = ACTIONS(1007), + [anon_sym_await] = ACTIONS(1009), + [anon_sym_while] = ACTIONS(1009), + [anon_sym_do] = ACTIONS(1009), + [anon_sym_try] = ACTIONS(1009), + [anon_sym_with] = ACTIONS(1009), + [anon_sym_break] = ACTIONS(1009), + [anon_sym_continue] = ACTIONS(1009), + [anon_sym_debugger] = ACTIONS(1009), + [anon_sym_return] = ACTIONS(1009), + [anon_sym_throw] = ACTIONS(1009), + [anon_sym_SEMI] = ACTIONS(1007), + [anon_sym_case] = ACTIONS(1009), + [anon_sym_yield] = ACTIONS(1009), + [anon_sym_LBRACK] = ACTIONS(1007), + [anon_sym_LT] = ACTIONS(1007), + [anon_sym_SLASH] = ACTIONS(1009), + [anon_sym_class] = ACTIONS(1009), + [anon_sym_async] = ACTIONS(1009), + [anon_sym_function] = ACTIONS(1009), + [anon_sym_new] = ACTIONS(1009), + [anon_sym_PLUS] = ACTIONS(1009), + [anon_sym_DASH] = ACTIONS(1009), + [anon_sym_TILDE] = ACTIONS(1007), + [anon_sym_void] = ACTIONS(1009), + [anon_sym_delete] = ACTIONS(1009), + [anon_sym_PLUS_PLUS] = ACTIONS(1007), + [anon_sym_DASH_DASH] = ACTIONS(1007), + [anon_sym_DQUOTE] = ACTIONS(1007), + [anon_sym_SQUOTE] = ACTIONS(1007), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1007), + [sym_number] = ACTIONS(1007), + [sym_this] = ACTIONS(1009), + [sym_super] = ACTIONS(1009), + [sym_true] = ACTIONS(1009), + [sym_false] = ACTIONS(1009), + [sym_null] = ACTIONS(1009), + [sym_undefined] = ACTIONS(1009), + [anon_sym_AT] = ACTIONS(1007), + [anon_sym_static] = ACTIONS(1009), + [anon_sym_abstract] = ACTIONS(1009), + [anon_sym_get] = ACTIONS(1009), + [anon_sym_set] = ACTIONS(1009), + [anon_sym_declare] = ACTIONS(1009), + [anon_sym_public] = ACTIONS(1009), + [anon_sym_private] = ACTIONS(1009), + [anon_sym_protected] = ACTIONS(1009), + [anon_sym_module] = ACTIONS(1009), + [anon_sym_any] = ACTIONS(1009), + [anon_sym_number] = ACTIONS(1009), + [anon_sym_boolean] = ACTIONS(1009), + [anon_sym_string] = ACTIONS(1009), + [anon_sym_symbol] = ACTIONS(1009), + [anon_sym_interface] = ACTIONS(1009), + [anon_sym_enum] = ACTIONS(1009), + [sym_readonly] = ACTIONS(1009), + [anon_sym_PIPE_RBRACE] = ACTIONS(1007), + [sym__automatic_semicolon] = ACTIONS(1007), + }, + [507] = { + [sym__call_signature] = STATE(3018), + [sym_formal_parameters] = STATE(2253), + [sym_type_parameters] = STATE(2827), + [sym_identifier] = ACTIONS(1698), + [anon_sym_export] = ACTIONS(1700), + [anon_sym_STAR] = ACTIONS(808), + [anon_sym_EQ] = ACTIONS(1115), + [anon_sym_as] = ACTIONS(808), + [anon_sym_namespace] = ACTIONS(1700), + [anon_sym_type] = ACTIONS(1700), + [anon_sym_BANG] = ACTIONS(808), + [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_in] = ACTIONS(808), + [anon_sym_COLON] = ACTIONS(841), + [anon_sym_LBRACK] = ACTIONS(1623), + [anon_sym_RBRACK] = ACTIONS(841), + [anon_sym_LT] = ACTIONS(1638), + [anon_sym_GT] = ACTIONS(808), + [anon_sym_SLASH] = ACTIONS(808), + [anon_sym_DOT] = ACTIONS(1625), + [anon_sym_async] = ACTIONS(1700), + [anon_sym_function] = ACTIONS(1627), + [anon_sym_EQ_GT] = ACTIONS(1117), + [anon_sym_QMARK_DOT] = ACTIONS(827), + [anon_sym_PLUS_EQ] = ACTIONS(831), + [anon_sym_DASH_EQ] = ACTIONS(831), + [anon_sym_STAR_EQ] = ACTIONS(831), + [anon_sym_SLASH_EQ] = ACTIONS(831), + [anon_sym_PERCENT_EQ] = ACTIONS(831), + [anon_sym_CARET_EQ] = ACTIONS(831), + [anon_sym_AMP_EQ] = ACTIONS(831), + [anon_sym_PIPE_EQ] = ACTIONS(831), + [anon_sym_GT_GT_EQ] = ACTIONS(831), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(831), + [anon_sym_LT_LT_EQ] = ACTIONS(831), + [anon_sym_STAR_STAR_EQ] = ACTIONS(831), + [anon_sym_AMP_AMP_EQ] = ACTIONS(831), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(831), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(831), + [anon_sym_QMARK] = ACTIONS(808), + [anon_sym_AMP_AMP] = ACTIONS(808), + [anon_sym_PIPE_PIPE] = ACTIONS(808), + [anon_sym_GT_GT] = ACTIONS(808), + [anon_sym_GT_GT_GT] = ACTIONS(808), + [anon_sym_LT_LT] = ACTIONS(808), + [anon_sym_AMP] = ACTIONS(808), + [anon_sym_CARET] = ACTIONS(808), + [anon_sym_PIPE] = ACTIONS(808), + [anon_sym_PLUS] = ACTIONS(808), + [anon_sym_DASH] = ACTIONS(808), + [anon_sym_PERCENT] = ACTIONS(808), + [anon_sym_STAR_STAR] = ACTIONS(808), + [anon_sym_LT_EQ] = ACTIONS(841), + [anon_sym_EQ_EQ] = ACTIONS(808), + [anon_sym_EQ_EQ_EQ] = ACTIONS(841), + [anon_sym_BANG_EQ] = ACTIONS(808), + [anon_sym_BANG_EQ_EQ] = ACTIONS(841), + [anon_sym_GT_EQ] = ACTIONS(841), + [anon_sym_QMARK_QMARK] = ACTIONS(808), + [anon_sym_instanceof] = ACTIONS(808), + [anon_sym_PLUS_PLUS] = ACTIONS(841), + [anon_sym_DASH_DASH] = ACTIONS(841), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1081), - [sym_number] = ACTIONS(1081), - [sym_this] = ACTIONS(1083), - [sym_super] = ACTIONS(1083), - [sym_true] = ACTIONS(1083), - [sym_false] = ACTIONS(1083), - [sym_null] = ACTIONS(1083), - [sym_undefined] = ACTIONS(1083), - [anon_sym_AT] = ACTIONS(1081), - [anon_sym_static] = ACTIONS(1083), - [anon_sym_abstract] = ACTIONS(1083), - [anon_sym_get] = ACTIONS(1083), - [anon_sym_set] = ACTIONS(1083), - [anon_sym_declare] = ACTIONS(1083), - [anon_sym_public] = ACTIONS(1083), - [anon_sym_private] = ACTIONS(1083), - [anon_sym_protected] = ACTIONS(1083), - [anon_sym_module] = ACTIONS(1083), - [anon_sym_any] = ACTIONS(1083), - [anon_sym_number] = ACTIONS(1083), - [anon_sym_boolean] = ACTIONS(1083), - [anon_sym_string] = ACTIONS(1083), - [anon_sym_symbol] = ACTIONS(1083), - [anon_sym_interface] = ACTIONS(1083), - [anon_sym_enum] = ACTIONS(1083), - [sym_readonly] = ACTIONS(1083), + [anon_sym_BQUOTE] = ACTIONS(841), + [anon_sym_static] = ACTIONS(1700), + [anon_sym_get] = ACTIONS(1700), + [anon_sym_set] = ACTIONS(1700), + [anon_sym_declare] = ACTIONS(1700), + [anon_sym_public] = ACTIONS(1700), + [anon_sym_private] = ACTIONS(1700), + [anon_sym_protected] = ACTIONS(1700), + [anon_sym_module] = ACTIONS(1700), + [anon_sym_any] = ACTIONS(1700), + [anon_sym_number] = ACTIONS(1700), + [anon_sym_boolean] = ACTIONS(1700), + [anon_sym_string] = ACTIONS(1700), + [anon_sym_symbol] = ACTIONS(1700), + [sym_readonly] = ACTIONS(1700), }, - [509] = { + [508] = { [ts_builtin_sym_end] = ACTIONS(1768), [sym_identifier] = ACTIONS(1770), [anon_sym_export] = ACTIONS(1770), @@ -58299,8 +58273,8 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_async] = ACTIONS(1770), [anon_sym_function] = ACTIONS(1770), [anon_sym_new] = ACTIONS(1770), - [anon_sym_AMP] = ACTIONS(1750), - [anon_sym_PIPE] = ACTIONS(1752), + [anon_sym_AMP] = ACTIONS(1752), + [anon_sym_PIPE] = ACTIONS(1754), [anon_sym_PLUS] = ACTIONS(1770), [anon_sym_DASH] = ACTIONS(1770), [anon_sym_TILDE] = ACTIONS(1768), @@ -58335,113 +58309,192 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(1770), [anon_sym_symbol] = ACTIONS(1770), [anon_sym_interface] = ACTIONS(1770), - [anon_sym_extends] = ACTIONS(1754), + [anon_sym_extends] = ACTIONS(1756), [anon_sym_enum] = ACTIONS(1770), [sym_readonly] = ACTIONS(1770), }, + [509] = { + [ts_builtin_sym_end] = ACTIONS(1003), + [sym_identifier] = ACTIONS(1005), + [anon_sym_export] = ACTIONS(1005), + [anon_sym_default] = ACTIONS(1005), + [anon_sym_namespace] = ACTIONS(1005), + [anon_sym_LBRACE] = ACTIONS(1003), + [anon_sym_COMMA] = ACTIONS(1003), + [anon_sym_RBRACE] = ACTIONS(1003), + [anon_sym_type] = ACTIONS(1005), + [anon_sym_typeof] = ACTIONS(1005), + [anon_sym_import] = ACTIONS(1005), + [anon_sym_var] = ACTIONS(1005), + [anon_sym_let] = ACTIONS(1005), + [anon_sym_const] = ACTIONS(1005), + [anon_sym_BANG] = ACTIONS(1003), + [anon_sym_else] = ACTIONS(1005), + [anon_sym_if] = ACTIONS(1005), + [anon_sym_switch] = ACTIONS(1005), + [anon_sym_for] = ACTIONS(1005), + [anon_sym_LPAREN] = ACTIONS(1003), + [anon_sym_await] = ACTIONS(1005), + [anon_sym_while] = ACTIONS(1005), + [anon_sym_do] = ACTIONS(1005), + [anon_sym_try] = ACTIONS(1005), + [anon_sym_with] = ACTIONS(1005), + [anon_sym_break] = ACTIONS(1005), + [anon_sym_continue] = ACTIONS(1005), + [anon_sym_debugger] = ACTIONS(1005), + [anon_sym_return] = ACTIONS(1005), + [anon_sym_throw] = ACTIONS(1005), + [anon_sym_SEMI] = ACTIONS(1003), + [anon_sym_case] = ACTIONS(1005), + [anon_sym_catch] = ACTIONS(1005), + [anon_sym_finally] = ACTIONS(1005), + [anon_sym_yield] = ACTIONS(1005), + [anon_sym_LBRACK] = ACTIONS(1003), + [anon_sym_LT] = ACTIONS(1003), + [anon_sym_SLASH] = ACTIONS(1005), + [anon_sym_class] = ACTIONS(1005), + [anon_sym_async] = ACTIONS(1005), + [anon_sym_function] = ACTIONS(1005), + [anon_sym_new] = ACTIONS(1005), + [anon_sym_PLUS] = ACTIONS(1005), + [anon_sym_DASH] = ACTIONS(1005), + [anon_sym_TILDE] = ACTIONS(1003), + [anon_sym_void] = ACTIONS(1005), + [anon_sym_delete] = ACTIONS(1005), + [anon_sym_PLUS_PLUS] = ACTIONS(1003), + [anon_sym_DASH_DASH] = ACTIONS(1003), + [anon_sym_DQUOTE] = ACTIONS(1003), + [anon_sym_SQUOTE] = ACTIONS(1003), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1003), + [sym_number] = ACTIONS(1003), + [sym_this] = ACTIONS(1005), + [sym_super] = ACTIONS(1005), + [sym_true] = ACTIONS(1005), + [sym_false] = ACTIONS(1005), + [sym_null] = ACTIONS(1005), + [sym_undefined] = ACTIONS(1005), + [anon_sym_AT] = ACTIONS(1003), + [anon_sym_static] = ACTIONS(1005), + [anon_sym_abstract] = ACTIONS(1005), + [anon_sym_get] = ACTIONS(1005), + [anon_sym_set] = ACTIONS(1005), + [anon_sym_declare] = ACTIONS(1005), + [anon_sym_public] = ACTIONS(1005), + [anon_sym_private] = ACTIONS(1005), + [anon_sym_protected] = ACTIONS(1005), + [anon_sym_module] = ACTIONS(1005), + [anon_sym_any] = ACTIONS(1005), + [anon_sym_number] = ACTIONS(1005), + [anon_sym_boolean] = ACTIONS(1005), + [anon_sym_string] = ACTIONS(1005), + [anon_sym_symbol] = ACTIONS(1005), + [anon_sym_interface] = ACTIONS(1005), + [anon_sym_enum] = ACTIONS(1005), + [sym_readonly] = ACTIONS(1005), + }, [510] = { - [ts_builtin_sym_end] = ACTIONS(1075), - [sym_identifier] = ACTIONS(1077), - [anon_sym_export] = ACTIONS(1077), - [anon_sym_default] = ACTIONS(1077), - [anon_sym_namespace] = ACTIONS(1077), - [anon_sym_LBRACE] = ACTIONS(1075), - [anon_sym_COMMA] = ACTIONS(1075), - [anon_sym_RBRACE] = ACTIONS(1075), - [anon_sym_type] = ACTIONS(1077), - [anon_sym_typeof] = ACTIONS(1077), - [anon_sym_import] = ACTIONS(1077), - [anon_sym_var] = ACTIONS(1077), - [anon_sym_let] = ACTIONS(1077), - [anon_sym_const] = ACTIONS(1077), - [anon_sym_BANG] = ACTIONS(1075), - [anon_sym_else] = ACTIONS(1077), - [anon_sym_if] = ACTIONS(1077), - [anon_sym_switch] = ACTIONS(1077), - [anon_sym_for] = ACTIONS(1077), - [anon_sym_LPAREN] = ACTIONS(1075), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_while] = ACTIONS(1077), - [anon_sym_do] = ACTIONS(1077), - [anon_sym_try] = ACTIONS(1077), - [anon_sym_with] = ACTIONS(1077), - [anon_sym_break] = ACTIONS(1077), - [anon_sym_continue] = ACTIONS(1077), - [anon_sym_debugger] = ACTIONS(1077), - [anon_sym_return] = ACTIONS(1077), - [anon_sym_throw] = ACTIONS(1077), - [anon_sym_SEMI] = ACTIONS(1075), - [anon_sym_case] = ACTIONS(1077), - [anon_sym_yield] = ACTIONS(1077), - [anon_sym_LBRACK] = ACTIONS(1075), - [anon_sym_LT] = ACTIONS(1075), - [anon_sym_SLASH] = ACTIONS(1077), - [anon_sym_class] = ACTIONS(1077), - [anon_sym_async] = ACTIONS(1077), - [anon_sym_function] = ACTIONS(1077), - [anon_sym_new] = ACTIONS(1077), - [anon_sym_PLUS] = ACTIONS(1077), - [anon_sym_DASH] = ACTIONS(1077), - [anon_sym_TILDE] = ACTIONS(1075), - [anon_sym_void] = ACTIONS(1077), - [anon_sym_delete] = ACTIONS(1077), - [anon_sym_PLUS_PLUS] = ACTIONS(1075), - [anon_sym_DASH_DASH] = ACTIONS(1075), - [anon_sym_DQUOTE] = ACTIONS(1075), - [anon_sym_SQUOTE] = ACTIONS(1075), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1075), - [sym_number] = ACTIONS(1075), - [sym_this] = ACTIONS(1077), - [sym_super] = ACTIONS(1077), - [sym_true] = ACTIONS(1077), - [sym_false] = ACTIONS(1077), - [sym_null] = ACTIONS(1077), - [sym_undefined] = ACTIONS(1077), - [anon_sym_AT] = ACTIONS(1075), - [anon_sym_static] = ACTIONS(1077), - [anon_sym_abstract] = ACTIONS(1077), - [anon_sym_get] = ACTIONS(1077), - [anon_sym_set] = ACTIONS(1077), - [anon_sym_declare] = ACTIONS(1077), - [anon_sym_public] = ACTIONS(1077), - [anon_sym_private] = ACTIONS(1077), - [anon_sym_protected] = ACTIONS(1077), - [anon_sym_module] = ACTIONS(1077), - [anon_sym_any] = ACTIONS(1077), - [anon_sym_number] = ACTIONS(1077), - [anon_sym_boolean] = ACTIONS(1077), - [anon_sym_string] = ACTIONS(1077), - [anon_sym_symbol] = ACTIONS(1077), - [anon_sym_interface] = ACTIONS(1077), - [anon_sym_enum] = ACTIONS(1077), - [sym_readonly] = ACTIONS(1077), - [anon_sym_PIPE_RBRACE] = ACTIONS(1075), - [sym__automatic_semicolon] = ACTIONS(1075), + [sym__call_signature] = STATE(3091), + [sym_formal_parameters] = STATE(2253), + [sym_type_parameters] = STATE(2827), + [sym_identifier] = ACTIONS(1690), + [anon_sym_export] = ACTIONS(1692), + [anon_sym_STAR] = ACTIONS(808), + [anon_sym_EQ] = ACTIONS(1127), + [anon_sym_as] = ACTIONS(808), + [anon_sym_namespace] = ACTIONS(1692), + [anon_sym_type] = ACTIONS(1692), + [anon_sym_BANG] = ACTIONS(808), + [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_in] = ACTIONS(808), + [anon_sym_SEMI] = ACTIONS(841), + [anon_sym_LBRACK] = ACTIONS(1219), + [anon_sym_LT] = ACTIONS(1638), + [anon_sym_GT] = ACTIONS(808), + [anon_sym_SLASH] = ACTIONS(808), + [anon_sym_DOT] = ACTIONS(1224), + [anon_sym_async] = ACTIONS(1692), + [anon_sym_function] = ACTIONS(1633), + [anon_sym_EQ_GT] = ACTIONS(1129), + [anon_sym_QMARK_DOT] = ACTIONS(1021), + [anon_sym_PLUS_EQ] = ACTIONS(831), + [anon_sym_DASH_EQ] = ACTIONS(831), + [anon_sym_STAR_EQ] = ACTIONS(831), + [anon_sym_SLASH_EQ] = ACTIONS(831), + [anon_sym_PERCENT_EQ] = ACTIONS(831), + [anon_sym_CARET_EQ] = ACTIONS(831), + [anon_sym_AMP_EQ] = ACTIONS(831), + [anon_sym_PIPE_EQ] = ACTIONS(831), + [anon_sym_GT_GT_EQ] = ACTIONS(831), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(831), + [anon_sym_LT_LT_EQ] = ACTIONS(831), + [anon_sym_STAR_STAR_EQ] = ACTIONS(831), + [anon_sym_AMP_AMP_EQ] = ACTIONS(831), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(831), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(831), + [anon_sym_QMARK] = ACTIONS(808), + [anon_sym_AMP_AMP] = ACTIONS(808), + [anon_sym_PIPE_PIPE] = ACTIONS(808), + [anon_sym_GT_GT] = ACTIONS(808), + [anon_sym_GT_GT_GT] = ACTIONS(808), + [anon_sym_LT_LT] = ACTIONS(808), + [anon_sym_AMP] = ACTIONS(808), + [anon_sym_CARET] = ACTIONS(808), + [anon_sym_PIPE] = ACTIONS(808), + [anon_sym_PLUS] = ACTIONS(808), + [anon_sym_DASH] = ACTIONS(808), + [anon_sym_PERCENT] = ACTIONS(808), + [anon_sym_STAR_STAR] = ACTIONS(808), + [anon_sym_LT_EQ] = ACTIONS(841), + [anon_sym_EQ_EQ] = ACTIONS(808), + [anon_sym_EQ_EQ_EQ] = ACTIONS(841), + [anon_sym_BANG_EQ] = ACTIONS(808), + [anon_sym_BANG_EQ_EQ] = ACTIONS(841), + [anon_sym_GT_EQ] = ACTIONS(841), + [anon_sym_QMARK_QMARK] = ACTIONS(808), + [anon_sym_instanceof] = ACTIONS(808), + [anon_sym_PLUS_PLUS] = ACTIONS(841), + [anon_sym_DASH_DASH] = ACTIONS(841), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(841), + [anon_sym_static] = ACTIONS(1692), + [anon_sym_get] = ACTIONS(1692), + [anon_sym_set] = ACTIONS(1692), + [anon_sym_declare] = ACTIONS(1692), + [anon_sym_public] = ACTIONS(1692), + [anon_sym_private] = ACTIONS(1692), + [anon_sym_protected] = ACTIONS(1692), + [anon_sym_module] = ACTIONS(1692), + [anon_sym_any] = ACTIONS(1692), + [anon_sym_number] = ACTIONS(1692), + [anon_sym_boolean] = ACTIONS(1692), + [anon_sym_string] = ACTIONS(1692), + [anon_sym_symbol] = ACTIONS(1692), + [sym_readonly] = ACTIONS(1692), + [sym__automatic_semicolon] = ACTIONS(841), }, [511] = { - [sym__call_signature] = STATE(3007), - [sym_formal_parameters] = STATE(2157), - [sym_type_parameters] = STATE(2850), - [sym_identifier] = ACTIONS(1705), - [anon_sym_export] = ACTIONS(1707), + [sym_identifier] = ACTIONS(1641), + [anon_sym_export] = ACTIONS(1641), [anon_sym_STAR] = ACTIONS(808), - [anon_sym_EQ] = ACTIONS(1127), + [anon_sym_EQ] = ACTIONS(805), [anon_sym_as] = ACTIONS(808), - [anon_sym_namespace] = ACTIONS(1707), - [anon_sym_type] = ACTIONS(1707), + [anon_sym_namespace] = ACTIONS(1641), + [anon_sym_LBRACE] = ACTIONS(1643), + [anon_sym_COMMA] = ACTIONS(812), + [anon_sym_type] = ACTIONS(1641), [anon_sym_BANG] = ACTIONS(808), - [anon_sym_LPAREN] = ACTIONS(1635), - [anon_sym_in] = ACTIONS(1772), - [anon_sym_of] = ACTIONS(1775), + [anon_sym_LPAREN] = ACTIONS(841), + [anon_sym_RPAREN] = ACTIONS(812), + [anon_sym_in] = ACTIONS(808), + [anon_sym_COLON] = ACTIONS(1724), [anon_sym_LBRACK] = ACTIONS(1623), - [anon_sym_LT] = ACTIONS(1638), + [anon_sym_LT] = ACTIONS(808), [anon_sym_GT] = ACTIONS(808), [anon_sym_SLASH] = ACTIONS(808), [anon_sym_DOT] = ACTIONS(1625), - [anon_sym_async] = ACTIONS(1707), - [anon_sym_function] = ACTIONS(1627), - [anon_sym_EQ_GT] = ACTIONS(1129), + [anon_sym_async] = ACTIONS(1641), + [anon_sym_EQ_GT] = ACTIONS(825), [anon_sym_QMARK_DOT] = ACTIONS(827), [anon_sym_PLUS_EQ] = ACTIONS(831), [anon_sym_DASH_EQ] = ACTIONS(831), @@ -58458,7 +58511,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP_EQ] = ACTIONS(831), [anon_sym_PIPE_PIPE_EQ] = ACTIONS(831), [anon_sym_QMARK_QMARK_EQ] = ACTIONS(831), - [anon_sym_QMARK] = ACTIONS(808), + [anon_sym_QMARK] = ACTIONS(1709), [anon_sym_AMP_AMP] = ACTIONS(808), [anon_sym_PIPE_PIPE] = ACTIONS(808), [anon_sym_GT_GT] = ACTIONS(808), @@ -58483,44 +58536,203 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(841), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(841), - [anon_sym_static] = ACTIONS(1707), - [anon_sym_get] = ACTIONS(1707), - [anon_sym_set] = ACTIONS(1707), - [anon_sym_declare] = ACTIONS(1707), - [anon_sym_public] = ACTIONS(1707), - [anon_sym_private] = ACTIONS(1707), - [anon_sym_protected] = ACTIONS(1707), - [anon_sym_module] = ACTIONS(1707), - [anon_sym_any] = ACTIONS(1707), - [anon_sym_number] = ACTIONS(1707), - [anon_sym_boolean] = ACTIONS(1707), - [anon_sym_string] = ACTIONS(1707), - [anon_sym_symbol] = ACTIONS(1707), - [sym_readonly] = ACTIONS(1707), + [sym_this] = ACTIONS(1641), + [anon_sym_static] = ACTIONS(1641), + [anon_sym_get] = ACTIONS(1641), + [anon_sym_set] = ACTIONS(1641), + [anon_sym_declare] = ACTIONS(1641), + [anon_sym_public] = ACTIONS(1641), + [anon_sym_private] = ACTIONS(1641), + [anon_sym_protected] = ACTIONS(1641), + [anon_sym_module] = ACTIONS(1641), + [anon_sym_any] = ACTIONS(1641), + [anon_sym_number] = ACTIONS(1641), + [anon_sym_boolean] = ACTIONS(1641), + [anon_sym_string] = ACTIONS(1641), + [anon_sym_symbol] = ACTIONS(1641), + [sym_readonly] = ACTIONS(1641), }, [512] = { - [sym__call_signature] = STATE(3007), - [sym_formal_parameters] = STATE(2157), - [sym_type_parameters] = STATE(2850), - [sym_identifier] = ACTIONS(1705), - [anon_sym_export] = ACTIONS(1707), + [sym_finally_clause] = STATE(576), + [ts_builtin_sym_end] = ACTIONS(1772), + [sym_identifier] = ACTIONS(1774), + [anon_sym_export] = ACTIONS(1774), + [anon_sym_default] = ACTIONS(1774), + [anon_sym_namespace] = ACTIONS(1774), + [anon_sym_LBRACE] = ACTIONS(1772), + [anon_sym_RBRACE] = ACTIONS(1772), + [anon_sym_type] = ACTIONS(1774), + [anon_sym_typeof] = ACTIONS(1774), + [anon_sym_import] = ACTIONS(1774), + [anon_sym_var] = ACTIONS(1774), + [anon_sym_let] = ACTIONS(1774), + [anon_sym_const] = ACTIONS(1774), + [anon_sym_BANG] = ACTIONS(1772), + [anon_sym_else] = ACTIONS(1774), + [anon_sym_if] = ACTIONS(1774), + [anon_sym_switch] = ACTIONS(1774), + [anon_sym_for] = ACTIONS(1774), + [anon_sym_LPAREN] = ACTIONS(1772), + [anon_sym_await] = ACTIONS(1774), + [anon_sym_while] = ACTIONS(1774), + [anon_sym_do] = ACTIONS(1774), + [anon_sym_try] = ACTIONS(1774), + [anon_sym_with] = ACTIONS(1774), + [anon_sym_break] = ACTIONS(1774), + [anon_sym_continue] = ACTIONS(1774), + [anon_sym_debugger] = ACTIONS(1774), + [anon_sym_return] = ACTIONS(1774), + [anon_sym_throw] = ACTIONS(1774), + [anon_sym_SEMI] = ACTIONS(1772), + [anon_sym_case] = ACTIONS(1774), + [anon_sym_finally] = ACTIONS(1740), + [anon_sym_yield] = ACTIONS(1774), + [anon_sym_LBRACK] = ACTIONS(1772), + [anon_sym_LT] = ACTIONS(1772), + [anon_sym_SLASH] = ACTIONS(1774), + [anon_sym_class] = ACTIONS(1774), + [anon_sym_async] = ACTIONS(1774), + [anon_sym_function] = ACTIONS(1774), + [anon_sym_new] = ACTIONS(1774), + [anon_sym_PLUS] = ACTIONS(1774), + [anon_sym_DASH] = ACTIONS(1774), + [anon_sym_TILDE] = ACTIONS(1772), + [anon_sym_void] = ACTIONS(1774), + [anon_sym_delete] = ACTIONS(1774), + [anon_sym_PLUS_PLUS] = ACTIONS(1772), + [anon_sym_DASH_DASH] = ACTIONS(1772), + [anon_sym_DQUOTE] = ACTIONS(1772), + [anon_sym_SQUOTE] = ACTIONS(1772), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1772), + [sym_number] = ACTIONS(1772), + [sym_this] = ACTIONS(1774), + [sym_super] = ACTIONS(1774), + [sym_true] = ACTIONS(1774), + [sym_false] = ACTIONS(1774), + [sym_null] = ACTIONS(1774), + [sym_undefined] = ACTIONS(1774), + [anon_sym_AT] = ACTIONS(1772), + [anon_sym_static] = ACTIONS(1774), + [anon_sym_abstract] = ACTIONS(1774), + [anon_sym_get] = ACTIONS(1774), + [anon_sym_set] = ACTIONS(1774), + [anon_sym_declare] = ACTIONS(1774), + [anon_sym_public] = ACTIONS(1774), + [anon_sym_private] = ACTIONS(1774), + [anon_sym_protected] = ACTIONS(1774), + [anon_sym_module] = ACTIONS(1774), + [anon_sym_any] = ACTIONS(1774), + [anon_sym_number] = ACTIONS(1774), + [anon_sym_boolean] = ACTIONS(1774), + [anon_sym_string] = ACTIONS(1774), + [anon_sym_symbol] = ACTIONS(1774), + [anon_sym_interface] = ACTIONS(1774), + [anon_sym_enum] = ACTIONS(1774), + [sym_readonly] = ACTIONS(1774), + }, + [513] = { + [sym_statement_block] = STATE(599), + [ts_builtin_sym_end] = ACTIONS(917), + [sym_identifier] = ACTIONS(919), + [anon_sym_export] = ACTIONS(919), + [anon_sym_default] = ACTIONS(919), + [anon_sym_namespace] = ACTIONS(919), + [anon_sym_LBRACE] = ACTIONS(1776), + [anon_sym_RBRACE] = ACTIONS(917), + [anon_sym_type] = ACTIONS(919), + [anon_sym_typeof] = ACTIONS(919), + [anon_sym_import] = ACTIONS(919), + [anon_sym_var] = ACTIONS(919), + [anon_sym_let] = ACTIONS(919), + [anon_sym_const] = ACTIONS(919), + [anon_sym_BANG] = ACTIONS(917), + [anon_sym_else] = ACTIONS(919), + [anon_sym_if] = ACTIONS(919), + [anon_sym_switch] = ACTIONS(919), + [anon_sym_for] = ACTIONS(919), + [anon_sym_LPAREN] = ACTIONS(917), + [anon_sym_await] = ACTIONS(919), + [anon_sym_while] = ACTIONS(919), + [anon_sym_do] = ACTIONS(919), + [anon_sym_try] = ACTIONS(919), + [anon_sym_with] = ACTIONS(919), + [anon_sym_break] = ACTIONS(919), + [anon_sym_continue] = ACTIONS(919), + [anon_sym_debugger] = ACTIONS(919), + [anon_sym_return] = ACTIONS(919), + [anon_sym_throw] = ACTIONS(919), + [anon_sym_SEMI] = ACTIONS(917), + [anon_sym_case] = ACTIONS(919), + [anon_sym_yield] = ACTIONS(919), + [anon_sym_LBRACK] = ACTIONS(917), + [anon_sym_LT] = ACTIONS(917), + [anon_sym_SLASH] = ACTIONS(919), + [anon_sym_DOT] = ACTIONS(1778), + [anon_sym_class] = ACTIONS(919), + [anon_sym_async] = ACTIONS(919), + [anon_sym_function] = ACTIONS(919), + [anon_sym_new] = ACTIONS(919), + [anon_sym_PLUS] = ACTIONS(919), + [anon_sym_DASH] = ACTIONS(919), + [anon_sym_TILDE] = ACTIONS(917), + [anon_sym_void] = ACTIONS(919), + [anon_sym_delete] = ACTIONS(919), + [anon_sym_PLUS_PLUS] = ACTIONS(917), + [anon_sym_DASH_DASH] = ACTIONS(917), + [anon_sym_DQUOTE] = ACTIONS(917), + [anon_sym_SQUOTE] = ACTIONS(917), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(917), + [sym_number] = ACTIONS(917), + [sym_this] = ACTIONS(919), + [sym_super] = ACTIONS(919), + [sym_true] = ACTIONS(919), + [sym_false] = ACTIONS(919), + [sym_null] = ACTIONS(919), + [sym_undefined] = ACTIONS(919), + [anon_sym_AT] = ACTIONS(917), + [anon_sym_static] = ACTIONS(919), + [anon_sym_abstract] = ACTIONS(919), + [anon_sym_get] = ACTIONS(919), + [anon_sym_set] = ACTIONS(919), + [anon_sym_declare] = ACTIONS(919), + [anon_sym_public] = ACTIONS(919), + [anon_sym_private] = ACTIONS(919), + [anon_sym_protected] = ACTIONS(919), + [anon_sym_module] = ACTIONS(919), + [anon_sym_any] = ACTIONS(919), + [anon_sym_number] = ACTIONS(919), + [anon_sym_boolean] = ACTIONS(919), + [anon_sym_string] = ACTIONS(919), + [anon_sym_symbol] = ACTIONS(919), + [anon_sym_interface] = ACTIONS(919), + [anon_sym_enum] = ACTIONS(919), + [sym_readonly] = ACTIONS(919), + }, + [514] = { + [sym__call_signature] = STATE(3018), + [sym_formal_parameters] = STATE(2253), + [sym_type_parameters] = STATE(2827), + [sym_identifier] = ACTIONS(1698), + [anon_sym_export] = ACTIONS(1700), [anon_sym_STAR] = ACTIONS(808), - [anon_sym_EQ] = ACTIONS(1127), + [anon_sym_EQ] = ACTIONS(1115), [anon_sym_as] = ACTIONS(808), - [anon_sym_namespace] = ACTIONS(1707), - [anon_sym_type] = ACTIONS(1707), + [anon_sym_namespace] = ACTIONS(1700), + [anon_sym_type] = ACTIONS(1700), [anon_sym_BANG] = ACTIONS(808), [anon_sym_LPAREN] = ACTIONS(1635), - [anon_sym_in] = ACTIONS(1665), - [anon_sym_of] = ACTIONS(1668), + [anon_sym_in] = ACTIONS(1780), + [anon_sym_of] = ACTIONS(1783), [anon_sym_LBRACK] = ACTIONS(1623), [anon_sym_LT] = ACTIONS(1638), [anon_sym_GT] = ACTIONS(808), [anon_sym_SLASH] = ACTIONS(808), [anon_sym_DOT] = ACTIONS(1625), - [anon_sym_async] = ACTIONS(1707), + [anon_sym_async] = ACTIONS(1700), [anon_sym_function] = ACTIONS(1627), - [anon_sym_EQ_GT] = ACTIONS(1129), + [anon_sym_EQ_GT] = ACTIONS(1117), [anon_sym_QMARK_DOT] = ACTIONS(827), [anon_sym_PLUS_EQ] = ACTIONS(831), [anon_sym_DASH_EQ] = ACTIONS(831), @@ -58562,22 +58774,22 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(841), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(841), - [anon_sym_static] = ACTIONS(1707), - [anon_sym_get] = ACTIONS(1707), - [anon_sym_set] = ACTIONS(1707), - [anon_sym_declare] = ACTIONS(1707), - [anon_sym_public] = ACTIONS(1707), - [anon_sym_private] = ACTIONS(1707), - [anon_sym_protected] = ACTIONS(1707), - [anon_sym_module] = ACTIONS(1707), - [anon_sym_any] = ACTIONS(1707), - [anon_sym_number] = ACTIONS(1707), - [anon_sym_boolean] = ACTIONS(1707), - [anon_sym_string] = ACTIONS(1707), - [anon_sym_symbol] = ACTIONS(1707), - [sym_readonly] = ACTIONS(1707), + [anon_sym_static] = ACTIONS(1700), + [anon_sym_get] = ACTIONS(1700), + [anon_sym_set] = ACTIONS(1700), + [anon_sym_declare] = ACTIONS(1700), + [anon_sym_public] = ACTIONS(1700), + [anon_sym_private] = ACTIONS(1700), + [anon_sym_protected] = ACTIONS(1700), + [anon_sym_module] = ACTIONS(1700), + [anon_sym_any] = ACTIONS(1700), + [anon_sym_number] = ACTIONS(1700), + [anon_sym_boolean] = ACTIONS(1700), + [anon_sym_string] = ACTIONS(1700), + [anon_sym_symbol] = ACTIONS(1700), + [sym_readonly] = ACTIONS(1700), }, - [513] = { + [515] = { [sym_identifier] = ACTIONS(1641), [anon_sym_export] = ACTIONS(1641), [anon_sym_STAR] = ACTIONS(808), @@ -58591,7 +58803,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(841), [anon_sym_RPAREN] = ACTIONS(812), [anon_sym_in] = ACTIONS(808), - [anon_sym_COLON] = ACTIONS(1728), + [anon_sym_COLON] = ACTIONS(812), [anon_sym_LBRACK] = ACTIONS(1623), [anon_sym_LT] = ACTIONS(808), [anon_sym_GT] = ACTIONS(808), @@ -58615,7 +58827,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP_EQ] = ACTIONS(831), [anon_sym_PIPE_PIPE_EQ] = ACTIONS(831), [anon_sym_QMARK_QMARK_EQ] = ACTIONS(831), - [anon_sym_QMARK] = ACTIONS(1717), + [anon_sym_QMARK] = ACTIONS(1709), [anon_sym_AMP_AMP] = ACTIONS(808), [anon_sym_PIPE_PIPE] = ACTIONS(808), [anon_sym_GT_GT] = ACTIONS(808), @@ -58656,107 +58868,29 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(1641), [sym_readonly] = ACTIONS(1641), }, - [514] = { - [sym_finally_clause] = STATE(566), - [ts_builtin_sym_end] = ACTIONS(1777), - [sym_identifier] = ACTIONS(1779), - [anon_sym_export] = ACTIONS(1779), - [anon_sym_default] = ACTIONS(1779), - [anon_sym_namespace] = ACTIONS(1779), - [anon_sym_LBRACE] = ACTIONS(1777), - [anon_sym_RBRACE] = ACTIONS(1777), - [anon_sym_type] = ACTIONS(1779), - [anon_sym_typeof] = ACTIONS(1779), - [anon_sym_import] = ACTIONS(1779), - [anon_sym_var] = ACTIONS(1779), - [anon_sym_let] = ACTIONS(1779), - [anon_sym_const] = ACTIONS(1779), - [anon_sym_BANG] = ACTIONS(1777), - [anon_sym_else] = ACTIONS(1779), - [anon_sym_if] = ACTIONS(1779), - [anon_sym_switch] = ACTIONS(1779), - [anon_sym_for] = ACTIONS(1779), - [anon_sym_LPAREN] = ACTIONS(1777), - [anon_sym_await] = ACTIONS(1779), - [anon_sym_while] = ACTIONS(1779), - [anon_sym_do] = ACTIONS(1779), - [anon_sym_try] = ACTIONS(1779), - [anon_sym_with] = ACTIONS(1779), - [anon_sym_break] = ACTIONS(1779), - [anon_sym_continue] = ACTIONS(1779), - [anon_sym_debugger] = ACTIONS(1779), - [anon_sym_return] = ACTIONS(1779), - [anon_sym_throw] = ACTIONS(1779), - [anon_sym_SEMI] = ACTIONS(1777), - [anon_sym_case] = ACTIONS(1779), - [anon_sym_finally] = ACTIONS(1715), - [anon_sym_yield] = ACTIONS(1779), - [anon_sym_LBRACK] = ACTIONS(1777), - [anon_sym_LT] = ACTIONS(1777), - [anon_sym_SLASH] = ACTIONS(1779), - [anon_sym_class] = ACTIONS(1779), - [anon_sym_async] = ACTIONS(1779), - [anon_sym_function] = ACTIONS(1779), - [anon_sym_new] = ACTIONS(1779), - [anon_sym_PLUS] = ACTIONS(1779), - [anon_sym_DASH] = ACTIONS(1779), - [anon_sym_TILDE] = ACTIONS(1777), - [anon_sym_void] = ACTIONS(1779), - [anon_sym_delete] = ACTIONS(1779), - [anon_sym_PLUS_PLUS] = ACTIONS(1777), - [anon_sym_DASH_DASH] = ACTIONS(1777), - [anon_sym_DQUOTE] = ACTIONS(1777), - [anon_sym_SQUOTE] = ACTIONS(1777), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1777), - [sym_number] = ACTIONS(1777), - [sym_this] = ACTIONS(1779), - [sym_super] = ACTIONS(1779), - [sym_true] = ACTIONS(1779), - [sym_false] = ACTIONS(1779), - [sym_null] = ACTIONS(1779), - [sym_undefined] = ACTIONS(1779), - [anon_sym_AT] = ACTIONS(1777), - [anon_sym_static] = ACTIONS(1779), - [anon_sym_abstract] = ACTIONS(1779), - [anon_sym_get] = ACTIONS(1779), - [anon_sym_set] = ACTIONS(1779), - [anon_sym_declare] = ACTIONS(1779), - [anon_sym_public] = ACTIONS(1779), - [anon_sym_private] = ACTIONS(1779), - [anon_sym_protected] = ACTIONS(1779), - [anon_sym_module] = ACTIONS(1779), - [anon_sym_any] = ACTIONS(1779), - [anon_sym_number] = ACTIONS(1779), - [anon_sym_boolean] = ACTIONS(1779), - [anon_sym_string] = ACTIONS(1779), - [anon_sym_symbol] = ACTIONS(1779), - [anon_sym_interface] = ACTIONS(1779), - [anon_sym_enum] = ACTIONS(1779), - [sym_readonly] = ACTIONS(1779), - }, - [515] = { - [sym_identifier] = ACTIONS(1641), - [anon_sym_export] = ACTIONS(1641), + [516] = { + [sym__call_signature] = STATE(3018), + [sym_formal_parameters] = STATE(2253), + [sym_type_parameters] = STATE(2827), + [sym_identifier] = ACTIONS(1698), + [anon_sym_export] = ACTIONS(1700), [anon_sym_STAR] = ACTIONS(808), - [anon_sym_EQ] = ACTIONS(805), + [anon_sym_EQ] = ACTIONS(1115), [anon_sym_as] = ACTIONS(808), - [anon_sym_namespace] = ACTIONS(1641), - [anon_sym_LBRACE] = ACTIONS(1643), - [anon_sym_COMMA] = ACTIONS(812), - [anon_sym_type] = ACTIONS(1641), + [anon_sym_namespace] = ACTIONS(1700), + [anon_sym_type] = ACTIONS(1700), [anon_sym_BANG] = ACTIONS(808), - [anon_sym_LPAREN] = ACTIONS(841), - [anon_sym_RPAREN] = ACTIONS(812), - [anon_sym_in] = ACTIONS(808), - [anon_sym_COLON] = ACTIONS(812), + [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_in] = ACTIONS(1665), + [anon_sym_of] = ACTIONS(1668), [anon_sym_LBRACK] = ACTIONS(1623), - [anon_sym_LT] = ACTIONS(808), + [anon_sym_LT] = ACTIONS(1638), [anon_sym_GT] = ACTIONS(808), [anon_sym_SLASH] = ACTIONS(808), [anon_sym_DOT] = ACTIONS(1625), - [anon_sym_async] = ACTIONS(1641), - [anon_sym_EQ_GT] = ACTIONS(825), + [anon_sym_async] = ACTIONS(1700), + [anon_sym_function] = ACTIONS(1627), + [anon_sym_EQ_GT] = ACTIONS(1117), [anon_sym_QMARK_DOT] = ACTIONS(827), [anon_sym_PLUS_EQ] = ACTIONS(831), [anon_sym_DASH_EQ] = ACTIONS(831), @@ -58773,7 +58907,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP_EQ] = ACTIONS(831), [anon_sym_PIPE_PIPE_EQ] = ACTIONS(831), [anon_sym_QMARK_QMARK_EQ] = ACTIONS(831), - [anon_sym_QMARK] = ACTIONS(1717), + [anon_sym_QMARK] = ACTIONS(808), [anon_sym_AMP_AMP] = ACTIONS(808), [anon_sym_PIPE_PIPE] = ACTIONS(808), [anon_sym_GT_GT] = ACTIONS(808), @@ -58798,414 +58932,256 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(841), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(841), - [sym_this] = ACTIONS(1641), - [anon_sym_static] = ACTIONS(1641), - [anon_sym_get] = ACTIONS(1641), - [anon_sym_set] = ACTIONS(1641), - [anon_sym_declare] = ACTIONS(1641), - [anon_sym_public] = ACTIONS(1641), - [anon_sym_private] = ACTIONS(1641), - [anon_sym_protected] = ACTIONS(1641), - [anon_sym_module] = ACTIONS(1641), - [anon_sym_any] = ACTIONS(1641), - [anon_sym_number] = ACTIONS(1641), - [anon_sym_boolean] = ACTIONS(1641), - [anon_sym_string] = ACTIONS(1641), - [anon_sym_symbol] = ACTIONS(1641), - [sym_readonly] = ACTIONS(1641), - }, - [516] = { - [sym_statement_block] = STATE(580), - [ts_builtin_sym_end] = ACTIONS(917), - [sym_identifier] = ACTIONS(919), - [anon_sym_export] = ACTIONS(919), - [anon_sym_default] = ACTIONS(919), - [anon_sym_namespace] = ACTIONS(919), - [anon_sym_LBRACE] = ACTIONS(1781), - [anon_sym_RBRACE] = ACTIONS(917), - [anon_sym_type] = ACTIONS(919), - [anon_sym_typeof] = ACTIONS(919), - [anon_sym_import] = ACTIONS(919), - [anon_sym_var] = ACTIONS(919), - [anon_sym_let] = ACTIONS(919), - [anon_sym_const] = ACTIONS(919), - [anon_sym_BANG] = ACTIONS(917), - [anon_sym_else] = ACTIONS(919), - [anon_sym_if] = ACTIONS(919), - [anon_sym_switch] = ACTIONS(919), - [anon_sym_for] = ACTIONS(919), - [anon_sym_LPAREN] = ACTIONS(917), - [anon_sym_await] = ACTIONS(919), - [anon_sym_while] = ACTIONS(919), - [anon_sym_do] = ACTIONS(919), - [anon_sym_try] = ACTIONS(919), - [anon_sym_with] = ACTIONS(919), - [anon_sym_break] = ACTIONS(919), - [anon_sym_continue] = ACTIONS(919), - [anon_sym_debugger] = ACTIONS(919), - [anon_sym_return] = ACTIONS(919), - [anon_sym_throw] = ACTIONS(919), - [anon_sym_SEMI] = ACTIONS(917), - [anon_sym_case] = ACTIONS(919), - [anon_sym_yield] = ACTIONS(919), - [anon_sym_LBRACK] = ACTIONS(917), - [anon_sym_LT] = ACTIONS(917), - [anon_sym_SLASH] = ACTIONS(919), - [anon_sym_DOT] = ACTIONS(1783), - [anon_sym_class] = ACTIONS(919), - [anon_sym_async] = ACTIONS(919), - [anon_sym_function] = ACTIONS(919), - [anon_sym_new] = ACTIONS(919), - [anon_sym_PLUS] = ACTIONS(919), - [anon_sym_DASH] = ACTIONS(919), - [anon_sym_TILDE] = ACTIONS(917), - [anon_sym_void] = ACTIONS(919), - [anon_sym_delete] = ACTIONS(919), - [anon_sym_PLUS_PLUS] = ACTIONS(917), - [anon_sym_DASH_DASH] = ACTIONS(917), - [anon_sym_DQUOTE] = ACTIONS(917), - [anon_sym_SQUOTE] = ACTIONS(917), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(917), - [sym_number] = ACTIONS(917), - [sym_this] = ACTIONS(919), - [sym_super] = ACTIONS(919), - [sym_true] = ACTIONS(919), - [sym_false] = ACTIONS(919), - [sym_null] = ACTIONS(919), - [sym_undefined] = ACTIONS(919), - [anon_sym_AT] = ACTIONS(917), - [anon_sym_static] = ACTIONS(919), - [anon_sym_abstract] = ACTIONS(919), - [anon_sym_get] = ACTIONS(919), - [anon_sym_set] = ACTIONS(919), - [anon_sym_declare] = ACTIONS(919), - [anon_sym_public] = ACTIONS(919), - [anon_sym_private] = ACTIONS(919), - [anon_sym_protected] = ACTIONS(919), - [anon_sym_module] = ACTIONS(919), - [anon_sym_any] = ACTIONS(919), - [anon_sym_number] = ACTIONS(919), - [anon_sym_boolean] = ACTIONS(919), - [anon_sym_string] = ACTIONS(919), - [anon_sym_symbol] = ACTIONS(919), - [anon_sym_interface] = ACTIONS(919), - [anon_sym_enum] = ACTIONS(919), - [sym_readonly] = ACTIONS(919), + [anon_sym_static] = ACTIONS(1700), + [anon_sym_get] = ACTIONS(1700), + [anon_sym_set] = ACTIONS(1700), + [anon_sym_declare] = ACTIONS(1700), + [anon_sym_public] = ACTIONS(1700), + [anon_sym_private] = ACTIONS(1700), + [anon_sym_protected] = ACTIONS(1700), + [anon_sym_module] = ACTIONS(1700), + [anon_sym_any] = ACTIONS(1700), + [anon_sym_number] = ACTIONS(1700), + [anon_sym_boolean] = ACTIONS(1700), + [anon_sym_string] = ACTIONS(1700), + [anon_sym_symbol] = ACTIONS(1700), + [sym_readonly] = ACTIONS(1700), }, [517] = { - [ts_builtin_sym_end] = ACTIONS(1013), - [sym_identifier] = ACTIONS(1015), - [anon_sym_export] = ACTIONS(1015), - [anon_sym_default] = ACTIONS(1015), - [anon_sym_namespace] = ACTIONS(1015), - [anon_sym_LBRACE] = ACTIONS(1013), - [anon_sym_RBRACE] = ACTIONS(1013), - [anon_sym_type] = ACTIONS(1015), - [anon_sym_typeof] = ACTIONS(1015), - [anon_sym_import] = ACTIONS(1015), - [anon_sym_var] = ACTIONS(1015), - [anon_sym_let] = ACTIONS(1015), - [anon_sym_const] = ACTIONS(1015), - [anon_sym_BANG] = ACTIONS(1013), - [anon_sym_else] = ACTIONS(1015), - [anon_sym_if] = ACTIONS(1015), - [anon_sym_switch] = ACTIONS(1015), - [anon_sym_for] = ACTIONS(1015), - [anon_sym_LPAREN] = ACTIONS(1013), - [anon_sym_await] = ACTIONS(1015), - [anon_sym_while] = ACTIONS(1015), - [anon_sym_do] = ACTIONS(1015), - [anon_sym_try] = ACTIONS(1015), - [anon_sym_with] = ACTIONS(1015), - [anon_sym_break] = ACTIONS(1015), - [anon_sym_continue] = ACTIONS(1015), - [anon_sym_debugger] = ACTIONS(1015), - [anon_sym_return] = ACTIONS(1015), - [anon_sym_throw] = ACTIONS(1015), - [anon_sym_SEMI] = ACTIONS(1013), - [anon_sym_case] = ACTIONS(1015), - [anon_sym_yield] = ACTIONS(1015), - [anon_sym_LBRACK] = ACTIONS(1013), - [anon_sym_LT] = ACTIONS(1013), - [anon_sym_SLASH] = ACTIONS(1015), - [anon_sym_class] = ACTIONS(1015), - [anon_sym_async] = ACTIONS(1015), - [anon_sym_function] = ACTIONS(1015), - [anon_sym_new] = ACTIONS(1015), - [anon_sym_PLUS] = ACTIONS(1015), - [anon_sym_DASH] = ACTIONS(1015), - [anon_sym_TILDE] = ACTIONS(1013), - [anon_sym_void] = ACTIONS(1015), - [anon_sym_delete] = ACTIONS(1015), - [anon_sym_PLUS_PLUS] = ACTIONS(1013), - [anon_sym_DASH_DASH] = ACTIONS(1013), - [anon_sym_DQUOTE] = ACTIONS(1013), - [anon_sym_SQUOTE] = ACTIONS(1013), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1013), - [sym_number] = ACTIONS(1013), - [sym_this] = ACTIONS(1015), - [sym_super] = ACTIONS(1015), - [sym_true] = ACTIONS(1015), - [sym_false] = ACTIONS(1015), - [sym_null] = ACTIONS(1015), - [sym_undefined] = ACTIONS(1015), - [anon_sym_AT] = ACTIONS(1013), - [anon_sym_static] = ACTIONS(1015), - [anon_sym_abstract] = ACTIONS(1015), - [anon_sym_get] = ACTIONS(1015), - [anon_sym_set] = ACTIONS(1015), - [anon_sym_declare] = ACTIONS(1015), - [anon_sym_public] = ACTIONS(1015), - [anon_sym_private] = ACTIONS(1015), - [anon_sym_protected] = ACTIONS(1015), - [anon_sym_module] = ACTIONS(1015), - [anon_sym_any] = ACTIONS(1015), - [anon_sym_number] = ACTIONS(1015), - [anon_sym_boolean] = ACTIONS(1015), - [anon_sym_string] = ACTIONS(1015), - [anon_sym_symbol] = ACTIONS(1015), - [anon_sym_interface] = ACTIONS(1015), - [anon_sym_enum] = ACTIONS(1015), - [sym_readonly] = ACTIONS(1015), - [sym__automatic_semicolon] = ACTIONS(1021), + [ts_builtin_sym_end] = ACTIONS(1061), + [sym_identifier] = ACTIONS(1063), + [anon_sym_export] = ACTIONS(1063), + [anon_sym_default] = ACTIONS(1063), + [anon_sym_namespace] = ACTIONS(1063), + [anon_sym_LBRACE] = ACTIONS(1061), + [anon_sym_RBRACE] = ACTIONS(1061), + [anon_sym_type] = ACTIONS(1063), + [anon_sym_typeof] = ACTIONS(1063), + [anon_sym_import] = ACTIONS(1063), + [anon_sym_var] = ACTIONS(1063), + [anon_sym_let] = ACTIONS(1063), + [anon_sym_const] = ACTIONS(1063), + [anon_sym_BANG] = ACTIONS(1061), + [anon_sym_else] = ACTIONS(1063), + [anon_sym_if] = ACTIONS(1063), + [anon_sym_switch] = ACTIONS(1063), + [anon_sym_for] = ACTIONS(1063), + [anon_sym_LPAREN] = ACTIONS(1061), + [anon_sym_await] = ACTIONS(1063), + [anon_sym_while] = ACTIONS(1063), + [anon_sym_do] = ACTIONS(1063), + [anon_sym_try] = ACTIONS(1063), + [anon_sym_with] = ACTIONS(1063), + [anon_sym_break] = ACTIONS(1063), + [anon_sym_continue] = ACTIONS(1063), + [anon_sym_debugger] = ACTIONS(1063), + [anon_sym_return] = ACTIONS(1063), + [anon_sym_throw] = ACTIONS(1063), + [anon_sym_SEMI] = ACTIONS(1061), + [anon_sym_case] = ACTIONS(1063), + [anon_sym_yield] = ACTIONS(1063), + [anon_sym_LBRACK] = ACTIONS(1061), + [anon_sym_LT] = ACTIONS(1061), + [anon_sym_SLASH] = ACTIONS(1063), + [anon_sym_class] = ACTIONS(1063), + [anon_sym_async] = ACTIONS(1063), + [anon_sym_function] = ACTIONS(1063), + [anon_sym_new] = ACTIONS(1063), + [anon_sym_PLUS] = ACTIONS(1063), + [anon_sym_DASH] = ACTIONS(1063), + [anon_sym_TILDE] = ACTIONS(1061), + [anon_sym_void] = ACTIONS(1063), + [anon_sym_delete] = ACTIONS(1063), + [anon_sym_PLUS_PLUS] = ACTIONS(1061), + [anon_sym_DASH_DASH] = ACTIONS(1061), + [anon_sym_DQUOTE] = ACTIONS(1061), + [anon_sym_SQUOTE] = ACTIONS(1061), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1061), + [sym_number] = ACTIONS(1061), + [sym_this] = ACTIONS(1063), + [sym_super] = ACTIONS(1063), + [sym_true] = ACTIONS(1063), + [sym_false] = ACTIONS(1063), + [sym_null] = ACTIONS(1063), + [sym_undefined] = ACTIONS(1063), + [anon_sym_AT] = ACTIONS(1061), + [anon_sym_static] = ACTIONS(1063), + [anon_sym_abstract] = ACTIONS(1063), + [anon_sym_get] = ACTIONS(1063), + [anon_sym_set] = ACTIONS(1063), + [anon_sym_declare] = ACTIONS(1063), + [anon_sym_public] = ACTIONS(1063), + [anon_sym_private] = ACTIONS(1063), + [anon_sym_protected] = ACTIONS(1063), + [anon_sym_module] = ACTIONS(1063), + [anon_sym_any] = ACTIONS(1063), + [anon_sym_number] = ACTIONS(1063), + [anon_sym_boolean] = ACTIONS(1063), + [anon_sym_string] = ACTIONS(1063), + [anon_sym_symbol] = ACTIONS(1063), + [anon_sym_interface] = ACTIONS(1063), + [anon_sym_enum] = ACTIONS(1063), + [sym_readonly] = ACTIONS(1063), + [sym__automatic_semicolon] = ACTIONS(1069), }, [518] = { - [ts_builtin_sym_end] = ACTIONS(1043), - [sym_identifier] = ACTIONS(1045), - [anon_sym_export] = ACTIONS(1045), - [anon_sym_default] = ACTIONS(1045), - [anon_sym_namespace] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(1043), - [anon_sym_RBRACE] = ACTIONS(1043), - [anon_sym_type] = ACTIONS(1045), - [anon_sym_typeof] = ACTIONS(1045), - [anon_sym_import] = ACTIONS(1045), - [anon_sym_var] = ACTIONS(1045), - [anon_sym_let] = ACTIONS(1045), - [anon_sym_const] = ACTIONS(1045), - [anon_sym_BANG] = ACTIONS(1043), - [anon_sym_else] = ACTIONS(1045), - [anon_sym_if] = ACTIONS(1045), - [anon_sym_switch] = ACTIONS(1045), - [anon_sym_for] = ACTIONS(1045), - [anon_sym_LPAREN] = ACTIONS(1043), - [anon_sym_await] = ACTIONS(1045), - [anon_sym_while] = ACTIONS(1045), - [anon_sym_do] = ACTIONS(1045), - [anon_sym_try] = ACTIONS(1045), - [anon_sym_with] = ACTIONS(1045), - [anon_sym_break] = ACTIONS(1045), - [anon_sym_continue] = ACTIONS(1045), - [anon_sym_debugger] = ACTIONS(1045), - [anon_sym_return] = ACTIONS(1045), - [anon_sym_throw] = ACTIONS(1045), - [anon_sym_SEMI] = ACTIONS(1043), - [anon_sym_case] = ACTIONS(1045), - [anon_sym_yield] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1043), - [anon_sym_LT] = ACTIONS(1043), - [anon_sym_SLASH] = ACTIONS(1045), - [anon_sym_class] = ACTIONS(1045), - [anon_sym_async] = ACTIONS(1045), - [anon_sym_function] = ACTIONS(1045), - [anon_sym_new] = ACTIONS(1045), - [anon_sym_PLUS] = ACTIONS(1045), - [anon_sym_DASH] = ACTIONS(1045), - [anon_sym_TILDE] = ACTIONS(1043), - [anon_sym_void] = ACTIONS(1045), - [anon_sym_delete] = ACTIONS(1045), - [anon_sym_PLUS_PLUS] = ACTIONS(1043), - [anon_sym_DASH_DASH] = ACTIONS(1043), - [anon_sym_DQUOTE] = ACTIONS(1043), - [anon_sym_SQUOTE] = ACTIONS(1043), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1043), - [sym_number] = ACTIONS(1043), - [sym_this] = ACTIONS(1045), - [sym_super] = ACTIONS(1045), - [sym_true] = ACTIONS(1045), - [sym_false] = ACTIONS(1045), - [sym_null] = ACTIONS(1045), - [sym_undefined] = ACTIONS(1045), - [anon_sym_AT] = ACTIONS(1043), - [anon_sym_static] = ACTIONS(1045), - [anon_sym_abstract] = ACTIONS(1045), - [anon_sym_get] = ACTIONS(1045), - [anon_sym_set] = ACTIONS(1045), - [anon_sym_declare] = ACTIONS(1045), - [anon_sym_public] = ACTIONS(1045), - [anon_sym_private] = ACTIONS(1045), - [anon_sym_protected] = ACTIONS(1045), - [anon_sym_module] = ACTIONS(1045), - [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_interface] = ACTIONS(1045), - [anon_sym_enum] = ACTIONS(1045), - [sym_readonly] = ACTIONS(1045), - [sym__automatic_semicolon] = ACTIONS(1051), + [ts_builtin_sym_end] = ACTIONS(1081), + [sym_identifier] = ACTIONS(1083), + [anon_sym_export] = ACTIONS(1083), + [anon_sym_default] = ACTIONS(1083), + [anon_sym_namespace] = ACTIONS(1083), + [anon_sym_LBRACE] = ACTIONS(1081), + [anon_sym_RBRACE] = ACTIONS(1081), + [anon_sym_type] = ACTIONS(1083), + [anon_sym_typeof] = ACTIONS(1083), + [anon_sym_import] = ACTIONS(1083), + [anon_sym_var] = ACTIONS(1083), + [anon_sym_let] = ACTIONS(1083), + [anon_sym_const] = ACTIONS(1083), + [anon_sym_BANG] = ACTIONS(1081), + [anon_sym_else] = ACTIONS(1083), + [anon_sym_if] = ACTIONS(1083), + [anon_sym_switch] = ACTIONS(1083), + [anon_sym_for] = ACTIONS(1083), + [anon_sym_LPAREN] = ACTIONS(1081), + [anon_sym_await] = ACTIONS(1083), + [anon_sym_while] = ACTIONS(1083), + [anon_sym_do] = ACTIONS(1083), + [anon_sym_try] = ACTIONS(1083), + [anon_sym_with] = ACTIONS(1083), + [anon_sym_break] = ACTIONS(1083), + [anon_sym_continue] = ACTIONS(1083), + [anon_sym_debugger] = ACTIONS(1083), + [anon_sym_return] = ACTIONS(1083), + [anon_sym_throw] = ACTIONS(1083), + [anon_sym_SEMI] = ACTIONS(1081), + [anon_sym_case] = ACTIONS(1083), + [anon_sym_yield] = ACTIONS(1083), + [anon_sym_LBRACK] = ACTIONS(1081), + [anon_sym_LT] = ACTIONS(1081), + [anon_sym_SLASH] = ACTIONS(1083), + [anon_sym_class] = ACTIONS(1083), + [anon_sym_async] = ACTIONS(1083), + [anon_sym_function] = ACTIONS(1083), + [anon_sym_new] = ACTIONS(1083), + [anon_sym_PLUS] = ACTIONS(1083), + [anon_sym_DASH] = ACTIONS(1083), + [anon_sym_TILDE] = ACTIONS(1081), + [anon_sym_void] = ACTIONS(1083), + [anon_sym_delete] = ACTIONS(1083), + [anon_sym_PLUS_PLUS] = ACTIONS(1081), + [anon_sym_DASH_DASH] = ACTIONS(1081), + [anon_sym_DQUOTE] = ACTIONS(1081), + [anon_sym_SQUOTE] = ACTIONS(1081), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1081), + [sym_number] = ACTIONS(1081), + [sym_this] = ACTIONS(1083), + [sym_super] = ACTIONS(1083), + [sym_true] = ACTIONS(1083), + [sym_false] = ACTIONS(1083), + [sym_null] = ACTIONS(1083), + [sym_undefined] = ACTIONS(1083), + [anon_sym_AT] = ACTIONS(1081), + [anon_sym_static] = ACTIONS(1083), + [anon_sym_abstract] = ACTIONS(1083), + [anon_sym_get] = ACTIONS(1083), + [anon_sym_set] = ACTIONS(1083), + [anon_sym_declare] = ACTIONS(1083), + [anon_sym_public] = ACTIONS(1083), + [anon_sym_private] = ACTIONS(1083), + [anon_sym_protected] = ACTIONS(1083), + [anon_sym_module] = ACTIONS(1083), + [anon_sym_any] = ACTIONS(1083), + [anon_sym_number] = ACTIONS(1083), + [anon_sym_boolean] = ACTIONS(1083), + [anon_sym_string] = ACTIONS(1083), + [anon_sym_symbol] = ACTIONS(1083), + [anon_sym_interface] = ACTIONS(1083), + [anon_sym_enum] = ACTIONS(1083), + [sym_readonly] = ACTIONS(1083), + [sym__automatic_semicolon] = ACTIONS(1089), }, [519] = { - [ts_builtin_sym_end] = ACTIONS(937), - [sym_identifier] = ACTIONS(939), - [anon_sym_export] = ACTIONS(939), - [anon_sym_default] = ACTIONS(939), - [anon_sym_namespace] = ACTIONS(939), - [anon_sym_LBRACE] = ACTIONS(937), - [anon_sym_RBRACE] = ACTIONS(937), - [anon_sym_type] = ACTIONS(939), - [anon_sym_typeof] = ACTIONS(939), - [anon_sym_import] = ACTIONS(939), - [anon_sym_var] = ACTIONS(939), - [anon_sym_let] = ACTIONS(939), - [anon_sym_const] = ACTIONS(939), - [anon_sym_BANG] = ACTIONS(937), - [anon_sym_else] = ACTIONS(939), - [anon_sym_if] = ACTIONS(939), - [anon_sym_switch] = ACTIONS(939), - [anon_sym_for] = ACTIONS(939), - [anon_sym_LPAREN] = ACTIONS(937), - [anon_sym_await] = ACTIONS(939), - [anon_sym_while] = ACTIONS(939), - [anon_sym_do] = ACTIONS(939), - [anon_sym_try] = ACTIONS(939), - [anon_sym_with] = ACTIONS(939), - [anon_sym_break] = ACTIONS(939), - [anon_sym_continue] = ACTIONS(939), - [anon_sym_debugger] = ACTIONS(939), - [anon_sym_return] = ACTIONS(939), - [anon_sym_throw] = ACTIONS(939), - [anon_sym_SEMI] = ACTIONS(937), - [anon_sym_case] = ACTIONS(939), - [anon_sym_yield] = ACTIONS(939), - [anon_sym_LBRACK] = ACTIONS(937), - [anon_sym_LT] = ACTIONS(937), - [anon_sym_SLASH] = ACTIONS(939), - [anon_sym_class] = ACTIONS(939), - [anon_sym_async] = ACTIONS(939), - [anon_sym_function] = ACTIONS(939), - [anon_sym_new] = ACTIONS(939), - [anon_sym_PLUS] = ACTIONS(939), - [anon_sym_DASH] = ACTIONS(939), - [anon_sym_TILDE] = ACTIONS(937), - [anon_sym_void] = ACTIONS(939), - [anon_sym_delete] = ACTIONS(939), - [anon_sym_PLUS_PLUS] = ACTIONS(937), - [anon_sym_DASH_DASH] = ACTIONS(937), - [anon_sym_DQUOTE] = ACTIONS(937), - [anon_sym_SQUOTE] = ACTIONS(937), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(937), - [sym_number] = ACTIONS(937), - [sym_this] = ACTIONS(939), - [sym_super] = ACTIONS(939), - [sym_true] = ACTIONS(939), - [sym_false] = ACTIONS(939), - [sym_null] = ACTIONS(939), - [sym_undefined] = ACTIONS(939), - [anon_sym_AT] = ACTIONS(937), - [anon_sym_static] = ACTIONS(939), - [anon_sym_abstract] = ACTIONS(939), - [anon_sym_get] = ACTIONS(939), - [anon_sym_set] = ACTIONS(939), - [anon_sym_declare] = ACTIONS(939), - [anon_sym_public] = ACTIONS(939), - [anon_sym_private] = ACTIONS(939), - [anon_sym_protected] = ACTIONS(939), - [anon_sym_module] = ACTIONS(939), - [anon_sym_any] = ACTIONS(939), - [anon_sym_number] = ACTIONS(939), - [anon_sym_boolean] = ACTIONS(939), - [anon_sym_string] = ACTIONS(939), - [anon_sym_symbol] = ACTIONS(939), - [anon_sym_interface] = ACTIONS(939), - [anon_sym_enum] = ACTIONS(939), - [sym_readonly] = ACTIONS(939), - [sym__automatic_semicolon] = ACTIONS(945), + [ts_builtin_sym_end] = ACTIONS(959), + [sym_identifier] = ACTIONS(961), + [anon_sym_export] = ACTIONS(961), + [anon_sym_default] = ACTIONS(961), + [anon_sym_namespace] = ACTIONS(961), + [anon_sym_LBRACE] = ACTIONS(959), + [anon_sym_RBRACE] = ACTIONS(959), + [anon_sym_type] = ACTIONS(961), + [anon_sym_typeof] = ACTIONS(961), + [anon_sym_import] = ACTIONS(961), + [anon_sym_var] = ACTIONS(961), + [anon_sym_let] = ACTIONS(961), + [anon_sym_const] = ACTIONS(961), + [anon_sym_BANG] = ACTIONS(959), + [anon_sym_else] = ACTIONS(961), + [anon_sym_if] = ACTIONS(961), + [anon_sym_switch] = ACTIONS(961), + [anon_sym_for] = ACTIONS(961), + [anon_sym_LPAREN] = ACTIONS(959), + [anon_sym_await] = ACTIONS(961), + [anon_sym_while] = ACTIONS(961), + [anon_sym_do] = ACTIONS(961), + [anon_sym_try] = ACTIONS(961), + [anon_sym_with] = ACTIONS(961), + [anon_sym_break] = ACTIONS(961), + [anon_sym_continue] = ACTIONS(961), + [anon_sym_debugger] = ACTIONS(961), + [anon_sym_return] = ACTIONS(961), + [anon_sym_throw] = ACTIONS(961), + [anon_sym_SEMI] = ACTIONS(959), + [anon_sym_case] = ACTIONS(961), + [anon_sym_yield] = ACTIONS(961), + [anon_sym_LBRACK] = ACTIONS(959), + [anon_sym_LT] = ACTIONS(959), + [anon_sym_SLASH] = ACTIONS(961), + [anon_sym_class] = ACTIONS(961), + [anon_sym_async] = ACTIONS(961), + [anon_sym_function] = ACTIONS(961), + [anon_sym_new] = ACTIONS(961), + [anon_sym_PLUS] = ACTIONS(961), + [anon_sym_DASH] = ACTIONS(961), + [anon_sym_TILDE] = ACTIONS(959), + [anon_sym_void] = ACTIONS(961), + [anon_sym_delete] = ACTIONS(961), + [anon_sym_PLUS_PLUS] = ACTIONS(959), + [anon_sym_DASH_DASH] = ACTIONS(959), + [anon_sym_DQUOTE] = ACTIONS(959), + [anon_sym_SQUOTE] = ACTIONS(959), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(959), + [sym_number] = ACTIONS(959), + [sym_this] = ACTIONS(961), + [sym_super] = ACTIONS(961), + [sym_true] = ACTIONS(961), + [sym_false] = ACTIONS(961), + [sym_null] = ACTIONS(961), + [sym_undefined] = ACTIONS(961), + [anon_sym_AT] = ACTIONS(959), + [anon_sym_static] = ACTIONS(961), + [anon_sym_abstract] = ACTIONS(961), + [anon_sym_get] = ACTIONS(961), + [anon_sym_set] = ACTIONS(961), + [anon_sym_declare] = ACTIONS(961), + [anon_sym_public] = ACTIONS(961), + [anon_sym_private] = ACTIONS(961), + [anon_sym_protected] = ACTIONS(961), + [anon_sym_module] = ACTIONS(961), + [anon_sym_any] = ACTIONS(961), + [anon_sym_number] = ACTIONS(961), + [anon_sym_boolean] = ACTIONS(961), + [anon_sym_string] = ACTIONS(961), + [anon_sym_symbol] = ACTIONS(961), + [anon_sym_interface] = ACTIONS(961), + [anon_sym_enum] = ACTIONS(961), + [sym_readonly] = ACTIONS(961), + [sym__automatic_semicolon] = ACTIONS(967), }, [520] = { - [ts_builtin_sym_end] = ACTIONS(1053), - [sym_identifier] = ACTIONS(1055), - [anon_sym_export] = ACTIONS(1055), - [anon_sym_default] = ACTIONS(1055), - [anon_sym_namespace] = ACTIONS(1055), - [anon_sym_LBRACE] = ACTIONS(1053), - [anon_sym_RBRACE] = ACTIONS(1053), - [anon_sym_type] = ACTIONS(1055), - [anon_sym_typeof] = ACTIONS(1055), - [anon_sym_import] = ACTIONS(1055), - [anon_sym_var] = ACTIONS(1055), - [anon_sym_let] = ACTIONS(1055), - [anon_sym_const] = ACTIONS(1055), - [anon_sym_BANG] = ACTIONS(1053), - [anon_sym_else] = ACTIONS(1055), - [anon_sym_if] = ACTIONS(1055), - [anon_sym_switch] = ACTIONS(1055), - [anon_sym_for] = ACTIONS(1055), - [anon_sym_LPAREN] = ACTIONS(1053), - [anon_sym_await] = ACTIONS(1055), - [anon_sym_while] = ACTIONS(1055), - [anon_sym_do] = ACTIONS(1055), - [anon_sym_try] = ACTIONS(1055), - [anon_sym_with] = ACTIONS(1055), - [anon_sym_break] = ACTIONS(1055), - [anon_sym_continue] = ACTIONS(1055), - [anon_sym_debugger] = ACTIONS(1055), - [anon_sym_return] = ACTIONS(1055), - [anon_sym_throw] = ACTIONS(1055), - [anon_sym_SEMI] = ACTIONS(1053), - [anon_sym_case] = ACTIONS(1055), - [anon_sym_yield] = ACTIONS(1055), - [anon_sym_LBRACK] = ACTIONS(1053), - [anon_sym_LT] = ACTIONS(1053), - [anon_sym_SLASH] = ACTIONS(1055), - [anon_sym_class] = ACTIONS(1055), - [anon_sym_async] = ACTIONS(1055), - [anon_sym_function] = ACTIONS(1055), - [anon_sym_new] = ACTIONS(1055), - [anon_sym_PLUS] = ACTIONS(1055), - [anon_sym_DASH] = ACTIONS(1055), - [anon_sym_TILDE] = ACTIONS(1053), - [anon_sym_void] = ACTIONS(1055), - [anon_sym_delete] = ACTIONS(1055), - [anon_sym_PLUS_PLUS] = ACTIONS(1053), - [anon_sym_DASH_DASH] = ACTIONS(1053), - [anon_sym_DQUOTE] = ACTIONS(1053), - [anon_sym_SQUOTE] = ACTIONS(1053), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1053), - [sym_number] = ACTIONS(1053), - [sym_this] = ACTIONS(1055), - [sym_super] = ACTIONS(1055), - [sym_true] = ACTIONS(1055), - [sym_false] = ACTIONS(1055), - [sym_null] = ACTIONS(1055), - [sym_undefined] = ACTIONS(1055), - [anon_sym_AT] = ACTIONS(1053), - [anon_sym_static] = ACTIONS(1055), - [anon_sym_abstract] = ACTIONS(1055), - [anon_sym_get] = ACTIONS(1055), - [anon_sym_set] = ACTIONS(1055), - [anon_sym_declare] = ACTIONS(1055), - [anon_sym_public] = ACTIONS(1055), - [anon_sym_private] = ACTIONS(1055), - [anon_sym_protected] = ACTIONS(1055), - [anon_sym_module] = ACTIONS(1055), - [anon_sym_any] = ACTIONS(1055), - [anon_sym_number] = ACTIONS(1055), - [anon_sym_boolean] = ACTIONS(1055), - [anon_sym_string] = ACTIONS(1055), - [anon_sym_symbol] = ACTIONS(1055), - [anon_sym_interface] = ACTIONS(1055), - [anon_sym_enum] = ACTIONS(1055), - [sym_readonly] = ACTIONS(1055), - [sym__automatic_semicolon] = ACTIONS(1061), - }, - [521] = { [ts_builtin_sym_end] = ACTIONS(1785), [sym_identifier] = ACTIONS(1787), [anon_sym_export] = ACTIONS(1787), @@ -59283,8 +59259,85 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(1787), [sym_readonly] = ACTIONS(1787), }, + [521] = { + [ts_builtin_sym_end] = ACTIONS(969), + [sym_identifier] = ACTIONS(971), + [anon_sym_export] = ACTIONS(971), + [anon_sym_default] = ACTIONS(971), + [anon_sym_namespace] = ACTIONS(971), + [anon_sym_LBRACE] = ACTIONS(969), + [anon_sym_RBRACE] = ACTIONS(969), + [anon_sym_type] = ACTIONS(971), + [anon_sym_typeof] = ACTIONS(971), + [anon_sym_import] = ACTIONS(971), + [anon_sym_var] = ACTIONS(971), + [anon_sym_let] = ACTIONS(971), + [anon_sym_const] = ACTIONS(971), + [anon_sym_BANG] = ACTIONS(969), + [anon_sym_else] = ACTIONS(971), + [anon_sym_if] = ACTIONS(971), + [anon_sym_switch] = ACTIONS(971), + [anon_sym_for] = ACTIONS(971), + [anon_sym_LPAREN] = ACTIONS(969), + [anon_sym_await] = ACTIONS(971), + [anon_sym_while] = ACTIONS(971), + [anon_sym_do] = ACTIONS(971), + [anon_sym_try] = ACTIONS(971), + [anon_sym_with] = ACTIONS(971), + [anon_sym_break] = ACTIONS(971), + [anon_sym_continue] = ACTIONS(971), + [anon_sym_debugger] = ACTIONS(971), + [anon_sym_return] = ACTIONS(971), + [anon_sym_throw] = ACTIONS(971), + [anon_sym_SEMI] = ACTIONS(969), + [anon_sym_case] = ACTIONS(971), + [anon_sym_yield] = ACTIONS(971), + [anon_sym_LBRACK] = ACTIONS(969), + [anon_sym_LT] = ACTIONS(969), + [anon_sym_SLASH] = ACTIONS(971), + [anon_sym_class] = ACTIONS(971), + [anon_sym_async] = ACTIONS(971), + [anon_sym_function] = ACTIONS(971), + [anon_sym_new] = ACTIONS(971), + [anon_sym_PLUS] = ACTIONS(971), + [anon_sym_DASH] = ACTIONS(971), + [anon_sym_TILDE] = ACTIONS(969), + [anon_sym_void] = ACTIONS(971), + [anon_sym_delete] = ACTIONS(971), + [anon_sym_PLUS_PLUS] = ACTIONS(969), + [anon_sym_DASH_DASH] = ACTIONS(969), + [anon_sym_DQUOTE] = ACTIONS(969), + [anon_sym_SQUOTE] = ACTIONS(969), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(969), + [sym_number] = ACTIONS(969), + [sym_this] = ACTIONS(971), + [sym_super] = ACTIONS(971), + [sym_true] = ACTIONS(971), + [sym_false] = ACTIONS(971), + [sym_null] = ACTIONS(971), + [sym_undefined] = ACTIONS(971), + [anon_sym_AT] = ACTIONS(969), + [anon_sym_static] = ACTIONS(971), + [anon_sym_abstract] = ACTIONS(971), + [anon_sym_get] = ACTIONS(971), + [anon_sym_set] = ACTIONS(971), + [anon_sym_declare] = ACTIONS(971), + [anon_sym_public] = ACTIONS(971), + [anon_sym_private] = ACTIONS(971), + [anon_sym_protected] = ACTIONS(971), + [anon_sym_module] = ACTIONS(971), + [anon_sym_any] = ACTIONS(971), + [anon_sym_number] = ACTIONS(971), + [anon_sym_boolean] = ACTIONS(971), + [anon_sym_string] = ACTIONS(971), + [anon_sym_symbol] = ACTIONS(971), + [anon_sym_interface] = ACTIONS(971), + [anon_sym_enum] = ACTIONS(971), + [sym_readonly] = ACTIONS(971), + [sym__automatic_semicolon] = ACTIONS(977), + }, [522] = { - [sym_else_clause] = STATE(546), [ts_builtin_sym_end] = ACTIONS(1789), [sym_identifier] = ACTIONS(1791), [anon_sym_export] = ACTIONS(1791), @@ -59299,11 +59352,12 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_let] = ACTIONS(1791), [anon_sym_const] = ACTIONS(1791), [anon_sym_BANG] = ACTIONS(1789), - [anon_sym_else] = ACTIONS(1793), + [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_RPAREN] = ACTIONS(1789), [anon_sym_await] = ACTIONS(1791), [anon_sym_while] = ACTIONS(1791), [anon_sym_do] = ACTIONS(1791), @@ -59338,342 +59392,264 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_number] = 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_abstract] = 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_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_interface] = ACTIONS(1791), - [anon_sym_enum] = ACTIONS(1791), - [sym_readonly] = ACTIONS(1791), - }, - [523] = { - [sym_statement_block] = STATE(580), - [ts_builtin_sym_end] = ACTIONS(917), - [sym_identifier] = ACTIONS(919), - [anon_sym_export] = ACTIONS(919), - [anon_sym_default] = ACTIONS(919), - [anon_sym_namespace] = ACTIONS(919), - [anon_sym_LBRACE] = ACTIONS(1781), - [anon_sym_RBRACE] = ACTIONS(917), - [anon_sym_type] = ACTIONS(919), - [anon_sym_typeof] = ACTIONS(919), - [anon_sym_import] = ACTIONS(919), - [anon_sym_var] = ACTIONS(919), - [anon_sym_let] = ACTIONS(919), - [anon_sym_const] = ACTIONS(919), - [anon_sym_BANG] = ACTIONS(917), - [anon_sym_else] = ACTIONS(919), - [anon_sym_if] = ACTIONS(919), - [anon_sym_switch] = ACTIONS(919), - [anon_sym_for] = ACTIONS(919), - [anon_sym_LPAREN] = ACTIONS(917), - [anon_sym_await] = ACTIONS(919), - [anon_sym_while] = ACTIONS(919), - [anon_sym_do] = ACTIONS(919), - [anon_sym_try] = ACTIONS(919), - [anon_sym_with] = ACTIONS(919), - [anon_sym_break] = ACTIONS(919), - [anon_sym_continue] = ACTIONS(919), - [anon_sym_debugger] = ACTIONS(919), - [anon_sym_return] = ACTIONS(919), - [anon_sym_throw] = ACTIONS(919), - [anon_sym_SEMI] = ACTIONS(917), - [anon_sym_case] = ACTIONS(919), - [anon_sym_yield] = ACTIONS(919), - [anon_sym_LBRACK] = ACTIONS(917), - [anon_sym_LT] = ACTIONS(917), - [anon_sym_SLASH] = ACTIONS(919), - [anon_sym_class] = ACTIONS(919), - [anon_sym_async] = ACTIONS(919), - [anon_sym_function] = ACTIONS(919), - [anon_sym_new] = ACTIONS(919), - [anon_sym_PLUS] = ACTIONS(919), - [anon_sym_DASH] = ACTIONS(919), - [anon_sym_TILDE] = ACTIONS(917), - [anon_sym_void] = ACTIONS(919), - [anon_sym_delete] = ACTIONS(919), - [anon_sym_PLUS_PLUS] = ACTIONS(917), - [anon_sym_DASH_DASH] = ACTIONS(917), - [anon_sym_DQUOTE] = ACTIONS(917), - [anon_sym_SQUOTE] = ACTIONS(917), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(917), - [sym_number] = ACTIONS(917), - [sym_this] = ACTIONS(919), - [sym_super] = ACTIONS(919), - [sym_true] = ACTIONS(919), - [sym_false] = ACTIONS(919), - [sym_null] = ACTIONS(919), - [sym_undefined] = ACTIONS(919), - [anon_sym_AT] = ACTIONS(917), - [anon_sym_static] = ACTIONS(919), - [anon_sym_abstract] = ACTIONS(919), - [anon_sym_get] = ACTIONS(919), - [anon_sym_set] = ACTIONS(919), - [anon_sym_declare] = ACTIONS(919), - [anon_sym_public] = ACTIONS(919), - [anon_sym_private] = ACTIONS(919), - [anon_sym_protected] = ACTIONS(919), - [anon_sym_module] = ACTIONS(919), - [anon_sym_any] = ACTIONS(919), - [anon_sym_number] = ACTIONS(919), - [anon_sym_boolean] = ACTIONS(919), - [anon_sym_string] = ACTIONS(919), - [anon_sym_symbol] = ACTIONS(919), - [anon_sym_interface] = ACTIONS(919), - [anon_sym_enum] = ACTIONS(919), - [sym_readonly] = ACTIONS(919), + [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_abstract] = 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_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_interface] = ACTIONS(1791), + [anon_sym_enum] = ACTIONS(1791), + [sym_readonly] = ACTIONS(1791), }, - [524] = { - [ts_builtin_sym_end] = ACTIONS(1795), - [sym_identifier] = ACTIONS(1797), - [anon_sym_export] = ACTIONS(1797), - [anon_sym_default] = ACTIONS(1797), - [anon_sym_namespace] = ACTIONS(1797), - [anon_sym_LBRACE] = ACTIONS(1795), - [anon_sym_RBRACE] = ACTIONS(1795), - [anon_sym_type] = ACTIONS(1797), - [anon_sym_typeof] = ACTIONS(1797), - [anon_sym_import] = ACTIONS(1797), - [anon_sym_var] = ACTIONS(1797), - [anon_sym_let] = ACTIONS(1797), - [anon_sym_const] = ACTIONS(1797), - [anon_sym_BANG] = ACTIONS(1795), + [523] = { + [sym_else_clause] = STATE(600), + [ts_builtin_sym_end] = ACTIONS(1793), + [sym_identifier] = ACTIONS(1795), + [anon_sym_export] = ACTIONS(1795), + [anon_sym_default] = ACTIONS(1795), + [anon_sym_namespace] = ACTIONS(1795), + [anon_sym_LBRACE] = ACTIONS(1793), + [anon_sym_RBRACE] = ACTIONS(1793), + [anon_sym_type] = ACTIONS(1795), + [anon_sym_typeof] = ACTIONS(1795), + [anon_sym_import] = ACTIONS(1795), + [anon_sym_var] = ACTIONS(1795), + [anon_sym_let] = ACTIONS(1795), + [anon_sym_const] = ACTIONS(1795), + [anon_sym_BANG] = ACTIONS(1793), [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_RPAREN] = ACTIONS(1795), - [anon_sym_await] = ACTIONS(1797), - [anon_sym_while] = ACTIONS(1797), - [anon_sym_do] = ACTIONS(1797), - [anon_sym_try] = ACTIONS(1797), - [anon_sym_with] = 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_SEMI] = ACTIONS(1795), - [anon_sym_case] = ACTIONS(1797), - [anon_sym_yield] = ACTIONS(1797), - [anon_sym_LBRACK] = ACTIONS(1795), - [anon_sym_LT] = ACTIONS(1795), - [anon_sym_SLASH] = ACTIONS(1797), - [anon_sym_class] = ACTIONS(1797), - [anon_sym_async] = ACTIONS(1797), - [anon_sym_function] = ACTIONS(1797), - [anon_sym_new] = ACTIONS(1797), - [anon_sym_PLUS] = ACTIONS(1797), - [anon_sym_DASH] = 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(3), - [anon_sym_BQUOTE] = ACTIONS(1795), - [sym_number] = 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_abstract] = 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_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_interface] = ACTIONS(1797), - [anon_sym_enum] = ACTIONS(1797), - [sym_readonly] = ACTIONS(1797), + [anon_sym_if] = ACTIONS(1795), + [anon_sym_switch] = ACTIONS(1795), + [anon_sym_for] = ACTIONS(1795), + [anon_sym_LPAREN] = ACTIONS(1793), + [anon_sym_await] = ACTIONS(1795), + [anon_sym_while] = ACTIONS(1795), + [anon_sym_do] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1795), + [anon_sym_with] = ACTIONS(1795), + [anon_sym_break] = ACTIONS(1795), + [anon_sym_continue] = ACTIONS(1795), + [anon_sym_debugger] = ACTIONS(1795), + [anon_sym_return] = ACTIONS(1795), + [anon_sym_throw] = ACTIONS(1795), + [anon_sym_SEMI] = ACTIONS(1793), + [anon_sym_case] = ACTIONS(1795), + [anon_sym_yield] = ACTIONS(1795), + [anon_sym_LBRACK] = ACTIONS(1793), + [anon_sym_LT] = ACTIONS(1793), + [anon_sym_SLASH] = ACTIONS(1795), + [anon_sym_class] = ACTIONS(1795), + [anon_sym_async] = ACTIONS(1795), + [anon_sym_function] = ACTIONS(1795), + [anon_sym_new] = ACTIONS(1795), + [anon_sym_PLUS] = ACTIONS(1795), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1793), + [anon_sym_void] = ACTIONS(1795), + [anon_sym_delete] = ACTIONS(1795), + [anon_sym_PLUS_PLUS] = ACTIONS(1793), + [anon_sym_DASH_DASH] = ACTIONS(1793), + [anon_sym_DQUOTE] = ACTIONS(1793), + [anon_sym_SQUOTE] = ACTIONS(1793), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1793), + [sym_number] = ACTIONS(1793), + [sym_this] = ACTIONS(1795), + [sym_super] = ACTIONS(1795), + [sym_true] = ACTIONS(1795), + [sym_false] = ACTIONS(1795), + [sym_null] = ACTIONS(1795), + [sym_undefined] = ACTIONS(1795), + [anon_sym_AT] = ACTIONS(1793), + [anon_sym_static] = ACTIONS(1795), + [anon_sym_abstract] = ACTIONS(1795), + [anon_sym_get] = ACTIONS(1795), + [anon_sym_set] = ACTIONS(1795), + [anon_sym_declare] = ACTIONS(1795), + [anon_sym_public] = ACTIONS(1795), + [anon_sym_private] = ACTIONS(1795), + [anon_sym_protected] = ACTIONS(1795), + [anon_sym_module] = ACTIONS(1795), + [anon_sym_any] = ACTIONS(1795), + [anon_sym_number] = ACTIONS(1795), + [anon_sym_boolean] = ACTIONS(1795), + [anon_sym_string] = ACTIONS(1795), + [anon_sym_symbol] = ACTIONS(1795), + [anon_sym_interface] = ACTIONS(1795), + [anon_sym_enum] = ACTIONS(1795), + [sym_readonly] = ACTIONS(1795), }, - [525] = { - [ts_builtin_sym_end] = ACTIONS(1033), - [sym_identifier] = ACTIONS(1035), - [anon_sym_export] = ACTIONS(1035), - [anon_sym_default] = ACTIONS(1035), - [anon_sym_namespace] = ACTIONS(1035), - [anon_sym_LBRACE] = ACTIONS(1033), - [anon_sym_RBRACE] = ACTIONS(1033), - [anon_sym_type] = ACTIONS(1035), - [anon_sym_typeof] = ACTIONS(1035), - [anon_sym_import] = ACTIONS(1035), - [anon_sym_var] = ACTIONS(1035), - [anon_sym_let] = ACTIONS(1035), - [anon_sym_const] = ACTIONS(1035), - [anon_sym_BANG] = ACTIONS(1033), - [anon_sym_else] = ACTIONS(1035), - [anon_sym_if] = ACTIONS(1035), - [anon_sym_switch] = ACTIONS(1035), - [anon_sym_for] = ACTIONS(1035), - [anon_sym_LPAREN] = ACTIONS(1033), - [anon_sym_await] = ACTIONS(1035), - [anon_sym_while] = ACTIONS(1035), - [anon_sym_do] = ACTIONS(1035), - [anon_sym_try] = ACTIONS(1035), - [anon_sym_with] = ACTIONS(1035), - [anon_sym_break] = ACTIONS(1035), - [anon_sym_continue] = ACTIONS(1035), - [anon_sym_debugger] = ACTIONS(1035), - [anon_sym_return] = ACTIONS(1035), - [anon_sym_throw] = ACTIONS(1035), - [anon_sym_SEMI] = ACTIONS(1033), - [anon_sym_case] = ACTIONS(1035), - [anon_sym_yield] = ACTIONS(1035), - [anon_sym_LBRACK] = ACTIONS(1033), - [anon_sym_LT] = ACTIONS(1033), - [anon_sym_SLASH] = ACTIONS(1035), - [anon_sym_class] = ACTIONS(1035), - [anon_sym_async] = ACTIONS(1035), - [anon_sym_function] = ACTIONS(1035), - [anon_sym_new] = ACTIONS(1035), - [anon_sym_PLUS] = ACTIONS(1035), - [anon_sym_DASH] = ACTIONS(1035), - [anon_sym_TILDE] = ACTIONS(1033), - [anon_sym_void] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(1035), - [anon_sym_PLUS_PLUS] = ACTIONS(1033), - [anon_sym_DASH_DASH] = ACTIONS(1033), - [anon_sym_DQUOTE] = ACTIONS(1033), - [anon_sym_SQUOTE] = ACTIONS(1033), + [524] = { + [ts_builtin_sym_end] = ACTIONS(1101), + [sym_identifier] = ACTIONS(1103), + [anon_sym_export] = ACTIONS(1103), + [anon_sym_default] = ACTIONS(1103), + [anon_sym_namespace] = ACTIONS(1103), + [anon_sym_LBRACE] = ACTIONS(1101), + [anon_sym_RBRACE] = ACTIONS(1101), + [anon_sym_type] = ACTIONS(1103), + [anon_sym_typeof] = ACTIONS(1103), + [anon_sym_import] = ACTIONS(1103), + [anon_sym_var] = ACTIONS(1103), + [anon_sym_let] = ACTIONS(1103), + [anon_sym_const] = ACTIONS(1103), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_else] = ACTIONS(1103), + [anon_sym_if] = ACTIONS(1103), + [anon_sym_switch] = ACTIONS(1103), + [anon_sym_for] = ACTIONS(1103), + [anon_sym_LPAREN] = ACTIONS(1101), + [anon_sym_await] = ACTIONS(1103), + [anon_sym_while] = ACTIONS(1103), + [anon_sym_do] = ACTIONS(1103), + [anon_sym_try] = ACTIONS(1103), + [anon_sym_with] = ACTIONS(1103), + [anon_sym_break] = ACTIONS(1103), + [anon_sym_continue] = ACTIONS(1103), + [anon_sym_debugger] = ACTIONS(1103), + [anon_sym_return] = ACTIONS(1103), + [anon_sym_throw] = ACTIONS(1103), + [anon_sym_SEMI] = ACTIONS(1101), + [anon_sym_case] = ACTIONS(1103), + [anon_sym_yield] = ACTIONS(1103), + [anon_sym_LBRACK] = ACTIONS(1101), + [anon_sym_LT] = ACTIONS(1101), + [anon_sym_SLASH] = ACTIONS(1103), + [anon_sym_class] = ACTIONS(1103), + [anon_sym_async] = ACTIONS(1103), + [anon_sym_function] = ACTIONS(1103), + [anon_sym_new] = ACTIONS(1103), + [anon_sym_PLUS] = ACTIONS(1103), + [anon_sym_DASH] = ACTIONS(1103), + [anon_sym_TILDE] = ACTIONS(1101), + [anon_sym_void] = ACTIONS(1103), + [anon_sym_delete] = ACTIONS(1103), + [anon_sym_PLUS_PLUS] = ACTIONS(1101), + [anon_sym_DASH_DASH] = ACTIONS(1101), + [anon_sym_DQUOTE] = ACTIONS(1101), + [anon_sym_SQUOTE] = ACTIONS(1101), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1033), - [sym_number] = ACTIONS(1033), - [sym_this] = ACTIONS(1035), - [sym_super] = ACTIONS(1035), - [sym_true] = ACTIONS(1035), - [sym_false] = ACTIONS(1035), - [sym_null] = ACTIONS(1035), - [sym_undefined] = ACTIONS(1035), - [anon_sym_AT] = ACTIONS(1033), - [anon_sym_static] = ACTIONS(1035), - [anon_sym_abstract] = ACTIONS(1035), - [anon_sym_get] = ACTIONS(1035), - [anon_sym_set] = ACTIONS(1035), - [anon_sym_declare] = ACTIONS(1035), - [anon_sym_public] = ACTIONS(1035), - [anon_sym_private] = ACTIONS(1035), - [anon_sym_protected] = ACTIONS(1035), - [anon_sym_module] = ACTIONS(1035), - [anon_sym_any] = ACTIONS(1035), - [anon_sym_number] = ACTIONS(1035), - [anon_sym_boolean] = ACTIONS(1035), - [anon_sym_string] = ACTIONS(1035), - [anon_sym_symbol] = ACTIONS(1035), - [anon_sym_interface] = ACTIONS(1035), - [anon_sym_enum] = ACTIONS(1035), - [sym_readonly] = ACTIONS(1035), - [sym__automatic_semicolon] = ACTIONS(1041), + [anon_sym_BQUOTE] = ACTIONS(1101), + [sym_number] = ACTIONS(1101), + [sym_this] = ACTIONS(1103), + [sym_super] = ACTIONS(1103), + [sym_true] = ACTIONS(1103), + [sym_false] = ACTIONS(1103), + [sym_null] = ACTIONS(1103), + [sym_undefined] = ACTIONS(1103), + [anon_sym_AT] = ACTIONS(1101), + [anon_sym_static] = ACTIONS(1103), + [anon_sym_abstract] = ACTIONS(1103), + [anon_sym_get] = ACTIONS(1103), + [anon_sym_set] = ACTIONS(1103), + [anon_sym_declare] = ACTIONS(1103), + [anon_sym_public] = ACTIONS(1103), + [anon_sym_private] = ACTIONS(1103), + [anon_sym_protected] = ACTIONS(1103), + [anon_sym_module] = ACTIONS(1103), + [anon_sym_any] = ACTIONS(1103), + [anon_sym_number] = ACTIONS(1103), + [anon_sym_boolean] = ACTIONS(1103), + [anon_sym_string] = ACTIONS(1103), + [anon_sym_symbol] = ACTIONS(1103), + [anon_sym_interface] = ACTIONS(1103), + [anon_sym_enum] = ACTIONS(1103), + [sym_readonly] = ACTIONS(1103), + [sym__automatic_semicolon] = ACTIONS(1109), }, - [526] = { - [ts_builtin_sym_end] = ACTIONS(961), - [sym_identifier] = ACTIONS(963), - [anon_sym_export] = ACTIONS(963), - [anon_sym_default] = ACTIONS(963), - [anon_sym_namespace] = ACTIONS(963), - [anon_sym_LBRACE] = ACTIONS(961), - [anon_sym_RBRACE] = ACTIONS(961), - [anon_sym_type] = ACTIONS(963), - [anon_sym_typeof] = ACTIONS(963), - [anon_sym_import] = ACTIONS(963), - [anon_sym_var] = ACTIONS(963), - [anon_sym_let] = ACTIONS(963), - [anon_sym_const] = ACTIONS(963), - [anon_sym_BANG] = ACTIONS(961), - [anon_sym_else] = ACTIONS(963), - [anon_sym_if] = ACTIONS(963), - [anon_sym_switch] = ACTIONS(963), - [anon_sym_for] = ACTIONS(963), - [anon_sym_LPAREN] = ACTIONS(961), - [anon_sym_await] = ACTIONS(963), - [anon_sym_while] = ACTIONS(963), - [anon_sym_do] = ACTIONS(963), - [anon_sym_try] = ACTIONS(963), - [anon_sym_with] = ACTIONS(963), - [anon_sym_break] = ACTIONS(963), - [anon_sym_continue] = ACTIONS(963), - [anon_sym_debugger] = ACTIONS(963), - [anon_sym_return] = ACTIONS(963), - [anon_sym_throw] = ACTIONS(963), - [anon_sym_SEMI] = ACTIONS(961), - [anon_sym_case] = ACTIONS(963), - [anon_sym_yield] = ACTIONS(963), - [anon_sym_LBRACK] = ACTIONS(961), - [anon_sym_LT] = ACTIONS(961), - [anon_sym_SLASH] = ACTIONS(963), - [anon_sym_class] = ACTIONS(963), - [anon_sym_async] = ACTIONS(963), - [anon_sym_function] = ACTIONS(963), - [anon_sym_new] = ACTIONS(963), - [anon_sym_PLUS] = ACTIONS(963), - [anon_sym_DASH] = ACTIONS(963), - [anon_sym_TILDE] = ACTIONS(961), - [anon_sym_void] = ACTIONS(963), - [anon_sym_delete] = ACTIONS(963), - [anon_sym_PLUS_PLUS] = ACTIONS(961), - [anon_sym_DASH_DASH] = ACTIONS(961), - [anon_sym_DQUOTE] = ACTIONS(961), - [anon_sym_SQUOTE] = ACTIONS(961), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(961), - [sym_number] = ACTIONS(961), - [sym_this] = ACTIONS(963), - [sym_super] = ACTIONS(963), - [sym_true] = ACTIONS(963), - [sym_false] = ACTIONS(963), - [sym_null] = ACTIONS(963), - [sym_undefined] = ACTIONS(963), - [anon_sym_AT] = ACTIONS(961), - [anon_sym_static] = ACTIONS(963), - [anon_sym_abstract] = ACTIONS(963), - [anon_sym_get] = ACTIONS(963), - [anon_sym_set] = ACTIONS(963), - [anon_sym_declare] = ACTIONS(963), - [anon_sym_public] = ACTIONS(963), - [anon_sym_private] = ACTIONS(963), - [anon_sym_protected] = ACTIONS(963), - [anon_sym_module] = ACTIONS(963), - [anon_sym_any] = ACTIONS(963), - [anon_sym_number] = ACTIONS(963), - [anon_sym_boolean] = ACTIONS(963), - [anon_sym_string] = ACTIONS(963), - [anon_sym_symbol] = ACTIONS(963), - [anon_sym_interface] = ACTIONS(963), - [anon_sym_enum] = ACTIONS(963), - [sym_readonly] = ACTIONS(963), - [sym__automatic_semicolon] = ACTIONS(969), + [525] = { + [ts_builtin_sym_end] = ACTIONS(1041), + [sym_identifier] = ACTIONS(1043), + [anon_sym_export] = ACTIONS(1043), + [anon_sym_default] = ACTIONS(1043), + [anon_sym_namespace] = ACTIONS(1043), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_RBRACE] = ACTIONS(1041), + [anon_sym_type] = ACTIONS(1043), + [anon_sym_typeof] = ACTIONS(1043), + [anon_sym_import] = ACTIONS(1043), + [anon_sym_var] = ACTIONS(1043), + [anon_sym_let] = ACTIONS(1043), + [anon_sym_const] = ACTIONS(1043), + [anon_sym_BANG] = ACTIONS(1041), + [anon_sym_else] = ACTIONS(1043), + [anon_sym_if] = ACTIONS(1043), + [anon_sym_switch] = ACTIONS(1043), + [anon_sym_for] = ACTIONS(1043), + [anon_sym_LPAREN] = ACTIONS(1041), + [anon_sym_await] = ACTIONS(1043), + [anon_sym_while] = ACTIONS(1043), + [anon_sym_do] = ACTIONS(1043), + [anon_sym_try] = ACTIONS(1043), + [anon_sym_with] = ACTIONS(1043), + [anon_sym_break] = ACTIONS(1043), + [anon_sym_continue] = ACTIONS(1043), + [anon_sym_debugger] = ACTIONS(1043), + [anon_sym_return] = ACTIONS(1043), + [anon_sym_throw] = ACTIONS(1043), + [anon_sym_SEMI] = ACTIONS(1041), + [anon_sym_case] = ACTIONS(1043), + [anon_sym_yield] = ACTIONS(1043), + [anon_sym_LBRACK] = ACTIONS(1041), + [anon_sym_LT] = ACTIONS(1041), + [anon_sym_SLASH] = ACTIONS(1043), + [anon_sym_class] = ACTIONS(1043), + [anon_sym_async] = ACTIONS(1043), + [anon_sym_function] = ACTIONS(1043), + [anon_sym_new] = ACTIONS(1043), + [anon_sym_PLUS] = ACTIONS(1043), + [anon_sym_DASH] = ACTIONS(1043), + [anon_sym_TILDE] = ACTIONS(1041), + [anon_sym_void] = ACTIONS(1043), + [anon_sym_delete] = ACTIONS(1043), + [anon_sym_PLUS_PLUS] = ACTIONS(1041), + [anon_sym_DASH_DASH] = ACTIONS(1041), + [anon_sym_DQUOTE] = ACTIONS(1041), + [anon_sym_SQUOTE] = ACTIONS(1041), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1041), + [sym_number] = ACTIONS(1041), + [sym_this] = ACTIONS(1043), + [sym_super] = ACTIONS(1043), + [sym_true] = ACTIONS(1043), + [sym_false] = ACTIONS(1043), + [sym_null] = ACTIONS(1043), + [sym_undefined] = ACTIONS(1043), + [anon_sym_AT] = ACTIONS(1041), + [anon_sym_static] = ACTIONS(1043), + [anon_sym_abstract] = ACTIONS(1043), + [anon_sym_get] = ACTIONS(1043), + [anon_sym_set] = ACTIONS(1043), + [anon_sym_declare] = ACTIONS(1043), + [anon_sym_public] = ACTIONS(1043), + [anon_sym_private] = ACTIONS(1043), + [anon_sym_protected] = ACTIONS(1043), + [anon_sym_module] = ACTIONS(1043), + [anon_sym_any] = ACTIONS(1043), + [anon_sym_number] = ACTIONS(1043), + [anon_sym_boolean] = ACTIONS(1043), + [anon_sym_string] = ACTIONS(1043), + [anon_sym_symbol] = ACTIONS(1043), + [anon_sym_interface] = ACTIONS(1043), + [anon_sym_enum] = ACTIONS(1043), + [sym_readonly] = ACTIONS(1043), + [sym__automatic_semicolon] = ACTIONS(1049), }, - [527] = { + [526] = { [ts_builtin_sym_end] = ACTIONS(1023), [sym_identifier] = ACTIONS(1025), [anon_sym_export] = ACTIONS(1025), @@ -59751,163 +59727,397 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_readonly] = ACTIONS(1025), [sym__automatic_semicolon] = ACTIONS(1031), }, + [527] = { + [ts_builtin_sym_end] = ACTIONS(1091), + [sym_identifier] = ACTIONS(1093), + [anon_sym_export] = ACTIONS(1093), + [anon_sym_default] = ACTIONS(1093), + [anon_sym_namespace] = ACTIONS(1093), + [anon_sym_LBRACE] = ACTIONS(1091), + [anon_sym_RBRACE] = ACTIONS(1091), + [anon_sym_type] = ACTIONS(1093), + [anon_sym_typeof] = ACTIONS(1093), + [anon_sym_import] = ACTIONS(1093), + [anon_sym_var] = ACTIONS(1093), + [anon_sym_let] = ACTIONS(1093), + [anon_sym_const] = ACTIONS(1093), + [anon_sym_BANG] = ACTIONS(1091), + [anon_sym_else] = ACTIONS(1093), + [anon_sym_if] = ACTIONS(1093), + [anon_sym_switch] = ACTIONS(1093), + [anon_sym_for] = ACTIONS(1093), + [anon_sym_LPAREN] = ACTIONS(1091), + [anon_sym_await] = ACTIONS(1093), + [anon_sym_while] = ACTIONS(1093), + [anon_sym_do] = ACTIONS(1093), + [anon_sym_try] = ACTIONS(1093), + [anon_sym_with] = ACTIONS(1093), + [anon_sym_break] = ACTIONS(1093), + [anon_sym_continue] = ACTIONS(1093), + [anon_sym_debugger] = ACTIONS(1093), + [anon_sym_return] = ACTIONS(1093), + [anon_sym_throw] = ACTIONS(1093), + [anon_sym_SEMI] = ACTIONS(1091), + [anon_sym_case] = ACTIONS(1093), + [anon_sym_yield] = ACTIONS(1093), + [anon_sym_LBRACK] = ACTIONS(1091), + [anon_sym_LT] = ACTIONS(1091), + [anon_sym_SLASH] = ACTIONS(1093), + [anon_sym_class] = ACTIONS(1093), + [anon_sym_async] = ACTIONS(1093), + [anon_sym_function] = ACTIONS(1093), + [anon_sym_new] = ACTIONS(1093), + [anon_sym_PLUS] = ACTIONS(1093), + [anon_sym_DASH] = ACTIONS(1093), + [anon_sym_TILDE] = ACTIONS(1091), + [anon_sym_void] = ACTIONS(1093), + [anon_sym_delete] = ACTIONS(1093), + [anon_sym_PLUS_PLUS] = ACTIONS(1091), + [anon_sym_DASH_DASH] = ACTIONS(1091), + [anon_sym_DQUOTE] = ACTIONS(1091), + [anon_sym_SQUOTE] = ACTIONS(1091), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1091), + [sym_number] = ACTIONS(1091), + [sym_this] = ACTIONS(1093), + [sym_super] = ACTIONS(1093), + [sym_true] = ACTIONS(1093), + [sym_false] = ACTIONS(1093), + [sym_null] = ACTIONS(1093), + [sym_undefined] = ACTIONS(1093), + [anon_sym_AT] = ACTIONS(1091), + [anon_sym_static] = ACTIONS(1093), + [anon_sym_abstract] = ACTIONS(1093), + [anon_sym_get] = ACTIONS(1093), + [anon_sym_set] = ACTIONS(1093), + [anon_sym_declare] = ACTIONS(1093), + [anon_sym_public] = ACTIONS(1093), + [anon_sym_private] = ACTIONS(1093), + [anon_sym_protected] = ACTIONS(1093), + [anon_sym_module] = ACTIONS(1093), + [anon_sym_any] = ACTIONS(1093), + [anon_sym_number] = ACTIONS(1093), + [anon_sym_boolean] = ACTIONS(1093), + [anon_sym_string] = ACTIONS(1093), + [anon_sym_symbol] = ACTIONS(1093), + [anon_sym_interface] = ACTIONS(1093), + [anon_sym_enum] = ACTIONS(1093), + [sym_readonly] = ACTIONS(1093), + [sym__automatic_semicolon] = ACTIONS(1099), + }, [528] = { - [ts_builtin_sym_end] = ACTIONS(1089), - [sym_identifier] = ACTIONS(1091), - [anon_sym_export] = ACTIONS(1091), - [anon_sym_default] = ACTIONS(1091), - [anon_sym_namespace] = ACTIONS(1091), - [anon_sym_LBRACE] = ACTIONS(1089), - [anon_sym_RBRACE] = ACTIONS(1089), - [anon_sym_type] = ACTIONS(1091), - [anon_sym_typeof] = ACTIONS(1091), - [anon_sym_import] = ACTIONS(1091), - [anon_sym_var] = ACTIONS(1091), - [anon_sym_let] = ACTIONS(1091), - [anon_sym_const] = ACTIONS(1091), - [anon_sym_BANG] = ACTIONS(1089), - [anon_sym_else] = ACTIONS(1091), - [anon_sym_if] = ACTIONS(1091), - [anon_sym_switch] = ACTIONS(1091), - [anon_sym_for] = ACTIONS(1091), - [anon_sym_LPAREN] = ACTIONS(1089), - [anon_sym_await] = ACTIONS(1091), - [anon_sym_while] = ACTIONS(1091), - [anon_sym_do] = ACTIONS(1091), - [anon_sym_try] = ACTIONS(1091), - [anon_sym_with] = ACTIONS(1091), - [anon_sym_break] = ACTIONS(1091), - [anon_sym_continue] = ACTIONS(1091), - [anon_sym_debugger] = ACTIONS(1091), - [anon_sym_return] = ACTIONS(1091), - [anon_sym_throw] = ACTIONS(1091), - [anon_sym_SEMI] = ACTIONS(1089), - [anon_sym_case] = ACTIONS(1091), - [anon_sym_yield] = ACTIONS(1091), - [anon_sym_LBRACK] = ACTIONS(1089), - [anon_sym_LT] = ACTIONS(1089), - [anon_sym_SLASH] = ACTIONS(1091), - [anon_sym_DOT] = ACTIONS(1091), - [anon_sym_class] = ACTIONS(1091), - [anon_sym_async] = ACTIONS(1091), - [anon_sym_function] = ACTIONS(1091), - [anon_sym_new] = ACTIONS(1091), - [anon_sym_PLUS] = ACTIONS(1091), - [anon_sym_DASH] = ACTIONS(1091), - [anon_sym_TILDE] = ACTIONS(1089), - [anon_sym_void] = ACTIONS(1091), - [anon_sym_delete] = ACTIONS(1091), - [anon_sym_PLUS_PLUS] = ACTIONS(1089), - [anon_sym_DASH_DASH] = ACTIONS(1089), - [anon_sym_DQUOTE] = ACTIONS(1089), - [anon_sym_SQUOTE] = ACTIONS(1089), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1089), - [sym_number] = ACTIONS(1089), - [sym_this] = ACTIONS(1091), - [sym_super] = ACTIONS(1091), - [sym_true] = ACTIONS(1091), - [sym_false] = ACTIONS(1091), - [sym_null] = ACTIONS(1091), - [sym_undefined] = ACTIONS(1091), - [anon_sym_AT] = ACTIONS(1089), - [anon_sym_static] = ACTIONS(1091), - [anon_sym_abstract] = ACTIONS(1091), - [anon_sym_get] = ACTIONS(1091), - [anon_sym_set] = ACTIONS(1091), - [anon_sym_declare] = ACTIONS(1091), - [anon_sym_public] = ACTIONS(1091), - [anon_sym_private] = ACTIONS(1091), - [anon_sym_protected] = ACTIONS(1091), - [anon_sym_module] = ACTIONS(1091), - [anon_sym_any] = ACTIONS(1091), - [anon_sym_number] = ACTIONS(1091), - [anon_sym_boolean] = ACTIONS(1091), - [anon_sym_string] = ACTIONS(1091), - [anon_sym_symbol] = ACTIONS(1091), - [anon_sym_interface] = ACTIONS(1091), - [anon_sym_enum] = ACTIONS(1091), - [sym_readonly] = ACTIONS(1091), + [sym_statement_block] = STATE(599), + [ts_builtin_sym_end] = ACTIONS(917), + [sym_identifier] = ACTIONS(919), + [anon_sym_export] = ACTIONS(919), + [anon_sym_default] = ACTIONS(919), + [anon_sym_namespace] = ACTIONS(919), + [anon_sym_LBRACE] = ACTIONS(1776), + [anon_sym_RBRACE] = ACTIONS(917), + [anon_sym_type] = ACTIONS(919), + [anon_sym_typeof] = ACTIONS(919), + [anon_sym_import] = ACTIONS(919), + [anon_sym_var] = ACTIONS(919), + [anon_sym_let] = ACTIONS(919), + [anon_sym_const] = ACTIONS(919), + [anon_sym_BANG] = ACTIONS(917), + [anon_sym_else] = ACTIONS(919), + [anon_sym_if] = ACTIONS(919), + [anon_sym_switch] = ACTIONS(919), + [anon_sym_for] = ACTIONS(919), + [anon_sym_LPAREN] = ACTIONS(917), + [anon_sym_await] = ACTIONS(919), + [anon_sym_while] = ACTIONS(919), + [anon_sym_do] = ACTIONS(919), + [anon_sym_try] = ACTIONS(919), + [anon_sym_with] = ACTIONS(919), + [anon_sym_break] = ACTIONS(919), + [anon_sym_continue] = ACTIONS(919), + [anon_sym_debugger] = ACTIONS(919), + [anon_sym_return] = ACTIONS(919), + [anon_sym_throw] = ACTIONS(919), + [anon_sym_SEMI] = ACTIONS(917), + [anon_sym_case] = ACTIONS(919), + [anon_sym_yield] = ACTIONS(919), + [anon_sym_LBRACK] = ACTIONS(917), + [anon_sym_LT] = ACTIONS(917), + [anon_sym_SLASH] = ACTIONS(919), + [anon_sym_class] = ACTIONS(919), + [anon_sym_async] = ACTIONS(919), + [anon_sym_function] = ACTIONS(919), + [anon_sym_new] = ACTIONS(919), + [anon_sym_PLUS] = ACTIONS(919), + [anon_sym_DASH] = ACTIONS(919), + [anon_sym_TILDE] = ACTIONS(917), + [anon_sym_void] = ACTIONS(919), + [anon_sym_delete] = ACTIONS(919), + [anon_sym_PLUS_PLUS] = ACTIONS(917), + [anon_sym_DASH_DASH] = ACTIONS(917), + [anon_sym_DQUOTE] = ACTIONS(917), + [anon_sym_SQUOTE] = ACTIONS(917), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(917), + [sym_number] = ACTIONS(917), + [sym_this] = ACTIONS(919), + [sym_super] = ACTIONS(919), + [sym_true] = ACTIONS(919), + [sym_false] = ACTIONS(919), + [sym_null] = ACTIONS(919), + [sym_undefined] = ACTIONS(919), + [anon_sym_AT] = ACTIONS(917), + [anon_sym_static] = ACTIONS(919), + [anon_sym_abstract] = ACTIONS(919), + [anon_sym_get] = ACTIONS(919), + [anon_sym_set] = ACTIONS(919), + [anon_sym_declare] = ACTIONS(919), + [anon_sym_public] = ACTIONS(919), + [anon_sym_private] = ACTIONS(919), + [anon_sym_protected] = ACTIONS(919), + [anon_sym_module] = ACTIONS(919), + [anon_sym_any] = ACTIONS(919), + [anon_sym_number] = ACTIONS(919), + [anon_sym_boolean] = ACTIONS(919), + [anon_sym_string] = ACTIONS(919), + [anon_sym_symbol] = ACTIONS(919), + [anon_sym_interface] = ACTIONS(919), + [anon_sym_enum] = ACTIONS(919), + [sym_readonly] = ACTIONS(919), }, [529] = { - [ts_builtin_sym_end] = ACTIONS(951), - [sym_identifier] = ACTIONS(953), - [anon_sym_export] = ACTIONS(953), - [anon_sym_default] = ACTIONS(953), - [anon_sym_namespace] = ACTIONS(953), - [anon_sym_LBRACE] = ACTIONS(951), - [anon_sym_RBRACE] = ACTIONS(951), - [anon_sym_type] = ACTIONS(953), - [anon_sym_typeof] = ACTIONS(953), - [anon_sym_import] = ACTIONS(953), - [anon_sym_var] = ACTIONS(953), - [anon_sym_let] = ACTIONS(953), - [anon_sym_const] = ACTIONS(953), - [anon_sym_BANG] = ACTIONS(951), - [anon_sym_else] = ACTIONS(953), - [anon_sym_if] = ACTIONS(953), - [anon_sym_switch] = ACTIONS(953), - [anon_sym_for] = ACTIONS(953), - [anon_sym_LPAREN] = ACTIONS(951), - [anon_sym_await] = ACTIONS(953), - [anon_sym_while] = ACTIONS(953), - [anon_sym_do] = ACTIONS(953), - [anon_sym_try] = ACTIONS(953), - [anon_sym_with] = ACTIONS(953), - [anon_sym_break] = ACTIONS(953), - [anon_sym_continue] = ACTIONS(953), - [anon_sym_debugger] = ACTIONS(953), - [anon_sym_return] = ACTIONS(953), - [anon_sym_throw] = ACTIONS(953), - [anon_sym_SEMI] = ACTIONS(951), - [anon_sym_case] = ACTIONS(953), - [anon_sym_yield] = ACTIONS(953), - [anon_sym_LBRACK] = ACTIONS(951), - [anon_sym_LT] = ACTIONS(951), - [anon_sym_SLASH] = ACTIONS(953), - [anon_sym_class] = ACTIONS(953), - [anon_sym_async] = ACTIONS(953), - [anon_sym_function] = ACTIONS(953), - [anon_sym_new] = ACTIONS(953), - [anon_sym_PLUS] = ACTIONS(953), - [anon_sym_DASH] = ACTIONS(953), - [anon_sym_TILDE] = ACTIONS(951), - [anon_sym_void] = ACTIONS(953), - [anon_sym_delete] = ACTIONS(953), - [anon_sym_PLUS_PLUS] = ACTIONS(951), - [anon_sym_DASH_DASH] = ACTIONS(951), - [anon_sym_DQUOTE] = ACTIONS(951), - [anon_sym_SQUOTE] = ACTIONS(951), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(951), - [sym_number] = ACTIONS(951), - [sym_this] = ACTIONS(953), - [sym_super] = ACTIONS(953), - [sym_true] = ACTIONS(953), - [sym_false] = ACTIONS(953), - [sym_null] = ACTIONS(953), - [sym_undefined] = ACTIONS(953), - [anon_sym_AT] = ACTIONS(951), - [anon_sym_static] = ACTIONS(953), - [anon_sym_abstract] = ACTIONS(953), - [anon_sym_get] = ACTIONS(953), - [anon_sym_set] = ACTIONS(953), - [anon_sym_declare] = ACTIONS(953), - [anon_sym_public] = ACTIONS(953), - [anon_sym_private] = ACTIONS(953), - [anon_sym_protected] = ACTIONS(953), - [anon_sym_module] = ACTIONS(953), - [anon_sym_any] = ACTIONS(953), - [anon_sym_number] = ACTIONS(953), - [anon_sym_boolean] = ACTIONS(953), - [anon_sym_string] = ACTIONS(953), - [anon_sym_symbol] = ACTIONS(953), - [anon_sym_interface] = ACTIONS(953), - [anon_sym_enum] = ACTIONS(953), - [sym_readonly] = ACTIONS(953), - [sym__automatic_semicolon] = ACTIONS(959), + [ts_builtin_sym_end] = ACTIONS(949), + [sym_identifier] = ACTIONS(951), + [anon_sym_export] = ACTIONS(951), + [anon_sym_default] = ACTIONS(951), + [anon_sym_namespace] = ACTIONS(951), + [anon_sym_LBRACE] = ACTIONS(949), + [anon_sym_RBRACE] = ACTIONS(949), + [anon_sym_type] = ACTIONS(951), + [anon_sym_typeof] = ACTIONS(951), + [anon_sym_import] = ACTIONS(951), + [anon_sym_var] = ACTIONS(951), + [anon_sym_let] = ACTIONS(951), + [anon_sym_const] = ACTIONS(951), + [anon_sym_BANG] = ACTIONS(949), + [anon_sym_else] = ACTIONS(951), + [anon_sym_if] = ACTIONS(951), + [anon_sym_switch] = ACTIONS(951), + [anon_sym_for] = ACTIONS(951), + [anon_sym_LPAREN] = ACTIONS(949), + [anon_sym_await] = ACTIONS(951), + [anon_sym_while] = ACTIONS(951), + [anon_sym_do] = ACTIONS(951), + [anon_sym_try] = ACTIONS(951), + [anon_sym_with] = ACTIONS(951), + [anon_sym_break] = ACTIONS(951), + [anon_sym_continue] = ACTIONS(951), + [anon_sym_debugger] = ACTIONS(951), + [anon_sym_return] = ACTIONS(951), + [anon_sym_throw] = ACTIONS(951), + [anon_sym_SEMI] = ACTIONS(949), + [anon_sym_case] = ACTIONS(951), + [anon_sym_yield] = ACTIONS(951), + [anon_sym_LBRACK] = ACTIONS(949), + [anon_sym_LT] = ACTIONS(949), + [anon_sym_SLASH] = ACTIONS(951), + [anon_sym_class] = ACTIONS(951), + [anon_sym_async] = ACTIONS(951), + [anon_sym_function] = ACTIONS(951), + [anon_sym_new] = ACTIONS(951), + [anon_sym_PLUS] = ACTIONS(951), + [anon_sym_DASH] = ACTIONS(951), + [anon_sym_TILDE] = ACTIONS(949), + [anon_sym_void] = ACTIONS(951), + [anon_sym_delete] = ACTIONS(951), + [anon_sym_PLUS_PLUS] = ACTIONS(949), + [anon_sym_DASH_DASH] = ACTIONS(949), + [anon_sym_DQUOTE] = ACTIONS(949), + [anon_sym_SQUOTE] = ACTIONS(949), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(949), + [sym_number] = ACTIONS(949), + [sym_this] = ACTIONS(951), + [sym_super] = ACTIONS(951), + [sym_true] = ACTIONS(951), + [sym_false] = ACTIONS(951), + [sym_null] = ACTIONS(951), + [sym_undefined] = ACTIONS(951), + [anon_sym_AT] = ACTIONS(949), + [anon_sym_static] = ACTIONS(951), + [anon_sym_abstract] = ACTIONS(951), + [anon_sym_get] = ACTIONS(951), + [anon_sym_set] = ACTIONS(951), + [anon_sym_declare] = ACTIONS(951), + [anon_sym_public] = ACTIONS(951), + [anon_sym_private] = ACTIONS(951), + [anon_sym_protected] = ACTIONS(951), + [anon_sym_module] = ACTIONS(951), + [anon_sym_any] = ACTIONS(951), + [anon_sym_number] = ACTIONS(951), + [anon_sym_boolean] = ACTIONS(951), + [anon_sym_string] = ACTIONS(951), + [anon_sym_symbol] = ACTIONS(951), + [anon_sym_interface] = ACTIONS(951), + [anon_sym_enum] = ACTIONS(951), + [sym_readonly] = ACTIONS(951), + [sym__automatic_semicolon] = ACTIONS(957), }, [530] = { + [ts_builtin_sym_end] = ACTIONS(981), + [sym_identifier] = ACTIONS(983), + [anon_sym_export] = ACTIONS(983), + [anon_sym_default] = ACTIONS(983), + [anon_sym_namespace] = ACTIONS(983), + [anon_sym_LBRACE] = ACTIONS(981), + [anon_sym_RBRACE] = ACTIONS(981), + [anon_sym_type] = ACTIONS(983), + [anon_sym_typeof] = ACTIONS(983), + [anon_sym_import] = ACTIONS(983), + [anon_sym_var] = ACTIONS(983), + [anon_sym_let] = ACTIONS(983), + [anon_sym_const] = ACTIONS(983), + [anon_sym_BANG] = ACTIONS(981), + [anon_sym_else] = ACTIONS(983), + [anon_sym_if] = ACTIONS(983), + [anon_sym_switch] = ACTIONS(983), + [anon_sym_for] = ACTIONS(983), + [anon_sym_LPAREN] = ACTIONS(981), + [anon_sym_await] = ACTIONS(983), + [anon_sym_while] = ACTIONS(983), + [anon_sym_do] = ACTIONS(983), + [anon_sym_try] = ACTIONS(983), + [anon_sym_with] = ACTIONS(983), + [anon_sym_break] = ACTIONS(983), + [anon_sym_continue] = ACTIONS(983), + [anon_sym_debugger] = ACTIONS(983), + [anon_sym_return] = ACTIONS(983), + [anon_sym_throw] = ACTIONS(983), + [anon_sym_SEMI] = ACTIONS(981), + [anon_sym_case] = ACTIONS(983), + [anon_sym_yield] = ACTIONS(983), + [anon_sym_LBRACK] = ACTIONS(981), + [anon_sym_LT] = ACTIONS(981), + [anon_sym_SLASH] = ACTIONS(983), + [anon_sym_class] = ACTIONS(983), + [anon_sym_async] = ACTIONS(983), + [anon_sym_function] = ACTIONS(983), + [anon_sym_new] = ACTIONS(983), + [anon_sym_PLUS] = ACTIONS(983), + [anon_sym_DASH] = ACTIONS(983), + [anon_sym_TILDE] = ACTIONS(981), + [anon_sym_void] = ACTIONS(983), + [anon_sym_delete] = ACTIONS(983), + [anon_sym_PLUS_PLUS] = ACTIONS(981), + [anon_sym_DASH_DASH] = ACTIONS(981), + [anon_sym_DQUOTE] = ACTIONS(981), + [anon_sym_SQUOTE] = ACTIONS(981), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(981), + [sym_number] = ACTIONS(981), + [sym_this] = ACTIONS(983), + [sym_super] = ACTIONS(983), + [sym_true] = ACTIONS(983), + [sym_false] = ACTIONS(983), + [sym_null] = ACTIONS(983), + [sym_undefined] = ACTIONS(983), + [anon_sym_AT] = ACTIONS(981), + [anon_sym_static] = ACTIONS(983), + [anon_sym_abstract] = ACTIONS(983), + [anon_sym_get] = ACTIONS(983), + [anon_sym_set] = ACTIONS(983), + [anon_sym_declare] = ACTIONS(983), + [anon_sym_public] = ACTIONS(983), + [anon_sym_private] = ACTIONS(983), + [anon_sym_protected] = ACTIONS(983), + [anon_sym_module] = ACTIONS(983), + [anon_sym_any] = ACTIONS(983), + [anon_sym_number] = ACTIONS(983), + [anon_sym_boolean] = ACTIONS(983), + [anon_sym_string] = ACTIONS(983), + [anon_sym_symbol] = ACTIONS(983), + [anon_sym_interface] = ACTIONS(983), + [anon_sym_enum] = ACTIONS(983), + [sym_readonly] = ACTIONS(983), + [sym__automatic_semicolon] = ACTIONS(989), + }, + [531] = { + [ts_builtin_sym_end] = ACTIONS(1071), + [sym_identifier] = ACTIONS(1073), + [anon_sym_export] = ACTIONS(1073), + [anon_sym_default] = ACTIONS(1073), + [anon_sym_namespace] = ACTIONS(1073), + [anon_sym_LBRACE] = ACTIONS(1071), + [anon_sym_RBRACE] = ACTIONS(1071), + [anon_sym_type] = ACTIONS(1073), + [anon_sym_typeof] = ACTIONS(1073), + [anon_sym_import] = ACTIONS(1073), + [anon_sym_var] = ACTIONS(1073), + [anon_sym_let] = ACTIONS(1073), + [anon_sym_const] = ACTIONS(1073), + [anon_sym_BANG] = ACTIONS(1071), + [anon_sym_else] = ACTIONS(1073), + [anon_sym_if] = ACTIONS(1073), + [anon_sym_switch] = ACTIONS(1073), + [anon_sym_for] = ACTIONS(1073), + [anon_sym_LPAREN] = ACTIONS(1071), + [anon_sym_await] = ACTIONS(1073), + [anon_sym_while] = ACTIONS(1073), + [anon_sym_do] = ACTIONS(1073), + [anon_sym_try] = ACTIONS(1073), + [anon_sym_with] = ACTIONS(1073), + [anon_sym_break] = ACTIONS(1073), + [anon_sym_continue] = ACTIONS(1073), + [anon_sym_debugger] = ACTIONS(1073), + [anon_sym_return] = ACTIONS(1073), + [anon_sym_throw] = ACTIONS(1073), + [anon_sym_SEMI] = ACTIONS(1071), + [anon_sym_case] = ACTIONS(1073), + [anon_sym_yield] = ACTIONS(1073), + [anon_sym_LBRACK] = ACTIONS(1071), + [anon_sym_LT] = ACTIONS(1071), + [anon_sym_SLASH] = ACTIONS(1073), + [anon_sym_class] = ACTIONS(1073), + [anon_sym_async] = ACTIONS(1073), + [anon_sym_function] = ACTIONS(1073), + [anon_sym_new] = ACTIONS(1073), + [anon_sym_PLUS] = ACTIONS(1073), + [anon_sym_DASH] = ACTIONS(1073), + [anon_sym_TILDE] = ACTIONS(1071), + [anon_sym_void] = ACTIONS(1073), + [anon_sym_delete] = ACTIONS(1073), + [anon_sym_PLUS_PLUS] = ACTIONS(1071), + [anon_sym_DASH_DASH] = ACTIONS(1071), + [anon_sym_DQUOTE] = ACTIONS(1071), + [anon_sym_SQUOTE] = ACTIONS(1071), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1071), + [sym_number] = ACTIONS(1071), + [sym_this] = ACTIONS(1073), + [sym_super] = ACTIONS(1073), + [sym_true] = ACTIONS(1073), + [sym_false] = ACTIONS(1073), + [sym_null] = ACTIONS(1073), + [sym_undefined] = ACTIONS(1073), + [anon_sym_AT] = ACTIONS(1071), + [anon_sym_static] = ACTIONS(1073), + [anon_sym_abstract] = ACTIONS(1073), + [anon_sym_get] = ACTIONS(1073), + [anon_sym_set] = ACTIONS(1073), + [anon_sym_declare] = ACTIONS(1073), + [anon_sym_public] = ACTIONS(1073), + [anon_sym_private] = ACTIONS(1073), + [anon_sym_protected] = ACTIONS(1073), + [anon_sym_module] = ACTIONS(1073), + [anon_sym_any] = ACTIONS(1073), + [anon_sym_number] = ACTIONS(1073), + [anon_sym_boolean] = ACTIONS(1073), + [anon_sym_string] = ACTIONS(1073), + [anon_sym_symbol] = ACTIONS(1073), + [anon_sym_interface] = ACTIONS(1073), + [anon_sym_enum] = ACTIONS(1073), + [sym_readonly] = ACTIONS(1073), + [sym__automatic_semicolon] = ACTIONS(1079), + }, + [532] = { [ts_builtin_sym_end] = ACTIONS(1799), [sym_identifier] = ACTIONS(1801), [anon_sym_export] = ACTIONS(1801), @@ -59985,7 +60195,85 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(1801), [sym_readonly] = ACTIONS(1801), }, - [531] = { + [533] = { + [ts_builtin_sym_end] = ACTIONS(1051), + [sym_identifier] = ACTIONS(1053), + [anon_sym_export] = ACTIONS(1053), + [anon_sym_default] = ACTIONS(1053), + [anon_sym_namespace] = ACTIONS(1053), + [anon_sym_LBRACE] = ACTIONS(1051), + [anon_sym_RBRACE] = ACTIONS(1051), + [anon_sym_type] = ACTIONS(1053), + [anon_sym_typeof] = ACTIONS(1053), + [anon_sym_import] = ACTIONS(1053), + [anon_sym_var] = ACTIONS(1053), + [anon_sym_let] = ACTIONS(1053), + [anon_sym_const] = ACTIONS(1053), + [anon_sym_BANG] = ACTIONS(1051), + [anon_sym_else] = ACTIONS(1053), + [anon_sym_if] = ACTIONS(1053), + [anon_sym_switch] = ACTIONS(1053), + [anon_sym_for] = ACTIONS(1053), + [anon_sym_LPAREN] = ACTIONS(1051), + [anon_sym_await] = ACTIONS(1053), + [anon_sym_while] = ACTIONS(1053), + [anon_sym_do] = ACTIONS(1053), + [anon_sym_try] = ACTIONS(1053), + [anon_sym_with] = ACTIONS(1053), + [anon_sym_break] = ACTIONS(1053), + [anon_sym_continue] = ACTIONS(1053), + [anon_sym_debugger] = ACTIONS(1053), + [anon_sym_return] = ACTIONS(1053), + [anon_sym_throw] = ACTIONS(1053), + [anon_sym_SEMI] = ACTIONS(1051), + [anon_sym_case] = ACTIONS(1053), + [anon_sym_yield] = ACTIONS(1053), + [anon_sym_LBRACK] = ACTIONS(1051), + [anon_sym_LT] = ACTIONS(1051), + [anon_sym_SLASH] = ACTIONS(1053), + [anon_sym_class] = ACTIONS(1053), + [anon_sym_async] = ACTIONS(1053), + [anon_sym_function] = ACTIONS(1053), + [anon_sym_new] = ACTIONS(1053), + [anon_sym_PLUS] = ACTIONS(1053), + [anon_sym_DASH] = ACTIONS(1053), + [anon_sym_TILDE] = ACTIONS(1051), + [anon_sym_void] = ACTIONS(1053), + [anon_sym_delete] = ACTIONS(1053), + [anon_sym_PLUS_PLUS] = ACTIONS(1051), + [anon_sym_DASH_DASH] = ACTIONS(1051), + [anon_sym_DQUOTE] = ACTIONS(1051), + [anon_sym_SQUOTE] = ACTIONS(1051), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1051), + [sym_number] = ACTIONS(1051), + [sym_this] = ACTIONS(1053), + [sym_super] = ACTIONS(1053), + [sym_true] = ACTIONS(1053), + [sym_false] = ACTIONS(1053), + [sym_null] = ACTIONS(1053), + [sym_undefined] = ACTIONS(1053), + [anon_sym_AT] = ACTIONS(1051), + [anon_sym_static] = ACTIONS(1053), + [anon_sym_abstract] = ACTIONS(1053), + [anon_sym_get] = ACTIONS(1053), + [anon_sym_set] = ACTIONS(1053), + [anon_sym_declare] = ACTIONS(1053), + [anon_sym_public] = ACTIONS(1053), + [anon_sym_private] = ACTIONS(1053), + [anon_sym_protected] = ACTIONS(1053), + [anon_sym_module] = ACTIONS(1053), + [anon_sym_any] = ACTIONS(1053), + [anon_sym_number] = ACTIONS(1053), + [anon_sym_boolean] = ACTIONS(1053), + [anon_sym_string] = ACTIONS(1053), + [anon_sym_symbol] = ACTIONS(1053), + [anon_sym_interface] = ACTIONS(1053), + [anon_sym_enum] = ACTIONS(1053), + [sym_readonly] = ACTIONS(1053), + [sym__automatic_semicolon] = ACTIONS(1059), + }, + [534] = { [ts_builtin_sym_end] = ACTIONS(1803), [sym_identifier] = ACTIONS(1805), [anon_sym_export] = ACTIONS(1805), @@ -60063,85 +60351,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(1805), [sym_readonly] = ACTIONS(1805), }, - [532] = { - [ts_builtin_sym_end] = ACTIONS(971), - [sym_identifier] = ACTIONS(973), - [anon_sym_export] = ACTIONS(973), - [anon_sym_default] = ACTIONS(973), - [anon_sym_namespace] = ACTIONS(973), - [anon_sym_LBRACE] = ACTIONS(971), - [anon_sym_RBRACE] = ACTIONS(971), - [anon_sym_type] = ACTIONS(973), - [anon_sym_typeof] = ACTIONS(973), - [anon_sym_import] = ACTIONS(973), - [anon_sym_var] = ACTIONS(973), - [anon_sym_let] = ACTIONS(973), - [anon_sym_const] = ACTIONS(973), - [anon_sym_BANG] = ACTIONS(971), - [anon_sym_else] = ACTIONS(973), - [anon_sym_if] = ACTIONS(973), - [anon_sym_switch] = ACTIONS(973), - [anon_sym_for] = ACTIONS(973), - [anon_sym_LPAREN] = ACTIONS(971), - [anon_sym_await] = ACTIONS(973), - [anon_sym_while] = ACTIONS(973), - [anon_sym_do] = ACTIONS(973), - [anon_sym_try] = ACTIONS(973), - [anon_sym_with] = ACTIONS(973), - [anon_sym_break] = ACTIONS(973), - [anon_sym_continue] = ACTIONS(973), - [anon_sym_debugger] = ACTIONS(973), - [anon_sym_return] = ACTIONS(973), - [anon_sym_throw] = ACTIONS(973), - [anon_sym_SEMI] = ACTIONS(971), - [anon_sym_case] = ACTIONS(973), - [anon_sym_yield] = ACTIONS(973), - [anon_sym_LBRACK] = ACTIONS(971), - [anon_sym_LT] = ACTIONS(971), - [anon_sym_SLASH] = ACTIONS(973), - [anon_sym_class] = ACTIONS(973), - [anon_sym_async] = ACTIONS(973), - [anon_sym_function] = ACTIONS(973), - [anon_sym_new] = ACTIONS(973), - [anon_sym_PLUS] = ACTIONS(973), - [anon_sym_DASH] = ACTIONS(973), - [anon_sym_TILDE] = ACTIONS(971), - [anon_sym_void] = ACTIONS(973), - [anon_sym_delete] = ACTIONS(973), - [anon_sym_PLUS_PLUS] = ACTIONS(971), - [anon_sym_DASH_DASH] = ACTIONS(971), - [anon_sym_DQUOTE] = ACTIONS(971), - [anon_sym_SQUOTE] = ACTIONS(971), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(971), - [sym_number] = ACTIONS(971), - [sym_this] = ACTIONS(973), - [sym_super] = ACTIONS(973), - [sym_true] = ACTIONS(973), - [sym_false] = ACTIONS(973), - [sym_null] = ACTIONS(973), - [sym_undefined] = ACTIONS(973), - [anon_sym_AT] = ACTIONS(971), - [anon_sym_static] = ACTIONS(973), - [anon_sym_abstract] = ACTIONS(973), - [anon_sym_get] = ACTIONS(973), - [anon_sym_set] = ACTIONS(973), - [anon_sym_declare] = ACTIONS(973), - [anon_sym_public] = ACTIONS(973), - [anon_sym_private] = ACTIONS(973), - [anon_sym_protected] = ACTIONS(973), - [anon_sym_module] = ACTIONS(973), - [anon_sym_any] = ACTIONS(973), - [anon_sym_number] = ACTIONS(973), - [anon_sym_boolean] = ACTIONS(973), - [anon_sym_string] = ACTIONS(973), - [anon_sym_symbol] = ACTIONS(973), - [anon_sym_interface] = ACTIONS(973), - [anon_sym_enum] = ACTIONS(973), - [sym_readonly] = ACTIONS(973), - [sym__automatic_semicolon] = ACTIONS(979), - }, - [533] = { + [535] = { [ts_builtin_sym_end] = ACTIONS(1807), [sym_identifier] = ACTIONS(1809), [anon_sym_export] = ACTIONS(1809), @@ -60219,162 +60429,6 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(1809), [sym_readonly] = ACTIONS(1809), }, - [534] = { - [ts_builtin_sym_end] = ACTIONS(1101), - [sym_identifier] = ACTIONS(1103), - [anon_sym_export] = ACTIONS(1103), - [anon_sym_default] = ACTIONS(1103), - [anon_sym_namespace] = ACTIONS(1103), - [anon_sym_LBRACE] = ACTIONS(1101), - [anon_sym_RBRACE] = ACTIONS(1101), - [anon_sym_type] = ACTIONS(1103), - [anon_sym_typeof] = ACTIONS(1103), - [anon_sym_import] = ACTIONS(1103), - [anon_sym_var] = ACTIONS(1103), - [anon_sym_let] = ACTIONS(1103), - [anon_sym_const] = ACTIONS(1103), - [anon_sym_BANG] = ACTIONS(1101), - [anon_sym_else] = ACTIONS(1103), - [anon_sym_if] = ACTIONS(1103), - [anon_sym_switch] = ACTIONS(1103), - [anon_sym_for] = ACTIONS(1103), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1103), - [anon_sym_while] = ACTIONS(1103), - [anon_sym_do] = ACTIONS(1103), - [anon_sym_try] = ACTIONS(1103), - [anon_sym_with] = ACTIONS(1103), - [anon_sym_break] = ACTIONS(1103), - [anon_sym_continue] = ACTIONS(1103), - [anon_sym_debugger] = ACTIONS(1103), - [anon_sym_return] = ACTIONS(1103), - [anon_sym_throw] = ACTIONS(1103), - [anon_sym_SEMI] = ACTIONS(1101), - [anon_sym_case] = ACTIONS(1103), - [anon_sym_yield] = ACTIONS(1103), - [anon_sym_LBRACK] = ACTIONS(1101), - [anon_sym_LT] = ACTIONS(1101), - [anon_sym_SLASH] = ACTIONS(1103), - [anon_sym_class] = ACTIONS(1103), - [anon_sym_async] = ACTIONS(1103), - [anon_sym_function] = ACTIONS(1103), - [anon_sym_new] = ACTIONS(1103), - [anon_sym_PLUS] = ACTIONS(1103), - [anon_sym_DASH] = ACTIONS(1103), - [anon_sym_TILDE] = ACTIONS(1101), - [anon_sym_void] = ACTIONS(1103), - [anon_sym_delete] = ACTIONS(1103), - [anon_sym_PLUS_PLUS] = ACTIONS(1101), - [anon_sym_DASH_DASH] = ACTIONS(1101), - [anon_sym_DQUOTE] = ACTIONS(1101), - [anon_sym_SQUOTE] = ACTIONS(1101), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1101), - [sym_number] = ACTIONS(1101), - [sym_this] = ACTIONS(1103), - [sym_super] = ACTIONS(1103), - [sym_true] = ACTIONS(1103), - [sym_false] = ACTIONS(1103), - [sym_null] = ACTIONS(1103), - [sym_undefined] = ACTIONS(1103), - [anon_sym_AT] = ACTIONS(1101), - [anon_sym_static] = ACTIONS(1103), - [anon_sym_abstract] = ACTIONS(1103), - [anon_sym_get] = ACTIONS(1103), - [anon_sym_set] = ACTIONS(1103), - [anon_sym_declare] = ACTIONS(1103), - [anon_sym_public] = ACTIONS(1103), - [anon_sym_private] = ACTIONS(1103), - [anon_sym_protected] = ACTIONS(1103), - [anon_sym_module] = ACTIONS(1103), - [anon_sym_any] = ACTIONS(1103), - [anon_sym_number] = ACTIONS(1103), - [anon_sym_boolean] = ACTIONS(1103), - [anon_sym_string] = ACTIONS(1103), - [anon_sym_symbol] = ACTIONS(1103), - [anon_sym_interface] = ACTIONS(1103), - [anon_sym_enum] = ACTIONS(1103), - [sym_readonly] = ACTIONS(1103), - [sym__automatic_semicolon] = ACTIONS(1109), - }, - [535] = { - [ts_builtin_sym_end] = ACTIONS(981), - [sym_identifier] = ACTIONS(983), - [anon_sym_export] = ACTIONS(983), - [anon_sym_default] = ACTIONS(983), - [anon_sym_namespace] = ACTIONS(983), - [anon_sym_LBRACE] = ACTIONS(981), - [anon_sym_RBRACE] = ACTIONS(981), - [anon_sym_type] = ACTIONS(983), - [anon_sym_typeof] = ACTIONS(983), - [anon_sym_import] = ACTIONS(983), - [anon_sym_var] = ACTIONS(983), - [anon_sym_let] = ACTIONS(983), - [anon_sym_const] = ACTIONS(983), - [anon_sym_BANG] = ACTIONS(981), - [anon_sym_else] = ACTIONS(983), - [anon_sym_if] = ACTIONS(983), - [anon_sym_switch] = ACTIONS(983), - [anon_sym_for] = ACTIONS(983), - [anon_sym_LPAREN] = ACTIONS(981), - [anon_sym_await] = ACTIONS(983), - [anon_sym_while] = ACTIONS(983), - [anon_sym_do] = ACTIONS(983), - [anon_sym_try] = ACTIONS(983), - [anon_sym_with] = ACTIONS(983), - [anon_sym_break] = ACTIONS(983), - [anon_sym_continue] = ACTIONS(983), - [anon_sym_debugger] = ACTIONS(983), - [anon_sym_return] = ACTIONS(983), - [anon_sym_throw] = ACTIONS(983), - [anon_sym_SEMI] = ACTIONS(981), - [anon_sym_case] = ACTIONS(983), - [anon_sym_yield] = ACTIONS(983), - [anon_sym_LBRACK] = ACTIONS(981), - [anon_sym_LT] = ACTIONS(981), - [anon_sym_SLASH] = ACTIONS(983), - [anon_sym_class] = ACTIONS(983), - [anon_sym_async] = ACTIONS(983), - [anon_sym_function] = ACTIONS(983), - [anon_sym_new] = ACTIONS(983), - [anon_sym_PLUS] = ACTIONS(983), - [anon_sym_DASH] = ACTIONS(983), - [anon_sym_TILDE] = ACTIONS(981), - [anon_sym_void] = ACTIONS(983), - [anon_sym_delete] = ACTIONS(983), - [anon_sym_PLUS_PLUS] = ACTIONS(981), - [anon_sym_DASH_DASH] = ACTIONS(981), - [anon_sym_DQUOTE] = ACTIONS(981), - [anon_sym_SQUOTE] = ACTIONS(981), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(981), - [sym_number] = ACTIONS(981), - [sym_this] = ACTIONS(983), - [sym_super] = ACTIONS(983), - [sym_true] = ACTIONS(983), - [sym_false] = ACTIONS(983), - [sym_null] = ACTIONS(983), - [sym_undefined] = ACTIONS(983), - [anon_sym_AT] = ACTIONS(981), - [anon_sym_static] = ACTIONS(983), - [anon_sym_abstract] = ACTIONS(983), - [anon_sym_get] = ACTIONS(983), - [anon_sym_set] = ACTIONS(983), - [anon_sym_declare] = ACTIONS(983), - [anon_sym_public] = ACTIONS(983), - [anon_sym_private] = ACTIONS(983), - [anon_sym_protected] = ACTIONS(983), - [anon_sym_module] = ACTIONS(983), - [anon_sym_any] = ACTIONS(983), - [anon_sym_number] = ACTIONS(983), - [anon_sym_boolean] = ACTIONS(983), - [anon_sym_string] = ACTIONS(983), - [anon_sym_symbol] = ACTIONS(983), - [anon_sym_interface] = ACTIONS(983), - [anon_sym_enum] = ACTIONS(983), - [sym_readonly] = ACTIONS(983), - [sym__automatic_semicolon] = ACTIONS(989), - }, [536] = { [ts_builtin_sym_end] = ACTIONS(1811), [sym_identifier] = ACTIONS(1813), @@ -60454,82 +60508,82 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_readonly] = ACTIONS(1813), }, [537] = { - [ts_builtin_sym_end] = ACTIONS(1063), - [sym_identifier] = ACTIONS(1065), - [anon_sym_export] = ACTIONS(1065), - [anon_sym_default] = ACTIONS(1065), - [anon_sym_namespace] = ACTIONS(1065), - [anon_sym_LBRACE] = ACTIONS(1063), - [anon_sym_RBRACE] = ACTIONS(1063), - [anon_sym_type] = ACTIONS(1065), - [anon_sym_typeof] = ACTIONS(1065), - [anon_sym_import] = ACTIONS(1065), - [anon_sym_var] = ACTIONS(1065), - [anon_sym_let] = ACTIONS(1065), - [anon_sym_const] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1063), - [anon_sym_else] = ACTIONS(1065), - [anon_sym_if] = ACTIONS(1065), - [anon_sym_switch] = ACTIONS(1065), - [anon_sym_for] = ACTIONS(1065), - [anon_sym_LPAREN] = ACTIONS(1063), - [anon_sym_await] = ACTIONS(1065), - [anon_sym_while] = ACTIONS(1065), - [anon_sym_do] = ACTIONS(1065), - [anon_sym_try] = ACTIONS(1065), - [anon_sym_with] = ACTIONS(1065), - [anon_sym_break] = ACTIONS(1065), - [anon_sym_continue] = ACTIONS(1065), - [anon_sym_debugger] = ACTIONS(1065), - [anon_sym_return] = ACTIONS(1065), - [anon_sym_throw] = ACTIONS(1065), - [anon_sym_SEMI] = ACTIONS(1063), - [anon_sym_case] = ACTIONS(1065), - [anon_sym_yield] = ACTIONS(1065), - [anon_sym_LBRACK] = ACTIONS(1063), - [anon_sym_LT] = ACTIONS(1063), - [anon_sym_SLASH] = ACTIONS(1065), - [anon_sym_class] = ACTIONS(1065), - [anon_sym_async] = ACTIONS(1065), - [anon_sym_function] = ACTIONS(1065), - [anon_sym_new] = ACTIONS(1065), - [anon_sym_PLUS] = ACTIONS(1065), - [anon_sym_DASH] = ACTIONS(1065), - [anon_sym_TILDE] = ACTIONS(1063), - [anon_sym_void] = ACTIONS(1065), - [anon_sym_delete] = ACTIONS(1065), - [anon_sym_PLUS_PLUS] = ACTIONS(1063), - [anon_sym_DASH_DASH] = ACTIONS(1063), - [anon_sym_DQUOTE] = ACTIONS(1063), - [anon_sym_SQUOTE] = ACTIONS(1063), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1063), - [sym_number] = ACTIONS(1063), - [sym_this] = ACTIONS(1065), - [sym_super] = ACTIONS(1065), - [sym_true] = ACTIONS(1065), - [sym_false] = ACTIONS(1065), - [sym_null] = ACTIONS(1065), - [sym_undefined] = ACTIONS(1065), - [anon_sym_AT] = ACTIONS(1063), - [anon_sym_static] = ACTIONS(1065), - [anon_sym_abstract] = ACTIONS(1065), - [anon_sym_get] = ACTIONS(1065), - [anon_sym_set] = ACTIONS(1065), - [anon_sym_declare] = ACTIONS(1065), - [anon_sym_public] = ACTIONS(1065), - [anon_sym_private] = ACTIONS(1065), - [anon_sym_protected] = ACTIONS(1065), - [anon_sym_module] = ACTIONS(1065), - [anon_sym_any] = ACTIONS(1065), - [anon_sym_number] = ACTIONS(1065), - [anon_sym_boolean] = ACTIONS(1065), - [anon_sym_string] = ACTIONS(1065), - [anon_sym_symbol] = ACTIONS(1065), - [anon_sym_interface] = ACTIONS(1065), - [anon_sym_enum] = ACTIONS(1065), - [sym_readonly] = ACTIONS(1065), - [sym__automatic_semicolon] = ACTIONS(1071), + [ts_builtin_sym_end] = ACTIONS(945), + [sym_identifier] = ACTIONS(947), + [anon_sym_export] = ACTIONS(947), + [anon_sym_default] = ACTIONS(947), + [anon_sym_namespace] = ACTIONS(947), + [anon_sym_LBRACE] = ACTIONS(945), + [anon_sym_RBRACE] = ACTIONS(945), + [anon_sym_type] = ACTIONS(947), + [anon_sym_typeof] = ACTIONS(947), + [anon_sym_import] = ACTIONS(947), + [anon_sym_var] = ACTIONS(947), + [anon_sym_let] = ACTIONS(947), + [anon_sym_const] = ACTIONS(947), + [anon_sym_BANG] = ACTIONS(945), + [anon_sym_else] = ACTIONS(947), + [anon_sym_if] = ACTIONS(947), + [anon_sym_switch] = ACTIONS(947), + [anon_sym_for] = ACTIONS(947), + [anon_sym_LPAREN] = ACTIONS(945), + [anon_sym_await] = ACTIONS(947), + [anon_sym_while] = ACTIONS(947), + [anon_sym_do] = ACTIONS(947), + [anon_sym_try] = ACTIONS(947), + [anon_sym_with] = ACTIONS(947), + [anon_sym_break] = ACTIONS(947), + [anon_sym_continue] = ACTIONS(947), + [anon_sym_debugger] = ACTIONS(947), + [anon_sym_return] = ACTIONS(947), + [anon_sym_throw] = ACTIONS(947), + [anon_sym_SEMI] = ACTIONS(945), + [anon_sym_case] = ACTIONS(947), + [anon_sym_yield] = ACTIONS(947), + [anon_sym_LBRACK] = ACTIONS(945), + [anon_sym_LT] = ACTIONS(945), + [anon_sym_SLASH] = ACTIONS(947), + [anon_sym_DOT] = ACTIONS(947), + [anon_sym_class] = ACTIONS(947), + [anon_sym_async] = ACTIONS(947), + [anon_sym_function] = ACTIONS(947), + [anon_sym_new] = ACTIONS(947), + [anon_sym_PLUS] = ACTIONS(947), + [anon_sym_DASH] = ACTIONS(947), + [anon_sym_TILDE] = ACTIONS(945), + [anon_sym_void] = ACTIONS(947), + [anon_sym_delete] = ACTIONS(947), + [anon_sym_PLUS_PLUS] = ACTIONS(945), + [anon_sym_DASH_DASH] = ACTIONS(945), + [anon_sym_DQUOTE] = ACTIONS(945), + [anon_sym_SQUOTE] = ACTIONS(945), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(945), + [sym_number] = ACTIONS(945), + [sym_this] = ACTIONS(947), + [sym_super] = ACTIONS(947), + [sym_true] = ACTIONS(947), + [sym_false] = ACTIONS(947), + [sym_null] = ACTIONS(947), + [sym_undefined] = ACTIONS(947), + [anon_sym_AT] = ACTIONS(945), + [anon_sym_static] = ACTIONS(947), + [anon_sym_abstract] = ACTIONS(947), + [anon_sym_get] = ACTIONS(947), + [anon_sym_set] = ACTIONS(947), + [anon_sym_declare] = ACTIONS(947), + [anon_sym_public] = ACTIONS(947), + [anon_sym_private] = ACTIONS(947), + [anon_sym_protected] = ACTIONS(947), + [anon_sym_module] = ACTIONS(947), + [anon_sym_any] = ACTIONS(947), + [anon_sym_number] = ACTIONS(947), + [anon_sym_boolean] = ACTIONS(947), + [anon_sym_string] = ACTIONS(947), + [anon_sym_symbol] = ACTIONS(947), + [anon_sym_interface] = ACTIONS(947), + [anon_sym_enum] = ACTIONS(947), + [sym_readonly] = ACTIONS(947), }, [538] = { [ts_builtin_sym_end] = ACTIONS(1815), @@ -62303,83 +62357,6 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_readonly] = ACTIONS(1905), }, [561] = { - [ts_builtin_sym_end] = ACTIONS(1093), - [sym_identifier] = ACTIONS(1095), - [anon_sym_export] = ACTIONS(1095), - [anon_sym_default] = ACTIONS(1095), - [anon_sym_namespace] = ACTIONS(1095), - [anon_sym_LBRACE] = ACTIONS(1093), - [anon_sym_RBRACE] = ACTIONS(1093), - [anon_sym_type] = ACTIONS(1095), - [anon_sym_typeof] = ACTIONS(1095), - [anon_sym_import] = ACTIONS(1095), - [anon_sym_var] = ACTIONS(1095), - [anon_sym_let] = ACTIONS(1095), - [anon_sym_const] = ACTIONS(1095), - [anon_sym_BANG] = ACTIONS(1093), - [anon_sym_else] = ACTIONS(1095), - [anon_sym_if] = ACTIONS(1095), - [anon_sym_switch] = ACTIONS(1095), - [anon_sym_for] = ACTIONS(1095), - [anon_sym_LPAREN] = ACTIONS(1093), - [anon_sym_await] = ACTIONS(1095), - [anon_sym_while] = ACTIONS(1095), - [anon_sym_do] = ACTIONS(1095), - [anon_sym_try] = ACTIONS(1095), - [anon_sym_with] = ACTIONS(1095), - [anon_sym_break] = ACTIONS(1095), - [anon_sym_continue] = ACTIONS(1095), - [anon_sym_debugger] = ACTIONS(1095), - [anon_sym_return] = ACTIONS(1095), - [anon_sym_throw] = ACTIONS(1095), - [anon_sym_SEMI] = ACTIONS(1093), - [anon_sym_case] = ACTIONS(1095), - [anon_sym_yield] = ACTIONS(1095), - [anon_sym_LBRACK] = ACTIONS(1093), - [anon_sym_LT] = ACTIONS(1093), - [anon_sym_SLASH] = ACTIONS(1095), - [anon_sym_class] = ACTIONS(1095), - [anon_sym_async] = ACTIONS(1095), - [anon_sym_function] = ACTIONS(1095), - [anon_sym_new] = ACTIONS(1095), - [anon_sym_PLUS] = ACTIONS(1095), - [anon_sym_DASH] = ACTIONS(1095), - [anon_sym_TILDE] = ACTIONS(1093), - [anon_sym_void] = ACTIONS(1095), - [anon_sym_delete] = ACTIONS(1095), - [anon_sym_PLUS_PLUS] = ACTIONS(1093), - [anon_sym_DASH_DASH] = ACTIONS(1093), - [anon_sym_DQUOTE] = ACTIONS(1093), - [anon_sym_SQUOTE] = ACTIONS(1093), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1093), - [sym_number] = ACTIONS(1093), - [sym_this] = ACTIONS(1095), - [sym_super] = ACTIONS(1095), - [sym_true] = ACTIONS(1095), - [sym_false] = ACTIONS(1095), - [sym_null] = ACTIONS(1095), - [sym_undefined] = ACTIONS(1095), - [anon_sym_AT] = ACTIONS(1093), - [anon_sym_static] = ACTIONS(1095), - [anon_sym_abstract] = ACTIONS(1095), - [anon_sym_get] = ACTIONS(1095), - [anon_sym_set] = ACTIONS(1095), - [anon_sym_declare] = ACTIONS(1095), - [anon_sym_public] = ACTIONS(1095), - [anon_sym_private] = ACTIONS(1095), - [anon_sym_protected] = ACTIONS(1095), - [anon_sym_module] = ACTIONS(1095), - [anon_sym_any] = ACTIONS(1095), - [anon_sym_number] = ACTIONS(1095), - [anon_sym_boolean] = ACTIONS(1095), - [anon_sym_string] = ACTIONS(1095), - [anon_sym_symbol] = ACTIONS(1095), - [anon_sym_interface] = ACTIONS(1095), - [anon_sym_enum] = ACTIONS(1095), - [sym_readonly] = ACTIONS(1095), - }, - [562] = { [ts_builtin_sym_end] = ACTIONS(1907), [sym_identifier] = ACTIONS(1909), [anon_sym_export] = ACTIONS(1909), @@ -62456,7 +62433,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(1909), [sym_readonly] = ACTIONS(1909), }, - [563] = { + [562] = { [ts_builtin_sym_end] = ACTIONS(1911), [sym_identifier] = ACTIONS(1913), [anon_sym_export] = ACTIONS(1913), @@ -62533,6 +62510,83 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(1913), [sym_readonly] = ACTIONS(1913), }, + [563] = { + [ts_builtin_sym_end] = ACTIONS(991), + [sym_identifier] = ACTIONS(993), + [anon_sym_export] = ACTIONS(993), + [anon_sym_default] = ACTIONS(993), + [anon_sym_namespace] = ACTIONS(993), + [anon_sym_LBRACE] = ACTIONS(991), + [anon_sym_RBRACE] = ACTIONS(991), + [anon_sym_type] = ACTIONS(993), + [anon_sym_typeof] = ACTIONS(993), + [anon_sym_import] = ACTIONS(993), + [anon_sym_var] = ACTIONS(993), + [anon_sym_let] = ACTIONS(993), + [anon_sym_const] = ACTIONS(993), + [anon_sym_BANG] = ACTIONS(991), + [anon_sym_else] = ACTIONS(993), + [anon_sym_if] = ACTIONS(993), + [anon_sym_switch] = ACTIONS(993), + [anon_sym_for] = ACTIONS(993), + [anon_sym_LPAREN] = ACTIONS(991), + [anon_sym_await] = ACTIONS(993), + [anon_sym_while] = ACTIONS(993), + [anon_sym_do] = ACTIONS(993), + [anon_sym_try] = ACTIONS(993), + [anon_sym_with] = ACTIONS(993), + [anon_sym_break] = ACTIONS(993), + [anon_sym_continue] = ACTIONS(993), + [anon_sym_debugger] = ACTIONS(993), + [anon_sym_return] = ACTIONS(993), + [anon_sym_throw] = ACTIONS(993), + [anon_sym_SEMI] = ACTIONS(991), + [anon_sym_case] = ACTIONS(993), + [anon_sym_yield] = ACTIONS(993), + [anon_sym_LBRACK] = ACTIONS(991), + [anon_sym_LT] = ACTIONS(991), + [anon_sym_SLASH] = ACTIONS(993), + [anon_sym_class] = ACTIONS(993), + [anon_sym_async] = ACTIONS(993), + [anon_sym_function] = ACTIONS(993), + [anon_sym_new] = ACTIONS(993), + [anon_sym_PLUS] = ACTIONS(993), + [anon_sym_DASH] = ACTIONS(993), + [anon_sym_TILDE] = ACTIONS(991), + [anon_sym_void] = ACTIONS(993), + [anon_sym_delete] = ACTIONS(993), + [anon_sym_PLUS_PLUS] = ACTIONS(991), + [anon_sym_DASH_DASH] = ACTIONS(991), + [anon_sym_DQUOTE] = ACTIONS(991), + [anon_sym_SQUOTE] = ACTIONS(991), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(991), + [sym_number] = ACTIONS(991), + [sym_this] = ACTIONS(993), + [sym_super] = ACTIONS(993), + [sym_true] = ACTIONS(993), + [sym_false] = ACTIONS(993), + [sym_null] = ACTIONS(993), + [sym_undefined] = ACTIONS(993), + [anon_sym_AT] = ACTIONS(991), + [anon_sym_static] = ACTIONS(993), + [anon_sym_abstract] = ACTIONS(993), + [anon_sym_get] = ACTIONS(993), + [anon_sym_set] = ACTIONS(993), + [anon_sym_declare] = ACTIONS(993), + [anon_sym_public] = ACTIONS(993), + [anon_sym_private] = ACTIONS(993), + [anon_sym_protected] = ACTIONS(993), + [anon_sym_module] = ACTIONS(993), + [anon_sym_any] = ACTIONS(993), + [anon_sym_number] = ACTIONS(993), + [anon_sym_boolean] = ACTIONS(993), + [anon_sym_string] = ACTIONS(993), + [anon_sym_symbol] = ACTIONS(993), + [anon_sym_interface] = ACTIONS(993), + [anon_sym_enum] = ACTIONS(993), + [sym_readonly] = ACTIONS(993), + }, [564] = { [ts_builtin_sym_end] = ACTIONS(1915), [sym_identifier] = ACTIONS(1917), @@ -62919,6 +62973,83 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_readonly] = ACTIONS(1933), }, [569] = { + [ts_builtin_sym_end] = ACTIONS(1033), + [sym_identifier] = ACTIONS(1035), + [anon_sym_export] = ACTIONS(1035), + [anon_sym_default] = ACTIONS(1035), + [anon_sym_namespace] = ACTIONS(1035), + [anon_sym_LBRACE] = ACTIONS(1033), + [anon_sym_RBRACE] = ACTIONS(1033), + [anon_sym_type] = ACTIONS(1035), + [anon_sym_typeof] = ACTIONS(1035), + [anon_sym_import] = ACTIONS(1035), + [anon_sym_var] = ACTIONS(1035), + [anon_sym_let] = ACTIONS(1035), + [anon_sym_const] = ACTIONS(1035), + [anon_sym_BANG] = ACTIONS(1033), + [anon_sym_else] = ACTIONS(1035), + [anon_sym_if] = ACTIONS(1035), + [anon_sym_switch] = ACTIONS(1035), + [anon_sym_for] = ACTIONS(1035), + [anon_sym_LPAREN] = ACTIONS(1033), + [anon_sym_await] = ACTIONS(1035), + [anon_sym_while] = ACTIONS(1035), + [anon_sym_do] = ACTIONS(1035), + [anon_sym_try] = ACTIONS(1035), + [anon_sym_with] = ACTIONS(1035), + [anon_sym_break] = ACTIONS(1035), + [anon_sym_continue] = ACTIONS(1035), + [anon_sym_debugger] = ACTIONS(1035), + [anon_sym_return] = ACTIONS(1035), + [anon_sym_throw] = ACTIONS(1035), + [anon_sym_SEMI] = ACTIONS(1033), + [anon_sym_case] = ACTIONS(1035), + [anon_sym_yield] = ACTIONS(1035), + [anon_sym_LBRACK] = ACTIONS(1033), + [anon_sym_LT] = ACTIONS(1033), + [anon_sym_SLASH] = ACTIONS(1035), + [anon_sym_class] = ACTIONS(1035), + [anon_sym_async] = ACTIONS(1035), + [anon_sym_function] = ACTIONS(1035), + [anon_sym_new] = ACTIONS(1035), + [anon_sym_PLUS] = ACTIONS(1035), + [anon_sym_DASH] = ACTIONS(1035), + [anon_sym_TILDE] = ACTIONS(1033), + [anon_sym_void] = ACTIONS(1035), + [anon_sym_delete] = ACTIONS(1035), + [anon_sym_PLUS_PLUS] = ACTIONS(1033), + [anon_sym_DASH_DASH] = ACTIONS(1033), + [anon_sym_DQUOTE] = ACTIONS(1033), + [anon_sym_SQUOTE] = ACTIONS(1033), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1033), + [sym_number] = ACTIONS(1033), + [sym_this] = ACTIONS(1035), + [sym_super] = ACTIONS(1035), + [sym_true] = ACTIONS(1035), + [sym_false] = ACTIONS(1035), + [sym_null] = ACTIONS(1035), + [sym_undefined] = ACTIONS(1035), + [anon_sym_AT] = ACTIONS(1033), + [anon_sym_static] = ACTIONS(1035), + [anon_sym_abstract] = ACTIONS(1035), + [anon_sym_get] = ACTIONS(1035), + [anon_sym_set] = ACTIONS(1035), + [anon_sym_declare] = ACTIONS(1035), + [anon_sym_public] = ACTIONS(1035), + [anon_sym_private] = ACTIONS(1035), + [anon_sym_protected] = ACTIONS(1035), + [anon_sym_module] = ACTIONS(1035), + [anon_sym_any] = ACTIONS(1035), + [anon_sym_number] = ACTIONS(1035), + [anon_sym_boolean] = ACTIONS(1035), + [anon_sym_string] = ACTIONS(1035), + [anon_sym_symbol] = ACTIONS(1035), + [anon_sym_interface] = ACTIONS(1035), + [anon_sym_enum] = ACTIONS(1035), + [sym_readonly] = ACTIONS(1035), + }, + [570] = { [ts_builtin_sym_end] = ACTIONS(1935), [sym_identifier] = ACTIONS(1937), [anon_sym_export] = ACTIONS(1937), @@ -62995,7 +63126,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(1937), [sym_readonly] = ACTIONS(1937), }, - [570] = { + [571] = { [ts_builtin_sym_end] = ACTIONS(1939), [sym_identifier] = ACTIONS(1941), [anon_sym_export] = ACTIONS(1941), @@ -63072,7 +63203,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(1941), [sym_readonly] = ACTIONS(1941), }, - [571] = { + [572] = { [ts_builtin_sym_end] = ACTIONS(1943), [sym_identifier] = ACTIONS(1945), [anon_sym_export] = ACTIONS(1945), @@ -63149,7 +63280,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(1945), [sym_readonly] = ACTIONS(1945), }, - [572] = { + [573] = { [ts_builtin_sym_end] = ACTIONS(1947), [sym_identifier] = ACTIONS(1949), [anon_sym_export] = ACTIONS(1949), @@ -63226,7 +63357,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(1949), [sym_readonly] = ACTIONS(1949), }, - [573] = { + [574] = { [ts_builtin_sym_end] = ACTIONS(1951), [sym_identifier] = ACTIONS(1953), [anon_sym_export] = ACTIONS(1953), @@ -63303,7 +63434,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(1953), [sym_readonly] = ACTIONS(1953), }, - [574] = { + [575] = { [ts_builtin_sym_end] = ACTIONS(1955), [sym_identifier] = ACTIONS(1957), [anon_sym_export] = ACTIONS(1957), @@ -63380,7 +63511,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(1957), [sym_readonly] = ACTIONS(1957), }, - [575] = { + [576] = { [ts_builtin_sym_end] = ACTIONS(1959), [sym_identifier] = ACTIONS(1961), [anon_sym_export] = ACTIONS(1961), @@ -63457,7 +63588,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(1961), [sym_readonly] = ACTIONS(1961), }, - [576] = { + [577] = { [ts_builtin_sym_end] = ACTIONS(1963), [sym_identifier] = ACTIONS(1965), [anon_sym_export] = ACTIONS(1965), @@ -63534,7 +63665,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(1965), [sym_readonly] = ACTIONS(1965), }, - [577] = { + [578] = { [ts_builtin_sym_end] = ACTIONS(1967), [sym_identifier] = ACTIONS(1969), [anon_sym_export] = ACTIONS(1969), @@ -63611,7 +63742,84 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(1969), [sym_readonly] = ACTIONS(1969), }, - [578] = { + [579] = { + [ts_builtin_sym_end] = ACTIONS(1033), + [sym_identifier] = ACTIONS(1035), + [anon_sym_export] = ACTIONS(1035), + [anon_sym_default] = ACTIONS(1035), + [anon_sym_namespace] = ACTIONS(1035), + [anon_sym_LBRACE] = ACTIONS(1033), + [anon_sym_RBRACE] = ACTIONS(1033), + [anon_sym_type] = ACTIONS(1035), + [anon_sym_typeof] = ACTIONS(1035), + [anon_sym_import] = ACTIONS(1035), + [anon_sym_var] = ACTIONS(1035), + [anon_sym_let] = ACTIONS(1035), + [anon_sym_const] = ACTIONS(1035), + [anon_sym_BANG] = ACTIONS(1033), + [anon_sym_else] = ACTIONS(1035), + [anon_sym_if] = ACTIONS(1035), + [anon_sym_switch] = ACTIONS(1035), + [anon_sym_for] = ACTIONS(1035), + [anon_sym_LPAREN] = ACTIONS(1033), + [anon_sym_await] = ACTIONS(1035), + [anon_sym_while] = ACTIONS(1035), + [anon_sym_do] = ACTIONS(1035), + [anon_sym_try] = ACTIONS(1035), + [anon_sym_with] = ACTIONS(1035), + [anon_sym_break] = ACTIONS(1035), + [anon_sym_continue] = ACTIONS(1035), + [anon_sym_debugger] = ACTIONS(1035), + [anon_sym_return] = ACTIONS(1035), + [anon_sym_throw] = ACTIONS(1035), + [anon_sym_SEMI] = ACTIONS(1033), + [anon_sym_case] = ACTIONS(1035), + [anon_sym_yield] = ACTIONS(1035), + [anon_sym_LBRACK] = ACTIONS(1033), + [anon_sym_LT] = ACTIONS(1033), + [anon_sym_SLASH] = ACTIONS(1035), + [anon_sym_class] = ACTIONS(1035), + [anon_sym_async] = ACTIONS(1035), + [anon_sym_function] = ACTIONS(1035), + [anon_sym_new] = ACTIONS(1035), + [anon_sym_PLUS] = ACTIONS(1035), + [anon_sym_DASH] = ACTIONS(1035), + [anon_sym_TILDE] = ACTIONS(1033), + [anon_sym_void] = ACTIONS(1035), + [anon_sym_delete] = ACTIONS(1035), + [anon_sym_PLUS_PLUS] = ACTIONS(1033), + [anon_sym_DASH_DASH] = ACTIONS(1033), + [anon_sym_DQUOTE] = ACTIONS(1033), + [anon_sym_SQUOTE] = ACTIONS(1033), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1033), + [sym_number] = ACTIONS(1033), + [sym_this] = ACTIONS(1035), + [sym_super] = ACTIONS(1035), + [sym_true] = ACTIONS(1035), + [sym_false] = ACTIONS(1035), + [sym_null] = ACTIONS(1035), + [sym_undefined] = ACTIONS(1035), + [anon_sym_AT] = ACTIONS(1033), + [anon_sym_static] = ACTIONS(1035), + [anon_sym_abstract] = ACTIONS(1035), + [anon_sym_get] = ACTIONS(1035), + [anon_sym_set] = ACTIONS(1035), + [anon_sym_declare] = ACTIONS(1035), + [anon_sym_public] = ACTIONS(1035), + [anon_sym_private] = ACTIONS(1035), + [anon_sym_protected] = ACTIONS(1035), + [anon_sym_module] = ACTIONS(1035), + [anon_sym_any] = ACTIONS(1035), + [anon_sym_number] = ACTIONS(1035), + [anon_sym_boolean] = ACTIONS(1035), + [anon_sym_string] = ACTIONS(1035), + [anon_sym_symbol] = ACTIONS(1035), + [anon_sym_interface] = ACTIONS(1035), + [anon_sym_enum] = ACTIONS(1035), + [sym_readonly] = ACTIONS(1035), + }, + [580] = { [ts_builtin_sym_end] = ACTIONS(1971), [sym_identifier] = ACTIONS(1973), [anon_sym_export] = ACTIONS(1973), @@ -63688,161 +63896,84 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(1973), [sym_readonly] = ACTIONS(1973), }, - [579] = { - [ts_builtin_sym_end] = ACTIONS(1085), - [sym_identifier] = ACTIONS(1087), - [anon_sym_export] = ACTIONS(1087), - [anon_sym_default] = ACTIONS(1087), - [anon_sym_namespace] = ACTIONS(1087), - [anon_sym_LBRACE] = ACTIONS(1085), - [anon_sym_RBRACE] = ACTIONS(1085), - [anon_sym_type] = ACTIONS(1087), - [anon_sym_typeof] = ACTIONS(1087), - [anon_sym_import] = ACTIONS(1087), - [anon_sym_var] = ACTIONS(1087), - [anon_sym_let] = ACTIONS(1087), - [anon_sym_const] = ACTIONS(1087), - [anon_sym_BANG] = ACTIONS(1085), - [anon_sym_else] = ACTIONS(1087), - [anon_sym_if] = ACTIONS(1087), - [anon_sym_switch] = ACTIONS(1087), - [anon_sym_for] = ACTIONS(1087), - [anon_sym_LPAREN] = ACTIONS(1085), - [anon_sym_await] = ACTIONS(1087), - [anon_sym_while] = ACTIONS(1087), - [anon_sym_do] = ACTIONS(1087), - [anon_sym_try] = ACTIONS(1087), - [anon_sym_with] = ACTIONS(1087), - [anon_sym_break] = ACTIONS(1087), - [anon_sym_continue] = ACTIONS(1087), - [anon_sym_debugger] = ACTIONS(1087), - [anon_sym_return] = ACTIONS(1087), - [anon_sym_throw] = ACTIONS(1087), - [anon_sym_SEMI] = ACTIONS(1085), - [anon_sym_case] = ACTIONS(1087), - [anon_sym_yield] = ACTIONS(1087), - [anon_sym_LBRACK] = ACTIONS(1085), - [anon_sym_LT] = ACTIONS(1085), - [anon_sym_SLASH] = ACTIONS(1087), - [anon_sym_class] = ACTIONS(1087), - [anon_sym_async] = ACTIONS(1087), - [anon_sym_function] = ACTIONS(1087), - [anon_sym_new] = ACTIONS(1087), - [anon_sym_PLUS] = ACTIONS(1087), - [anon_sym_DASH] = ACTIONS(1087), - [anon_sym_TILDE] = ACTIONS(1085), - [anon_sym_void] = ACTIONS(1087), - [anon_sym_delete] = ACTIONS(1087), - [anon_sym_PLUS_PLUS] = ACTIONS(1085), - [anon_sym_DASH_DASH] = ACTIONS(1085), - [anon_sym_DQUOTE] = ACTIONS(1085), - [anon_sym_SQUOTE] = ACTIONS(1085), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1085), - [sym_number] = ACTIONS(1085), - [sym_this] = ACTIONS(1087), - [sym_super] = ACTIONS(1087), - [sym_true] = ACTIONS(1087), - [sym_false] = ACTIONS(1087), - [sym_null] = ACTIONS(1087), - [sym_undefined] = ACTIONS(1087), - [anon_sym_AT] = ACTIONS(1085), - [anon_sym_static] = ACTIONS(1087), - [anon_sym_abstract] = ACTIONS(1087), - [anon_sym_get] = ACTIONS(1087), - [anon_sym_set] = ACTIONS(1087), - [anon_sym_declare] = ACTIONS(1087), - [anon_sym_public] = ACTIONS(1087), - [anon_sym_private] = ACTIONS(1087), - [anon_sym_protected] = ACTIONS(1087), - [anon_sym_module] = ACTIONS(1087), - [anon_sym_any] = ACTIONS(1087), - [anon_sym_number] = ACTIONS(1087), - [anon_sym_boolean] = ACTIONS(1087), - [anon_sym_string] = ACTIONS(1087), - [anon_sym_symbol] = ACTIONS(1087), - [anon_sym_interface] = ACTIONS(1087), - [anon_sym_enum] = ACTIONS(1087), - [sym_readonly] = ACTIONS(1087), - }, - [580] = { - [ts_builtin_sym_end] = ACTIONS(999), - [sym_identifier] = ACTIONS(1001), - [anon_sym_export] = ACTIONS(1001), - [anon_sym_default] = ACTIONS(1001), - [anon_sym_namespace] = ACTIONS(1001), - [anon_sym_LBRACE] = ACTIONS(999), - [anon_sym_RBRACE] = ACTIONS(999), - [anon_sym_type] = ACTIONS(1001), - [anon_sym_typeof] = ACTIONS(1001), - [anon_sym_import] = ACTIONS(1001), - [anon_sym_var] = ACTIONS(1001), - [anon_sym_let] = ACTIONS(1001), - [anon_sym_const] = ACTIONS(1001), - [anon_sym_BANG] = ACTIONS(999), - [anon_sym_else] = ACTIONS(1001), - [anon_sym_if] = ACTIONS(1001), - [anon_sym_switch] = ACTIONS(1001), - [anon_sym_for] = ACTIONS(1001), - [anon_sym_LPAREN] = ACTIONS(999), - [anon_sym_await] = ACTIONS(1001), - [anon_sym_while] = ACTIONS(1001), - [anon_sym_do] = ACTIONS(1001), - [anon_sym_try] = ACTIONS(1001), - [anon_sym_with] = ACTIONS(1001), - [anon_sym_break] = ACTIONS(1001), - [anon_sym_continue] = ACTIONS(1001), - [anon_sym_debugger] = ACTIONS(1001), - [anon_sym_return] = ACTIONS(1001), - [anon_sym_throw] = ACTIONS(1001), - [anon_sym_SEMI] = ACTIONS(999), - [anon_sym_case] = ACTIONS(1001), - [anon_sym_yield] = ACTIONS(1001), - [anon_sym_LBRACK] = ACTIONS(999), - [anon_sym_LT] = ACTIONS(999), - [anon_sym_SLASH] = ACTIONS(1001), - [anon_sym_class] = ACTIONS(1001), - [anon_sym_async] = ACTIONS(1001), - [anon_sym_function] = ACTIONS(1001), - [anon_sym_new] = ACTIONS(1001), - [anon_sym_PLUS] = ACTIONS(1001), - [anon_sym_DASH] = ACTIONS(1001), - [anon_sym_TILDE] = ACTIONS(999), - [anon_sym_void] = ACTIONS(1001), - [anon_sym_delete] = ACTIONS(1001), - [anon_sym_PLUS_PLUS] = ACTIONS(999), - [anon_sym_DASH_DASH] = ACTIONS(999), - [anon_sym_DQUOTE] = ACTIONS(999), - [anon_sym_SQUOTE] = ACTIONS(999), + [581] = { + [ts_builtin_sym_end] = ACTIONS(1111), + [sym_identifier] = ACTIONS(1113), + [anon_sym_export] = ACTIONS(1113), + [anon_sym_default] = ACTIONS(1113), + [anon_sym_namespace] = ACTIONS(1113), + [anon_sym_LBRACE] = ACTIONS(1111), + [anon_sym_RBRACE] = ACTIONS(1111), + [anon_sym_type] = ACTIONS(1113), + [anon_sym_typeof] = ACTIONS(1113), + [anon_sym_import] = ACTIONS(1113), + [anon_sym_var] = ACTIONS(1113), + [anon_sym_let] = ACTIONS(1113), + [anon_sym_const] = ACTIONS(1113), + [anon_sym_BANG] = ACTIONS(1111), + [anon_sym_else] = ACTIONS(1113), + [anon_sym_if] = ACTIONS(1113), + [anon_sym_switch] = ACTIONS(1113), + [anon_sym_for] = ACTIONS(1113), + [anon_sym_LPAREN] = ACTIONS(1111), + [anon_sym_await] = ACTIONS(1113), + [anon_sym_while] = ACTIONS(1113), + [anon_sym_do] = ACTIONS(1113), + [anon_sym_try] = ACTIONS(1113), + [anon_sym_with] = ACTIONS(1113), + [anon_sym_break] = ACTIONS(1113), + [anon_sym_continue] = ACTIONS(1113), + [anon_sym_debugger] = ACTIONS(1113), + [anon_sym_return] = ACTIONS(1113), + [anon_sym_throw] = ACTIONS(1113), + [anon_sym_SEMI] = ACTIONS(1111), + [anon_sym_case] = ACTIONS(1113), + [anon_sym_yield] = ACTIONS(1113), + [anon_sym_LBRACK] = ACTIONS(1111), + [anon_sym_LT] = ACTIONS(1111), + [anon_sym_SLASH] = ACTIONS(1113), + [anon_sym_class] = ACTIONS(1113), + [anon_sym_async] = ACTIONS(1113), + [anon_sym_function] = ACTIONS(1113), + [anon_sym_new] = ACTIONS(1113), + [anon_sym_PLUS] = ACTIONS(1113), + [anon_sym_DASH] = ACTIONS(1113), + [anon_sym_TILDE] = ACTIONS(1111), + [anon_sym_void] = ACTIONS(1113), + [anon_sym_delete] = ACTIONS(1113), + [anon_sym_PLUS_PLUS] = ACTIONS(1111), + [anon_sym_DASH_DASH] = ACTIONS(1111), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_SQUOTE] = ACTIONS(1111), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(999), - [sym_number] = ACTIONS(999), - [sym_this] = ACTIONS(1001), - [sym_super] = ACTIONS(1001), - [sym_true] = ACTIONS(1001), - [sym_false] = ACTIONS(1001), - [sym_null] = ACTIONS(1001), - [sym_undefined] = ACTIONS(1001), - [anon_sym_AT] = ACTIONS(999), - [anon_sym_static] = ACTIONS(1001), - [anon_sym_abstract] = ACTIONS(1001), - [anon_sym_get] = ACTIONS(1001), - [anon_sym_set] = ACTIONS(1001), - [anon_sym_declare] = ACTIONS(1001), - [anon_sym_public] = ACTIONS(1001), - [anon_sym_private] = ACTIONS(1001), - [anon_sym_protected] = ACTIONS(1001), - [anon_sym_module] = ACTIONS(1001), - [anon_sym_any] = ACTIONS(1001), - [anon_sym_number] = ACTIONS(1001), - [anon_sym_boolean] = ACTIONS(1001), - [anon_sym_string] = ACTIONS(1001), - [anon_sym_symbol] = ACTIONS(1001), - [anon_sym_interface] = ACTIONS(1001), - [anon_sym_enum] = ACTIONS(1001), - [sym_readonly] = ACTIONS(1001), + [anon_sym_BQUOTE] = ACTIONS(1111), + [sym_number] = ACTIONS(1111), + [sym_this] = ACTIONS(1113), + [sym_super] = ACTIONS(1113), + [sym_true] = ACTIONS(1113), + [sym_false] = ACTIONS(1113), + [sym_null] = ACTIONS(1113), + [sym_undefined] = ACTIONS(1113), + [anon_sym_AT] = ACTIONS(1111), + [anon_sym_static] = ACTIONS(1113), + [anon_sym_abstract] = ACTIONS(1113), + [anon_sym_get] = ACTIONS(1113), + [anon_sym_set] = ACTIONS(1113), + [anon_sym_declare] = ACTIONS(1113), + [anon_sym_public] = ACTIONS(1113), + [anon_sym_private] = ACTIONS(1113), + [anon_sym_protected] = ACTIONS(1113), + [anon_sym_module] = ACTIONS(1113), + [anon_sym_any] = ACTIONS(1113), + [anon_sym_number] = ACTIONS(1113), + [anon_sym_boolean] = ACTIONS(1113), + [anon_sym_string] = ACTIONS(1113), + [anon_sym_symbol] = ACTIONS(1113), + [anon_sym_interface] = ACTIONS(1113), + [anon_sym_enum] = ACTIONS(1113), + [sym_readonly] = ACTIONS(1113), }, - [581] = { + [582] = { [ts_builtin_sym_end] = ACTIONS(1975), [sym_identifier] = ACTIONS(1977), [anon_sym_export] = ACTIONS(1977), @@ -63919,7 +64050,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(1977), [sym_readonly] = ACTIONS(1977), }, - [582] = { + [583] = { [ts_builtin_sym_end] = ACTIONS(1979), [sym_identifier] = ACTIONS(1981), [anon_sym_export] = ACTIONS(1981), @@ -63996,7 +64127,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(1981), [sym_readonly] = ACTIONS(1981), }, - [583] = { + [584] = { [ts_builtin_sym_end] = ACTIONS(1983), [sym_identifier] = ACTIONS(1985), [anon_sym_export] = ACTIONS(1985), @@ -64073,7 +64204,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(1985), [sym_readonly] = ACTIONS(1985), }, - [584] = { + [585] = { [ts_builtin_sym_end] = ACTIONS(1987), [sym_identifier] = ACTIONS(1989), [anon_sym_export] = ACTIONS(1989), @@ -64150,7 +64281,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(1989), [sym_readonly] = ACTIONS(1989), }, - [585] = { + [586] = { [ts_builtin_sym_end] = ACTIONS(1991), [sym_identifier] = ACTIONS(1993), [anon_sym_export] = ACTIONS(1993), @@ -64227,7 +64358,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(1993), [sym_readonly] = ACTIONS(1993), }, - [586] = { + [587] = { [ts_builtin_sym_end] = ACTIONS(1995), [sym_identifier] = ACTIONS(1997), [anon_sym_export] = ACTIONS(1997), @@ -64304,7 +64435,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(1997), [sym_readonly] = ACTIONS(1997), }, - [587] = { + [588] = { [ts_builtin_sym_end] = ACTIONS(1999), [sym_identifier] = ACTIONS(2001), [anon_sym_export] = ACTIONS(2001), @@ -64381,7 +64512,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2001), [sym_readonly] = ACTIONS(2001), }, - [588] = { + [589] = { [ts_builtin_sym_end] = ACTIONS(2003), [sym_identifier] = ACTIONS(2005), [anon_sym_export] = ACTIONS(2005), @@ -64458,83 +64589,6 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2005), [sym_readonly] = ACTIONS(2005), }, - [589] = { - [ts_builtin_sym_end] = ACTIONS(1075), - [sym_identifier] = ACTIONS(1077), - [anon_sym_export] = ACTIONS(1077), - [anon_sym_default] = ACTIONS(1077), - [anon_sym_namespace] = ACTIONS(1077), - [anon_sym_LBRACE] = ACTIONS(1075), - [anon_sym_RBRACE] = ACTIONS(1075), - [anon_sym_type] = ACTIONS(1077), - [anon_sym_typeof] = ACTIONS(1077), - [anon_sym_import] = ACTIONS(1077), - [anon_sym_var] = ACTIONS(1077), - [anon_sym_let] = ACTIONS(1077), - [anon_sym_const] = ACTIONS(1077), - [anon_sym_BANG] = ACTIONS(1075), - [anon_sym_else] = ACTIONS(1077), - [anon_sym_if] = ACTIONS(1077), - [anon_sym_switch] = ACTIONS(1077), - [anon_sym_for] = ACTIONS(1077), - [anon_sym_LPAREN] = ACTIONS(1075), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_while] = ACTIONS(1077), - [anon_sym_do] = ACTIONS(1077), - [anon_sym_try] = ACTIONS(1077), - [anon_sym_with] = ACTIONS(1077), - [anon_sym_break] = ACTIONS(1077), - [anon_sym_continue] = ACTIONS(1077), - [anon_sym_debugger] = ACTIONS(1077), - [anon_sym_return] = ACTIONS(1077), - [anon_sym_throw] = ACTIONS(1077), - [anon_sym_SEMI] = ACTIONS(1075), - [anon_sym_case] = ACTIONS(1077), - [anon_sym_yield] = ACTIONS(1077), - [anon_sym_LBRACK] = ACTIONS(1075), - [anon_sym_LT] = ACTIONS(1075), - [anon_sym_SLASH] = ACTIONS(1077), - [anon_sym_class] = ACTIONS(1077), - [anon_sym_async] = ACTIONS(1077), - [anon_sym_function] = ACTIONS(1077), - [anon_sym_new] = ACTIONS(1077), - [anon_sym_PLUS] = ACTIONS(1077), - [anon_sym_DASH] = ACTIONS(1077), - [anon_sym_TILDE] = ACTIONS(1075), - [anon_sym_void] = ACTIONS(1077), - [anon_sym_delete] = ACTIONS(1077), - [anon_sym_PLUS_PLUS] = ACTIONS(1075), - [anon_sym_DASH_DASH] = ACTIONS(1075), - [anon_sym_DQUOTE] = ACTIONS(1075), - [anon_sym_SQUOTE] = ACTIONS(1075), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1075), - [sym_number] = ACTIONS(1075), - [sym_this] = ACTIONS(1077), - [sym_super] = ACTIONS(1077), - [sym_true] = ACTIONS(1077), - [sym_false] = ACTIONS(1077), - [sym_null] = ACTIONS(1077), - [sym_undefined] = ACTIONS(1077), - [anon_sym_AT] = ACTIONS(1075), - [anon_sym_static] = ACTIONS(1077), - [anon_sym_abstract] = ACTIONS(1077), - [anon_sym_get] = ACTIONS(1077), - [anon_sym_set] = ACTIONS(1077), - [anon_sym_declare] = ACTIONS(1077), - [anon_sym_public] = ACTIONS(1077), - [anon_sym_private] = ACTIONS(1077), - [anon_sym_protected] = ACTIONS(1077), - [anon_sym_module] = ACTIONS(1077), - [anon_sym_any] = ACTIONS(1077), - [anon_sym_number] = ACTIONS(1077), - [anon_sym_boolean] = ACTIONS(1077), - [anon_sym_string] = ACTIONS(1077), - [anon_sym_symbol] = ACTIONS(1077), - [anon_sym_interface] = ACTIONS(1077), - [anon_sym_enum] = ACTIONS(1077), - [sym_readonly] = ACTIONS(1077), - }, [590] = { [ts_builtin_sym_end] = ACTIONS(2007), [sym_identifier] = ACTIONS(2009), @@ -65152,83 +65206,6 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_readonly] = ACTIONS(2037), }, [598] = { - [ts_builtin_sym_end] = ACTIONS(1093), - [sym_identifier] = ACTIONS(1095), - [anon_sym_export] = ACTIONS(1095), - [anon_sym_default] = ACTIONS(1095), - [anon_sym_namespace] = ACTIONS(1095), - [anon_sym_LBRACE] = ACTIONS(1093), - [anon_sym_RBRACE] = ACTIONS(1093), - [anon_sym_type] = ACTIONS(1095), - [anon_sym_typeof] = ACTIONS(1095), - [anon_sym_import] = ACTIONS(1095), - [anon_sym_var] = ACTIONS(1095), - [anon_sym_let] = ACTIONS(1095), - [anon_sym_const] = ACTIONS(1095), - [anon_sym_BANG] = ACTIONS(1093), - [anon_sym_else] = ACTIONS(1095), - [anon_sym_if] = ACTIONS(1095), - [anon_sym_switch] = ACTIONS(1095), - [anon_sym_for] = ACTIONS(1095), - [anon_sym_LPAREN] = ACTIONS(1093), - [anon_sym_await] = ACTIONS(1095), - [anon_sym_while] = ACTIONS(1095), - [anon_sym_do] = ACTIONS(1095), - [anon_sym_try] = ACTIONS(1095), - [anon_sym_with] = ACTIONS(1095), - [anon_sym_break] = ACTIONS(1095), - [anon_sym_continue] = ACTIONS(1095), - [anon_sym_debugger] = ACTIONS(1095), - [anon_sym_return] = ACTIONS(1095), - [anon_sym_throw] = ACTIONS(1095), - [anon_sym_SEMI] = ACTIONS(1093), - [anon_sym_case] = ACTIONS(1095), - [anon_sym_yield] = ACTIONS(1095), - [anon_sym_LBRACK] = ACTIONS(1093), - [anon_sym_LT] = ACTIONS(1093), - [anon_sym_SLASH] = ACTIONS(1095), - [anon_sym_class] = ACTIONS(1095), - [anon_sym_async] = ACTIONS(1095), - [anon_sym_function] = ACTIONS(1095), - [anon_sym_new] = ACTIONS(1095), - [anon_sym_PLUS] = ACTIONS(1095), - [anon_sym_DASH] = ACTIONS(1095), - [anon_sym_TILDE] = ACTIONS(1093), - [anon_sym_void] = ACTIONS(1095), - [anon_sym_delete] = ACTIONS(1095), - [anon_sym_PLUS_PLUS] = ACTIONS(1093), - [anon_sym_DASH_DASH] = ACTIONS(1093), - [anon_sym_DQUOTE] = ACTIONS(1093), - [anon_sym_SQUOTE] = ACTIONS(1093), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1093), - [sym_number] = ACTIONS(1093), - [sym_this] = ACTIONS(1095), - [sym_super] = ACTIONS(1095), - [sym_true] = ACTIONS(1095), - [sym_false] = ACTIONS(1095), - [sym_null] = ACTIONS(1095), - [sym_undefined] = ACTIONS(1095), - [anon_sym_AT] = ACTIONS(1093), - [anon_sym_static] = ACTIONS(1095), - [anon_sym_abstract] = ACTIONS(1095), - [anon_sym_get] = ACTIONS(1095), - [anon_sym_set] = ACTIONS(1095), - [anon_sym_declare] = ACTIONS(1095), - [anon_sym_public] = ACTIONS(1095), - [anon_sym_private] = ACTIONS(1095), - [anon_sym_protected] = ACTIONS(1095), - [anon_sym_module] = ACTIONS(1095), - [anon_sym_any] = ACTIONS(1095), - [anon_sym_number] = ACTIONS(1095), - [anon_sym_boolean] = ACTIONS(1095), - [anon_sym_string] = ACTIONS(1095), - [anon_sym_symbol] = ACTIONS(1095), - [anon_sym_interface] = ACTIONS(1095), - [anon_sym_enum] = ACTIONS(1095), - [sym_readonly] = ACTIONS(1095), - }, - [599] = { [ts_builtin_sym_end] = ACTIONS(2039), [sym_identifier] = ACTIONS(2041), [anon_sym_export] = ACTIONS(2041), @@ -65305,6 +65282,83 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2041), [sym_readonly] = ACTIONS(2041), }, + [599] = { + [ts_builtin_sym_end] = ACTIONS(995), + [sym_identifier] = ACTIONS(997), + [anon_sym_export] = ACTIONS(997), + [anon_sym_default] = ACTIONS(997), + [anon_sym_namespace] = ACTIONS(997), + [anon_sym_LBRACE] = ACTIONS(995), + [anon_sym_RBRACE] = ACTIONS(995), + [anon_sym_type] = ACTIONS(997), + [anon_sym_typeof] = ACTIONS(997), + [anon_sym_import] = ACTIONS(997), + [anon_sym_var] = ACTIONS(997), + [anon_sym_let] = ACTIONS(997), + [anon_sym_const] = ACTIONS(997), + [anon_sym_BANG] = ACTIONS(995), + [anon_sym_else] = ACTIONS(997), + [anon_sym_if] = ACTIONS(997), + [anon_sym_switch] = ACTIONS(997), + [anon_sym_for] = ACTIONS(997), + [anon_sym_LPAREN] = ACTIONS(995), + [anon_sym_await] = ACTIONS(997), + [anon_sym_while] = ACTIONS(997), + [anon_sym_do] = ACTIONS(997), + [anon_sym_try] = ACTIONS(997), + [anon_sym_with] = ACTIONS(997), + [anon_sym_break] = ACTIONS(997), + [anon_sym_continue] = ACTIONS(997), + [anon_sym_debugger] = ACTIONS(997), + [anon_sym_return] = ACTIONS(997), + [anon_sym_throw] = ACTIONS(997), + [anon_sym_SEMI] = ACTIONS(995), + [anon_sym_case] = ACTIONS(997), + [anon_sym_yield] = ACTIONS(997), + [anon_sym_LBRACK] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(995), + [anon_sym_SLASH] = ACTIONS(997), + [anon_sym_class] = ACTIONS(997), + [anon_sym_async] = ACTIONS(997), + [anon_sym_function] = ACTIONS(997), + [anon_sym_new] = ACTIONS(997), + [anon_sym_PLUS] = ACTIONS(997), + [anon_sym_DASH] = ACTIONS(997), + [anon_sym_TILDE] = ACTIONS(995), + [anon_sym_void] = ACTIONS(997), + [anon_sym_delete] = ACTIONS(997), + [anon_sym_PLUS_PLUS] = ACTIONS(995), + [anon_sym_DASH_DASH] = ACTIONS(995), + [anon_sym_DQUOTE] = ACTIONS(995), + [anon_sym_SQUOTE] = ACTIONS(995), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(995), + [sym_number] = ACTIONS(995), + [sym_this] = ACTIONS(997), + [sym_super] = ACTIONS(997), + [sym_true] = ACTIONS(997), + [sym_false] = ACTIONS(997), + [sym_null] = ACTIONS(997), + [sym_undefined] = ACTIONS(997), + [anon_sym_AT] = ACTIONS(995), + [anon_sym_static] = ACTIONS(997), + [anon_sym_abstract] = ACTIONS(997), + [anon_sym_get] = ACTIONS(997), + [anon_sym_set] = ACTIONS(997), + [anon_sym_declare] = ACTIONS(997), + [anon_sym_public] = ACTIONS(997), + [anon_sym_private] = ACTIONS(997), + [anon_sym_protected] = ACTIONS(997), + [anon_sym_module] = ACTIONS(997), + [anon_sym_any] = ACTIONS(997), + [anon_sym_number] = ACTIONS(997), + [anon_sym_boolean] = ACTIONS(997), + [anon_sym_string] = ACTIONS(997), + [anon_sym_symbol] = ACTIONS(997), + [anon_sym_interface] = ACTIONS(997), + [anon_sym_enum] = ACTIONS(997), + [sym_readonly] = ACTIONS(997), + }, [600] = { [ts_builtin_sym_end] = ACTIONS(2043), [sym_identifier] = ACTIONS(2045), @@ -66461,132 +66515,440 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_readonly] = ACTIONS(2101), }, [615] = { - [ts_builtin_sym_end] = ACTIONS(1111), - [sym_identifier] = ACTIONS(1113), - [anon_sym_export] = ACTIONS(1113), - [anon_sym_default] = ACTIONS(1113), - [anon_sym_namespace] = ACTIONS(1113), - [anon_sym_LBRACE] = ACTIONS(1111), - [anon_sym_RBRACE] = ACTIONS(1111), - [anon_sym_type] = ACTIONS(1113), - [anon_sym_typeof] = ACTIONS(1113), - [anon_sym_import] = ACTIONS(1113), - [anon_sym_var] = ACTIONS(1113), - [anon_sym_let] = ACTIONS(1113), - [anon_sym_const] = ACTIONS(1113), - [anon_sym_BANG] = ACTIONS(1111), - [anon_sym_else] = ACTIONS(1113), - [anon_sym_if] = ACTIONS(1113), - [anon_sym_switch] = ACTIONS(1113), - [anon_sym_for] = ACTIONS(1113), - [anon_sym_LPAREN] = ACTIONS(1111), - [anon_sym_await] = ACTIONS(1113), - [anon_sym_while] = ACTIONS(1113), - [anon_sym_do] = ACTIONS(1113), - [anon_sym_try] = ACTIONS(1113), - [anon_sym_with] = ACTIONS(1113), - [anon_sym_break] = ACTIONS(1113), - [anon_sym_continue] = ACTIONS(1113), - [anon_sym_debugger] = ACTIONS(1113), - [anon_sym_return] = ACTIONS(1113), - [anon_sym_throw] = ACTIONS(1113), - [anon_sym_SEMI] = ACTIONS(1111), - [anon_sym_case] = ACTIONS(1113), - [anon_sym_yield] = ACTIONS(1113), - [anon_sym_LBRACK] = ACTIONS(1111), - [anon_sym_LT] = ACTIONS(1111), - [anon_sym_SLASH] = ACTIONS(1113), - [anon_sym_class] = ACTIONS(1113), - [anon_sym_async] = ACTIONS(1113), - [anon_sym_function] = ACTIONS(1113), - [anon_sym_new] = ACTIONS(1113), - [anon_sym_PLUS] = ACTIONS(1113), - [anon_sym_DASH] = ACTIONS(1113), - [anon_sym_TILDE] = ACTIONS(1111), - [anon_sym_void] = ACTIONS(1113), - [anon_sym_delete] = ACTIONS(1113), - [anon_sym_PLUS_PLUS] = ACTIONS(1111), - [anon_sym_DASH_DASH] = ACTIONS(1111), - [anon_sym_DQUOTE] = ACTIONS(1111), - [anon_sym_SQUOTE] = ACTIONS(1111), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(1111), - [sym_this] = ACTIONS(1113), - [sym_super] = ACTIONS(1113), - [sym_true] = ACTIONS(1113), - [sym_false] = ACTIONS(1113), - [sym_null] = ACTIONS(1113), - [sym_undefined] = ACTIONS(1113), - [anon_sym_AT] = ACTIONS(1111), - [anon_sym_static] = ACTIONS(1113), - [anon_sym_abstract] = ACTIONS(1113), - [anon_sym_get] = ACTIONS(1113), - [anon_sym_set] = ACTIONS(1113), - [anon_sym_declare] = ACTIONS(1113), - [anon_sym_public] = ACTIONS(1113), - [anon_sym_private] = ACTIONS(1113), - [anon_sym_protected] = ACTIONS(1113), - [anon_sym_module] = ACTIONS(1113), - [anon_sym_any] = ACTIONS(1113), - [anon_sym_number] = ACTIONS(1113), - [anon_sym_boolean] = ACTIONS(1113), - [anon_sym_string] = ACTIONS(1113), - [anon_sym_symbol] = ACTIONS(1113), - [anon_sym_interface] = ACTIONS(1113), - [anon_sym_enum] = ACTIONS(1113), - [sym_readonly] = ACTIONS(1113), + [ts_builtin_sym_end] = ACTIONS(2103), + [sym_identifier] = ACTIONS(2105), + [anon_sym_export] = ACTIONS(2105), + [anon_sym_default] = ACTIONS(2105), + [anon_sym_namespace] = ACTIONS(2105), + [anon_sym_LBRACE] = ACTIONS(2103), + [anon_sym_RBRACE] = ACTIONS(2103), + [anon_sym_type] = ACTIONS(2105), + [anon_sym_typeof] = ACTIONS(2105), + [anon_sym_import] = ACTIONS(2105), + [anon_sym_var] = ACTIONS(2105), + [anon_sym_let] = ACTIONS(2105), + [anon_sym_const] = ACTIONS(2105), + [anon_sym_BANG] = ACTIONS(2103), + [anon_sym_else] = ACTIONS(2105), + [anon_sym_if] = ACTIONS(2105), + [anon_sym_switch] = ACTIONS(2105), + [anon_sym_for] = ACTIONS(2105), + [anon_sym_LPAREN] = ACTIONS(2103), + [anon_sym_await] = ACTIONS(2105), + [anon_sym_while] = ACTIONS(2105), + [anon_sym_do] = ACTIONS(2105), + [anon_sym_try] = ACTIONS(2105), + [anon_sym_with] = ACTIONS(2105), + [anon_sym_break] = ACTIONS(2105), + [anon_sym_continue] = ACTIONS(2105), + [anon_sym_debugger] = ACTIONS(2105), + [anon_sym_return] = ACTIONS(2105), + [anon_sym_throw] = ACTIONS(2105), + [anon_sym_SEMI] = ACTIONS(2103), + [anon_sym_case] = ACTIONS(2105), + [anon_sym_yield] = ACTIONS(2105), + [anon_sym_LBRACK] = ACTIONS(2103), + [anon_sym_LT] = ACTIONS(2103), + [anon_sym_SLASH] = ACTIONS(2105), + [anon_sym_class] = ACTIONS(2105), + [anon_sym_async] = ACTIONS(2105), + [anon_sym_function] = ACTIONS(2105), + [anon_sym_new] = ACTIONS(2105), + [anon_sym_PLUS] = ACTIONS(2105), + [anon_sym_DASH] = ACTIONS(2105), + [anon_sym_TILDE] = ACTIONS(2103), + [anon_sym_void] = ACTIONS(2105), + [anon_sym_delete] = ACTIONS(2105), + [anon_sym_PLUS_PLUS] = ACTIONS(2103), + [anon_sym_DASH_DASH] = ACTIONS(2103), + [anon_sym_DQUOTE] = ACTIONS(2103), + [anon_sym_SQUOTE] = ACTIONS(2103), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2103), + [sym_number] = ACTIONS(2103), + [sym_this] = ACTIONS(2105), + [sym_super] = ACTIONS(2105), + [sym_true] = ACTIONS(2105), + [sym_false] = ACTIONS(2105), + [sym_null] = ACTIONS(2105), + [sym_undefined] = ACTIONS(2105), + [anon_sym_AT] = ACTIONS(2103), + [anon_sym_static] = ACTIONS(2105), + [anon_sym_abstract] = ACTIONS(2105), + [anon_sym_get] = ACTIONS(2105), + [anon_sym_set] = ACTIONS(2105), + [anon_sym_declare] = ACTIONS(2105), + [anon_sym_public] = ACTIONS(2105), + [anon_sym_private] = ACTIONS(2105), + [anon_sym_protected] = ACTIONS(2105), + [anon_sym_module] = ACTIONS(2105), + [anon_sym_any] = ACTIONS(2105), + [anon_sym_number] = ACTIONS(2105), + [anon_sym_boolean] = ACTIONS(2105), + [anon_sym_string] = ACTIONS(2105), + [anon_sym_symbol] = ACTIONS(2105), + [anon_sym_interface] = ACTIONS(2105), + [anon_sym_enum] = ACTIONS(2105), + [sym_readonly] = ACTIONS(2105), }, [616] = { - [sym_object] = STATE(2322), - [sym_array] = STATE(2325), - [sym_nested_identifier] = STATE(2999), - [sym_string] = STATE(446), - [sym_formal_parameters] = STATE(2996), - [sym_nested_type_identifier] = STATE(1913), - [sym__type] = STATE(2626), - [sym_constructor_type] = STATE(2626), - [sym__primary_type] = STATE(2496), - [sym_conditional_type] = STATE(2496), - [sym_generic_type] = STATE(2496), - [sym_type_query] = STATE(2496), - [sym_index_type_query] = STATE(2496), - [sym_lookup_type] = STATE(2496), - [sym_literal_type] = STATE(2496), - [sym__number] = STATE(446), - [sym_existential_type] = STATE(2496), - [sym_flow_maybe_type] = STATE(2496), - [sym_parenthesized_type] = STATE(2496), - [sym_predefined_type] = STATE(2496), - [sym_object_type] = STATE(2496), - [sym_type_parameters] = STATE(2959), - [sym_array_type] = STATE(2496), - [sym__tuple_type_body] = STATE(426), - [sym_tuple_type] = STATE(2496), - [sym_union_type] = STATE(2626), - [sym_intersection_type] = STATE(2626), - [sym_function_type] = STATE(2626), + [ts_builtin_sym_end] = ACTIONS(2107), + [sym_identifier] = ACTIONS(2109), + [anon_sym_export] = ACTIONS(2109), + [anon_sym_default] = ACTIONS(2109), + [anon_sym_namespace] = ACTIONS(2109), + [anon_sym_LBRACE] = ACTIONS(2107), + [anon_sym_RBRACE] = ACTIONS(2107), + [anon_sym_type] = ACTIONS(2109), + [anon_sym_typeof] = ACTIONS(2109), + [anon_sym_import] = ACTIONS(2109), + [anon_sym_var] = ACTIONS(2109), + [anon_sym_let] = ACTIONS(2109), + [anon_sym_const] = ACTIONS(2109), + [anon_sym_BANG] = ACTIONS(2107), + [anon_sym_else] = ACTIONS(2109), + [anon_sym_if] = ACTIONS(2109), + [anon_sym_switch] = ACTIONS(2109), + [anon_sym_for] = ACTIONS(2109), + [anon_sym_LPAREN] = ACTIONS(2107), + [anon_sym_await] = ACTIONS(2109), + [anon_sym_while] = ACTIONS(2109), + [anon_sym_do] = ACTIONS(2109), + [anon_sym_try] = ACTIONS(2109), + [anon_sym_with] = ACTIONS(2109), + [anon_sym_break] = ACTIONS(2109), + [anon_sym_continue] = ACTIONS(2109), + [anon_sym_debugger] = ACTIONS(2109), + [anon_sym_return] = ACTIONS(2109), + [anon_sym_throw] = ACTIONS(2109), + [anon_sym_SEMI] = ACTIONS(2107), + [anon_sym_case] = ACTIONS(2109), + [anon_sym_yield] = ACTIONS(2109), + [anon_sym_LBRACK] = ACTIONS(2107), + [anon_sym_LT] = ACTIONS(2107), + [anon_sym_SLASH] = ACTIONS(2109), + [anon_sym_class] = ACTIONS(2109), + [anon_sym_async] = ACTIONS(2109), + [anon_sym_function] = ACTIONS(2109), + [anon_sym_new] = ACTIONS(2109), + [anon_sym_PLUS] = ACTIONS(2109), + [anon_sym_DASH] = ACTIONS(2109), + [anon_sym_TILDE] = ACTIONS(2107), + [anon_sym_void] = ACTIONS(2109), + [anon_sym_delete] = ACTIONS(2109), + [anon_sym_PLUS_PLUS] = ACTIONS(2107), + [anon_sym_DASH_DASH] = ACTIONS(2107), + [anon_sym_DQUOTE] = ACTIONS(2107), + [anon_sym_SQUOTE] = ACTIONS(2107), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2107), + [sym_number] = ACTIONS(2107), + [sym_this] = ACTIONS(2109), + [sym_super] = ACTIONS(2109), + [sym_true] = ACTIONS(2109), + [sym_false] = ACTIONS(2109), + [sym_null] = ACTIONS(2109), + [sym_undefined] = ACTIONS(2109), + [anon_sym_AT] = ACTIONS(2107), + [anon_sym_static] = ACTIONS(2109), + [anon_sym_abstract] = ACTIONS(2109), + [anon_sym_get] = ACTIONS(2109), + [anon_sym_set] = ACTIONS(2109), + [anon_sym_declare] = ACTIONS(2109), + [anon_sym_public] = ACTIONS(2109), + [anon_sym_private] = ACTIONS(2109), + [anon_sym_protected] = ACTIONS(2109), + [anon_sym_module] = ACTIONS(2109), + [anon_sym_any] = ACTIONS(2109), + [anon_sym_number] = ACTIONS(2109), + [anon_sym_boolean] = ACTIONS(2109), + [anon_sym_string] = ACTIONS(2109), + [anon_sym_symbol] = ACTIONS(2109), + [anon_sym_interface] = ACTIONS(2109), + [anon_sym_enum] = ACTIONS(2109), + [sym_readonly] = ACTIONS(2109), + }, + [617] = { + [ts_builtin_sym_end] = ACTIONS(1007), + [sym_identifier] = ACTIONS(1009), + [anon_sym_export] = ACTIONS(1009), + [anon_sym_default] = ACTIONS(1009), + [anon_sym_namespace] = ACTIONS(1009), + [anon_sym_LBRACE] = ACTIONS(1007), + [anon_sym_RBRACE] = ACTIONS(1007), + [anon_sym_type] = ACTIONS(1009), + [anon_sym_typeof] = ACTIONS(1009), + [anon_sym_import] = ACTIONS(1009), + [anon_sym_var] = ACTIONS(1009), + [anon_sym_let] = ACTIONS(1009), + [anon_sym_const] = ACTIONS(1009), + [anon_sym_BANG] = ACTIONS(1007), + [anon_sym_else] = ACTIONS(1009), + [anon_sym_if] = ACTIONS(1009), + [anon_sym_switch] = ACTIONS(1009), + [anon_sym_for] = ACTIONS(1009), + [anon_sym_LPAREN] = ACTIONS(1007), + [anon_sym_await] = ACTIONS(1009), + [anon_sym_while] = ACTIONS(1009), + [anon_sym_do] = ACTIONS(1009), + [anon_sym_try] = ACTIONS(1009), + [anon_sym_with] = ACTIONS(1009), + [anon_sym_break] = ACTIONS(1009), + [anon_sym_continue] = ACTIONS(1009), + [anon_sym_debugger] = ACTIONS(1009), + [anon_sym_return] = ACTIONS(1009), + [anon_sym_throw] = ACTIONS(1009), + [anon_sym_SEMI] = ACTIONS(1007), + [anon_sym_case] = ACTIONS(1009), + [anon_sym_yield] = ACTIONS(1009), + [anon_sym_LBRACK] = ACTIONS(1007), + [anon_sym_LT] = ACTIONS(1007), + [anon_sym_SLASH] = ACTIONS(1009), + [anon_sym_class] = ACTIONS(1009), + [anon_sym_async] = ACTIONS(1009), + [anon_sym_function] = ACTIONS(1009), + [anon_sym_new] = ACTIONS(1009), + [anon_sym_PLUS] = ACTIONS(1009), + [anon_sym_DASH] = ACTIONS(1009), + [anon_sym_TILDE] = ACTIONS(1007), + [anon_sym_void] = ACTIONS(1009), + [anon_sym_delete] = ACTIONS(1009), + [anon_sym_PLUS_PLUS] = ACTIONS(1007), + [anon_sym_DASH_DASH] = ACTIONS(1007), + [anon_sym_DQUOTE] = ACTIONS(1007), + [anon_sym_SQUOTE] = ACTIONS(1007), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1007), + [sym_number] = ACTIONS(1007), + [sym_this] = ACTIONS(1009), + [sym_super] = ACTIONS(1009), + [sym_true] = ACTIONS(1009), + [sym_false] = ACTIONS(1009), + [sym_null] = ACTIONS(1009), + [sym_undefined] = ACTIONS(1009), + [anon_sym_AT] = ACTIONS(1007), + [anon_sym_static] = ACTIONS(1009), + [anon_sym_abstract] = ACTIONS(1009), + [anon_sym_get] = ACTIONS(1009), + [anon_sym_set] = ACTIONS(1009), + [anon_sym_declare] = ACTIONS(1009), + [anon_sym_public] = ACTIONS(1009), + [anon_sym_private] = ACTIONS(1009), + [anon_sym_protected] = ACTIONS(1009), + [anon_sym_module] = ACTIONS(1009), + [anon_sym_any] = ACTIONS(1009), + [anon_sym_number] = ACTIONS(1009), + [anon_sym_boolean] = ACTIONS(1009), + [anon_sym_string] = ACTIONS(1009), + [anon_sym_symbol] = ACTIONS(1009), + [anon_sym_interface] = ACTIONS(1009), + [anon_sym_enum] = ACTIONS(1009), + [sym_readonly] = ACTIONS(1009), + }, + [618] = { + [ts_builtin_sym_end] = ACTIONS(2111), + [sym_identifier] = ACTIONS(2113), + [anon_sym_export] = ACTIONS(2113), + [anon_sym_default] = ACTIONS(2113), + [anon_sym_namespace] = ACTIONS(2113), + [anon_sym_LBRACE] = ACTIONS(2111), + [anon_sym_RBRACE] = ACTIONS(2111), + [anon_sym_type] = ACTIONS(2113), + [anon_sym_typeof] = ACTIONS(2113), + [anon_sym_import] = ACTIONS(2113), + [anon_sym_var] = ACTIONS(2113), + [anon_sym_let] = ACTIONS(2113), + [anon_sym_const] = ACTIONS(2113), + [anon_sym_BANG] = ACTIONS(2111), + [anon_sym_else] = ACTIONS(2113), + [anon_sym_if] = ACTIONS(2113), + [anon_sym_switch] = ACTIONS(2113), + [anon_sym_for] = ACTIONS(2113), + [anon_sym_LPAREN] = ACTIONS(2111), + [anon_sym_await] = ACTIONS(2113), + [anon_sym_while] = ACTIONS(2113), + [anon_sym_do] = ACTIONS(2113), + [anon_sym_try] = ACTIONS(2113), + [anon_sym_with] = ACTIONS(2113), + [anon_sym_break] = ACTIONS(2113), + [anon_sym_continue] = ACTIONS(2113), + [anon_sym_debugger] = ACTIONS(2113), + [anon_sym_return] = ACTIONS(2113), + [anon_sym_throw] = ACTIONS(2113), + [anon_sym_SEMI] = ACTIONS(2111), + [anon_sym_case] = ACTIONS(2113), + [anon_sym_yield] = ACTIONS(2113), + [anon_sym_LBRACK] = ACTIONS(2111), + [anon_sym_LT] = ACTIONS(2111), + [anon_sym_SLASH] = ACTIONS(2113), + [anon_sym_class] = ACTIONS(2113), + [anon_sym_async] = ACTIONS(2113), + [anon_sym_function] = ACTIONS(2113), + [anon_sym_new] = ACTIONS(2113), + [anon_sym_PLUS] = ACTIONS(2113), + [anon_sym_DASH] = ACTIONS(2113), + [anon_sym_TILDE] = ACTIONS(2111), + [anon_sym_void] = ACTIONS(2113), + [anon_sym_delete] = ACTIONS(2113), + [anon_sym_PLUS_PLUS] = ACTIONS(2111), + [anon_sym_DASH_DASH] = ACTIONS(2111), + [anon_sym_DQUOTE] = ACTIONS(2111), + [anon_sym_SQUOTE] = ACTIONS(2111), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2111), + [sym_number] = ACTIONS(2111), + [sym_this] = ACTIONS(2113), + [sym_super] = ACTIONS(2113), + [sym_true] = ACTIONS(2113), + [sym_false] = ACTIONS(2113), + [sym_null] = ACTIONS(2113), + [sym_undefined] = ACTIONS(2113), + [anon_sym_AT] = ACTIONS(2111), + [anon_sym_static] = ACTIONS(2113), + [anon_sym_abstract] = ACTIONS(2113), + [anon_sym_get] = ACTIONS(2113), + [anon_sym_set] = ACTIONS(2113), + [anon_sym_declare] = ACTIONS(2113), + [anon_sym_public] = ACTIONS(2113), + [anon_sym_private] = ACTIONS(2113), + [anon_sym_protected] = ACTIONS(2113), + [anon_sym_module] = ACTIONS(2113), + [anon_sym_any] = ACTIONS(2113), + [anon_sym_number] = ACTIONS(2113), + [anon_sym_boolean] = ACTIONS(2113), + [anon_sym_string] = ACTIONS(2113), + [anon_sym_symbol] = ACTIONS(2113), + [anon_sym_interface] = ACTIONS(2113), + [anon_sym_enum] = ACTIONS(2113), + [sym_readonly] = ACTIONS(2113), + }, + [619] = { + [ts_builtin_sym_end] = ACTIONS(2115), + [sym_identifier] = ACTIONS(2117), + [anon_sym_export] = ACTIONS(2117), + [anon_sym_default] = ACTIONS(2117), + [anon_sym_namespace] = ACTIONS(2117), + [anon_sym_LBRACE] = ACTIONS(2115), + [anon_sym_RBRACE] = ACTIONS(2115), + [anon_sym_type] = ACTIONS(2117), + [anon_sym_typeof] = ACTIONS(2117), + [anon_sym_import] = ACTIONS(2117), + [anon_sym_var] = ACTIONS(2117), + [anon_sym_let] = ACTIONS(2117), + [anon_sym_const] = ACTIONS(2117), + [anon_sym_BANG] = ACTIONS(2115), + [anon_sym_else] = ACTIONS(2117), + [anon_sym_if] = ACTIONS(2117), + [anon_sym_switch] = ACTIONS(2117), + [anon_sym_for] = ACTIONS(2117), + [anon_sym_LPAREN] = ACTIONS(2115), + [anon_sym_await] = ACTIONS(2117), + [anon_sym_while] = ACTIONS(2117), + [anon_sym_do] = ACTIONS(2117), + [anon_sym_try] = ACTIONS(2117), + [anon_sym_with] = ACTIONS(2117), + [anon_sym_break] = ACTIONS(2117), + [anon_sym_continue] = ACTIONS(2117), + [anon_sym_debugger] = ACTIONS(2117), + [anon_sym_return] = ACTIONS(2117), + [anon_sym_throw] = ACTIONS(2117), + [anon_sym_SEMI] = ACTIONS(2115), + [anon_sym_case] = ACTIONS(2117), + [anon_sym_yield] = ACTIONS(2117), + [anon_sym_LBRACK] = ACTIONS(2115), + [anon_sym_LT] = ACTIONS(2115), + [anon_sym_SLASH] = ACTIONS(2117), + [anon_sym_class] = ACTIONS(2117), + [anon_sym_async] = ACTIONS(2117), + [anon_sym_function] = ACTIONS(2117), + [anon_sym_new] = ACTIONS(2117), + [anon_sym_PLUS] = ACTIONS(2117), + [anon_sym_DASH] = ACTIONS(2117), + [anon_sym_TILDE] = ACTIONS(2115), + [anon_sym_void] = ACTIONS(2117), + [anon_sym_delete] = ACTIONS(2117), + [anon_sym_PLUS_PLUS] = ACTIONS(2115), + [anon_sym_DASH_DASH] = ACTIONS(2115), + [anon_sym_DQUOTE] = ACTIONS(2115), + [anon_sym_SQUOTE] = ACTIONS(2115), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2115), + [sym_number] = ACTIONS(2115), + [sym_this] = ACTIONS(2117), + [sym_super] = ACTIONS(2117), + [sym_true] = ACTIONS(2117), + [sym_false] = ACTIONS(2117), + [sym_null] = ACTIONS(2117), + [sym_undefined] = ACTIONS(2117), + [anon_sym_AT] = ACTIONS(2115), + [anon_sym_static] = ACTIONS(2117), + [anon_sym_abstract] = ACTIONS(2117), + [anon_sym_get] = ACTIONS(2117), + [anon_sym_set] = ACTIONS(2117), + [anon_sym_declare] = ACTIONS(2117), + [anon_sym_public] = ACTIONS(2117), + [anon_sym_private] = ACTIONS(2117), + [anon_sym_protected] = ACTIONS(2117), + [anon_sym_module] = ACTIONS(2117), + [anon_sym_any] = ACTIONS(2117), + [anon_sym_number] = ACTIONS(2117), + [anon_sym_boolean] = ACTIONS(2117), + [anon_sym_string] = ACTIONS(2117), + [anon_sym_symbol] = ACTIONS(2117), + [anon_sym_interface] = ACTIONS(2117), + [anon_sym_enum] = ACTIONS(2117), + [sym_readonly] = ACTIONS(2117), + }, + [620] = { + [sym_object] = STATE(2357), + [sym_array] = STATE(2356), + [sym_nested_identifier] = STATE(3123), + [sym_string] = STATE(433), + [sym_formal_parameters] = STATE(3122), + [sym_nested_type_identifier] = STATE(1917), + [sym__type] = STATE(2780), + [sym_constructor_type] = STATE(2780), + [sym__primary_type] = STATE(2509), + [sym_conditional_type] = STATE(2509), + [sym_generic_type] = STATE(2509), + [sym_type_query] = STATE(2509), + [sym_index_type_query] = STATE(2509), + [sym_lookup_type] = STATE(2509), + [sym_literal_type] = STATE(2509), + [sym__number] = STATE(433), + [sym_existential_type] = STATE(2509), + [sym_flow_maybe_type] = STATE(2509), + [sym_parenthesized_type] = STATE(2509), + [sym_predefined_type] = STATE(2509), + [sym_object_type] = STATE(2509), + [sym_type_parameters] = STATE(2916), + [sym_array_type] = STATE(2509), + [sym__tuple_type_body] = STATE(424), + [sym_tuple_type] = STATE(2509), + [sym_union_type] = STATE(2780), + [sym_intersection_type] = STATE(2780), + [sym_function_type] = STATE(2780), [sym_identifier] = ACTIONS(799), [anon_sym_export] = ACTIONS(801), [anon_sym_STAR] = ACTIONS(427), - [anon_sym_EQ] = ACTIONS(1728), + [anon_sym_EQ] = ACTIONS(1724), [anon_sym_namespace] = ACTIONS(801), [anon_sym_LBRACE] = ACTIONS(810), - [anon_sym_COMMA] = ACTIONS(1728), + [anon_sym_COMMA] = ACTIONS(1724), [anon_sym_type] = ACTIONS(801), [anon_sym_typeof] = ACTIONS(815), [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_RPAREN] = ACTIONS(1728), - [anon_sym_COLON] = ACTIONS(1728), - [anon_sym_LBRACK] = ACTIONS(1689), - [anon_sym_LT] = ACTIONS(1691), + [anon_sym_RPAREN] = ACTIONS(1724), + [anon_sym_COLON] = ACTIONS(1724), + [anon_sym_LBRACK] = ACTIONS(1676), + [anon_sym_LT] = ACTIONS(1678), [anon_sym_async] = ACTIONS(801), [anon_sym_new] = ACTIONS(829), [anon_sym_QMARK] = ACTIONS(461), [anon_sym_AMP] = ACTIONS(463), [anon_sym_PIPE] = ACTIONS(465), - [anon_sym_PLUS] = ACTIONS(1693), - [anon_sym_DASH] = ACTIONS(1693), + [anon_sym_PLUS] = ACTIONS(1680), + [anon_sym_DASH] = ACTIONS(1680), [anon_sym_void] = ACTIONS(843), [anon_sym_DQUOTE] = ACTIONS(845), [anon_sym_SQUOTE] = ACTIONS(847), @@ -66612,294 +66974,6 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_keyof] = ACTIONS(495), [anon_sym_LBRACE_PIPE] = ACTIONS(497), }, - [617] = { - [sym_identifier] = ACTIONS(2103), - [anon_sym_export] = ACTIONS(2103), - [anon_sym_namespace] = ACTIONS(2103), - [anon_sym_LBRACE] = ACTIONS(2105), - [anon_sym_type] = ACTIONS(2103), - [anon_sym_typeof] = ACTIONS(2103), - [anon_sym_import] = ACTIONS(2103), - [anon_sym_var] = ACTIONS(2103), - [anon_sym_let] = ACTIONS(2103), - [anon_sym_const] = ACTIONS(2103), - [anon_sym_BANG] = ACTIONS(2105), - [anon_sym_if] = ACTIONS(2103), - [anon_sym_switch] = ACTIONS(2103), - [anon_sym_for] = ACTIONS(2103), - [anon_sym_LPAREN] = ACTIONS(2105), - [anon_sym_await] = ACTIONS(2103), - [anon_sym_while] = ACTIONS(2103), - [anon_sym_do] = ACTIONS(2103), - [anon_sym_try] = ACTIONS(2103), - [anon_sym_with] = ACTIONS(2103), - [anon_sym_break] = ACTIONS(2103), - [anon_sym_continue] = ACTIONS(2103), - [anon_sym_debugger] = ACTIONS(2103), - [anon_sym_return] = ACTIONS(2103), - [anon_sym_throw] = ACTIONS(2103), - [anon_sym_SEMI] = ACTIONS(2105), - [anon_sym_yield] = ACTIONS(2103), - [anon_sym_LBRACK] = ACTIONS(2105), - [anon_sym_LT] = ACTIONS(2105), - [anon_sym_SLASH] = ACTIONS(2103), - [anon_sym_class] = ACTIONS(2103), - [anon_sym_async] = ACTIONS(2103), - [anon_sym_function] = ACTIONS(2103), - [anon_sym_new] = ACTIONS(2103), - [anon_sym_PLUS] = ACTIONS(2103), - [anon_sym_DASH] = ACTIONS(2103), - [anon_sym_TILDE] = ACTIONS(2105), - [anon_sym_void] = ACTIONS(2103), - [anon_sym_delete] = ACTIONS(2103), - [anon_sym_PLUS_PLUS] = ACTIONS(2105), - [anon_sym_DASH_DASH] = ACTIONS(2105), - [anon_sym_DQUOTE] = ACTIONS(2105), - [anon_sym_SQUOTE] = ACTIONS(2105), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2105), - [sym_number] = ACTIONS(2105), - [sym_this] = ACTIONS(2103), - [sym_super] = ACTIONS(2103), - [sym_true] = ACTIONS(2103), - [sym_false] = ACTIONS(2103), - [sym_null] = ACTIONS(2103), - [sym_undefined] = ACTIONS(2103), - [anon_sym_AT] = ACTIONS(2105), - [anon_sym_static] = ACTIONS(2103), - [anon_sym_abstract] = ACTIONS(2103), - [anon_sym_get] = ACTIONS(2103), - [anon_sym_set] = ACTIONS(2103), - [anon_sym_declare] = ACTIONS(2103), - [anon_sym_public] = ACTIONS(2103), - [anon_sym_private] = ACTIONS(2103), - [anon_sym_protected] = ACTIONS(2103), - [anon_sym_module] = ACTIONS(2103), - [anon_sym_any] = ACTIONS(2103), - [anon_sym_number] = ACTIONS(2103), - [anon_sym_boolean] = ACTIONS(2103), - [anon_sym_string] = ACTIONS(2103), - [anon_sym_symbol] = ACTIONS(2103), - [anon_sym_interface] = ACTIONS(2103), - [anon_sym_enum] = ACTIONS(2103), - [sym_readonly] = ACTIONS(2103), - }, - [618] = { - [sym_identifier] = ACTIONS(2107), - [anon_sym_export] = ACTIONS(2107), - [anon_sym_namespace] = ACTIONS(2107), - [anon_sym_LBRACE] = ACTIONS(2109), - [anon_sym_type] = ACTIONS(2107), - [anon_sym_typeof] = ACTIONS(2107), - [anon_sym_import] = ACTIONS(2107), - [anon_sym_var] = ACTIONS(2107), - [anon_sym_let] = ACTIONS(2107), - [anon_sym_const] = ACTIONS(2107), - [anon_sym_BANG] = ACTIONS(2109), - [anon_sym_if] = ACTIONS(2107), - [anon_sym_switch] = ACTIONS(2107), - [anon_sym_for] = ACTIONS(2107), - [anon_sym_LPAREN] = ACTIONS(2109), - [anon_sym_await] = ACTIONS(2107), - [anon_sym_while] = ACTIONS(2107), - [anon_sym_do] = ACTIONS(2107), - [anon_sym_try] = ACTIONS(2107), - [anon_sym_with] = ACTIONS(2107), - [anon_sym_break] = ACTIONS(2107), - [anon_sym_continue] = ACTIONS(2107), - [anon_sym_debugger] = ACTIONS(2107), - [anon_sym_return] = ACTIONS(2107), - [anon_sym_throw] = ACTIONS(2107), - [anon_sym_SEMI] = ACTIONS(2109), - [anon_sym_yield] = ACTIONS(2107), - [anon_sym_LBRACK] = ACTIONS(2109), - [anon_sym_LT] = ACTIONS(2109), - [anon_sym_SLASH] = ACTIONS(2107), - [anon_sym_class] = ACTIONS(2107), - [anon_sym_async] = ACTIONS(2107), - [anon_sym_function] = ACTIONS(2107), - [anon_sym_new] = ACTIONS(2107), - [anon_sym_PLUS] = ACTIONS(2107), - [anon_sym_DASH] = ACTIONS(2107), - [anon_sym_TILDE] = ACTIONS(2109), - [anon_sym_void] = ACTIONS(2107), - [anon_sym_delete] = ACTIONS(2107), - [anon_sym_PLUS_PLUS] = ACTIONS(2109), - [anon_sym_DASH_DASH] = ACTIONS(2109), - [anon_sym_DQUOTE] = ACTIONS(2109), - [anon_sym_SQUOTE] = ACTIONS(2109), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2109), - [sym_number] = ACTIONS(2109), - [sym_this] = ACTIONS(2107), - [sym_super] = ACTIONS(2107), - [sym_true] = ACTIONS(2107), - [sym_false] = ACTIONS(2107), - [sym_null] = ACTIONS(2107), - [sym_undefined] = ACTIONS(2107), - [anon_sym_AT] = ACTIONS(2109), - [anon_sym_static] = ACTIONS(2107), - [anon_sym_abstract] = ACTIONS(2107), - [anon_sym_get] = ACTIONS(2107), - [anon_sym_set] = ACTIONS(2107), - [anon_sym_declare] = ACTIONS(2107), - [anon_sym_public] = ACTIONS(2107), - [anon_sym_private] = ACTIONS(2107), - [anon_sym_protected] = ACTIONS(2107), - [anon_sym_module] = ACTIONS(2107), - [anon_sym_any] = ACTIONS(2107), - [anon_sym_number] = ACTIONS(2107), - [anon_sym_boolean] = ACTIONS(2107), - [anon_sym_string] = ACTIONS(2107), - [anon_sym_symbol] = ACTIONS(2107), - [anon_sym_interface] = ACTIONS(2107), - [anon_sym_enum] = ACTIONS(2107), - [sym_readonly] = ACTIONS(2107), - }, - [619] = { - [sym_identifier] = ACTIONS(2111), - [anon_sym_export] = ACTIONS(2111), - [anon_sym_namespace] = ACTIONS(2111), - [anon_sym_LBRACE] = ACTIONS(2113), - [anon_sym_type] = ACTIONS(2111), - [anon_sym_typeof] = ACTIONS(2111), - [anon_sym_import] = ACTIONS(2111), - [anon_sym_var] = ACTIONS(2111), - [anon_sym_let] = ACTIONS(2111), - [anon_sym_const] = ACTIONS(2111), - [anon_sym_BANG] = ACTIONS(2113), - [anon_sym_if] = ACTIONS(2111), - [anon_sym_switch] = ACTIONS(2111), - [anon_sym_for] = ACTIONS(2111), - [anon_sym_LPAREN] = ACTIONS(2113), - [anon_sym_await] = ACTIONS(2111), - [anon_sym_while] = ACTIONS(2111), - [anon_sym_do] = ACTIONS(2111), - [anon_sym_try] = ACTIONS(2111), - [anon_sym_with] = ACTIONS(2111), - [anon_sym_break] = ACTIONS(2111), - [anon_sym_continue] = ACTIONS(2111), - [anon_sym_debugger] = ACTIONS(2111), - [anon_sym_return] = ACTIONS(2111), - [anon_sym_throw] = ACTIONS(2111), - [anon_sym_SEMI] = ACTIONS(2113), - [anon_sym_yield] = ACTIONS(2111), - [anon_sym_LBRACK] = ACTIONS(2113), - [anon_sym_LT] = ACTIONS(2113), - [anon_sym_SLASH] = ACTIONS(2111), - [anon_sym_class] = ACTIONS(2111), - [anon_sym_async] = ACTIONS(2111), - [anon_sym_function] = ACTIONS(2111), - [anon_sym_new] = ACTIONS(2111), - [anon_sym_PLUS] = ACTIONS(2111), - [anon_sym_DASH] = ACTIONS(2111), - [anon_sym_TILDE] = ACTIONS(2113), - [anon_sym_void] = ACTIONS(2111), - [anon_sym_delete] = ACTIONS(2111), - [anon_sym_PLUS_PLUS] = ACTIONS(2113), - [anon_sym_DASH_DASH] = ACTIONS(2113), - [anon_sym_DQUOTE] = ACTIONS(2113), - [anon_sym_SQUOTE] = ACTIONS(2113), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2113), - [sym_number] = ACTIONS(2113), - [sym_this] = ACTIONS(2111), - [sym_super] = ACTIONS(2111), - [sym_true] = ACTIONS(2111), - [sym_false] = ACTIONS(2111), - [sym_null] = ACTIONS(2111), - [sym_undefined] = ACTIONS(2111), - [anon_sym_AT] = ACTIONS(2113), - [anon_sym_static] = ACTIONS(2111), - [anon_sym_abstract] = ACTIONS(2111), - [anon_sym_get] = ACTIONS(2111), - [anon_sym_set] = ACTIONS(2111), - [anon_sym_declare] = ACTIONS(2111), - [anon_sym_public] = ACTIONS(2111), - [anon_sym_private] = ACTIONS(2111), - [anon_sym_protected] = ACTIONS(2111), - [anon_sym_module] = ACTIONS(2111), - [anon_sym_any] = ACTIONS(2111), - [anon_sym_number] = ACTIONS(2111), - [anon_sym_boolean] = ACTIONS(2111), - [anon_sym_string] = ACTIONS(2111), - [anon_sym_symbol] = ACTIONS(2111), - [anon_sym_interface] = ACTIONS(2111), - [anon_sym_enum] = ACTIONS(2111), - [sym_readonly] = ACTIONS(2111), - }, - [620] = { - [sym_identifier] = ACTIONS(2115), - [anon_sym_export] = ACTIONS(2115), - [anon_sym_namespace] = ACTIONS(2115), - [anon_sym_LBRACE] = ACTIONS(2117), - [anon_sym_type] = ACTIONS(2115), - [anon_sym_typeof] = ACTIONS(2115), - [anon_sym_import] = ACTIONS(2115), - [anon_sym_var] = ACTIONS(2115), - [anon_sym_let] = ACTIONS(2115), - [anon_sym_const] = ACTIONS(2115), - [anon_sym_BANG] = ACTIONS(2117), - [anon_sym_if] = ACTIONS(2115), - [anon_sym_switch] = ACTIONS(2115), - [anon_sym_for] = ACTIONS(2115), - [anon_sym_LPAREN] = ACTIONS(2117), - [anon_sym_await] = ACTIONS(2115), - [anon_sym_while] = ACTIONS(2115), - [anon_sym_do] = ACTIONS(2115), - [anon_sym_try] = ACTIONS(2115), - [anon_sym_with] = ACTIONS(2115), - [anon_sym_break] = ACTIONS(2115), - [anon_sym_continue] = ACTIONS(2115), - [anon_sym_debugger] = ACTIONS(2115), - [anon_sym_return] = ACTIONS(2115), - [anon_sym_throw] = ACTIONS(2115), - [anon_sym_SEMI] = ACTIONS(2117), - [anon_sym_yield] = ACTIONS(2115), - [anon_sym_LBRACK] = ACTIONS(2117), - [anon_sym_LT] = ACTIONS(2117), - [anon_sym_SLASH] = ACTIONS(2115), - [anon_sym_class] = ACTIONS(2115), - [anon_sym_async] = ACTIONS(2115), - [anon_sym_function] = ACTIONS(2115), - [anon_sym_new] = ACTIONS(2115), - [anon_sym_PLUS] = ACTIONS(2115), - [anon_sym_DASH] = ACTIONS(2115), - [anon_sym_TILDE] = ACTIONS(2117), - [anon_sym_void] = ACTIONS(2115), - [anon_sym_delete] = ACTIONS(2115), - [anon_sym_PLUS_PLUS] = ACTIONS(2117), - [anon_sym_DASH_DASH] = ACTIONS(2117), - [anon_sym_DQUOTE] = ACTIONS(2117), - [anon_sym_SQUOTE] = ACTIONS(2117), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2117), - [sym_number] = ACTIONS(2117), - [sym_this] = ACTIONS(2115), - [sym_super] = ACTIONS(2115), - [sym_true] = ACTIONS(2115), - [sym_false] = ACTIONS(2115), - [sym_null] = ACTIONS(2115), - [sym_undefined] = ACTIONS(2115), - [anon_sym_AT] = ACTIONS(2117), - [anon_sym_static] = ACTIONS(2115), - [anon_sym_abstract] = ACTIONS(2115), - [anon_sym_get] = ACTIONS(2115), - [anon_sym_set] = ACTIONS(2115), - [anon_sym_declare] = ACTIONS(2115), - [anon_sym_public] = ACTIONS(2115), - [anon_sym_private] = ACTIONS(2115), - [anon_sym_protected] = ACTIONS(2115), - [anon_sym_module] = ACTIONS(2115), - [anon_sym_any] = ACTIONS(2115), - [anon_sym_number] = ACTIONS(2115), - [anon_sym_boolean] = ACTIONS(2115), - [anon_sym_string] = ACTIONS(2115), - [anon_sym_symbol] = ACTIONS(2115), - [anon_sym_interface] = ACTIONS(2115), - [anon_sym_enum] = ACTIONS(2115), - [sym_readonly] = ACTIONS(2115), - }, [621] = { [sym_identifier] = ACTIONS(2119), [anon_sym_export] = ACTIONS(2119), @@ -67333,25 +67407,313 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_readonly] = ACTIONS(2139), }, [627] = { - [sym_nested_identifier] = STATE(1031), - [sym_string] = STATE(1032), - [sym_arguments] = STATE(1147), - [sym__module] = STATE(1156), - [sym_type_arguments] = STATE(1089), [sym_identifier] = ACTIONS(2143), + [anon_sym_export] = ACTIONS(2143), + [anon_sym_namespace] = ACTIONS(2143), + [anon_sym_LBRACE] = ACTIONS(2145), + [anon_sym_type] = ACTIONS(2143), + [anon_sym_typeof] = ACTIONS(2143), + [anon_sym_import] = ACTIONS(2143), + [anon_sym_var] = ACTIONS(2143), + [anon_sym_let] = ACTIONS(2143), + [anon_sym_const] = ACTIONS(2143), + [anon_sym_BANG] = ACTIONS(2145), + [anon_sym_if] = ACTIONS(2143), + [anon_sym_switch] = ACTIONS(2143), + [anon_sym_for] = ACTIONS(2143), + [anon_sym_LPAREN] = ACTIONS(2145), + [anon_sym_await] = ACTIONS(2143), + [anon_sym_while] = ACTIONS(2143), + [anon_sym_do] = ACTIONS(2143), + [anon_sym_try] = ACTIONS(2143), + [anon_sym_with] = ACTIONS(2143), + [anon_sym_break] = ACTIONS(2143), + [anon_sym_continue] = ACTIONS(2143), + [anon_sym_debugger] = ACTIONS(2143), + [anon_sym_return] = ACTIONS(2143), + [anon_sym_throw] = ACTIONS(2143), + [anon_sym_SEMI] = ACTIONS(2145), + [anon_sym_yield] = ACTIONS(2143), + [anon_sym_LBRACK] = ACTIONS(2145), + [anon_sym_LT] = ACTIONS(2145), + [anon_sym_SLASH] = ACTIONS(2143), + [anon_sym_class] = ACTIONS(2143), + [anon_sym_async] = ACTIONS(2143), + [anon_sym_function] = ACTIONS(2143), + [anon_sym_new] = ACTIONS(2143), + [anon_sym_PLUS] = ACTIONS(2143), + [anon_sym_DASH] = ACTIONS(2143), + [anon_sym_TILDE] = ACTIONS(2145), + [anon_sym_void] = ACTIONS(2143), + [anon_sym_delete] = ACTIONS(2143), + [anon_sym_PLUS_PLUS] = ACTIONS(2145), + [anon_sym_DASH_DASH] = ACTIONS(2145), + [anon_sym_DQUOTE] = ACTIONS(2145), + [anon_sym_SQUOTE] = ACTIONS(2145), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2145), + [sym_number] = ACTIONS(2145), + [sym_this] = ACTIONS(2143), + [sym_super] = ACTIONS(2143), + [sym_true] = ACTIONS(2143), + [sym_false] = ACTIONS(2143), + [sym_null] = ACTIONS(2143), + [sym_undefined] = ACTIONS(2143), + [anon_sym_AT] = ACTIONS(2145), + [anon_sym_static] = ACTIONS(2143), + [anon_sym_abstract] = ACTIONS(2143), + [anon_sym_get] = ACTIONS(2143), + [anon_sym_set] = ACTIONS(2143), + [anon_sym_declare] = ACTIONS(2143), + [anon_sym_public] = ACTIONS(2143), + [anon_sym_private] = ACTIONS(2143), + [anon_sym_protected] = ACTIONS(2143), + [anon_sym_module] = ACTIONS(2143), + [anon_sym_any] = ACTIONS(2143), + [anon_sym_number] = ACTIONS(2143), + [anon_sym_boolean] = ACTIONS(2143), + [anon_sym_string] = ACTIONS(2143), + [anon_sym_symbol] = ACTIONS(2143), + [anon_sym_interface] = ACTIONS(2143), + [anon_sym_enum] = ACTIONS(2143), + [sym_readonly] = ACTIONS(2143), + }, + [628] = { + [sym_identifier] = ACTIONS(2147), + [anon_sym_export] = ACTIONS(2147), + [anon_sym_namespace] = ACTIONS(2147), + [anon_sym_LBRACE] = ACTIONS(2149), + [anon_sym_type] = ACTIONS(2147), + [anon_sym_typeof] = ACTIONS(2147), + [anon_sym_import] = ACTIONS(2147), + [anon_sym_var] = ACTIONS(2147), + [anon_sym_let] = ACTIONS(2147), + [anon_sym_const] = ACTIONS(2147), + [anon_sym_BANG] = ACTIONS(2149), + [anon_sym_if] = ACTIONS(2147), + [anon_sym_switch] = ACTIONS(2147), + [anon_sym_for] = ACTIONS(2147), + [anon_sym_LPAREN] = ACTIONS(2149), + [anon_sym_await] = ACTIONS(2147), + [anon_sym_while] = ACTIONS(2147), + [anon_sym_do] = ACTIONS(2147), + [anon_sym_try] = ACTIONS(2147), + [anon_sym_with] = ACTIONS(2147), + [anon_sym_break] = ACTIONS(2147), + [anon_sym_continue] = ACTIONS(2147), + [anon_sym_debugger] = ACTIONS(2147), + [anon_sym_return] = ACTIONS(2147), + [anon_sym_throw] = ACTIONS(2147), + [anon_sym_SEMI] = ACTIONS(2149), + [anon_sym_yield] = ACTIONS(2147), + [anon_sym_LBRACK] = ACTIONS(2149), + [anon_sym_LT] = ACTIONS(2149), + [anon_sym_SLASH] = ACTIONS(2147), + [anon_sym_class] = ACTIONS(2147), + [anon_sym_async] = ACTIONS(2147), + [anon_sym_function] = ACTIONS(2147), + [anon_sym_new] = ACTIONS(2147), + [anon_sym_PLUS] = ACTIONS(2147), + [anon_sym_DASH] = ACTIONS(2147), + [anon_sym_TILDE] = ACTIONS(2149), + [anon_sym_void] = ACTIONS(2147), + [anon_sym_delete] = ACTIONS(2147), + [anon_sym_PLUS_PLUS] = ACTIONS(2149), + [anon_sym_DASH_DASH] = ACTIONS(2149), + [anon_sym_DQUOTE] = ACTIONS(2149), + [anon_sym_SQUOTE] = ACTIONS(2149), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2149), + [sym_number] = ACTIONS(2149), + [sym_this] = ACTIONS(2147), + [sym_super] = ACTIONS(2147), + [sym_true] = ACTIONS(2147), + [sym_false] = ACTIONS(2147), + [sym_null] = ACTIONS(2147), + [sym_undefined] = ACTIONS(2147), + [anon_sym_AT] = ACTIONS(2149), + [anon_sym_static] = ACTIONS(2147), + [anon_sym_abstract] = ACTIONS(2147), + [anon_sym_get] = ACTIONS(2147), + [anon_sym_set] = ACTIONS(2147), + [anon_sym_declare] = ACTIONS(2147), + [anon_sym_public] = ACTIONS(2147), + [anon_sym_private] = ACTIONS(2147), + [anon_sym_protected] = ACTIONS(2147), + [anon_sym_module] = ACTIONS(2147), + [anon_sym_any] = ACTIONS(2147), + [anon_sym_number] = ACTIONS(2147), + [anon_sym_boolean] = ACTIONS(2147), + [anon_sym_string] = ACTIONS(2147), + [anon_sym_symbol] = ACTIONS(2147), + [anon_sym_interface] = ACTIONS(2147), + [anon_sym_enum] = ACTIONS(2147), + [sym_readonly] = ACTIONS(2147), + }, + [629] = { + [sym_identifier] = ACTIONS(2151), + [anon_sym_export] = ACTIONS(2151), + [anon_sym_namespace] = ACTIONS(2151), + [anon_sym_LBRACE] = ACTIONS(2153), + [anon_sym_type] = ACTIONS(2151), + [anon_sym_typeof] = ACTIONS(2151), + [anon_sym_import] = ACTIONS(2151), + [anon_sym_var] = ACTIONS(2151), + [anon_sym_let] = ACTIONS(2151), + [anon_sym_const] = ACTIONS(2151), + [anon_sym_BANG] = ACTIONS(2153), + [anon_sym_if] = ACTIONS(2151), + [anon_sym_switch] = ACTIONS(2151), + [anon_sym_for] = ACTIONS(2151), + [anon_sym_LPAREN] = ACTIONS(2153), + [anon_sym_await] = ACTIONS(2151), + [anon_sym_while] = ACTIONS(2151), + [anon_sym_do] = ACTIONS(2151), + [anon_sym_try] = ACTIONS(2151), + [anon_sym_with] = ACTIONS(2151), + [anon_sym_break] = ACTIONS(2151), + [anon_sym_continue] = ACTIONS(2151), + [anon_sym_debugger] = ACTIONS(2151), + [anon_sym_return] = ACTIONS(2151), + [anon_sym_throw] = ACTIONS(2151), + [anon_sym_SEMI] = ACTIONS(2153), + [anon_sym_yield] = ACTIONS(2151), + [anon_sym_LBRACK] = ACTIONS(2153), + [anon_sym_LT] = ACTIONS(2153), + [anon_sym_SLASH] = ACTIONS(2151), + [anon_sym_class] = ACTIONS(2151), + [anon_sym_async] = ACTIONS(2151), + [anon_sym_function] = ACTIONS(2151), + [anon_sym_new] = ACTIONS(2151), + [anon_sym_PLUS] = ACTIONS(2151), + [anon_sym_DASH] = ACTIONS(2151), + [anon_sym_TILDE] = ACTIONS(2153), + [anon_sym_void] = ACTIONS(2151), + [anon_sym_delete] = ACTIONS(2151), + [anon_sym_PLUS_PLUS] = ACTIONS(2153), + [anon_sym_DASH_DASH] = ACTIONS(2153), + [anon_sym_DQUOTE] = ACTIONS(2153), + [anon_sym_SQUOTE] = ACTIONS(2153), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2153), + [sym_number] = ACTIONS(2153), + [sym_this] = ACTIONS(2151), + [sym_super] = ACTIONS(2151), + [sym_true] = ACTIONS(2151), + [sym_false] = ACTIONS(2151), + [sym_null] = ACTIONS(2151), + [sym_undefined] = ACTIONS(2151), + [anon_sym_AT] = ACTIONS(2153), + [anon_sym_static] = ACTIONS(2151), + [anon_sym_abstract] = ACTIONS(2151), + [anon_sym_get] = ACTIONS(2151), + [anon_sym_set] = ACTIONS(2151), + [anon_sym_declare] = ACTIONS(2151), + [anon_sym_public] = ACTIONS(2151), + [anon_sym_private] = ACTIONS(2151), + [anon_sym_protected] = ACTIONS(2151), + [anon_sym_module] = ACTIONS(2151), + [anon_sym_any] = ACTIONS(2151), + [anon_sym_number] = ACTIONS(2151), + [anon_sym_boolean] = ACTIONS(2151), + [anon_sym_string] = ACTIONS(2151), + [anon_sym_symbol] = ACTIONS(2151), + [anon_sym_interface] = ACTIONS(2151), + [anon_sym_enum] = ACTIONS(2151), + [sym_readonly] = ACTIONS(2151), + }, + [630] = { + [sym_identifier] = ACTIONS(2155), + [anon_sym_export] = ACTIONS(2155), + [anon_sym_namespace] = ACTIONS(2155), + [anon_sym_LBRACE] = ACTIONS(2157), + [anon_sym_type] = ACTIONS(2155), + [anon_sym_typeof] = ACTIONS(2155), + [anon_sym_import] = ACTIONS(2155), + [anon_sym_var] = ACTIONS(2155), + [anon_sym_let] = ACTIONS(2155), + [anon_sym_const] = ACTIONS(2155), + [anon_sym_BANG] = ACTIONS(2157), + [anon_sym_if] = ACTIONS(2155), + [anon_sym_switch] = ACTIONS(2155), + [anon_sym_for] = ACTIONS(2155), + [anon_sym_LPAREN] = ACTIONS(2157), + [anon_sym_await] = ACTIONS(2155), + [anon_sym_while] = ACTIONS(2155), + [anon_sym_do] = ACTIONS(2155), + [anon_sym_try] = ACTIONS(2155), + [anon_sym_with] = ACTIONS(2155), + [anon_sym_break] = ACTIONS(2155), + [anon_sym_continue] = ACTIONS(2155), + [anon_sym_debugger] = ACTIONS(2155), + [anon_sym_return] = ACTIONS(2155), + [anon_sym_throw] = ACTIONS(2155), + [anon_sym_SEMI] = ACTIONS(2157), + [anon_sym_yield] = ACTIONS(2155), + [anon_sym_LBRACK] = ACTIONS(2157), + [anon_sym_LT] = ACTIONS(2157), + [anon_sym_SLASH] = ACTIONS(2155), + [anon_sym_class] = ACTIONS(2155), + [anon_sym_async] = ACTIONS(2155), + [anon_sym_function] = ACTIONS(2155), + [anon_sym_new] = ACTIONS(2155), + [anon_sym_PLUS] = ACTIONS(2155), + [anon_sym_DASH] = ACTIONS(2155), + [anon_sym_TILDE] = ACTIONS(2157), + [anon_sym_void] = ACTIONS(2155), + [anon_sym_delete] = ACTIONS(2155), + [anon_sym_PLUS_PLUS] = ACTIONS(2157), + [anon_sym_DASH_DASH] = ACTIONS(2157), + [anon_sym_DQUOTE] = ACTIONS(2157), + [anon_sym_SQUOTE] = ACTIONS(2157), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2157), + [sym_number] = ACTIONS(2157), + [sym_this] = ACTIONS(2155), + [sym_super] = ACTIONS(2155), + [sym_true] = ACTIONS(2155), + [sym_false] = ACTIONS(2155), + [sym_null] = ACTIONS(2155), + [sym_undefined] = ACTIONS(2155), + [anon_sym_AT] = ACTIONS(2157), + [anon_sym_static] = ACTIONS(2155), + [anon_sym_abstract] = ACTIONS(2155), + [anon_sym_get] = ACTIONS(2155), + [anon_sym_set] = ACTIONS(2155), + [anon_sym_declare] = ACTIONS(2155), + [anon_sym_public] = ACTIONS(2155), + [anon_sym_private] = ACTIONS(2155), + [anon_sym_protected] = ACTIONS(2155), + [anon_sym_module] = ACTIONS(2155), + [anon_sym_any] = ACTIONS(2155), + [anon_sym_number] = ACTIONS(2155), + [anon_sym_boolean] = ACTIONS(2155), + [anon_sym_string] = ACTIONS(2155), + [anon_sym_symbol] = ACTIONS(2155), + [anon_sym_interface] = ACTIONS(2155), + [anon_sym_enum] = ACTIONS(2155), + [sym_readonly] = ACTIONS(2155), + }, + [631] = { + [sym_nested_identifier] = STATE(1067), + [sym_string] = STATE(1061), + [sym_arguments] = STATE(1158), + [sym__module] = STATE(1188), + [sym_type_arguments] = STATE(1049), + [sym_identifier] = ACTIONS(2159), [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_EQ] = ACTIONS(1127), + [anon_sym_EQ] = ACTIONS(1115), [anon_sym_as] = ACTIONS(1619), [anon_sym_COMMA] = ACTIONS(1621), [anon_sym_RBRACE] = ACTIONS(1621), [anon_sym_BANG] = ACTIONS(1619), - [anon_sym_LPAREN] = ACTIONS(2145), + [anon_sym_LPAREN] = ACTIONS(2161), [anon_sym_RPAREN] = ACTIONS(1621), [anon_sym_in] = ACTIONS(1619), [anon_sym_COLON] = ACTIONS(1621), [anon_sym_LBRACK] = ACTIONS(1623), [anon_sym_RBRACK] = ACTIONS(1621), - [anon_sym_LT] = ACTIONS(2147), + [anon_sym_LT] = ACTIONS(2163), [anon_sym_GT] = ACTIONS(1619), [anon_sym_SLASH] = ACTIONS(1619), [anon_sym_DOT] = ACTIONS(1625), @@ -67400,17 +67762,17 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1621), }, - [628] = { + [632] = { [sym_nested_identifier] = STATE(68), [sym_string] = STATE(67), [sym__module] = STATE(94), - [aux_sym_object_repeat1] = STATE(2739), - [sym_identifier] = ACTIONS(2149), + [aux_sym_object_repeat1] = STATE(2757), + [sym_identifier] = ACTIONS(2165), [anon_sym_STAR] = ACTIONS(808), - [anon_sym_EQ] = ACTIONS(1282), + [anon_sym_EQ] = ACTIONS(1258), [anon_sym_as] = ACTIONS(808), [anon_sym_COMMA] = ACTIONS(841), - [anon_sym_RBRACE] = ACTIONS(1201), + [anon_sym_RBRACE] = ACTIONS(1244), [anon_sym_BANG] = ACTIONS(808), [anon_sym_LPAREN] = ACTIONS(1213), [anon_sym_in] = ACTIONS(808), @@ -67421,8 +67783,8 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(808), [anon_sym_SLASH] = ACTIONS(808), [anon_sym_DOT] = ACTIONS(1224), - [anon_sym_EQ_GT] = ACTIONS(1009), - [anon_sym_QMARK_DOT] = ACTIONS(1011), + [anon_sym_EQ_GT] = ACTIONS(1019), + [anon_sym_QMARK_DOT] = ACTIONS(1021), [anon_sym_PLUS_EQ] = ACTIONS(831), [anon_sym_DASH_EQ] = ACTIONS(831), [anon_sym_STAR_EQ] = ACTIONS(831), @@ -67461,20 +67823,20 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_instanceof] = ACTIONS(808), [anon_sym_PLUS_PLUS] = ACTIONS(841), [anon_sym_DASH_DASH] = ACTIONS(841), - [anon_sym_DQUOTE] = ACTIONS(2151), - [anon_sym_SQUOTE] = ACTIONS(2153), + [anon_sym_DQUOTE] = ACTIONS(2167), + [anon_sym_SQUOTE] = ACTIONS(2169), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(841), [sym__automatic_semicolon] = ACTIONS(841), }, - [629] = { - [sym_nested_identifier] = STATE(68), - [sym_string] = STATE(67), - [sym__module] = STATE(94), - [aux_sym_object_repeat1] = STATE(2645), - [sym_identifier] = ACTIONS(2149), + [633] = { + [sym_nested_identifier] = STATE(513), + [sym_string] = STATE(528), + [sym__module] = STATE(564), + [aux_sym_object_repeat1] = STATE(2651), + [sym_identifier] = ACTIONS(2171), [anon_sym_STAR] = ACTIONS(808), - [anon_sym_EQ] = ACTIONS(1282), + [anon_sym_EQ] = ACTIONS(1258), [anon_sym_as] = ACTIONS(808), [anon_sym_COMMA] = ACTIONS(841), [anon_sym_RBRACE] = ACTIONS(1242), @@ -67488,8 +67850,8 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(808), [anon_sym_SLASH] = ACTIONS(808), [anon_sym_DOT] = ACTIONS(1224), - [anon_sym_EQ_GT] = ACTIONS(1009), - [anon_sym_QMARK_DOT] = ACTIONS(1011), + [anon_sym_EQ_GT] = ACTIONS(1019), + [anon_sym_QMARK_DOT] = ACTIONS(1021), [anon_sym_PLUS_EQ] = ACTIONS(831), [anon_sym_DASH_EQ] = ACTIONS(831), [anon_sym_STAR_EQ] = ACTIONS(831), @@ -67528,23 +67890,23 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_instanceof] = ACTIONS(808), [anon_sym_PLUS_PLUS] = ACTIONS(841), [anon_sym_DASH_DASH] = ACTIONS(841), - [anon_sym_DQUOTE] = ACTIONS(2151), - [anon_sym_SQUOTE] = ACTIONS(2153), + [anon_sym_DQUOTE] = ACTIONS(845), + [anon_sym_SQUOTE] = ACTIONS(847), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(841), [sym__automatic_semicolon] = ACTIONS(841), }, - [630] = { - [sym_nested_identifier] = STATE(516), - [sym_string] = STATE(523), - [sym__module] = STATE(551), - [aux_sym_object_repeat1] = STATE(2645), - [sym_identifier] = ACTIONS(2155), + [634] = { + [sym_nested_identifier] = STATE(513), + [sym_string] = STATE(528), + [sym__module] = STATE(564), + [aux_sym_object_repeat1] = STATE(2641), + [sym_identifier] = ACTIONS(2171), [anon_sym_STAR] = ACTIONS(808), - [anon_sym_EQ] = ACTIONS(1282), + [anon_sym_EQ] = ACTIONS(1258), [anon_sym_as] = ACTIONS(808), [anon_sym_COMMA] = ACTIONS(841), - [anon_sym_RBRACE] = ACTIONS(1242), + [anon_sym_RBRACE] = ACTIONS(1201), [anon_sym_BANG] = ACTIONS(808), [anon_sym_LPAREN] = ACTIONS(1213), [anon_sym_in] = ACTIONS(808), @@ -67555,8 +67917,8 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(808), [anon_sym_SLASH] = ACTIONS(808), [anon_sym_DOT] = ACTIONS(1224), - [anon_sym_EQ_GT] = ACTIONS(1009), - [anon_sym_QMARK_DOT] = ACTIONS(1011), + [anon_sym_EQ_GT] = ACTIONS(1019), + [anon_sym_QMARK_DOT] = ACTIONS(1021), [anon_sym_PLUS_EQ] = ACTIONS(831), [anon_sym_DASH_EQ] = ACTIONS(831), [anon_sym_STAR_EQ] = ACTIONS(831), @@ -67601,14 +67963,81 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(841), [sym__automatic_semicolon] = ACTIONS(841), }, - [631] = { - [sym_nested_identifier] = STATE(516), - [sym_string] = STATE(523), - [sym__module] = STATE(551), - [aux_sym_object_repeat1] = STATE(2772), - [sym_identifier] = ACTIONS(2155), + [635] = { + [sym_nested_identifier] = STATE(68), + [sym_string] = STATE(67), + [sym__module] = STATE(94), + [aux_sym_object_repeat1] = STATE(2651), + [sym_identifier] = ACTIONS(2165), [anon_sym_STAR] = ACTIONS(808), - [anon_sym_EQ] = ACTIONS(1282), + [anon_sym_EQ] = ACTIONS(1258), + [anon_sym_as] = ACTIONS(808), + [anon_sym_COMMA] = ACTIONS(841), + [anon_sym_RBRACE] = ACTIONS(1242), + [anon_sym_BANG] = ACTIONS(808), + [anon_sym_LPAREN] = ACTIONS(1213), + [anon_sym_in] = ACTIONS(808), + [anon_sym_SEMI] = ACTIONS(841), + [anon_sym_COLON] = ACTIONS(1216), + [anon_sym_LBRACK] = ACTIONS(1219), + [anon_sym_LT] = ACTIONS(1221), + [anon_sym_GT] = ACTIONS(808), + [anon_sym_SLASH] = ACTIONS(808), + [anon_sym_DOT] = ACTIONS(1224), + [anon_sym_EQ_GT] = ACTIONS(1019), + [anon_sym_QMARK_DOT] = ACTIONS(1021), + [anon_sym_PLUS_EQ] = ACTIONS(831), + [anon_sym_DASH_EQ] = ACTIONS(831), + [anon_sym_STAR_EQ] = ACTIONS(831), + [anon_sym_SLASH_EQ] = ACTIONS(831), + [anon_sym_PERCENT_EQ] = ACTIONS(831), + [anon_sym_CARET_EQ] = ACTIONS(831), + [anon_sym_AMP_EQ] = ACTIONS(831), + [anon_sym_PIPE_EQ] = ACTIONS(831), + [anon_sym_GT_GT_EQ] = ACTIONS(831), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(831), + [anon_sym_LT_LT_EQ] = ACTIONS(831), + [anon_sym_STAR_STAR_EQ] = ACTIONS(831), + [anon_sym_AMP_AMP_EQ] = ACTIONS(831), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(831), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(831), + [anon_sym_QMARK] = ACTIONS(1221), + [anon_sym_AMP_AMP] = ACTIONS(808), + [anon_sym_PIPE_PIPE] = ACTIONS(808), + [anon_sym_GT_GT] = ACTIONS(808), + [anon_sym_GT_GT_GT] = ACTIONS(808), + [anon_sym_LT_LT] = ACTIONS(808), + [anon_sym_AMP] = ACTIONS(808), + [anon_sym_CARET] = ACTIONS(808), + [anon_sym_PIPE] = ACTIONS(808), + [anon_sym_PLUS] = ACTIONS(808), + [anon_sym_DASH] = ACTIONS(808), + [anon_sym_PERCENT] = ACTIONS(808), + [anon_sym_STAR_STAR] = ACTIONS(808), + [anon_sym_LT_EQ] = ACTIONS(841), + [anon_sym_EQ_EQ] = ACTIONS(808), + [anon_sym_EQ_EQ_EQ] = ACTIONS(841), + [anon_sym_BANG_EQ] = ACTIONS(808), + [anon_sym_BANG_EQ_EQ] = ACTIONS(841), + [anon_sym_GT_EQ] = ACTIONS(841), + [anon_sym_QMARK_QMARK] = ACTIONS(808), + [anon_sym_instanceof] = ACTIONS(808), + [anon_sym_PLUS_PLUS] = ACTIONS(841), + [anon_sym_DASH_DASH] = ACTIONS(841), + [anon_sym_DQUOTE] = ACTIONS(2167), + [anon_sym_SQUOTE] = ACTIONS(2169), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(841), + [sym__automatic_semicolon] = ACTIONS(841), + }, + [636] = { + [sym_nested_identifier] = STATE(513), + [sym_string] = STATE(528), + [sym__module] = STATE(564), + [aux_sym_object_repeat1] = STATE(2757), + [sym_identifier] = ACTIONS(2171), + [anon_sym_STAR] = ACTIONS(808), + [anon_sym_EQ] = ACTIONS(1258), [anon_sym_as] = ACTIONS(808), [anon_sym_COMMA] = ACTIONS(841), [anon_sym_RBRACE] = ACTIONS(1244), @@ -67622,8 +68051,8 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(808), [anon_sym_SLASH] = ACTIONS(808), [anon_sym_DOT] = ACTIONS(1224), - [anon_sym_EQ_GT] = ACTIONS(1009), - [anon_sym_QMARK_DOT] = ACTIONS(1011), + [anon_sym_EQ_GT] = ACTIONS(1019), + [anon_sym_QMARK_DOT] = ACTIONS(1021), [anon_sym_PLUS_EQ] = ACTIONS(831), [anon_sym_DASH_EQ] = ACTIONS(831), [anon_sym_STAR_EQ] = ACTIONS(831), @@ -67668,29 +68097,29 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(841), [sym__automatic_semicolon] = ACTIONS(841), }, - [632] = { - [sym_nested_identifier] = STATE(1031), - [sym_string] = STATE(1032), - [sym_arguments] = STATE(1489), - [sym__module] = STATE(1156), - [sym_type_arguments] = STATE(1335), - [sym_identifier] = ACTIONS(2143), + [637] = { + [sym_nested_identifier] = STATE(1067), + [sym_string] = STATE(1061), + [sym_arguments] = STATE(1551), + [sym__module] = STATE(1188), + [sym_type_arguments] = STATE(1316), + [sym_identifier] = ACTIONS(2159), [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_EQ] = ACTIONS(1127), + [anon_sym_EQ] = ACTIONS(1115), [anon_sym_as] = ACTIONS(1619), [anon_sym_COMMA] = ACTIONS(1621), [anon_sym_RBRACE] = ACTIONS(1621), [anon_sym_BANG] = ACTIONS(1619), - [anon_sym_LPAREN] = ACTIONS(2157), + [anon_sym_LPAREN] = ACTIONS(2173), [anon_sym_in] = ACTIONS(1619), [anon_sym_SEMI] = ACTIONS(1621), [anon_sym_LBRACK] = ACTIONS(1219), - [anon_sym_LT] = ACTIONS(2159), + [anon_sym_LT] = ACTIONS(2175), [anon_sym_GT] = ACTIONS(1619), [anon_sym_SLASH] = ACTIONS(1619), [anon_sym_DOT] = ACTIONS(1224), - [anon_sym_EQ_GT] = ACTIONS(1009), - [anon_sym_QMARK_DOT] = ACTIONS(1011), + [anon_sym_EQ_GT] = ACTIONS(1019), + [anon_sym_QMARK_DOT] = ACTIONS(1021), [anon_sym_PLUS_EQ] = ACTIONS(831), [anon_sym_DASH_EQ] = ACTIONS(831), [anon_sym_STAR_EQ] = ACTIONS(831), @@ -67735,81 +68164,14 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(1621), [sym__automatic_semicolon] = ACTIONS(1621), }, - [633] = { + [638] = { [sym_nested_identifier] = STATE(68), [sym_string] = STATE(67), [sym__module] = STATE(94), - [aux_sym_object_repeat1] = STATE(2772), - [sym_identifier] = ACTIONS(2149), - [anon_sym_STAR] = ACTIONS(808), - [anon_sym_EQ] = ACTIONS(1282), - [anon_sym_as] = ACTIONS(808), - [anon_sym_COMMA] = ACTIONS(841), - [anon_sym_RBRACE] = ACTIONS(1244), - [anon_sym_BANG] = ACTIONS(808), - [anon_sym_LPAREN] = ACTIONS(1213), - [anon_sym_in] = ACTIONS(808), - [anon_sym_SEMI] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(1216), - [anon_sym_LBRACK] = ACTIONS(1219), - [anon_sym_LT] = ACTIONS(1221), - [anon_sym_GT] = ACTIONS(808), - [anon_sym_SLASH] = ACTIONS(808), - [anon_sym_DOT] = ACTIONS(1224), - [anon_sym_EQ_GT] = ACTIONS(1009), - [anon_sym_QMARK_DOT] = ACTIONS(1011), - [anon_sym_PLUS_EQ] = ACTIONS(831), - [anon_sym_DASH_EQ] = ACTIONS(831), - [anon_sym_STAR_EQ] = ACTIONS(831), - [anon_sym_SLASH_EQ] = ACTIONS(831), - [anon_sym_PERCENT_EQ] = ACTIONS(831), - [anon_sym_CARET_EQ] = ACTIONS(831), - [anon_sym_AMP_EQ] = ACTIONS(831), - [anon_sym_PIPE_EQ] = ACTIONS(831), - [anon_sym_GT_GT_EQ] = ACTIONS(831), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(831), - [anon_sym_LT_LT_EQ] = ACTIONS(831), - [anon_sym_STAR_STAR_EQ] = ACTIONS(831), - [anon_sym_AMP_AMP_EQ] = ACTIONS(831), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(831), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(831), - [anon_sym_QMARK] = ACTIONS(1221), - [anon_sym_AMP_AMP] = ACTIONS(808), - [anon_sym_PIPE_PIPE] = ACTIONS(808), - [anon_sym_GT_GT] = ACTIONS(808), - [anon_sym_GT_GT_GT] = ACTIONS(808), - [anon_sym_LT_LT] = ACTIONS(808), - [anon_sym_AMP] = ACTIONS(808), - [anon_sym_CARET] = ACTIONS(808), - [anon_sym_PIPE] = ACTIONS(808), - [anon_sym_PLUS] = ACTIONS(808), - [anon_sym_DASH] = ACTIONS(808), - [anon_sym_PERCENT] = ACTIONS(808), - [anon_sym_STAR_STAR] = ACTIONS(808), - [anon_sym_LT_EQ] = ACTIONS(841), - [anon_sym_EQ_EQ] = ACTIONS(808), - [anon_sym_EQ_EQ_EQ] = ACTIONS(841), - [anon_sym_BANG_EQ] = ACTIONS(808), - [anon_sym_BANG_EQ_EQ] = ACTIONS(841), - [anon_sym_GT_EQ] = ACTIONS(841), - [anon_sym_QMARK_QMARK] = ACTIONS(808), - [anon_sym_instanceof] = ACTIONS(808), - [anon_sym_PLUS_PLUS] = ACTIONS(841), - [anon_sym_DASH_DASH] = ACTIONS(841), - [anon_sym_DQUOTE] = ACTIONS(2151), - [anon_sym_SQUOTE] = ACTIONS(2153), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(841), - [sym__automatic_semicolon] = ACTIONS(841), - }, - [634] = { - [sym_nested_identifier] = STATE(516), - [sym_string] = STATE(523), - [sym__module] = STATE(551), - [aux_sym_object_repeat1] = STATE(2739), - [sym_identifier] = ACTIONS(2155), + [aux_sym_object_repeat1] = STATE(2641), + [sym_identifier] = ACTIONS(2165), [anon_sym_STAR] = ACTIONS(808), - [anon_sym_EQ] = ACTIONS(1282), + [anon_sym_EQ] = ACTIONS(1258), [anon_sym_as] = ACTIONS(808), [anon_sym_COMMA] = ACTIONS(841), [anon_sym_RBRACE] = ACTIONS(1201), @@ -67823,8 +68185,8 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(808), [anon_sym_SLASH] = ACTIONS(808), [anon_sym_DOT] = ACTIONS(1224), - [anon_sym_EQ_GT] = ACTIONS(1009), - [anon_sym_QMARK_DOT] = ACTIONS(1011), + [anon_sym_EQ_GT] = ACTIONS(1019), + [anon_sym_QMARK_DOT] = ACTIONS(1021), [anon_sym_PLUS_EQ] = ACTIONS(831), [anon_sym_DASH_EQ] = ACTIONS(831), [anon_sym_STAR_EQ] = ACTIONS(831), @@ -67847,473 +68209,66 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_GT_GT] = ACTIONS(808), [anon_sym_LT_LT] = ACTIONS(808), [anon_sym_AMP] = ACTIONS(808), - [anon_sym_CARET] = ACTIONS(808), - [anon_sym_PIPE] = ACTIONS(808), - [anon_sym_PLUS] = ACTIONS(808), - [anon_sym_DASH] = ACTIONS(808), - [anon_sym_PERCENT] = ACTIONS(808), - [anon_sym_STAR_STAR] = ACTIONS(808), - [anon_sym_LT_EQ] = ACTIONS(841), - [anon_sym_EQ_EQ] = ACTIONS(808), - [anon_sym_EQ_EQ_EQ] = ACTIONS(841), - [anon_sym_BANG_EQ] = ACTIONS(808), - [anon_sym_BANG_EQ_EQ] = ACTIONS(841), - [anon_sym_GT_EQ] = ACTIONS(841), - [anon_sym_QMARK_QMARK] = ACTIONS(808), - [anon_sym_instanceof] = ACTIONS(808), - [anon_sym_PLUS_PLUS] = ACTIONS(841), - [anon_sym_DASH_DASH] = ACTIONS(841), - [anon_sym_DQUOTE] = ACTIONS(845), - [anon_sym_SQUOTE] = ACTIONS(847), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(841), - [sym__automatic_semicolon] = ACTIONS(841), - }, -}; - -static uint16_t ts_small_parse_table[] = { - [0] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(475), 1, - anon_sym_DQUOTE, - ACTIONS(477), 1, - anon_sym_SQUOTE, - ACTIONS(825), 1, - anon_sym_EQ_GT, - ACTIONS(827), 1, - anon_sym_QMARK_DOT, - ACTIONS(927), 1, - anon_sym_EQ, - ACTIONS(1623), 1, - anon_sym_LBRACK, - ACTIONS(1625), 1, - anon_sym_DOT, - ACTIONS(2143), 1, - sym_identifier, - STATE(1031), 1, - sym_nested_identifier, - STATE(1032), 1, - sym_string, - STATE(1156), 1, - sym__module, - ACTIONS(841), 13, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - 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(831), 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(808), 24, - anon_sym_STAR, - anon_sym_as, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - 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_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - [95] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(475), 1, - anon_sym_DQUOTE, - ACTIONS(477), 1, - anon_sym_SQUOTE, - ACTIONS(1127), 1, - anon_sym_EQ, - ACTIONS(1137), 1, - anon_sym_EQ_GT, - ACTIONS(1139), 1, - anon_sym_QMARK_DOT, - ACTIONS(1653), 1, - anon_sym_LBRACK, - ACTIONS(1655), 1, - anon_sym_DOT, - ACTIONS(2143), 1, - sym_identifier, - ACTIONS(2161), 1, - anon_sym_LPAREN, - ACTIONS(2163), 1, - anon_sym_LT, - STATE(1031), 1, - sym_nested_identifier, - STATE(1032), 1, - sym_string, - STATE(1156), 1, - sym__module, - STATE(1557), 1, - sym_type_arguments, - STATE(1646), 1, - sym_arguments, - ACTIONS(1621), 9, - anon_sym_COMMA, - 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, - anon_sym_LBRACE_PIPE, - ACTIONS(831), 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(1619), 24, - anon_sym_STAR, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - 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_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - [198] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(475), 1, - anon_sym_DQUOTE, - ACTIONS(477), 1, - anon_sym_SQUOTE, - ACTIONS(827), 1, - anon_sym_QMARK_DOT, - ACTIONS(1121), 1, - anon_sym_EQ_GT, - ACTIONS(1127), 1, - anon_sym_EQ, - ACTIONS(1623), 1, - anon_sym_LBRACK, - ACTIONS(1625), 1, - anon_sym_DOT, - ACTIONS(2143), 1, - sym_identifier, - ACTIONS(2145), 1, - anon_sym_LPAREN, - ACTIONS(2147), 1, - anon_sym_LT, - STATE(1031), 1, - sym_nested_identifier, - STATE(1032), 1, - sym_string, - STATE(1089), 1, - sym_type_arguments, - STATE(1147), 1, - sym_arguments, - STATE(1156), 1, - sym__module, - ACTIONS(1621), 9, - anon_sym_LBRACE, - anon_sym_COMMA, - 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(831), 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(1619), 24, - anon_sym_STAR, - anon_sym_as, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - 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_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_implements, - [301] = 19, + [anon_sym_CARET] = ACTIONS(808), + [anon_sym_PIPE] = ACTIONS(808), + [anon_sym_PLUS] = ACTIONS(808), + [anon_sym_DASH] = ACTIONS(808), + [anon_sym_PERCENT] = ACTIONS(808), + [anon_sym_STAR_STAR] = ACTIONS(808), + [anon_sym_LT_EQ] = ACTIONS(841), + [anon_sym_EQ_EQ] = ACTIONS(808), + [anon_sym_EQ_EQ_EQ] = ACTIONS(841), + [anon_sym_BANG_EQ] = ACTIONS(808), + [anon_sym_BANG_EQ_EQ] = ACTIONS(841), + [anon_sym_GT_EQ] = ACTIONS(841), + [anon_sym_QMARK_QMARK] = ACTIONS(808), + [anon_sym_instanceof] = ACTIONS(808), + [anon_sym_PLUS_PLUS] = ACTIONS(841), + [anon_sym_DASH_DASH] = ACTIONS(841), + [anon_sym_DQUOTE] = ACTIONS(2167), + [anon_sym_SQUOTE] = ACTIONS(2169), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(841), + [sym__automatic_semicolon] = ACTIONS(841), + }, +}; + +static uint16_t ts_small_parse_table[] = { + [0] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(475), 1, anon_sym_DQUOTE, ACTIONS(477), 1, anon_sym_SQUOTE, - ACTIONS(1011), 1, - anon_sym_QMARK_DOT, - ACTIONS(1117), 1, - anon_sym_EQ_GT, - ACTIONS(1127), 1, + ACTIONS(1115), 1, anon_sym_EQ, - ACTIONS(1219), 1, + ACTIONS(1145), 1, + anon_sym_EQ_GT, + ACTIONS(1147), 1, + anon_sym_QMARK_DOT, + ACTIONS(1653), 1, anon_sym_LBRACK, - ACTIONS(1224), 1, + ACTIONS(1655), 1, anon_sym_DOT, - ACTIONS(2143), 1, + ACTIONS(2159), 1, sym_identifier, - ACTIONS(2157), 1, + ACTIONS(2177), 1, anon_sym_LPAREN, - ACTIONS(2159), 1, + ACTIONS(2179), 1, anon_sym_LT, - STATE(1031), 1, - sym_nested_identifier, - STATE(1032), 1, + STATE(1061), 1, sym_string, - STATE(1156), 1, + STATE(1067), 1, + sym_nested_identifier, + STATE(1188), 1, sym__module, - STATE(1335), 1, + STATE(1501), 1, sym_type_arguments, - STATE(1489), 1, + STATE(1706), 1, sym_arguments, ACTIONS(1621), 9, - sym__automatic_semicolon, - anon_sym_SEMI, - 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(831), 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(1619), 23, - anon_sym_STAR, - anon_sym_as, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - 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_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - [403] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(81), 1, - anon_sym_DQUOTE, - ACTIONS(83), 1, - anon_sym_SQUOTE, - ACTIONS(1003), 1, - anon_sym_EQ, - ACTIONS(1009), 1, - anon_sym_EQ_GT, - ACTIONS(1011), 1, - anon_sym_QMARK_DOT, - ACTIONS(1219), 1, - anon_sym_LBRACK, - ACTIONS(1224), 1, - anon_sym_DOT, - ACTIONS(2165), 1, - sym_identifier, - STATE(1022), 1, - sym_nested_identifier, - STATE(1023), 1, - sym_string, - STATE(1208), 1, - sym__module, - ACTIONS(841), 12, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - 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(831), 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(808), 24, - anon_sym_STAR, - anon_sym_as, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - 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_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - [497] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(81), 1, - anon_sym_DQUOTE, - ACTIONS(83), 1, - anon_sym_SQUOTE, - ACTIONS(1003), 1, - anon_sym_EQ, - ACTIONS(1009), 1, - anon_sym_EQ_GT, - ACTIONS(1011), 1, - anon_sym_QMARK_DOT, - ACTIONS(1219), 1, - anon_sym_LBRACK, - ACTIONS(1224), 1, - anon_sym_DOT, - ACTIONS(1258), 1, - anon_sym_COLON, - ACTIONS(2165), 1, - sym_identifier, - STATE(1022), 1, - sym_nested_identifier, - STATE(1023), 1, - sym_string, - STATE(1208), 1, - sym__module, - ACTIONS(841), 11, - sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -68321,6 +68276,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, + anon_sym_LBRACE_PIPE, ACTIONS(831), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -68337,12 +68293,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(808), 24, + ACTIONS(1619), 24, anon_sym_STAR, anon_sym_as, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -68362,7 +68318,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [593] = 19, + [103] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(475), 1, @@ -68371,33 +68327,33 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, ACTIONS(827), 1, anon_sym_QMARK_DOT, - ACTIONS(1127), 1, + ACTIONS(1115), 1, anon_sym_EQ, - ACTIONS(1129), 1, + ACTIONS(1121), 1, anon_sym_EQ_GT, ACTIONS(1623), 1, anon_sym_LBRACK, ACTIONS(1625), 1, anon_sym_DOT, - ACTIONS(2143), 1, + ACTIONS(2159), 1, sym_identifier, - ACTIONS(2145), 1, + ACTIONS(2161), 1, anon_sym_LPAREN, - ACTIONS(2147), 1, + ACTIONS(2163), 1, anon_sym_LT, - STATE(1031), 1, - sym_nested_identifier, - STATE(1032), 1, - sym_string, - STATE(1089), 1, + STATE(1049), 1, sym_type_arguments, - STATE(1147), 1, + STATE(1061), 1, + sym_string, + STATE(1067), 1, + sym_nested_identifier, + STATE(1158), 1, sym_arguments, - STATE(1156), 1, + STATE(1188), 1, sym__module, ACTIONS(1621), 9, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -68421,7 +68377,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1619), 23, + ACTIONS(1619), 24, anon_sym_STAR, anon_sym_as, anon_sym_BANG, @@ -68445,118 +68401,39 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [695] = 16, + anon_sym_implements, + [206] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(845), 1, + ACTIONS(475), 1, anon_sym_DQUOTE, - ACTIONS(847), 1, + ACTIONS(477), 1, anon_sym_SQUOTE, - ACTIONS(1003), 1, - anon_sym_EQ, - ACTIONS(1009), 1, + ACTIONS(825), 1, anon_sym_EQ_GT, - ACTIONS(1011), 1, + ACTIONS(827), 1, anon_sym_QMARK_DOT, - ACTIONS(1219), 1, - anon_sym_LBRACK, - ACTIONS(1224), 1, - anon_sym_DOT, - ACTIONS(1258), 1, - anon_sym_COLON, - ACTIONS(2155), 1, - sym_identifier, - STATE(516), 1, - sym_nested_identifier, - STATE(523), 1, - sym_string, - STATE(551), 1, - sym__module, - ACTIONS(841), 11, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, - 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(831), 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(808), 24, - anon_sym_STAR, - anon_sym_as, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - 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_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - [791] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1003), 1, + ACTIONS(927), 1, anon_sym_EQ, - ACTIONS(1009), 1, - anon_sym_EQ_GT, - ACTIONS(1011), 1, - anon_sym_QMARK_DOT, - ACTIONS(1219), 1, + ACTIONS(1623), 1, anon_sym_LBRACK, - ACTIONS(1224), 1, + ACTIONS(1625), 1, anon_sym_DOT, - ACTIONS(1262), 1, - anon_sym_COLON, - ACTIONS(2149), 1, + ACTIONS(2159), 1, sym_identifier, - ACTIONS(2151), 1, - anon_sym_DQUOTE, - ACTIONS(2153), 1, - anon_sym_SQUOTE, - STATE(67), 1, + STATE(1061), 1, sym_string, - STATE(68), 1, + STATE(1067), 1, sym_nested_identifier, - STATE(94), 1, + STATE(1188), 1, sym__module, - ACTIONS(841), 11, - sym__automatic_semicolon, + ACTIONS(841), 13, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -68605,18 +68482,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [887] = 17, + [301] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(81), 1, anon_sym_DQUOTE, ACTIONS(83), 1, anon_sym_SQUOTE, - ACTIONS(1003), 1, + ACTIONS(1013), 1, anon_sym_EQ, - ACTIONS(1009), 1, + ACTIONS(1019), 1, anon_sym_EQ_GT, - ACTIONS(1011), 1, + ACTIONS(1021), 1, anon_sym_QMARK_DOT, ACTIONS(1219), 1, anon_sym_LBRACK, @@ -68626,13 +68503,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_in, ACTIONS(1668), 1, anon_sym_of, - ACTIONS(2165), 1, + ACTIONS(2181), 1, sym_identifier, - STATE(1022), 1, - sym_nested_identifier, - STATE(1023), 1, + STATE(1062), 1, sym_string, - STATE(1208), 1, + STATE(1068), 1, + sym_nested_identifier, + STATE(1260), 1, sym__module, ACTIONS(841), 11, sym__automatic_semicolon, @@ -68686,32 +68563,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [985] = 16, + [399] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(845), 1, + ACTIONS(81), 1, anon_sym_DQUOTE, - ACTIONS(847), 1, + ACTIONS(83), 1, anon_sym_SQUOTE, - ACTIONS(1003), 1, + ACTIONS(1013), 1, anon_sym_EQ, - ACTIONS(1009), 1, + ACTIONS(1019), 1, anon_sym_EQ_GT, - ACTIONS(1011), 1, + ACTIONS(1021), 1, anon_sym_QMARK_DOT, ACTIONS(1219), 1, anon_sym_LBRACK, ACTIONS(1224), 1, anon_sym_DOT, - ACTIONS(1262), 1, + ACTIONS(1284), 1, anon_sym_COLON, - ACTIONS(2155), 1, + ACTIONS(2181), 1, sym_identifier, - STATE(516), 1, - sym_nested_identifier, - STATE(523), 1, + STATE(1062), 1, sym_string, - STATE(551), 1, + STATE(1068), 1, + sym_nested_identifier, + STATE(1260), 1, sym__module, ACTIONS(841), 11, sym__automatic_semicolon, @@ -68766,37 +68643,38 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [1081] = 16, + [495] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(475), 1, + ACTIONS(845), 1, anon_sym_DQUOTE, - ACTIONS(477), 1, + ACTIONS(847), 1, anon_sym_SQUOTE, - ACTIONS(825), 1, + ACTIONS(1013), 1, + anon_sym_EQ, + ACTIONS(1019), 1, anon_sym_EQ_GT, - ACTIONS(827), 1, + ACTIONS(1021), 1, anon_sym_QMARK_DOT, - ACTIONS(927), 1, - anon_sym_EQ, - ACTIONS(1623), 1, + ACTIONS(1219), 1, anon_sym_LBRACK, - ACTIONS(1625), 1, + ACTIONS(1224), 1, anon_sym_DOT, - ACTIONS(1726), 1, + ACTIONS(1274), 1, anon_sym_COLON, - ACTIONS(2143), 1, + ACTIONS(2171), 1, sym_identifier, - STATE(1031), 1, + STATE(513), 1, sym_nested_identifier, - STATE(1032), 1, + STATE(528), 1, sym_string, - STATE(1156), 1, + STATE(564), 1, sym__module, - ACTIONS(841), 10, + ACTIONS(841), 11, + sym__automatic_semicolon, anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_RBRACK, + anon_sym_SEMI, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -68845,198 +68723,38 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [1176] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(475), 1, - anon_sym_DQUOTE, - ACTIONS(477), 1, - anon_sym_SQUOTE, - ACTIONS(827), 1, - anon_sym_QMARK_DOT, - ACTIONS(1119), 1, - anon_sym_EQ, - ACTIONS(1121), 1, - anon_sym_EQ_GT, - ACTIONS(1623), 1, - anon_sym_LBRACK, - ACTIONS(1625), 1, - anon_sym_DOT, - ACTIONS(2143), 1, - sym_identifier, - STATE(1031), 1, - sym_nested_identifier, - STATE(1032), 1, - sym_string, - STATE(1156), 1, - sym__module, - ACTIONS(841), 10, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - 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(831), 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(808), 25, - anon_sym_STAR, - anon_sym_as, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - 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_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_implements, - [1269] = 18, + [591] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(475), 1, + ACTIONS(845), 1, anon_sym_DQUOTE, - ACTIONS(477), 1, + ACTIONS(847), 1, anon_sym_SQUOTE, - ACTIONS(805), 1, + ACTIONS(1013), 1, anon_sym_EQ, - ACTIONS(825), 1, + ACTIONS(1019), 1, anon_sym_EQ_GT, - ACTIONS(827), 1, + ACTIONS(1021), 1, anon_sym_QMARK_DOT, - ACTIONS(1623), 1, + ACTIONS(1219), 1, anon_sym_LBRACK, - ACTIONS(1625), 1, + ACTIONS(1224), 1, anon_sym_DOT, - ACTIONS(1717), 1, - anon_sym_QMARK, - ACTIONS(1728), 1, + ACTIONS(1284), 1, anon_sym_COLON, - ACTIONS(2143), 1, - sym_identifier, - STATE(1031), 1, - sym_nested_identifier, - STATE(1032), 1, - sym_string, - STATE(1156), 1, - sym__module, - ACTIONS(812), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(841), 8, - anon_sym_LPAREN, - 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(831), 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(808), 23, - anon_sym_STAR, - anon_sym_as, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - 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_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - [1368] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(475), 1, - anon_sym_DQUOTE, - ACTIONS(477), 1, - anon_sym_SQUOTE, - ACTIONS(805), 1, - anon_sym_EQ, - ACTIONS(825), 1, - anon_sym_EQ_GT, - ACTIONS(827), 1, - anon_sym_QMARK_DOT, - ACTIONS(1623), 1, - anon_sym_LBRACK, - ACTIONS(1625), 1, - anon_sym_DOT, - ACTIONS(1717), 1, - anon_sym_QMARK, - ACTIONS(2143), 1, + ACTIONS(2171), 1, sym_identifier, - STATE(1031), 1, + STATE(513), 1, sym_nested_identifier, - STATE(1032), 1, + STATE(528), 1, sym_string, - STATE(1156), 1, + STATE(564), 1, sym__module, - ACTIONS(812), 3, + ACTIONS(841), 11, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(841), 8, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -69060,7 +68778,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(808), 23, + ACTIONS(808), 24, anon_sym_STAR, anon_sym_as, anon_sym_BANG, @@ -69068,6 +68786,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_SLASH, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -69084,34 +68803,42 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [1465] = 15, + [687] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(569), 1, + ACTIONS(475), 1, anon_sym_DQUOTE, - ACTIONS(571), 1, + ACTIONS(477), 1, anon_sym_SQUOTE, - ACTIONS(1131), 1, + ACTIONS(1021), 1, + anon_sym_QMARK_DOT, + ACTIONS(1115), 1, anon_sym_EQ, - ACTIONS(1137), 1, + ACTIONS(1129), 1, anon_sym_EQ_GT, - ACTIONS(1139), 1, - anon_sym_QMARK_DOT, - ACTIONS(1653), 1, + ACTIONS(1219), 1, anon_sym_LBRACK, - ACTIONS(1655), 1, + ACTIONS(1224), 1, anon_sym_DOT, - ACTIONS(2167), 1, + ACTIONS(2159), 1, sym_identifier, - STATE(1595), 1, - sym_nested_identifier, - STATE(1596), 1, + ACTIONS(2173), 1, + anon_sym_LPAREN, + ACTIONS(2175), 1, + anon_sym_LT, + STATE(1061), 1, sym_string, - STATE(1670), 1, + STATE(1067), 1, + sym_nested_identifier, + STATE(1188), 1, sym__module, - ACTIONS(841), 10, - anon_sym_COMMA, - anon_sym_LPAREN, + STATE(1316), 1, + sym_type_arguments, + STATE(1551), 1, + sym_arguments, + ACTIONS(1621), 9, + sym__automatic_semicolon, + anon_sym_SEMI, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -69119,7 +68846,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, ACTIONS(831), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -69136,13 +68862,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(808), 25, + ACTIONS(1619), 23, anon_sym_STAR, anon_sym_as, - anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -69162,36 +68886,38 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [1558] = 16, + [789] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(475), 1, - anon_sym_DQUOTE, - ACTIONS(477), 1, - anon_sym_SQUOTE, - ACTIONS(827), 1, - anon_sym_QMARK_DOT, - ACTIONS(1127), 1, + ACTIONS(1013), 1, anon_sym_EQ, - ACTIONS(1129), 1, + ACTIONS(1019), 1, anon_sym_EQ_GT, - ACTIONS(1623), 1, + ACTIONS(1021), 1, + anon_sym_QMARK_DOT, + ACTIONS(1219), 1, anon_sym_LBRACK, - ACTIONS(1625), 1, + ACTIONS(1224), 1, anon_sym_DOT, - ACTIONS(1744), 1, + ACTIONS(1274), 1, anon_sym_COLON, - ACTIONS(2143), 1, + ACTIONS(2165), 1, sym_identifier, - STATE(1031), 1, - sym_nested_identifier, - STATE(1032), 1, + ACTIONS(2167), 1, + anon_sym_DQUOTE, + ACTIONS(2169), 1, + anon_sym_SQUOTE, + STATE(67), 1, sym_string, - STATE(1156), 1, + STATE(68), 1, + sym_nested_identifier, + STATE(94), 1, sym__module, - ACTIONS(841), 9, + ACTIONS(841), 11, + sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_RBRACK, + anon_sym_SEMI, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -69240,33 +68966,35 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [1652] = 15, + [885] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(81), 1, anon_sym_DQUOTE, ACTIONS(83), 1, anon_sym_SQUOTE, - ACTIONS(1011), 1, - anon_sym_QMARK_DOT, - ACTIONS(1115), 1, + ACTIONS(1013), 1, anon_sym_EQ, - ACTIONS(1117), 1, + ACTIONS(1019), 1, anon_sym_EQ_GT, + ACTIONS(1021), 1, + anon_sym_QMARK_DOT, ACTIONS(1219), 1, anon_sym_LBRACK, ACTIONS(1224), 1, anon_sym_DOT, - ACTIONS(2165), 1, + ACTIONS(2181), 1, sym_identifier, - STATE(1022), 1, - sym_nested_identifier, - STATE(1023), 1, + STATE(1062), 1, sym_string, - STATE(1208), 1, + STATE(1068), 1, + sym_nested_identifier, + STATE(1260), 1, sym__module, - ACTIONS(841), 10, + ACTIONS(841), 12, sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LT_EQ, @@ -69317,7 +69045,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [1744] = 15, + [979] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(475), 1, @@ -69326,24 +69054,31 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, ACTIONS(827), 1, anon_sym_QMARK_DOT, - ACTIONS(1127), 1, + ACTIONS(1115), 1, anon_sym_EQ, - ACTIONS(1129), 1, + ACTIONS(1117), 1, anon_sym_EQ_GT, ACTIONS(1623), 1, anon_sym_LBRACK, ACTIONS(1625), 1, anon_sym_DOT, - ACTIONS(2143), 1, + ACTIONS(2159), 1, sym_identifier, - STATE(1031), 1, - sym_nested_identifier, - STATE(1032), 1, + ACTIONS(2161), 1, + anon_sym_LPAREN, + ACTIONS(2163), 1, + anon_sym_LT, + STATE(1049), 1, + sym_type_arguments, + STATE(1061), 1, sym_string, - STATE(1156), 1, + STATE(1067), 1, + sym_nested_identifier, + STATE(1158), 1, + sym_arguments, + STATE(1188), 1, sym__module, - ACTIONS(841), 10, - anon_sym_LPAREN, + ACTIONS(1621), 9, anon_sym_COLON, anon_sym_RBRACK, anon_sym_LT_EQ, @@ -69369,12 +69104,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(808), 24, + ACTIONS(1619), 23, anon_sym_STAR, anon_sym_as, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -69394,26 +69128,43 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [1836] = 12, + [1081] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(2145), 1, - anon_sym_LPAREN, - ACTIONS(2147), 1, - anon_sym_LT, - ACTIONS(2171), 1, + ACTIONS(711), 1, + anon_sym_DQUOTE, + ACTIONS(713), 1, + anon_sym_SQUOTE, + ACTIONS(1139), 1, anon_sym_EQ, - ACTIONS(2175), 1, + ACTIONS(1145), 1, + anon_sym_EQ_GT, + ACTIONS(1147), 1, + anon_sym_QMARK_DOT, + ACTIONS(1653), 1, anon_sym_LBRACK, - ACTIONS(2177), 1, + ACTIONS(1655), 1, anon_sym_DOT, - ACTIONS(2179), 1, - anon_sym_QMARK_DOT, - STATE(1088), 1, - sym_type_arguments, - STATE(1157), 1, - sym_arguments, - ACTIONS(2181), 15, + ACTIONS(2183), 1, + sym_identifier, + STATE(1613), 1, + sym_nested_identifier, + STATE(1619), 1, + sym_string, + STATE(1647), 1, + sym__module, + ACTIONS(841), 10, + anon_sym_COMMA, + anon_sym_LPAREN, + 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, + anon_sym_LBRACE_PIPE, + ACTIONS(831), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -69429,27 +69180,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(2173), 16, + ACTIONS(808), 25, + anon_sym_STAR, anon_sym_as, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - 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_implements, - ACTIONS(2169), 21, - anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -69468,7 +69205,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [1922] = 16, + anon_sym_instanceof, + [1174] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(475), 1, @@ -69477,27 +69215,26 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, ACTIONS(827), 1, anon_sym_QMARK_DOT, - ACTIONS(1127), 1, + ACTIONS(1119), 1, anon_sym_EQ, - ACTIONS(1129), 1, + ACTIONS(1121), 1, anon_sym_EQ_GT, ACTIONS(1623), 1, anon_sym_LBRACK, ACTIONS(1625), 1, anon_sym_DOT, - ACTIONS(1726), 1, - anon_sym_COLON, - ACTIONS(2143), 1, + ACTIONS(2159), 1, sym_identifier, - STATE(1031), 1, - sym_nested_identifier, - STATE(1032), 1, + STATE(1061), 1, sym_string, - STATE(1156), 1, + STATE(1067), 1, + sym_nested_identifier, + STATE(1188), 1, sym__module, - ACTIONS(841), 9, + ACTIONS(841), 10, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_RBRACK, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -69521,7 +69258,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(808), 24, + ACTIONS(808), 25, anon_sym_STAR, anon_sym_as, anon_sym_BANG, @@ -69546,35 +69283,39 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [2016] = 17, + anon_sym_implements, + [1267] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(475), 1, anon_sym_DQUOTE, ACTIONS(477), 1, anon_sym_SQUOTE, - ACTIONS(827), 1, - anon_sym_QMARK_DOT, - ACTIONS(1127), 1, + ACTIONS(805), 1, anon_sym_EQ, - ACTIONS(1129), 1, + ACTIONS(825), 1, anon_sym_EQ_GT, + ACTIONS(827), 1, + anon_sym_QMARK_DOT, ACTIONS(1623), 1, anon_sym_LBRACK, ACTIONS(1625), 1, anon_sym_DOT, - ACTIONS(1665), 1, - anon_sym_in, - ACTIONS(1668), 1, - anon_sym_of, - ACTIONS(2143), 1, + ACTIONS(1709), 1, + anon_sym_QMARK, + ACTIONS(1724), 1, + anon_sym_COLON, + ACTIONS(2159), 1, sym_identifier, - STATE(1031), 1, - sym_nested_identifier, - STATE(1032), 1, + STATE(1061), 1, sym_string, - STATE(1156), 1, + STATE(1067), 1, + sym_nested_identifier, + STATE(1188), 1, sym__module, + ACTIONS(812), 2, + anon_sym_COMMA, + anon_sym_RPAREN, ACTIONS(841), 8, anon_sym_LPAREN, anon_sym_LT_EQ, @@ -69604,38 +69345,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_as, anon_sym_BANG, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - 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_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - [2111] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2183), 23, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_BANG, anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, - anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -69651,84 +69364,46 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(2185), 36, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - 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_implements, - [2178] = 16, + [1366] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(2175), 1, - anon_sym_LBRACK, - ACTIONS(2177), 1, - anon_sym_DOT, - ACTIONS(2179), 1, + ACTIONS(475), 1, + anon_sym_DQUOTE, + ACTIONS(477), 1, + anon_sym_SQUOTE, + ACTIONS(825), 1, + anon_sym_EQ_GT, + ACTIONS(827), 1, anon_sym_QMARK_DOT, - ACTIONS(2187), 1, + ACTIONS(927), 1, anon_sym_EQ, - ACTIONS(2191), 1, - anon_sym_BANG, - ACTIONS(2193), 1, - anon_sym_in, - ACTIONS(2196), 1, - anon_sym_of, - ACTIONS(2198), 1, + ACTIONS(1623), 1, + anon_sym_LBRACK, + ACTIONS(1625), 1, + anon_sym_DOT, + ACTIONS(1732), 1, anon_sym_COLON, - ACTIONS(2200), 1, - anon_sym_EQ_GT, - STATE(2291), 1, - sym_type_annotation, - STATE(2647), 1, - sym__initializer, - ACTIONS(2189), 3, - sym__automatic_semicolon, + ACTIONS(2159), 1, + sym_identifier, + STATE(1061), 1, + sym_string, + STATE(1067), 1, + sym_nested_identifier, + STATE(1188), 1, + sym__module, + ACTIONS(841), 10, anon_sym_COMMA, - anon_sym_SEMI, - ACTIONS(1099), 10, - anon_sym_as, anon_sym_LPAREN, + 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, - ACTIONS(2181), 15, + ACTIONS(831), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -69744,8 +69419,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1097), 20, + ACTIONS(808), 24, anon_sym_STAR, + anon_sym_as, + anon_sym_BANG, + anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, @@ -69765,36 +69443,40 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [2271] = 15, + anon_sym_instanceof, + [1461] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1009), 1, + ACTIONS(475), 1, + anon_sym_DQUOTE, + ACTIONS(477), 1, + anon_sym_SQUOTE, + ACTIONS(805), 1, + anon_sym_EQ, + ACTIONS(825), 1, anon_sym_EQ_GT, - ACTIONS(1011), 1, + ACTIONS(827), 1, anon_sym_QMARK_DOT, - ACTIONS(1213), 1, - anon_sym_LPAREN, - ACTIONS(1216), 1, - anon_sym_COLON, - ACTIONS(1219), 1, + ACTIONS(1623), 1, anon_sym_LBRACK, - ACTIONS(1224), 1, - anon_sym_DOT, - ACTIONS(1242), 1, - anon_sym_RBRACE, - ACTIONS(1282), 1, - anon_sym_EQ, - ACTIONS(2202), 1, - sym_identifier, - STATE(2645), 1, - aux_sym_object_repeat1, - ACTIONS(1221), 2, - anon_sym_LT, + ACTIONS(1625), 1, + anon_sym_DOT, + ACTIONS(1709), 1, anon_sym_QMARK, - ACTIONS(841), 10, - sym__automatic_semicolon, + ACTIONS(2159), 1, + sym_identifier, + STATE(1061), 1, + sym_string, + STATE(1067), 1, + sym_nested_identifier, + STATE(1188), 1, + sym__module, + ACTIONS(812), 3, anon_sym_COMMA, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(841), 8, + anon_sym_LPAREN, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -69818,11 +69500,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(808), 22, + ACTIONS(808), 23, anon_sym_STAR, anon_sym_as, anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_AMP_AMP, @@ -69841,46 +69524,43 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [2362] = 14, + [1558] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(2175), 1, - anon_sym_LBRACK, - ACTIONS(2179), 1, + ACTIONS(475), 1, + anon_sym_DQUOTE, + ACTIONS(477), 1, + anon_sym_SQUOTE, + ACTIONS(827), 1, anon_sym_QMARK_DOT, - ACTIONS(2204), 1, + ACTIONS(1115), 1, anon_sym_EQ, - ACTIONS(2209), 1, - anon_sym_LT, - ACTIONS(2212), 1, - anon_sym_DOT, - ACTIONS(2214), 1, + ACTIONS(1117), 1, anon_sym_EQ_GT, - STATE(1993), 1, - sym_type_arguments, - ACTIONS(2206), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(2216), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1670), 4, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(1099), 10, - anon_sym_as, + ACTIONS(1623), 1, + anon_sym_LBRACK, + ACTIONS(1625), 1, + anon_sym_DOT, + ACTIONS(2159), 1, + sym_identifier, + STATE(1061), 1, + sym_string, + STATE(1067), 1, + sym_nested_identifier, + STATE(1188), 1, + sym__module, + ACTIONS(841), 10, anon_sym_LPAREN, + anon_sym_COLON, + 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, - ACTIONS(2181), 15, + ACTIONS(831), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -69896,10 +69576,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1097), 19, + ACTIONS(808), 24, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -69908,7 +69590,9 @@ static 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_PERCENT, @@ -69916,37 +69600,36 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [2451] = 17, + anon_sym_instanceof, + [1650] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(475), 1, + ACTIONS(81), 1, anon_sym_DQUOTE, - ACTIONS(477), 1, + ACTIONS(83), 1, anon_sym_SQUOTE, - ACTIONS(827), 1, + ACTIONS(1021), 1, anon_sym_QMARK_DOT, ACTIONS(1127), 1, anon_sym_EQ, ACTIONS(1129), 1, anon_sym_EQ_GT, - ACTIONS(1623), 1, + ACTIONS(1219), 1, anon_sym_LBRACK, - ACTIONS(1625), 1, + ACTIONS(1224), 1, anon_sym_DOT, - ACTIONS(1772), 1, - anon_sym_in, - ACTIONS(1775), 1, - anon_sym_of, - ACTIONS(2143), 1, + ACTIONS(2181), 1, sym_identifier, - STATE(1031), 1, - sym_nested_identifier, - STATE(1032), 1, + STATE(1062), 1, sym_string, - STATE(1156), 1, + STATE(1068), 1, + sym_nested_identifier, + STATE(1260), 1, sym__module, - ACTIONS(841), 8, + ACTIONS(841), 10, + sym__automatic_semicolon, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -69970,10 +69653,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(808), 23, + ACTIONS(808), 24, anon_sym_STAR, anon_sym_as, anon_sym_BANG, + anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, @@ -69994,47 +69678,44 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [2546] = 14, + [1742] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1670), 1, - anon_sym_extends, - ACTIONS(2175), 1, - anon_sym_LBRACK, - ACTIONS(2179), 1, + ACTIONS(475), 1, + anon_sym_DQUOTE, + ACTIONS(477), 1, + anon_sym_SQUOTE, + ACTIONS(827), 1, anon_sym_QMARK_DOT, - ACTIONS(2204), 1, + ACTIONS(1115), 1, anon_sym_EQ, - ACTIONS(2206), 1, - anon_sym_COMMA, - ACTIONS(2214), 1, + ACTIONS(1117), 1, anon_sym_EQ_GT, - ACTIONS(2219), 1, - anon_sym_LT, - ACTIONS(2222), 1, + ACTIONS(1623), 1, + anon_sym_LBRACK, + ACTIONS(1625), 1, anon_sym_DOT, - STATE(313), 1, - sym_type_arguments, - ACTIONS(2216), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1099), 14, - anon_sym_as, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(1732), 1, anon_sym_COLON, + ACTIONS(2159), 1, + sym_identifier, + STATE(1061), 1, + sym_string, + STATE(1067), 1, + sym_nested_identifier, + STATE(1188), 1, + sym__module, + ACTIONS(841), 9, + anon_sym_LPAREN, 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, - ACTIONS(2181), 15, + ACTIONS(831), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -70050,10 +69731,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1097), 18, + ACTIONS(808), 24, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, anon_sym_in, + anon_sym_LT, + anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, anon_sym_AMP_AMP, @@ -70061,7 +69745,9 @@ static 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_PERCENT, @@ -70069,39 +69755,41 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [2635] = 13, + anon_sym_instanceof, + [1836] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(825), 1, - anon_sym_EQ_GT, + ACTIONS(475), 1, + anon_sym_DQUOTE, + ACTIONS(477), 1, + anon_sym_SQUOTE, ACTIONS(827), 1, anon_sym_QMARK_DOT, - ACTIONS(1127), 1, + ACTIONS(1115), 1, anon_sym_EQ, + ACTIONS(1117), 1, + anon_sym_EQ_GT, ACTIONS(1623), 1, anon_sym_LBRACK, ACTIONS(1625), 1, anon_sym_DOT, - ACTIONS(2145), 1, - anon_sym_LPAREN, - ACTIONS(2147), 1, - anon_sym_LT, - STATE(1089), 1, - sym_type_arguments, - STATE(1147), 1, - sym_arguments, - ACTIONS(1621), 14, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, + ACTIONS(1746), 1, anon_sym_COLON, + ACTIONS(2159), 1, + sym_identifier, + STATE(1061), 1, + sym_string, + STATE(1067), 1, + sym_nested_identifier, + STATE(1188), 1, + sym__module, + ACTIONS(841), 9, + anon_sym_LPAREN, 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, @@ -70121,10 +69809,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1619), 21, + ACTIONS(808), 24, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -70143,46 +69833,27 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [2722] = 3, + anon_sym_instanceof, + [1930] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2123), 23, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - 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_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - ACTIONS(2125), 36, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(2161), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, + ACTIONS(2163), 1, + anon_sym_LT, + ACTIONS(2187), 1, + anon_sym_EQ, + ACTIONS(2191), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(2193), 1, anon_sym_DOT, + ACTIONS(2195), 1, anon_sym_QMARK_DOT, + STATE(1046), 1, + sym_type_arguments, + STATE(1160), 1, + sym_arguments, + ACTIONS(2197), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -70198,6 +69869,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, + ACTIONS(2189), 16, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -70207,15 +69886,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [2789] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2224), 23, + ACTIONS(2185), 21, anon_sym_STAR, - anon_sym_EQ, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -70234,82 +69908,44 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(2226), 36, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, + [2016] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1019), 1, + anon_sym_EQ_GT, + ACTIONS(1021), 1, + anon_sym_QMARK_DOT, + ACTIONS(1213), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, + ACTIONS(1216), 1, anon_sym_COLON, + ACTIONS(1219), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(1224), 1, 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_implements, - [2856] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2175), 1, - anon_sym_LBRACK, - ACTIONS(2179), 1, - anon_sym_QMARK_DOT, - ACTIONS(2204), 1, + ACTIONS(1244), 1, + anon_sym_RBRACE, + ACTIONS(1258), 1, anon_sym_EQ, - ACTIONS(2209), 1, + ACTIONS(2199), 1, + sym_identifier, + STATE(2757), 1, + aux_sym_object_repeat1, + ACTIONS(1221), 2, anon_sym_LT, - ACTIONS(2214), 1, - anon_sym_EQ_GT, - ACTIONS(2228), 1, - anon_sym_DOT, - STATE(1993), 1, - sym_type_arguments, - ACTIONS(1585), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1583), 6, + anon_sym_QMARK, + ACTIONS(841), 10, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(1099), 10, - anon_sym_as, - anon_sym_LPAREN, 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(2181), 15, + ACTIONS(831), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -70325,19 +69961,21 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1097), 19, + ACTIONS(808), 22, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_SLASH, - anon_sym_QMARK, 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_PERCENT, @@ -70345,31 +69983,36 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [2943] = 13, + anon_sym_instanceof, + [2107] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2145), 1, - anon_sym_LPAREN, - ACTIONS(2147), 1, - anon_sym_LT, - ACTIONS(2171), 1, - anon_sym_EQ, - ACTIONS(2175), 1, + ACTIONS(1702), 1, + anon_sym_extends, + ACTIONS(2191), 1, anon_sym_LBRACK, - ACTIONS(2177), 1, - anon_sym_DOT, - ACTIONS(2179), 1, + ACTIONS(2195), 1, anon_sym_QMARK_DOT, + ACTIONS(2201), 1, + anon_sym_EQ, + ACTIONS(2203), 1, + anon_sym_COMMA, + ACTIONS(2206), 1, + anon_sym_LT, + ACTIONS(2212), 1, + anon_sym_DOT, ACTIONS(2214), 1, anon_sym_EQ_GT, - STATE(1088), 1, + STATE(378), 1, sym_type_arguments, - STATE(1157), 1, - sym_arguments, - ACTIONS(2173), 14, + ACTIONS(2209), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1039), 14, anon_sym_as, - anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, @@ -70381,7 +70024,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(2181), 15, + ACTIONS(2197), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -70397,11 +70040,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(2169), 21, + ACTIONS(1037), 18, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, anon_sym_AMP_AMP, @@ -70409,9 +70051,7 @@ static 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_PERCENT, @@ -70419,26 +70059,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [3030] = 7, + [2196] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1089), 1, - anon_sym_extends, - ACTIONS(2233), 1, - anon_sym_LT, - ACTIONS(2230), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_DOT, - ACTIONS(2236), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(2183), 19, + ACTIONS(2216), 23, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, anon_sym_in, + anon_sym_LT, + anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, anon_sym_AMP_AMP, @@ -70446,7 +70076,9 @@ static 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_PERCENT, @@ -70454,14 +70086,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(2185), 32, + ACTIONS(2218), 36, anon_sym_as, anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, 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, @@ -70487,10 +70123,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [3105] = 3, + [2263] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2239), 23, + ACTIONS(2127), 23, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -70514,7 +70150,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(2241), 36, + ACTIONS(2129), 36, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -70551,44 +70187,45 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [3172] = 15, + [2330] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1009), 1, - anon_sym_EQ_GT, - ACTIONS(1011), 1, - anon_sym_QMARK_DOT, - ACTIONS(1213), 1, - anon_sym_LPAREN, - ACTIONS(1216), 1, - anon_sym_COLON, - ACTIONS(1219), 1, + ACTIONS(2191), 1, anon_sym_LBRACK, - ACTIONS(1224), 1, - anon_sym_DOT, - ACTIONS(1244), 1, - anon_sym_RBRACE, - ACTIONS(1282), 1, + ACTIONS(2195), 1, + anon_sym_QMARK_DOT, + ACTIONS(2201), 1, anon_sym_EQ, - ACTIONS(2202), 1, - sym_identifier, - STATE(2772), 1, - aux_sym_object_repeat1, - ACTIONS(1221), 2, + ACTIONS(2214), 1, + anon_sym_EQ_GT, + ACTIONS(2220), 1, anon_sym_LT, - anon_sym_QMARK, - ACTIONS(841), 10, + ACTIONS(2223), 1, + anon_sym_DOT, + STATE(1994), 1, + sym_type_arguments, + ACTIONS(1503), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1501), 6, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(1039), 10, + anon_sym_as, + anon_sym_LPAREN, 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(831), 15, + ACTIONS(2197), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -70604,21 +70241,19 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(808), 22, + ACTIONS(1037), 19, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_SLASH, + anon_sym_QMARK, 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_PERCENT, @@ -70626,32 +70261,31 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - [3263] = 13, + [2417] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(2175), 1, + ACTIONS(2191), 1, anon_sym_LBRACK, - ACTIONS(2179), 1, + ACTIONS(2195), 1, anon_sym_QMARK_DOT, - ACTIONS(2204), 1, + ACTIONS(2201), 1, anon_sym_EQ, + ACTIONS(2206), 1, + anon_sym_LT, ACTIONS(2214), 1, anon_sym_EQ_GT, - ACTIONS(2219), 1, - anon_sym_LT, - ACTIONS(2243), 1, + ACTIONS(2225), 1, anon_sym_DOT, - STATE(313), 1, + STATE(378), 1, sym_type_arguments, - ACTIONS(1583), 2, + ACTIONS(1501), 2, anon_sym_COMMA, anon_sym_extends, - ACTIONS(1585), 3, + ACTIONS(1503), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1099), 14, + ACTIONS(1039), 14, anon_sym_as, anon_sym_RBRACE, anon_sym_LPAREN, @@ -70666,81 +70300,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(2181), 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(1097), 18, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_SLASH, - anon_sym_QMARK, - 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_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [3350] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2245), 23, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - 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_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - ACTIONS(2247), 36, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + ACTIONS(2197), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -70756,33 +70316,8 @@ static 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_implements, - [3417] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1411), 1, - anon_sym_extends, - ACTIONS(2230), 1, - anon_sym_DOT, - ACTIONS(2249), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(2233), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(2183), 19, + ACTIONS(1037), 18, anon_sym_STAR, - anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_SLASH, @@ -70792,53 +70327,20 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - ACTIONS(2185), 32, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - 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_implements, - [3492] = 15, + anon_sym_CARET, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [2504] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1009), 1, + ACTIONS(1019), 1, anon_sym_EQ_GT, - ACTIONS(1011), 1, + ACTIONS(1021), 1, anon_sym_QMARK_DOT, ACTIONS(1201), 1, anon_sym_RBRACE, @@ -70850,11 +70352,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(1224), 1, anon_sym_DOT, - ACTIONS(1282), 1, + ACTIONS(1258), 1, anon_sym_EQ, - ACTIONS(2202), 1, + ACTIONS(2199), 1, sym_identifier, - STATE(2739), 1, + STATE(2641), 1, aux_sym_object_repeat1, ACTIONS(1221), 2, anon_sym_LT, @@ -70909,46 +70411,43 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [3583] = 3, + [2595] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(2252), 23, - anon_sym_STAR, + ACTIONS(825), 1, + anon_sym_EQ_GT, + ACTIONS(827), 1, + anon_sym_QMARK_DOT, + ACTIONS(1115), 1, anon_sym_EQ, - anon_sym_BANG, - anon_sym_in, + ACTIONS(1623), 1, + anon_sym_LBRACK, + ACTIONS(1625), 1, + anon_sym_DOT, + ACTIONS(2161), 1, + anon_sym_LPAREN, + ACTIONS(2163), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - 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_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - ACTIONS(2254), 36, + STATE(1049), 1, + sym_type_arguments, + STATE(1158), 1, + sym_arguments, + ACTIONS(1621), 14, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, 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_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(831), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -70964,19 +70463,32 @@ static 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_implements, - [3650] = 3, + ACTIONS(1619), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + 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_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [2682] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2256), 23, + ACTIONS(2147), 23, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -71000,7 +70512,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(2258), 36, + ACTIONS(2149), 36, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -71037,14 +70549,64 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [3717] = 3, + [2749] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(2127), 23, - anon_sym_STAR, + ACTIONS(2191), 1, + anon_sym_LBRACK, + ACTIONS(2193), 1, + anon_sym_DOT, + ACTIONS(2195), 1, + anon_sym_QMARK_DOT, + ACTIONS(2227), 1, anon_sym_EQ, + ACTIONS(2231), 1, anon_sym_BANG, + ACTIONS(2233), 1, anon_sym_in, + ACTIONS(2236), 1, + anon_sym_of, + ACTIONS(2238), 1, + anon_sym_COLON, + ACTIONS(2240), 1, + anon_sym_EQ_GT, + STATE(2322), 1, + sym_type_annotation, + STATE(2653), 1, + sym__initializer, + ACTIONS(2229), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(1039), 10, + anon_sym_as, + anon_sym_LPAREN, + 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(2197), 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(1037), 20, + anon_sym_STAR, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, @@ -71064,47 +70626,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(2129), 36, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - 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_implements, - [3784] = 3, + [2842] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2260), 23, + ACTIONS(2242), 23, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -71128,7 +70653,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(2262), 36, + ACTIONS(2244), 36, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -71165,45 +70690,45 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [3851] = 13, + [2909] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(2219), 1, - anon_sym_LT, - ACTIONS(2264), 1, + ACTIONS(475), 1, + anon_sym_DQUOTE, + ACTIONS(477), 1, + anon_sym_SQUOTE, + ACTIONS(827), 1, + anon_sym_QMARK_DOT, + ACTIONS(1115), 1, anon_sym_EQ, - ACTIONS(2266), 1, + ACTIONS(1117), 1, + anon_sym_EQ_GT, + ACTIONS(1623), 1, anon_sym_LBRACK, - ACTIONS(2268), 1, + ACTIONS(1625), 1, anon_sym_DOT, - ACTIONS(2270), 1, - anon_sym_EQ_GT, - ACTIONS(2272), 1, - anon_sym_QMARK_DOT, - STATE(313), 1, - sym_type_arguments, - ACTIONS(1583), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(1585), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1099), 13, - sym__automatic_semicolon, - anon_sym_as, - anon_sym_RBRACE, + ACTIONS(1665), 1, + anon_sym_in, + ACTIONS(1668), 1, + anon_sym_of, + ACTIONS(2159), 1, + sym_identifier, + STATE(1061), 1, + sym_string, + STATE(1067), 1, + sym_nested_identifier, + STATE(1188), 1, + sym__module, + ACTIONS(841), 8, anon_sym_LPAREN, - 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, - ACTIONS(2181), 15, + ACTIONS(831), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -71219,10 +70744,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1097), 18, + ACTIONS(808), 23, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, - anon_sym_in, + anon_sym_LT, + anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, anon_sym_AMP_AMP, @@ -71230,7 +70757,9 @@ static 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_PERCENT, @@ -71238,35 +70767,38 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [3937] = 14, + anon_sym_instanceof, + [3004] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1009), 1, - anon_sym_EQ_GT, - ACTIONS(1011), 1, - anon_sym_QMARK_DOT, - ACTIONS(1213), 1, - anon_sym_LPAREN, - ACTIONS(1216), 1, - anon_sym_COLON, - ACTIONS(1219), 1, + ACTIONS(2191), 1, anon_sym_LBRACK, - ACTIONS(1224), 1, - anon_sym_DOT, - ACTIONS(1242), 1, - anon_sym_RBRACE, - ACTIONS(1282), 1, + ACTIONS(2195), 1, + anon_sym_QMARK_DOT, + ACTIONS(2201), 1, anon_sym_EQ, - STATE(2645), 1, - aux_sym_object_repeat1, - ACTIONS(1221), 2, + ACTIONS(2214), 1, + anon_sym_EQ_GT, + ACTIONS(2220), 1, anon_sym_LT, - anon_sym_QMARK, - ACTIONS(841), 12, - sym__automatic_semicolon, - anon_sym_as, + ACTIONS(2246), 1, + anon_sym_DOT, + STATE(1994), 1, + sym_type_arguments, + ACTIONS(2203), 2, anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(2209), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1702), 4, + sym__automatic_semicolon, anon_sym_SEMI, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(1039), 10, + anon_sym_as, + anon_sym_LPAREN, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -71275,7 +70807,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(831), 15, + ACTIONS(2197), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -71291,20 +70823,19 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(808), 20, + ACTIONS(1037), 19, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_SLASH, + anon_sym_QMARK, 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_PERCENT, @@ -71312,44 +70843,46 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [4025] = 14, + [3093] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1216), 1, - anon_sym_COLON, - ACTIONS(1242), 1, - anon_sym_RBRACE, - ACTIONS(2266), 1, - anon_sym_LBRACK, - ACTIONS(2270), 1, - anon_sym_EQ_GT, - ACTIONS(2272), 1, - anon_sym_QMARK_DOT, - ACTIONS(2274), 1, + ACTIONS(2248), 23, + anon_sym_STAR, anon_sym_EQ, - ACTIONS(2276), 1, - anon_sym_LPAREN, - ACTIONS(2282), 1, - anon_sym_DOT, - STATE(2645), 1, - aux_sym_object_repeat1, - ACTIONS(2279), 2, + anon_sym_BANG, + anon_sym_in, anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(1099), 12, - sym__automatic_semicolon, + 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_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + ACTIONS(2250), 36, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, - 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, - ACTIONS(2181), 15, + anon_sym_RBRACE, + anon_sym_LPAREN, + 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, @@ -71365,12 +70898,27 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1097), 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_implements, + [3160] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2252), 23, anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_SLASH, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -71386,35 +70934,34 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [4113] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1009), 1, - anon_sym_EQ_GT, - ACTIONS(1011), 1, - anon_sym_QMARK_DOT, - ACTIONS(1201), 1, + ACTIONS(2254), 36, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_RBRACE, - ACTIONS(1213), 1, anon_sym_LPAREN, - ACTIONS(1216), 1, + anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, - ACTIONS(1219), 1, anon_sym_LBRACK, - ACTIONS(1224), 1, + anon_sym_RBRACK, anon_sym_DOT, - ACTIONS(1282), 1, - anon_sym_EQ, - STATE(2739), 1, - aux_sym_object_repeat1, - ACTIONS(1221), 2, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(841), 12, - sym__automatic_semicolon, - anon_sym_as, - anon_sym_COMMA, - anon_sym_SEMI, + 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, @@ -71423,6 +70970,45 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, + anon_sym_implements, + [3227] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(475), 1, + anon_sym_DQUOTE, + ACTIONS(477), 1, + anon_sym_SQUOTE, + ACTIONS(827), 1, + anon_sym_QMARK_DOT, + ACTIONS(1115), 1, + anon_sym_EQ, + ACTIONS(1117), 1, + anon_sym_EQ_GT, + ACTIONS(1623), 1, + anon_sym_LBRACK, + ACTIONS(1625), 1, + anon_sym_DOT, + ACTIONS(1780), 1, + anon_sym_in, + ACTIONS(1783), 1, + anon_sym_of, + ACTIONS(2159), 1, + sym_identifier, + STATE(1061), 1, + sym_string, + STATE(1067), 1, + sym_nested_identifier, + STATE(1188), 1, + sym__module, + ACTIONS(841), 8, + anon_sym_LPAREN, + 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(831), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -71439,12 +71025,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(808), 20, + ACTIONS(808), 23, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, - anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_SLASH, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -71460,129 +71048,41 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [4201] = 31, - ACTIONS(3), 1, - sym_comment, - ACTIONS(427), 1, - anon_sym_STAR, - ACTIONS(461), 1, - anon_sym_QMARK, - ACTIONS(463), 1, - anon_sym_AMP, - ACTIONS(465), 1, - anon_sym_PIPE, - ACTIONS(495), 1, - anon_sym_keyof, - ACTIONS(497), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(815), 1, - anon_sym_typeof, - ACTIONS(817), 1, - anon_sym_LPAREN, - ACTIONS(829), 1, - anon_sym_new, - ACTIONS(845), 1, - anon_sym_DQUOTE, - ACTIONS(847), 1, - anon_sym_SQUOTE, - ACTIONS(849), 1, - sym_number, - ACTIONS(925), 1, - sym_identifier, - ACTIONS(929), 1, - anon_sym_LBRACE, - ACTIONS(933), 1, - sym_this, - ACTIONS(935), 1, - sym_readonly, - ACTIONS(1691), 1, - anon_sym_LT, - ACTIONS(2286), 1, - anon_sym_LBRACK, - STATE(426), 1, - sym__tuple_type_body, - STATE(1913), 1, - sym_nested_type_identifier, - STATE(2959), 1, - sym_type_parameters, - STATE(2996), 1, - sym_formal_parameters, - STATE(2999), 1, - sym_nested_identifier, - ACTIONS(853), 2, - sym_true, - sym_false, - ACTIONS(1693), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(446), 2, - sym_string, - sym__number, - ACTIONS(2284), 4, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - STATE(2626), 5, - sym__type, - sym_constructor_type, - sym_union_type, - sym_intersection_type, - sym_function_type, - ACTIONS(843), 6, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - STATE(2496), 14, - sym__primary_type, - sym_conditional_type, - sym_generic_type, - sym_type_query, - sym_index_type_query, - sym_lookup_type, - sym_literal_type, - sym_existential_type, - sym_flow_maybe_type, - sym_parenthesized_type, - sym_predefined_type, - sym_object_type, - sym_array_type, - sym_tuple_type, - [4323] = 12, + anon_sym_instanceof, + [3322] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(825), 1, + ACTIONS(1019), 1, anon_sym_EQ_GT, - ACTIONS(827), 1, + ACTIONS(1021), 1, anon_sym_QMARK_DOT, - ACTIONS(927), 1, - anon_sym_EQ, - ACTIONS(1623), 1, + ACTIONS(1213), 1, + anon_sym_LPAREN, + ACTIONS(1216), 1, + anon_sym_COLON, + ACTIONS(1219), 1, anon_sym_LBRACK, - ACTIONS(1625), 1, + ACTIONS(1224), 1, anon_sym_DOT, - ACTIONS(2288), 2, - anon_sym_COMMA, + ACTIONS(1242), 1, anon_sym_RBRACE, - ACTIONS(2291), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1185), 4, + ACTIONS(1258), 1, + anon_sym_EQ, + ACTIONS(2199), 1, + sym_identifier, + STATE(2651), 1, + aux_sym_object_repeat1, + ACTIONS(1221), 2, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(841), 10, sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(841), 10, - anon_sym_as, - anon_sym_LPAREN, 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, @@ -71602,20 +71102,21 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(808), 20, + ACTIONS(808), 22, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, - anon_sym_QMARK, 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_PERCENT, @@ -71623,34 +71124,66 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [4407] = 12, + anon_sym_instanceof, + [3413] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(825), 1, - anon_sym_EQ_GT, - ACTIONS(827), 1, - anon_sym_QMARK_DOT, - ACTIONS(927), 1, - anon_sym_EQ, - ACTIONS(1185), 1, + ACTIONS(1455), 1, anon_sym_extends, - ACTIONS(1623), 1, - anon_sym_LBRACK, - ACTIONS(1625), 1, + ACTIONS(2266), 1, anon_sym_DOT, - ACTIONS(2288), 1, + ACTIONS(2260), 2, anon_sym_COMMA, - ACTIONS(2291), 3, + anon_sym_LBRACK, + ACTIONS(2263), 4, + anon_sym_LT, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(841), 14, + ACTIONS(2256), 19, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_in, + anon_sym_SLASH, + anon_sym_QMARK, + 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_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + ACTIONS(2258), 32, anon_sym_as, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, + 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, @@ -71659,7 +71192,47 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(831), 15, + anon_sym_implements, + [3488] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2269), 23, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + 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_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + ACTIONS(2271), 36, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + 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, @@ -71675,11 +71248,25 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(808), 19, + 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_implements, + [3555] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2256), 23, anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_LT, + anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, anon_sym_AMP_AMP, @@ -71687,7 +71274,9 @@ static 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_PERCENT, @@ -71695,35 +71284,34 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [4491] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1009), 1, - anon_sym_EQ_GT, - ACTIONS(1011), 1, - anon_sym_QMARK_DOT, - ACTIONS(1213), 1, + ACTIONS(2258), 36, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(1216), 1, + anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, - ACTIONS(1219), 1, anon_sym_LBRACK, - ACTIONS(1224), 1, + anon_sym_RBRACK, anon_sym_DOT, - ACTIONS(1244), 1, - anon_sym_RBRACE, - ACTIONS(1282), 1, - anon_sym_EQ, - STATE(2772), 1, - aux_sym_object_repeat1, - ACTIONS(1221), 2, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(841), 12, - sym__automatic_semicolon, - anon_sym_as, - anon_sym_COMMA, - anon_sym_SEMI, + 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, @@ -71732,7 +71320,51 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(831), 15, + anon_sym_implements, + [3622] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(945), 1, + anon_sym_extends, + ACTIONS(2263), 1, + anon_sym_LT, + ACTIONS(2266), 3, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_DOT, + ACTIONS(2273), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(2256), 19, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_in, + anon_sym_SLASH, + anon_sym_QMARK, + 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_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + ACTIONS(2258), 32, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_QMARK_DOT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -71748,12 +71380,27 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(808), 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_implements, + [3697] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2276), 23, anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_SLASH, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -71769,33 +71416,71 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [4579] = 13, + ACTIONS(2278), 36, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + 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_implements, + [3764] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(2157), 1, + ACTIONS(2161), 1, anon_sym_LPAREN, - ACTIONS(2159), 1, + ACTIONS(2163), 1, anon_sym_LT, - ACTIONS(2171), 1, + ACTIONS(2187), 1, anon_sym_EQ, - ACTIONS(2266), 1, + ACTIONS(2191), 1, anon_sym_LBRACK, - ACTIONS(2270), 1, - anon_sym_EQ_GT, - ACTIONS(2272), 1, - anon_sym_QMARK_DOT, - ACTIONS(2282), 1, + ACTIONS(2193), 1, anon_sym_DOT, - STATE(1347), 1, + ACTIONS(2195), 1, + anon_sym_QMARK_DOT, + ACTIONS(2214), 1, + anon_sym_EQ_GT, + STATE(1046), 1, sym_type_arguments, - STATE(1607), 1, + STATE(1160), 1, sym_arguments, - ACTIONS(2173), 13, - sym__automatic_semicolon, + ACTIONS(2189), 14, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -71804,7 +71489,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(2181), 15, + ACTIONS(2197), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -71820,7 +71505,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(2169), 21, + ACTIONS(2185), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -71842,31 +71527,31 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [4665] = 14, + [3851] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1216), 1, - anon_sym_COLON, - ACTIONS(1244), 1, - anon_sym_RBRACE, - ACTIONS(2266), 1, - anon_sym_LBRACK, - ACTIONS(2270), 1, + ACTIONS(1019), 1, anon_sym_EQ_GT, - ACTIONS(2272), 1, + ACTIONS(1021), 1, anon_sym_QMARK_DOT, - ACTIONS(2274), 1, - anon_sym_EQ, - ACTIONS(2276), 1, + ACTIONS(1213), 1, anon_sym_LPAREN, - ACTIONS(2282), 1, + ACTIONS(1216), 1, + anon_sym_COLON, + ACTIONS(1219), 1, + anon_sym_LBRACK, + ACTIONS(1224), 1, anon_sym_DOT, - STATE(2772), 1, + ACTIONS(1242), 1, + anon_sym_RBRACE, + ACTIONS(1258), 1, + anon_sym_EQ, + STATE(2651), 1, aux_sym_object_repeat1, - ACTIONS(2279), 2, + ACTIONS(1221), 2, anon_sym_LT, anon_sym_QMARK, - ACTIONS(1099), 12, + ACTIONS(841), 12, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, @@ -71879,7 +71564,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(2181), 15, + ACTIONS(831), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -71895,7 +71580,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1097), 20, + ACTIONS(808), 20, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -71916,36 +71601,34 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [4753] = 14, + [3939] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1670), 1, - anon_sym_extends, - ACTIONS(2206), 1, - anon_sym_COMMA, - ACTIONS(2219), 1, - anon_sym_LT, - ACTIONS(2264), 1, - anon_sym_EQ, - ACTIONS(2266), 1, - anon_sym_LBRACK, - ACTIONS(2270), 1, + ACTIONS(1019), 1, anon_sym_EQ_GT, - ACTIONS(2272), 1, + ACTIONS(1021), 1, anon_sym_QMARK_DOT, - ACTIONS(2294), 1, + ACTIONS(1201), 1, + anon_sym_RBRACE, + ACTIONS(1213), 1, + anon_sym_LPAREN, + ACTIONS(1216), 1, + anon_sym_COLON, + ACTIONS(1219), 1, + anon_sym_LBRACK, + ACTIONS(1224), 1, anon_sym_DOT, - STATE(313), 1, - sym_type_arguments, - ACTIONS(2216), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1099), 13, + ACTIONS(1258), 1, + anon_sym_EQ, + STATE(2641), 1, + aux_sym_object_repeat1, + ACTIONS(1221), 2, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(841), 12, sym__automatic_semicolon, anon_sym_as, - anon_sym_RBRACE, - anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_SEMI, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, @@ -71955,7 +71638,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(2181), 15, + ACTIONS(831), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -71971,18 +71654,20 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1097), 18, + ACTIONS(808), 20, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_SLASH, - anon_sym_QMARK, 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_PERCENT, @@ -71990,32 +71675,35 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [4841] = 13, + [4027] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1009), 1, - anon_sym_EQ_GT, - ACTIONS(1011), 1, - anon_sym_QMARK_DOT, - ACTIONS(1127), 1, + ACTIONS(2206), 1, + anon_sym_LT, + ACTIONS(2280), 1, anon_sym_EQ, - ACTIONS(1219), 1, + ACTIONS(2282), 1, anon_sym_LBRACK, - ACTIONS(1224), 1, + ACTIONS(2284), 1, anon_sym_DOT, - ACTIONS(2157), 1, - anon_sym_LPAREN, - ACTIONS(2159), 1, - anon_sym_LT, - STATE(1335), 1, + ACTIONS(2286), 1, + anon_sym_EQ_GT, + ACTIONS(2288), 1, + anon_sym_QMARK_DOT, + STATE(378), 1, sym_type_arguments, - STATE(1489), 1, - sym_arguments, - ACTIONS(1621), 13, + ACTIONS(1501), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(1503), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1039), 13, sym__automatic_semicolon, anon_sym_as, - anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, @@ -72025,7 +71713,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(831), 15, + ACTIONS(2197), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -72041,11 +71729,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1619), 21, + ACTIONS(1037), 18, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, anon_sym_AMP_AMP, @@ -72053,9 +71740,7 @@ static 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_PERCENT, @@ -72063,31 +71748,31 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [4927] = 14, + [4113] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1201), 1, - anon_sym_RBRACE, ACTIONS(1216), 1, anon_sym_COLON, - ACTIONS(2266), 1, + ACTIONS(1244), 1, + anon_sym_RBRACE, + ACTIONS(2282), 1, anon_sym_LBRACK, - ACTIONS(2270), 1, + ACTIONS(2286), 1, anon_sym_EQ_GT, - ACTIONS(2272), 1, + ACTIONS(2288), 1, anon_sym_QMARK_DOT, - ACTIONS(2274), 1, + ACTIONS(2290), 1, anon_sym_EQ, - ACTIONS(2276), 1, + ACTIONS(2292), 1, anon_sym_LPAREN, - ACTIONS(2282), 1, + ACTIONS(2298), 1, anon_sym_DOT, - STATE(2739), 1, + STATE(2757), 1, aux_sym_object_repeat1, - ACTIONS(2279), 2, + ACTIONS(2295), 2, anon_sym_LT, anon_sym_QMARK, - ACTIONS(1099), 12, + ACTIONS(1039), 12, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, @@ -72100,7 +71785,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(2181), 15, + ACTIONS(2197), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -72116,7 +71801,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1097), 20, + ACTIONS(1037), 20, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -72137,27 +71822,35 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [5015] = 9, + [4201] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2175), 1, + ACTIONS(1216), 1, + anon_sym_COLON, + ACTIONS(1242), 1, + anon_sym_RBRACE, + ACTIONS(2282), 1, anon_sym_LBRACK, - ACTIONS(2177), 1, - anon_sym_DOT, - ACTIONS(2179), 1, + ACTIONS(2286), 1, + anon_sym_EQ_GT, + ACTIONS(2288), 1, anon_sym_QMARK_DOT, - ACTIONS(2204), 1, + ACTIONS(2290), 1, anon_sym_EQ, - ACTIONS(2214), 1, - anon_sym_EQ_GT, - ACTIONS(1099), 15, + ACTIONS(2292), 1, + anon_sym_LPAREN, + ACTIONS(2298), 1, + anon_sym_DOT, + STATE(2651), 1, + aux_sym_object_repeat1, + ACTIONS(2295), 2, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(1039), 12, + sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_SEMI, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -72166,7 +71859,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(2181), 15, + ACTIONS(2197), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -72182,245 +71875,133 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1097), 22, + ACTIONS(1037), 20, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, - anon_sym_QMARK, 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_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [5092] = 36, - ACTIONS(3), 1, - sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(123), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1691), 1, - anon_sym_LT, - ACTIONS(1722), 1, - anon_sym_LBRACE, - ACTIONS(2298), 1, - anon_sym_export, - ACTIONS(2300), 1, - anon_sym_STAR, - ACTIONS(2302), 1, - anon_sym_COMMA, - ACTIONS(2304), 1, - anon_sym_RBRACE, - ACTIONS(2306), 1, - anon_sym_LPAREN, - ACTIONS(2308), 1, - anon_sym_SEMI, - ACTIONS(2310), 1, - anon_sym_LBRACK, - ACTIONS(2312), 1, - anon_sym_async, - ACTIONS(2314), 1, - anon_sym_new, - ACTIONS(2316), 1, - anon_sym_DASH, - ACTIONS(2318), 1, - anon_sym_DQUOTE, - ACTIONS(2320), 1, - anon_sym_SQUOTE, - ACTIONS(2322), 1, - sym_number, - ACTIONS(2324), 1, - anon_sym_static, - ACTIONS(2330), 1, - sym_readonly, - ACTIONS(2332), 1, - anon_sym_PIPE_RBRACE, - STATE(1876), 1, - sym_accessibility_modifier, - STATE(1905), 1, - sym_decorator, - STATE(2020), 1, - sym_formal_parameters, - STATE(2406), 1, - sym__call_signature, - STATE(2485), 1, - aux_sym_export_statement_repeat1, - STATE(2644), 1, - aux_sym_object_repeat1, - STATE(2862), 1, - sym_type_parameters, - STATE(3086), 1, - sym_array, - STATE(3204), 1, - sym_object, - ACTIONS(2326), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(2328), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(1937), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(2699), 4, - sym_assignment_pattern, - sym_spread_element, - sym_method_definition, - sym_pair, - STATE(2185), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(2296), 10, - anon_sym_namespace, - anon_sym_type, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [5223] = 36, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [4289] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(123), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1691), 1, - anon_sym_LT, - ACTIONS(1722), 1, - anon_sym_LBRACE, - ACTIONS(2298), 1, - anon_sym_export, - ACTIONS(2300), 1, - anon_sym_STAR, - ACTIONS(2306), 1, - anon_sym_LPAREN, - ACTIONS(2310), 1, + ACTIONS(825), 1, + anon_sym_EQ_GT, + ACTIONS(827), 1, + anon_sym_QMARK_DOT, + ACTIONS(927), 1, + anon_sym_EQ, + ACTIONS(1623), 1, anon_sym_LBRACK, - ACTIONS(2312), 1, - anon_sym_async, - ACTIONS(2314), 1, - anon_sym_new, - ACTIONS(2316), 1, - anon_sym_DASH, - ACTIONS(2318), 1, - anon_sym_DQUOTE, - ACTIONS(2320), 1, - anon_sym_SQUOTE, - ACTIONS(2322), 1, - sym_number, - ACTIONS(2324), 1, - anon_sym_static, - ACTIONS(2330), 1, - sym_readonly, - ACTIONS(2334), 1, + ACTIONS(1625), 1, + anon_sym_DOT, + ACTIONS(2300), 2, anon_sym_COMMA, - ACTIONS(2336), 1, anon_sym_RBRACE, - ACTIONS(2338), 1, + ACTIONS(2303), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1185), 4, + sym__automatic_semicolon, anon_sym_SEMI, - ACTIONS(2340), 1, + anon_sym_extends, anon_sym_PIPE_RBRACE, - STATE(1876), 1, - sym_accessibility_modifier, - STATE(1905), 1, - sym_decorator, - STATE(2020), 1, - sym_formal_parameters, - STATE(2406), 1, - sym__call_signature, - STATE(2485), 1, - aux_sym_export_statement_repeat1, - STATE(2644), 1, - aux_sym_object_repeat1, - STATE(2862), 1, - sym_type_parameters, - STATE(3086), 1, - sym_array, - STATE(3204), 1, - sym_object, - ACTIONS(2326), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(2328), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(1937), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(2699), 4, - sym_assignment_pattern, - sym_spread_element, - sym_method_definition, - sym_pair, - STATE(2237), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(2296), 10, - anon_sym_namespace, - anon_sym_type, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [5354] = 11, + ACTIONS(841), 10, + anon_sym_as, + anon_sym_LPAREN, + 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(831), 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(808), 20, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + 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_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [4373] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1003), 1, - anon_sym_EQ, - ACTIONS(1009), 1, + ACTIONS(1019), 1, anon_sym_EQ_GT, - ACTIONS(1011), 1, + ACTIONS(1021), 1, anon_sym_QMARK_DOT, + ACTIONS(1213), 1, + anon_sym_LPAREN, + ACTIONS(1216), 1, + anon_sym_COLON, ACTIONS(1219), 1, anon_sym_LBRACK, ACTIONS(1224), 1, anon_sym_DOT, - ACTIONS(1262), 1, - anon_sym_COLON, - ACTIONS(2202), 1, - sym_identifier, - ACTIONS(841), 11, + ACTIONS(1244), 1, + anon_sym_RBRACE, + ACTIONS(1258), 1, + anon_sym_EQ, + STATE(2757), 1, + aux_sym_object_repeat1, + ACTIONS(1221), 2, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(841), 12, sym__automatic_semicolon, + anon_sym_as, anon_sym_COMMA, - anon_sym_LPAREN, 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, @@ -72440,15 +72021,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(808), 24, + ACTIONS(808), 20, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, - anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -72464,134 +72042,35 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - [5435] = 36, + [4461] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(123), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1691), 1, - anon_sym_LT, - ACTIONS(1722), 1, - anon_sym_LBRACE, - ACTIONS(2300), 1, - anon_sym_STAR, - ACTIONS(2302), 1, - anon_sym_COMMA, - ACTIONS(2306), 1, - anon_sym_LPAREN, - ACTIONS(2308), 1, - anon_sym_SEMI, - ACTIONS(2310), 1, - anon_sym_LBRACK, - ACTIONS(2314), 1, - anon_sym_new, - ACTIONS(2316), 1, - anon_sym_DASH, - ACTIONS(2318), 1, - anon_sym_DQUOTE, - ACTIONS(2320), 1, - anon_sym_SQUOTE, - ACTIONS(2322), 1, - sym_number, - ACTIONS(2332), 1, - anon_sym_PIPE_RBRACE, - ACTIONS(2344), 1, - anon_sym_export, - ACTIONS(2346), 1, + ACTIONS(1201), 1, anon_sym_RBRACE, - ACTIONS(2348), 1, - anon_sym_async, - ACTIONS(2350), 1, - anon_sym_static, - ACTIONS(2356), 1, - sym_readonly, - STATE(1876), 1, - sym_accessibility_modifier, - STATE(1905), 1, - sym_decorator, - STATE(2020), 1, - sym_formal_parameters, - STATE(2406), 1, - sym__call_signature, - STATE(2485), 1, - aux_sym_export_statement_repeat1, - STATE(2655), 1, - aux_sym_object_repeat1, - STATE(2862), 1, - sym_type_parameters, - STATE(3086), 1, - sym_array, - STATE(3204), 1, - sym_object, - ACTIONS(2352), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(2354), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(1937), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(2653), 4, - sym_assignment_pattern, - sym_spread_element, - sym_method_definition, - sym_pair, - STATE(2185), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(2342), 10, - anon_sym_namespace, - anon_sym_type, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [5566] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1670), 1, - anon_sym_extends, - ACTIONS(2175), 1, + ACTIONS(1216), 1, + anon_sym_COLON, + ACTIONS(2282), 1, anon_sym_LBRACK, - ACTIONS(2179), 1, - anon_sym_QMARK_DOT, - ACTIONS(2214), 1, + ACTIONS(2286), 1, anon_sym_EQ_GT, - ACTIONS(2219), 1, - anon_sym_LT, - ACTIONS(2358), 1, + ACTIONS(2288), 1, + anon_sym_QMARK_DOT, + ACTIONS(2290), 1, anon_sym_EQ, - ACTIONS(2364), 1, - anon_sym_RPAREN, - ACTIONS(2368), 1, + ACTIONS(2292), 1, + anon_sym_LPAREN, + ACTIONS(2298), 1, anon_sym_DOT, - ACTIONS(2370), 1, + STATE(2641), 1, + aux_sym_object_repeat1, + ACTIONS(2295), 2, + anon_sym_LT, anon_sym_QMARK, - STATE(313), 1, - sym_type_arguments, - ACTIONS(2216), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(2361), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(1099), 10, + ACTIONS(1039), 12, + sym__automatic_semicolon, anon_sym_as, - anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -72600,7 +72079,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(2181), 15, + ACTIONS(2197), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -72616,7 +72095,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1097), 18, + ACTIONS(1037), 20, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -72627,7 +72106,9 @@ static 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_PERCENT, @@ -72635,33 +72116,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [5657] = 13, + [4549] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2171), 1, + ACTIONS(825), 1, + anon_sym_EQ_GT, + ACTIONS(827), 1, + anon_sym_QMARK_DOT, + ACTIONS(927), 1, anon_sym_EQ, - ACTIONS(2175), 1, + ACTIONS(1185), 1, + anon_sym_extends, + ACTIONS(1623), 1, anon_sym_LBRACK, - ACTIONS(2179), 1, - anon_sym_QMARK_DOT, - ACTIONS(2200), 1, - anon_sym_EQ_GT, - ACTIONS(2219), 1, - anon_sym_LT, - ACTIONS(2373), 1, + ACTIONS(1625), 1, anon_sym_DOT, - STATE(313), 1, - sym_type_arguments, - ACTIONS(1670), 2, + ACTIONS(2300), 1, anon_sym_COMMA, - anon_sym_extends, - ACTIONS(2216), 3, + ACTIONS(2303), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1099), 12, + ACTIONS(841), 14, anon_sym_as, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, anon_sym_LT_EQ, @@ -72672,7 +72152,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(2181), 15, + ACTIONS(831), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -72688,10 +72168,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1097), 18, + ACTIONS(808), 19, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_SLASH, anon_sym_QMARK, anon_sym_AMP_AMP, @@ -72707,34 +72188,37 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [5742] = 13, + [4633] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2175), 1, - anon_sym_LBRACK, - ACTIONS(2179), 1, - anon_sym_QMARK_DOT, - ACTIONS(2204), 1, + ACTIONS(1702), 1, + anon_sym_extends, + ACTIONS(2203), 1, + anon_sym_COMMA, + ACTIONS(2206), 1, + anon_sym_LT, + ACTIONS(2280), 1, anon_sym_EQ, - ACTIONS(2214), 1, + ACTIONS(2282), 1, + anon_sym_LBRACK, + ACTIONS(2286), 1, anon_sym_EQ_GT, - ACTIONS(2219), 1, - anon_sym_LT, - ACTIONS(2375), 1, + ACTIONS(2288), 1, + anon_sym_QMARK_DOT, + ACTIONS(2306), 1, anon_sym_DOT, - STATE(313), 1, + STATE(378), 1, sym_type_arguments, - ACTIONS(1583), 2, - anon_sym_RPAREN, - anon_sym_extends, - ACTIONS(1585), 2, + ACTIONS(2209), 3, + anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1099), 12, + ACTIONS(1039), 13, + sym__automatic_semicolon, anon_sym_as, - anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_COLON, + anon_sym_SEMI, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -72743,7 +72227,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(2181), 15, + ACTIONS(2197), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -72759,11 +72243,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1097), 19, + ACTIONS(1037), 18, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, anon_sym_AMP_AMP, @@ -72779,33 +72262,33 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [5827] = 13, + [4721] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(2219), 1, + ACTIONS(2173), 1, + anon_sym_LPAREN, + ACTIONS(2175), 1, anon_sym_LT, - ACTIONS(2377), 1, + ACTIONS(2187), 1, anon_sym_EQ, - ACTIONS(2379), 1, + ACTIONS(2282), 1, anon_sym_LBRACK, - ACTIONS(2381), 1, - anon_sym_DOT, - ACTIONS(2383), 1, + ACTIONS(2286), 1, anon_sym_EQ_GT, - ACTIONS(2385), 1, + ACTIONS(2288), 1, anon_sym_QMARK_DOT, - STATE(313), 1, + ACTIONS(2298), 1, + anon_sym_DOT, + STATE(1319), 1, sym_type_arguments, - ACTIONS(1583), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(1585), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1099), 11, + STATE(1548), 1, + sym_arguments, + ACTIONS(2189), 13, + sym__automatic_semicolon, anon_sym_as, - anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -72814,8 +72297,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, - ACTIONS(2181), 15, + ACTIONS(2197), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -72831,11 +72313,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1097), 19, + ACTIONS(2185), 21, anon_sym_STAR, - anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, anon_sym_AMP_AMP, @@ -72843,7 +72325,9 @@ static 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_PERCENT, @@ -72851,34 +72335,123 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [5912] = 13, + [4807] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(2219), 1, + ACTIONS(427), 1, + anon_sym_STAR, + ACTIONS(461), 1, + anon_sym_QMARK, + ACTIONS(463), 1, + anon_sym_AMP, + ACTIONS(465), 1, + anon_sym_PIPE, + ACTIONS(495), 1, + anon_sym_keyof, + ACTIONS(497), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(815), 1, + anon_sym_typeof, + ACTIONS(817), 1, + anon_sym_LPAREN, + ACTIONS(829), 1, + anon_sym_new, + ACTIONS(845), 1, + anon_sym_DQUOTE, + ACTIONS(847), 1, + anon_sym_SQUOTE, + ACTIONS(849), 1, + sym_number, + ACTIONS(925), 1, + sym_identifier, + ACTIONS(929), 1, + anon_sym_LBRACE, + ACTIONS(933), 1, + sym_this, + ACTIONS(935), 1, + sym_readonly, + ACTIONS(1678), 1, anon_sym_LT, - ACTIONS(2266), 1, + ACTIONS(2310), 1, anon_sym_LBRACK, - ACTIONS(2272), 1, + STATE(424), 1, + sym__tuple_type_body, + STATE(1917), 1, + sym_nested_type_identifier, + STATE(2916), 1, + sym_type_parameters, + STATE(3122), 1, + sym_formal_parameters, + STATE(3123), 1, + sym_nested_identifier, + ACTIONS(853), 2, + sym_true, + sym_false, + ACTIONS(1680), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(433), 2, + sym_string, + sym__number, + ACTIONS(2308), 4, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + STATE(2780), 5, + sym__type, + sym_constructor_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + ACTIONS(843), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(2509), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [4929] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1019), 1, + anon_sym_EQ_GT, + ACTIONS(1021), 1, anon_sym_QMARK_DOT, - ACTIONS(2387), 1, + ACTIONS(1115), 1, anon_sym_EQ, - ACTIONS(2389), 1, + ACTIONS(1219), 1, + anon_sym_LBRACK, + ACTIONS(1224), 1, anon_sym_DOT, - ACTIONS(2391), 1, - anon_sym_EQ_GT, - STATE(313), 1, + ACTIONS(2173), 1, + anon_sym_LPAREN, + ACTIONS(2175), 1, + anon_sym_LT, + STATE(1316), 1, sym_type_arguments, - ACTIONS(1670), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(2216), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1099), 12, + STATE(1551), 1, + sym_arguments, + ACTIONS(1621), 13, sym__automatic_semicolon, anon_sym_as, - anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, @@ -72888,7 +72461,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(2181), 15, + ACTIONS(831), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -72904,10 +72477,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1097), 18, + ACTIONS(1619), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, anon_sym_AMP_AMP, @@ -72915,7 +72489,9 @@ static 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_PERCENT, @@ -72923,32 +72499,31 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [5997] = 15, + [5015] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(2377), 1, + ACTIONS(2206), 1, + anon_sym_LT, + ACTIONS(2312), 1, anon_sym_EQ, - ACTIONS(2379), 1, + ACTIONS(2314), 1, anon_sym_LBRACK, - ACTIONS(2383), 1, + ACTIONS(2316), 1, + anon_sym_DOT, + ACTIONS(2318), 1, anon_sym_EQ_GT, - ACTIONS(2385), 1, + ACTIONS(2320), 1, anon_sym_QMARK_DOT, - ACTIONS(2393), 1, - anon_sym_LBRACE, - ACTIONS(2395), 1, - anon_sym_COMMA, - ACTIONS(2397), 1, - anon_sym_LT, - ACTIONS(2400), 1, - anon_sym_DOT, - ACTIONS(2402), 1, - anon_sym_LBRACE_PIPE, - STATE(2563), 1, - aux_sym_extends_clause_repeat1, - STATE(2708), 1, + STATE(378), 1, sym_type_arguments, - ACTIONS(1099), 10, + ACTIONS(1501), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(1503), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1039), 11, anon_sym_as, anon_sym_LPAREN, anon_sym_LT_EQ, @@ -72959,7 +72534,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(2181), 15, + anon_sym_LBRACE_PIPE, + ACTIONS(2197), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -72975,8 +72551,47 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1097), 21, + ACTIONS(1037), 19, + anon_sym_STAR, + anon_sym_LBRACE, + anon_sym_BANG, + anon_sym_in, + anon_sym_SLASH, + anon_sym_QMARK, + 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_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [5100] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2266), 1, + anon_sym_DOT, + ACTIONS(2260), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LBRACK, + ACTIONS(2263), 3, + anon_sym_LT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1455), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(2256), 20, anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -72987,9 +72602,7 @@ static 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_PERCENT, @@ -72997,91 +72610,213 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [6086] = 36, + ACTIONS(2258), 26, + anon_sym_as, + anon_sym_LPAREN, + 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, + [5173] = 36, ACTIONS(3), 1, sym_comment, ACTIONS(91), 1, anon_sym_AT, ACTIONS(123), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1691), 1, + ACTIONS(1678), 1, anon_sym_LT, - ACTIONS(1722), 1, + ACTIONS(1728), 1, anon_sym_LBRACE, - ACTIONS(2298), 1, + ACTIONS(2324), 1, anon_sym_export, - ACTIONS(2300), 1, + ACTIONS(2326), 1, anon_sym_STAR, - ACTIONS(2302), 1, + ACTIONS(2328), 1, anon_sym_COMMA, - ACTIONS(2306), 1, + ACTIONS(2330), 1, + anon_sym_RBRACE, + ACTIONS(2332), 1, anon_sym_LPAREN, - ACTIONS(2308), 1, + ACTIONS(2334), 1, anon_sym_SEMI, - ACTIONS(2310), 1, + ACTIONS(2336), 1, anon_sym_LBRACK, - ACTIONS(2312), 1, + ACTIONS(2338), 1, anon_sym_async, - ACTIONS(2314), 1, + ACTIONS(2340), 1, anon_sym_new, - ACTIONS(2316), 1, + ACTIONS(2342), 1, anon_sym_DASH, - ACTIONS(2318), 1, + ACTIONS(2344), 1, anon_sym_DQUOTE, - ACTIONS(2320), 1, + ACTIONS(2346), 1, anon_sym_SQUOTE, - ACTIONS(2322), 1, + ACTIONS(2348), 1, sym_number, - ACTIONS(2324), 1, + ACTIONS(2350), 1, anon_sym_static, - ACTIONS(2330), 1, + ACTIONS(2356), 1, sym_readonly, + ACTIONS(2358), 1, + anon_sym_PIPE_RBRACE, + STATE(1882), 1, + sym_accessibility_modifier, + STATE(1890), 1, + sym_decorator, + STATE(2015), 1, + sym_formal_parameters, + STATE(2320), 1, + sym__call_signature, + STATE(2548), 1, + aux_sym_export_statement_repeat1, + STATE(2706), 1, + aux_sym_object_repeat1, + STATE(2918), 1, + sym_type_parameters, + STATE(3037), 1, + sym_object, + STATE(3038), 1, + sym_array, + ACTIONS(2352), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(2354), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(1949), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(2710), 4, + sym_assignment_pattern, + sym_spread_element, + sym_method_definition, + sym_pair, + STATE(2158), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(2322), 10, + anon_sym_namespace, + anon_sym_type, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [5304] = 36, + ACTIONS(3), 1, + sym_comment, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(123), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1678), 1, + anon_sym_LT, + ACTIONS(1728), 1, + anon_sym_LBRACE, + ACTIONS(2326), 1, + anon_sym_STAR, + ACTIONS(2328), 1, + anon_sym_COMMA, ACTIONS(2332), 1, + anon_sym_LPAREN, + ACTIONS(2334), 1, + anon_sym_SEMI, + ACTIONS(2336), 1, + anon_sym_LBRACK, + ACTIONS(2340), 1, + anon_sym_new, + ACTIONS(2342), 1, + anon_sym_DASH, + ACTIONS(2344), 1, + anon_sym_DQUOTE, + ACTIONS(2346), 1, + anon_sym_SQUOTE, + ACTIONS(2348), 1, + sym_number, + ACTIONS(2358), 1, anon_sym_PIPE_RBRACE, - ACTIONS(2404), 1, + ACTIONS(2362), 1, + anon_sym_export, + ACTIONS(2364), 1, anon_sym_RBRACE, - STATE(1876), 1, + ACTIONS(2366), 1, + anon_sym_async, + ACTIONS(2368), 1, + anon_sym_static, + ACTIONS(2374), 1, + sym_readonly, + STATE(1882), 1, sym_accessibility_modifier, - STATE(1905), 1, + STATE(1890), 1, sym_decorator, - STATE(2020), 1, + STATE(2015), 1, sym_formal_parameters, - STATE(2406), 1, + STATE(2320), 1, sym__call_signature, - STATE(2485), 1, + STATE(2548), 1, aux_sym_export_statement_repeat1, - STATE(2644), 1, + STATE(2673), 1, aux_sym_object_repeat1, - STATE(2862), 1, + STATE(2918), 1, sym_type_parameters, - STATE(3086), 1, - sym_array, - STATE(3204), 1, + STATE(3037), 1, sym_object, - ACTIONS(2326), 2, + STATE(3038), 1, + sym_array, + ACTIONS(2370), 2, anon_sym_get, anon_sym_set, - ACTIONS(2328), 3, + ACTIONS(2372), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(1937), 3, + STATE(1949), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(2699), 4, + STATE(2671), 4, sym_assignment_pattern, sym_spread_element, sym_method_definition, sym_pair, - STATE(2185), 6, + STATE(2158), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(2296), 10, + ACTIONS(2360), 10, anon_sym_namespace, anon_sym_type, sym_identifier, @@ -73092,44 +72827,36 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [6217] = 13, + [5435] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2171), 1, + ACTIONS(1013), 1, anon_sym_EQ, - ACTIONS(2175), 1, - anon_sym_LBRACK, - ACTIONS(2179), 1, - anon_sym_QMARK_DOT, - ACTIONS(2200), 1, + ACTIONS(1019), 1, anon_sym_EQ_GT, - ACTIONS(2219), 1, - anon_sym_LT, - ACTIONS(2406), 1, + ACTIONS(1021), 1, + anon_sym_QMARK_DOT, + ACTIONS(1219), 1, + anon_sym_LBRACK, + ACTIONS(1224), 1, anon_sym_DOT, - STATE(313), 1, - sym_type_arguments, - ACTIONS(1583), 2, + ACTIONS(1284), 1, + anon_sym_COLON, + ACTIONS(2199), 1, + sym_identifier, + ACTIONS(841), 11, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_extends, - ACTIONS(1585), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1099), 12, - anon_sym_as, anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_RBRACK, + 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, - ACTIONS(2181), 15, + ACTIONS(831), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -73145,10 +72872,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1097), 18, + ACTIONS(808), 24, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, anon_sym_in, + anon_sym_LT, + anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, anon_sym_AMP_AMP, @@ -73156,7 +72886,9 @@ static 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_PERCENT, @@ -73164,41 +72896,37 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [6302] = 13, + anon_sym_instanceof, + [5516] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2145), 1, - anon_sym_LPAREN, - ACTIONS(2147), 1, - anon_sym_LT, - ACTIONS(2171), 1, + ACTIONS(1013), 1, anon_sym_EQ, - ACTIONS(2175), 1, + ACTIONS(1019), 1, + anon_sym_EQ_GT, + ACTIONS(1021), 1, + anon_sym_QMARK_DOT, + ACTIONS(1219), 1, anon_sym_LBRACK, - ACTIONS(2177), 1, + ACTIONS(1224), 1, anon_sym_DOT, - ACTIONS(2179), 1, - anon_sym_QMARK_DOT, - ACTIONS(2408), 1, - anon_sym_EQ_GT, - STATE(1088), 1, - sym_type_arguments, - STATE(1157), 1, - sym_arguments, - ACTIONS(2173), 12, - anon_sym_as, - anon_sym_LBRACE, + ACTIONS(1274), 1, + anon_sym_COLON, + ACTIONS(2199), 1, + sym_identifier, + ACTIONS(841), 11, + sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_LPAREN, + 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_implements, - ACTIONS(2181), 15, + ACTIONS(831), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -73214,10 +72942,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(2169), 21, + ACTIONS(808), 24, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -73236,36 +72966,48 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [6387] = 11, + anon_sym_instanceof, + [5597] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1003), 1, - anon_sym_EQ, - ACTIONS(1009), 1, - anon_sym_EQ_GT, - ACTIONS(1011), 1, - anon_sym_QMARK_DOT, - ACTIONS(1219), 1, + ACTIONS(1702), 1, + anon_sym_extends, + ACTIONS(2191), 1, anon_sym_LBRACK, - ACTIONS(1224), 1, + ACTIONS(2195), 1, + anon_sym_QMARK_DOT, + ACTIONS(2206), 1, + anon_sym_LT, + ACTIONS(2214), 1, + anon_sym_EQ_GT, + ACTIONS(2376), 1, + anon_sym_EQ, + ACTIONS(2382), 1, + anon_sym_RPAREN, + ACTIONS(2386), 1, anon_sym_DOT, - ACTIONS(1258), 1, - anon_sym_COLON, - ACTIONS(2202), 1, - sym_identifier, - ACTIONS(841), 11, - sym__automatic_semicolon, + ACTIONS(2388), 1, + anon_sym_QMARK, + STATE(378), 1, + sym_type_arguments, + ACTIONS(2209), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(2379), 2, anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(1039), 10, + anon_sym_as, anon_sym_LPAREN, - 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, - ACTIONS(831), 15, + ACTIONS(2197), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -73281,23 +73023,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(808), 24, + ACTIONS(1037), 18, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, - anon_sym_QMARK, 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_PERCENT, @@ -73305,32 +73042,35 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - [6468] = 13, + [5688] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(827), 1, - anon_sym_QMARK_DOT, - ACTIONS(1121), 1, - anon_sym_EQ_GT, - ACTIONS(1127), 1, + ACTIONS(2187), 1, anon_sym_EQ, - ACTIONS(1623), 1, + ACTIONS(2191), 1, anon_sym_LBRACK, - ACTIONS(1625), 1, - anon_sym_DOT, - ACTIONS(2145), 1, - anon_sym_LPAREN, - ACTIONS(2147), 1, + ACTIONS(2195), 1, + anon_sym_QMARK_DOT, + ACTIONS(2206), 1, anon_sym_LT, - STATE(1089), 1, + ACTIONS(2240), 1, + anon_sym_EQ_GT, + ACTIONS(2391), 1, + anon_sym_DOT, + STATE(378), 1, sym_type_arguments, - STATE(1147), 1, - sym_arguments, - ACTIONS(1621), 12, - anon_sym_as, - anon_sym_LBRACE, + ACTIONS(1501), 2, anon_sym_COMMA, + anon_sym_extends, + ACTIONS(1503), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1039), 12, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -73339,8 +73079,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_implements, - ACTIONS(831), 15, + ACTIONS(2197), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -73356,11 +73095,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1619), 21, + ACTIONS(1037), 18, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, anon_sym_AMP_AMP, @@ -73368,9 +73106,7 @@ static 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_PERCENT, @@ -73378,49 +73114,40 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [6553] = 7, + [5773] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2230), 1, - anon_sym_DOT, - ACTIONS(2233), 3, + ACTIONS(2173), 1, + anon_sym_LPAREN, + ACTIONS(2175), 1, anon_sym_LT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(2249), 3, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(2187), 1, + anon_sym_EQ, + ACTIONS(2282), 1, anon_sym_LBRACK, - ACTIONS(1411), 4, + ACTIONS(2288), 1, + anon_sym_QMARK_DOT, + ACTIONS(2298), 1, + anon_sym_DOT, + STATE(1319), 1, + sym_type_arguments, + STATE(1548), 1, + sym_arguments, + ACTIONS(2189), 13, sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(2183), 20, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - 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_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - ACTIONS(2185), 26, anon_sym_as, - anon_sym_LPAREN, - anon_sym_QMARK_DOT, + anon_sym_COMMA, + 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, + ACTIONS(2197), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -73436,35 +73163,8 @@ static 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, - [6626] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2233), 1, - anon_sym_LT, - ACTIONS(2236), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1089), 4, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(2230), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_DOT, - ACTIONS(2183), 20, + ACTIONS(2185), 21, anon_sym_STAR, - anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -73475,7 +73175,9 @@ static 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_PERCENT, @@ -73483,57 +73185,128 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(2185), 26, - anon_sym_as, - anon_sym_LPAREN, - 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, - [6699] = 13, + [5856] = 36, ACTIONS(3), 1, sym_comment, - ACTIONS(2161), 1, - anon_sym_LPAREN, - ACTIONS(2163), 1, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(123), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1678), 1, anon_sym_LT, - ACTIONS(2171), 1, - anon_sym_EQ, - ACTIONS(2379), 1, + ACTIONS(1728), 1, + anon_sym_LBRACE, + ACTIONS(2326), 1, + anon_sym_STAR, + ACTIONS(2328), 1, + anon_sym_COMMA, + ACTIONS(2332), 1, + anon_sym_LPAREN, + ACTIONS(2334), 1, + anon_sym_SEMI, + ACTIONS(2336), 1, anon_sym_LBRACK, - ACTIONS(2383), 1, - anon_sym_EQ_GT, - ACTIONS(2385), 1, + ACTIONS(2340), 1, + anon_sym_new, + ACTIONS(2342), 1, + anon_sym_DASH, + ACTIONS(2344), 1, + anon_sym_DQUOTE, + ACTIONS(2346), 1, + anon_sym_SQUOTE, + ACTIONS(2348), 1, + sym_number, + ACTIONS(2358), 1, + anon_sym_PIPE_RBRACE, + ACTIONS(2395), 1, + anon_sym_export, + ACTIONS(2397), 1, + anon_sym_RBRACE, + ACTIONS(2399), 1, + anon_sym_async, + ACTIONS(2401), 1, + anon_sym_static, + ACTIONS(2407), 1, + sym_readonly, + STATE(1882), 1, + sym_accessibility_modifier, + STATE(1890), 1, + sym_decorator, + STATE(2015), 1, + sym_formal_parameters, + STATE(2320), 1, + sym__call_signature, + STATE(2548), 1, + aux_sym_export_statement_repeat1, + STATE(2753), 1, + aux_sym_object_repeat1, + STATE(2918), 1, + sym_type_parameters, + STATE(3037), 1, + sym_object, + STATE(3038), 1, + sym_array, + ACTIONS(2403), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(2405), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(1949), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(2785), 4, + sym_assignment_pattern, + sym_spread_element, + sym_method_definition, + sym_pair, + STATE(2158), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(2393), 10, + anon_sym_namespace, + anon_sym_type, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [5987] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2191), 1, + anon_sym_LBRACK, + ACTIONS(2195), 1, anon_sym_QMARK_DOT, - ACTIONS(2410), 1, + ACTIONS(2206), 1, + anon_sym_LT, + ACTIONS(2409), 1, + anon_sym_EQ, + ACTIONS(2413), 1, + anon_sym_COMMA, + ACTIONS(2415), 1, anon_sym_DOT, - STATE(1556), 1, + ACTIONS(2417), 1, + anon_sym_EQ_GT, + STATE(378), 1, sym_type_arguments, - STATE(1648), 1, - sym_arguments, - ACTIONS(2173), 11, + STATE(2574), 1, + aux_sym_extends_clause_repeat1, + ACTIONS(2411), 2, + anon_sym_LBRACE, + anon_sym_implements, + ACTIONS(1039), 10, anon_sym_as, - anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -73542,8 +73315,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, - ACTIONS(2181), 15, + ACTIONS(2197), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -73559,9 +73331,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(2169), 22, + ACTIONS(1037), 21, anon_sym_STAR, - anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -73582,35 +73353,31 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [6784] = 13, + [6074] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(2219), 1, - anon_sym_LT, - ACTIONS(2266), 1, - anon_sym_LBRACK, - ACTIONS(2272), 1, + ACTIONS(827), 1, anon_sym_QMARK_DOT, - ACTIONS(2387), 1, + ACTIONS(1115), 1, anon_sym_EQ, - ACTIONS(2391), 1, + ACTIONS(1121), 1, anon_sym_EQ_GT, - ACTIONS(2412), 1, + ACTIONS(1623), 1, + anon_sym_LBRACK, + ACTIONS(1625), 1, anon_sym_DOT, - STATE(313), 1, + ACTIONS(2161), 1, + anon_sym_LPAREN, + ACTIONS(2163), 1, + anon_sym_LT, + STATE(1049), 1, sym_type_arguments, - ACTIONS(1583), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(1585), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1099), 12, - sym__automatic_semicolon, + STATE(1158), 1, + sym_arguments, + ACTIONS(1621), 12, anon_sym_as, - anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -73619,7 +73386,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(2181), 15, + anon_sym_implements, + ACTIONS(831), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -73635,10 +73403,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1097), 18, + ACTIONS(1619), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, anon_sym_AMP_AMP, @@ -73646,7 +73415,9 @@ static 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_PERCENT, @@ -73654,91 +73425,91 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [6869] = 36, + [6159] = 36, ACTIONS(3), 1, sym_comment, ACTIONS(91), 1, anon_sym_AT, ACTIONS(123), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1691), 1, + ACTIONS(1678), 1, anon_sym_LT, - ACTIONS(1722), 1, + ACTIONS(1728), 1, anon_sym_LBRACE, - ACTIONS(2300), 1, + ACTIONS(2326), 1, anon_sym_STAR, - ACTIONS(2302), 1, + ACTIONS(2328), 1, anon_sym_COMMA, - ACTIONS(2306), 1, + ACTIONS(2332), 1, anon_sym_LPAREN, - ACTIONS(2308), 1, + ACTIONS(2334), 1, anon_sym_SEMI, - ACTIONS(2310), 1, + ACTIONS(2336), 1, anon_sym_LBRACK, - ACTIONS(2314), 1, + ACTIONS(2340), 1, anon_sym_new, - ACTIONS(2316), 1, + ACTIONS(2342), 1, anon_sym_DASH, - ACTIONS(2318), 1, + ACTIONS(2344), 1, anon_sym_DQUOTE, - ACTIONS(2320), 1, + ACTIONS(2346), 1, anon_sym_SQUOTE, - ACTIONS(2322), 1, + ACTIONS(2348), 1, sym_number, - ACTIONS(2332), 1, + ACTIONS(2358), 1, anon_sym_PIPE_RBRACE, - ACTIONS(2344), 1, + ACTIONS(2421), 1, anon_sym_export, - ACTIONS(2348), 1, + ACTIONS(2423), 1, + anon_sym_RBRACE, + ACTIONS(2425), 1, anon_sym_async, - ACTIONS(2350), 1, + ACTIONS(2427), 1, anon_sym_static, - ACTIONS(2356), 1, + ACTIONS(2433), 1, sym_readonly, - ACTIONS(2414), 1, - anon_sym_RBRACE, - STATE(1876), 1, + STATE(1882), 1, sym_accessibility_modifier, - STATE(1905), 1, + STATE(1890), 1, sym_decorator, - STATE(2020), 1, + STATE(2015), 1, sym_formal_parameters, - STATE(2406), 1, + STATE(2320), 1, sym__call_signature, - STATE(2485), 1, + STATE(2548), 1, aux_sym_export_statement_repeat1, - STATE(2655), 1, + STATE(2736), 1, aux_sym_object_repeat1, - STATE(2862), 1, + STATE(2918), 1, sym_type_parameters, - STATE(3086), 1, - sym_array, - STATE(3204), 1, + STATE(3037), 1, sym_object, - ACTIONS(2352), 2, + STATE(3038), 1, + sym_array, + ACTIONS(2429), 2, anon_sym_get, anon_sym_set, - ACTIONS(2354), 3, + ACTIONS(2431), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(1937), 3, + STATE(1949), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(2653), 4, + STATE(2734), 4, sym_assignment_pattern, sym_spread_element, sym_method_definition, sym_pair, - STATE(2185), 6, + STATE(2158), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(2342), 10, + ACTIONS(2419), 10, anon_sym_namespace, anon_sym_type, sym_identifier, @@ -73749,33 +73520,34 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [7000] = 14, + [6290] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(2175), 1, + ACTIONS(2191), 1, anon_sym_LBRACK, - ACTIONS(2179), 1, + ACTIONS(2195), 1, anon_sym_QMARK_DOT, - ACTIONS(2219), 1, + ACTIONS(2201), 1, + anon_sym_EQ, + ACTIONS(2206), 1, anon_sym_LT, - ACTIONS(2408), 1, + ACTIONS(2214), 1, anon_sym_EQ_GT, - ACTIONS(2416), 1, - anon_sym_EQ, - ACTIONS(2418), 1, - anon_sym_COMMA, - ACTIONS(2420), 1, + ACTIONS(2435), 1, anon_sym_DOT, - STATE(313), 1, + STATE(378), 1, sym_type_arguments, - STATE(2524), 1, - aux_sym_extends_clause_repeat1, - ACTIONS(2402), 2, - anon_sym_LBRACE, - anon_sym_implements, - ACTIONS(1099), 10, + ACTIONS(1501), 2, + anon_sym_RPAREN, + anon_sym_extends, + ACTIONS(1503), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1039), 12, anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_COLON, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -73784,7 +73556,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(2181), 15, + ACTIONS(2197), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -73800,7 +73572,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1097), 21, + ACTIONS(1037), 19, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -73812,9 +73584,7 @@ static 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_PERCENT, @@ -73822,30 +73592,100 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [7087] = 12, + [6375] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2157), 1, - anon_sym_LPAREN, - ACTIONS(2159), 1, + ACTIONS(2263), 1, anon_sym_LT, - ACTIONS(2171), 1, - anon_sym_EQ, - ACTIONS(2266), 1, + ACTIONS(2273), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(945), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(2266), 4, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LBRACK, - ACTIONS(2272), 1, + anon_sym_DOT, + ACTIONS(2256), 20, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + 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_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + ACTIONS(2258), 26, + anon_sym_as, + anon_sym_LPAREN, 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, + [6448] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2206), 1, + anon_sym_LT, ACTIONS(2282), 1, + anon_sym_LBRACK, + ACTIONS(2288), 1, + anon_sym_QMARK_DOT, + ACTIONS(2437), 1, + anon_sym_EQ, + ACTIONS(2439), 1, anon_sym_DOT, - STATE(1347), 1, + ACTIONS(2441), 1, + anon_sym_EQ_GT, + STATE(378), 1, sym_type_arguments, - STATE(1607), 1, - sym_arguments, - ACTIONS(2173), 13, + ACTIONS(1501), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(1503), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1039), 12, sym__automatic_semicolon, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, @@ -73855,7 +73695,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(2181), 15, + ACTIONS(2197), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -73871,11 +73711,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(2169), 21, + ACTIONS(1037), 18, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, anon_sym_AMP_AMP, @@ -73883,9 +73722,7 @@ static 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_PERCENT, @@ -73893,130 +73730,30 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [7170] = 36, - ACTIONS(3), 1, - sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(123), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1691), 1, - anon_sym_LT, - ACTIONS(1722), 1, - anon_sym_LBRACE, - ACTIONS(2300), 1, - anon_sym_STAR, - ACTIONS(2302), 1, - anon_sym_COMMA, - ACTIONS(2306), 1, - anon_sym_LPAREN, - ACTIONS(2308), 1, - anon_sym_SEMI, - ACTIONS(2310), 1, - anon_sym_LBRACK, - ACTIONS(2314), 1, - anon_sym_new, - ACTIONS(2316), 1, - anon_sym_DASH, - ACTIONS(2318), 1, - anon_sym_DQUOTE, - ACTIONS(2320), 1, - anon_sym_SQUOTE, - ACTIONS(2322), 1, - sym_number, - ACTIONS(2332), 1, - anon_sym_PIPE_RBRACE, - ACTIONS(2424), 1, - anon_sym_export, - ACTIONS(2426), 1, - anon_sym_RBRACE, - ACTIONS(2428), 1, - anon_sym_async, - ACTIONS(2430), 1, - anon_sym_static, - ACTIONS(2436), 1, - sym_readonly, - STATE(1876), 1, - sym_accessibility_modifier, - STATE(1905), 1, - sym_decorator, - STATE(2020), 1, - sym_formal_parameters, - STATE(2406), 1, - sym__call_signature, - STATE(2485), 1, - aux_sym_export_statement_repeat1, - STATE(2646), 1, - aux_sym_object_repeat1, - STATE(2862), 1, - sym_type_parameters, - STATE(3086), 1, - sym_array, - STATE(3204), 1, - sym_object, - ACTIONS(2432), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(2434), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(1937), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(2642), 4, - sym_assignment_pattern, - sym_spread_element, - sym_method_definition, - sym_pair, - STATE(2185), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(2422), 10, - anon_sym_namespace, - anon_sym_type, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [7301] = 14, + [6533] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1670), 1, - anon_sym_extends, - ACTIONS(2175), 1, + ACTIONS(1115), 1, + anon_sym_EQ, + ACTIONS(1145), 1, + anon_sym_EQ_GT, + ACTIONS(1147), 1, + anon_sym_QMARK_DOT, + ACTIONS(1653), 1, anon_sym_LBRACK, + ACTIONS(1655), 1, + anon_sym_DOT, + ACTIONS(2177), 1, + anon_sym_LPAREN, ACTIONS(2179), 1, - anon_sym_QMARK_DOT, - ACTIONS(2206), 1, - anon_sym_COMMA, - ACTIONS(2219), 1, anon_sym_LT, - ACTIONS(2222), 1, - anon_sym_DOT, - ACTIONS(2408), 1, - anon_sym_EQ_GT, - ACTIONS(2416), 1, - anon_sym_EQ, - STATE(313), 1, + STATE(1501), 1, sym_type_arguments, - ACTIONS(2216), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1099), 12, + STATE(1706), 1, + sym_arguments, + ACTIONS(1621), 11, anon_sym_as, - anon_sym_LBRACE, - anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -74025,8 +73762,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_implements, - ACTIONS(2181), 15, + anon_sym_LBRACE_PIPE, + ACTIONS(831), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -74042,10 +73779,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1097), 18, + ACTIONS(1619), 22, anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, anon_sym_AMP_AMP, @@ -74053,7 +73792,9 @@ static 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_PERCENT, @@ -74061,14 +73802,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [7388] = 12, + [6618] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1003), 1, + ACTIONS(1013), 1, anon_sym_EQ, - ACTIONS(1009), 1, + ACTIONS(1019), 1, anon_sym_EQ_GT, - ACTIONS(1011), 1, + ACTIONS(1021), 1, anon_sym_QMARK_DOT, ACTIONS(1185), 1, anon_sym_extends, @@ -74076,9 +73817,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(1224), 1, anon_sym_DOT, - ACTIONS(2288), 1, + ACTIONS(2300), 1, anon_sym_COMMA, - ACTIONS(2291), 3, + ACTIONS(2303), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, @@ -74132,20 +73873,44 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [7471] = 9, + [6701] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(825), 1, - anon_sym_EQ_GT, - ACTIONS(827), 1, - anon_sym_QMARK_DOT, - ACTIONS(927), 1, - anon_sym_EQ, - ACTIONS(1623), 1, + ACTIONS(2191), 1, anon_sym_LBRACK, - ACTIONS(1625), 1, + ACTIONS(2195), 1, + anon_sym_QMARK_DOT, + ACTIONS(2206), 1, + anon_sym_LT, + ACTIONS(2225), 1, anon_sym_DOT, - ACTIONS(831), 15, + ACTIONS(2409), 1, + anon_sym_EQ, + ACTIONS(2417), 1, + anon_sym_EQ_GT, + STATE(378), 1, + sym_type_arguments, + ACTIONS(1501), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(1503), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1039), 12, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_LPAREN, + 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_implements, + ACTIONS(2197), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -74161,14 +73926,50 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(841), 15, + ACTIONS(1037), 18, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_SLASH, + anon_sym_QMARK, + 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_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [6786] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2161), 1, + anon_sym_LPAREN, + ACTIONS(2163), 1, + anon_sym_LT, + ACTIONS(2187), 1, + anon_sym_EQ, + ACTIONS(2191), 1, + anon_sym_LBRACK, + ACTIONS(2193), 1, + anon_sym_DOT, + ACTIONS(2195), 1, + anon_sym_QMARK_DOT, + ACTIONS(2417), 1, + anon_sym_EQ_GT, + STATE(1046), 1, + sym_type_arguments, + STATE(1160), 1, + sym_arguments, + ACTIONS(2189), 12, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -74177,11 +73978,27 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(808), 22, + anon_sym_implements, + ACTIONS(2197), 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(2185), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -74200,125 +74017,34 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [7548] = 36, + [6871] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(123), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1691), 1, - anon_sym_LT, - ACTIONS(1722), 1, - anon_sym_LBRACE, - ACTIONS(2300), 1, - anon_sym_STAR, - ACTIONS(2302), 1, + ACTIONS(1702), 1, + anon_sym_extends, + ACTIONS(2203), 1, anon_sym_COMMA, - ACTIONS(2306), 1, - anon_sym_LPAREN, - ACTIONS(2308), 1, - anon_sym_SEMI, - ACTIONS(2310), 1, - anon_sym_LBRACK, + ACTIONS(2206), 1, + anon_sym_LT, + ACTIONS(2312), 1, + anon_sym_EQ, ACTIONS(2314), 1, - anon_sym_new, - ACTIONS(2316), 1, - anon_sym_DASH, + anon_sym_LBRACK, ACTIONS(2318), 1, - anon_sym_DQUOTE, - ACTIONS(2320), 1, - anon_sym_SQUOTE, - ACTIONS(2322), 1, - sym_number, - ACTIONS(2332), 1, - anon_sym_PIPE_RBRACE, - ACTIONS(2440), 1, - anon_sym_export, - ACTIONS(2442), 1, - anon_sym_RBRACE, - ACTIONS(2444), 1, - anon_sym_async, - ACTIONS(2446), 1, - anon_sym_static, - ACTIONS(2452), 1, - sym_readonly, - STATE(1876), 1, - sym_accessibility_modifier, - STATE(1905), 1, - sym_decorator, - STATE(2020), 1, - sym_formal_parameters, - STATE(2406), 1, - sym__call_signature, - STATE(2485), 1, - aux_sym_export_statement_repeat1, - STATE(2718), 1, - aux_sym_object_repeat1, - STATE(2862), 1, - sym_type_parameters, - STATE(3086), 1, - sym_array, - STATE(3204), 1, - sym_object, - ACTIONS(2448), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(2450), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(1937), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(2716), 4, - sym_assignment_pattern, - sym_spread_element, - sym_method_definition, - sym_pair, - STATE(2185), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(2438), 10, - anon_sym_namespace, - anon_sym_type, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [7679] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1127), 1, - anon_sym_EQ, - ACTIONS(1137), 1, anon_sym_EQ_GT, - ACTIONS(1139), 1, + ACTIONS(2320), 1, anon_sym_QMARK_DOT, - ACTIONS(1653), 1, - anon_sym_LBRACK, - ACTIONS(1655), 1, + ACTIONS(2443), 1, anon_sym_DOT, - ACTIONS(2161), 1, - anon_sym_LPAREN, - ACTIONS(2163), 1, - anon_sym_LT, - STATE(1557), 1, + STATE(378), 1, sym_type_arguments, - STATE(1646), 1, - sym_arguments, - ACTIONS(1621), 11, + ACTIONS(2209), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1039), 11, anon_sym_as, - anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -74328,7 +74054,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_LBRACE_PIPE, - ACTIONS(831), 15, + ACTIONS(2197), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -74344,12 +74070,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1619), 22, + ACTIONS(1037), 19, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, anon_sym_AMP_AMP, @@ -74357,9 +74082,7 @@ static 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_PERCENT, @@ -74367,34 +74090,35 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [7764] = 13, + [6958] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(2175), 1, + ACTIONS(2187), 1, + anon_sym_EQ, + ACTIONS(2191), 1, anon_sym_LBRACK, - ACTIONS(2179), 1, + ACTIONS(2195), 1, anon_sym_QMARK_DOT, - ACTIONS(2219), 1, + ACTIONS(2206), 1, anon_sym_LT, - ACTIONS(2243), 1, - anon_sym_DOT, - ACTIONS(2408), 1, + ACTIONS(2240), 1, anon_sym_EQ_GT, - ACTIONS(2416), 1, - anon_sym_EQ, - STATE(313), 1, + ACTIONS(2445), 1, + anon_sym_DOT, + STATE(378), 1, sym_type_arguments, - ACTIONS(1583), 2, + ACTIONS(1702), 2, anon_sym_COMMA, anon_sym_extends, - ACTIONS(1585), 3, + ACTIONS(2209), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1099), 12, + ACTIONS(1039), 12, anon_sym_as, - anon_sym_LBRACE, anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -74403,8 +74127,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_implements, - ACTIONS(2181), 15, + ACTIONS(2197), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -74420,7 +74143,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1097), 18, + ACTIONS(1037), 18, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -74439,34 +74162,35 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [7849] = 14, + [7043] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1670), 1, - anon_sym_extends, ACTIONS(2206), 1, - anon_sym_COMMA, - ACTIONS(2219), 1, anon_sym_LT, - ACTIONS(2377), 1, - anon_sym_EQ, - ACTIONS(2379), 1, + ACTIONS(2282), 1, anon_sym_LBRACK, - ACTIONS(2383), 1, - anon_sym_EQ_GT, - ACTIONS(2385), 1, + ACTIONS(2288), 1, anon_sym_QMARK_DOT, - ACTIONS(2454), 1, + ACTIONS(2437), 1, + anon_sym_EQ, + ACTIONS(2441), 1, + anon_sym_EQ_GT, + ACTIONS(2447), 1, anon_sym_DOT, - STATE(313), 1, + STATE(378), 1, sym_type_arguments, - ACTIONS(2216), 3, + ACTIONS(1702), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(2209), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1099), 11, + ACTIONS(1039), 12, + sym__automatic_semicolon, anon_sym_as, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -74475,8 +74199,55 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, - ACTIONS(2181), 15, + ACTIONS(2197), 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(1037), 18, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_SLASH, + anon_sym_QMARK, + 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_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [7128] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(825), 1, + anon_sym_EQ_GT, + ACTIONS(827), 1, + anon_sym_QMARK_DOT, + ACTIONS(927), 1, + anon_sym_EQ, + ACTIONS(1623), 1, + anon_sym_LBRACK, + ACTIONS(1625), 1, + anon_sym_DOT, + ACTIONS(831), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -74492,11 +74263,28 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1097), 19, + ACTIONS(841), 15, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + 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, + ACTIONS(808), 22, anon_sym_STAR, - anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, + anon_sym_LT, + anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, anon_sym_AMP_AMP, @@ -74504,7 +74292,9 @@ static 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_PERCENT, @@ -74512,116 +74302,27 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [7936] = 32, + [7205] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(475), 1, - anon_sym_DQUOTE, - ACTIONS(477), 1, - anon_sym_SQUOTE, - ACTIONS(479), 1, - anon_sym_BQUOTE, - ACTIONS(1691), 1, - anon_sym_LT, - ACTIONS(2456), 1, - sym_identifier, - ACTIONS(2458), 1, - anon_sym_STAR, - ACTIONS(2460), 1, - anon_sym_LBRACE, - ACTIONS(2462), 1, - anon_sym_typeof, - ACTIONS(2464), 1, - anon_sym_LPAREN, - ACTIONS(2466), 1, + ACTIONS(2191), 1, anon_sym_LBRACK, - ACTIONS(2468), 1, - anon_sym_new, - ACTIONS(2470), 1, - anon_sym_QMARK, - ACTIONS(2472), 1, - anon_sym_AMP, - ACTIONS(2474), 1, - anon_sym_PIPE, - ACTIONS(2480), 1, - sym_number, - ACTIONS(2482), 1, - sym_this, - ACTIONS(2486), 1, - sym_readonly, - ACTIONS(2488), 1, - anon_sym_keyof, - ACTIONS(2490), 1, - anon_sym_LBRACE_PIPE, - STATE(1003), 1, - sym_nested_type_identifier, - STATE(1036), 1, - sym__tuple_type_body, - STATE(1161), 1, - sym_template_string, - STATE(2953), 1, - sym_type_parameters, - STATE(3027), 1, - sym_nested_identifier, - STATE(3083), 1, - sym_formal_parameters, - ACTIONS(2476), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2484), 2, - sym_true, - sym_false, - STATE(1034), 2, - sym_string, - sym__number, - STATE(1081), 5, - sym__type, - sym_constructor_type, - sym_union_type, - sym_intersection_type, - sym_function_type, - ACTIONS(2478), 6, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - STATE(1035), 14, - sym__primary_type, - sym_conditional_type, - sym_generic_type, - sym_type_query, - sym_index_type_query, - sym_lookup_type, - sym_literal_type, - sym_existential_type, - sym_flow_maybe_type, - sym_parenthesized_type, - sym_predefined_type, - sym_object_type, - sym_array_type, - sym_tuple_type, - [8058] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1003), 1, + ACTIONS(2193), 1, + anon_sym_DOT, + ACTIONS(2195), 1, + anon_sym_QMARK_DOT, + ACTIONS(2201), 1, anon_sym_EQ, - ACTIONS(1009), 1, + ACTIONS(2214), 1, anon_sym_EQ_GT, - ACTIONS(1011), 1, - anon_sym_QMARK_DOT, - ACTIONS(1219), 1, - anon_sym_LBRACK, - ACTIONS(1224), 1, - anon_sym_DOT, - ACTIONS(841), 14, - sym__automatic_semicolon, + ACTIONS(1039), 15, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -74630,7 +74331,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(831), 15, + ACTIONS(2197), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -74646,7 +74347,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(808), 22, + ACTIONS(1037), 22, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -74669,31 +74370,34 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [8134] = 11, + [7282] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1011), 1, - anon_sym_QMARK_DOT, - ACTIONS(1115), 1, + ACTIONS(2312), 1, anon_sym_EQ, - ACTIONS(1117), 1, - anon_sym_EQ_GT, - ACTIONS(1219), 1, + ACTIONS(2314), 1, anon_sym_LBRACK, - ACTIONS(1224), 1, - anon_sym_DOT, - ACTIONS(1185), 2, + ACTIONS(2318), 1, + anon_sym_EQ_GT, + ACTIONS(2320), 1, + anon_sym_QMARK_DOT, + ACTIONS(2411), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(2449), 1, + anon_sym_LBRACE, + ACTIONS(2451), 1, anon_sym_COMMA, - anon_sym_extends, - ACTIONS(2291), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(841), 12, - sym__automatic_semicolon, + ACTIONS(2453), 1, + anon_sym_LT, + ACTIONS(2456), 1, + anon_sym_DOT, + STATE(2606), 1, + aux_sym_extends_clause_repeat1, + STATE(2647), 1, + sym_type_arguments, + ACTIONS(1039), 10, anon_sym_as, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -74702,7 +74406,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(831), 15, + ACTIONS(2197), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -74718,11 +74422,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(808), 19, + ACTIONS(1037), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, + anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, anon_sym_AMP_AMP, @@ -74730,7 +74434,9 @@ static 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_PERCENT, @@ -74738,26 +74444,315 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [8214] = 9, + [7371] = 36, + ACTIONS(3), 1, + sym_comment, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(123), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1678), 1, + anon_sym_LT, + ACTIONS(1728), 1, + anon_sym_LBRACE, + ACTIONS(2324), 1, + anon_sym_export, + ACTIONS(2326), 1, + anon_sym_STAR, + ACTIONS(2332), 1, + anon_sym_LPAREN, + ACTIONS(2336), 1, + anon_sym_LBRACK, + ACTIONS(2338), 1, + anon_sym_async, + ACTIONS(2340), 1, + anon_sym_new, + ACTIONS(2342), 1, + anon_sym_DASH, + ACTIONS(2344), 1, + anon_sym_DQUOTE, + ACTIONS(2346), 1, + anon_sym_SQUOTE, + ACTIONS(2348), 1, + sym_number, + ACTIONS(2350), 1, + anon_sym_static, + ACTIONS(2356), 1, + sym_readonly, + ACTIONS(2458), 1, + anon_sym_COMMA, + ACTIONS(2460), 1, + anon_sym_RBRACE, + ACTIONS(2462), 1, + anon_sym_SEMI, + ACTIONS(2464), 1, + anon_sym_PIPE_RBRACE, + STATE(1882), 1, + sym_accessibility_modifier, + STATE(1890), 1, + sym_decorator, + STATE(2015), 1, + sym_formal_parameters, + STATE(2320), 1, + sym__call_signature, + STATE(2548), 1, + aux_sym_export_statement_repeat1, + STATE(2706), 1, + aux_sym_object_repeat1, + STATE(2918), 1, + sym_type_parameters, + STATE(3037), 1, + sym_object, + STATE(3038), 1, + sym_array, + ACTIONS(2352), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(2354), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(1949), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(2710), 4, + sym_assignment_pattern, + sym_spread_element, + sym_method_definition, + sym_pair, + STATE(2185), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(2322), 10, + anon_sym_namespace, + anon_sym_type, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [7502] = 36, + ACTIONS(3), 1, + sym_comment, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(123), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1678), 1, + anon_sym_LT, + ACTIONS(1728), 1, + anon_sym_LBRACE, + ACTIONS(2326), 1, + anon_sym_STAR, + ACTIONS(2328), 1, + anon_sym_COMMA, + ACTIONS(2332), 1, + anon_sym_LPAREN, + ACTIONS(2334), 1, + anon_sym_SEMI, + ACTIONS(2336), 1, + anon_sym_LBRACK, + ACTIONS(2340), 1, + anon_sym_new, + ACTIONS(2342), 1, + anon_sym_DASH, + ACTIONS(2344), 1, + anon_sym_DQUOTE, + ACTIONS(2346), 1, + anon_sym_SQUOTE, + ACTIONS(2348), 1, + sym_number, + ACTIONS(2358), 1, + anon_sym_PIPE_RBRACE, + ACTIONS(2362), 1, + anon_sym_export, + ACTIONS(2366), 1, + anon_sym_async, + ACTIONS(2368), 1, + anon_sym_static, + ACTIONS(2374), 1, + sym_readonly, + ACTIONS(2466), 1, + anon_sym_RBRACE, + STATE(1882), 1, + sym_accessibility_modifier, + STATE(1890), 1, + sym_decorator, + STATE(2015), 1, + sym_formal_parameters, + STATE(2320), 1, + sym__call_signature, + STATE(2548), 1, + aux_sym_export_statement_repeat1, + STATE(2673), 1, + aux_sym_object_repeat1, + STATE(2918), 1, + sym_type_parameters, + STATE(3037), 1, + sym_object, + STATE(3038), 1, + sym_array, + ACTIONS(2370), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(2372), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(1949), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(2671), 4, + sym_assignment_pattern, + sym_spread_element, + sym_method_definition, + sym_pair, + STATE(2158), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(2360), 10, + anon_sym_namespace, + anon_sym_type, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [7633] = 36, + ACTIONS(3), 1, + sym_comment, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(123), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1678), 1, + anon_sym_LT, + ACTIONS(1728), 1, + anon_sym_LBRACE, + ACTIONS(2324), 1, + anon_sym_export, + ACTIONS(2326), 1, + anon_sym_STAR, + ACTIONS(2328), 1, + anon_sym_COMMA, + ACTIONS(2332), 1, + anon_sym_LPAREN, + ACTIONS(2334), 1, + anon_sym_SEMI, + ACTIONS(2336), 1, + anon_sym_LBRACK, + ACTIONS(2338), 1, + anon_sym_async, + ACTIONS(2340), 1, + anon_sym_new, + ACTIONS(2342), 1, + anon_sym_DASH, + ACTIONS(2344), 1, + anon_sym_DQUOTE, + ACTIONS(2346), 1, + anon_sym_SQUOTE, + ACTIONS(2348), 1, + sym_number, + ACTIONS(2350), 1, + anon_sym_static, + ACTIONS(2356), 1, + sym_readonly, + ACTIONS(2358), 1, + anon_sym_PIPE_RBRACE, + ACTIONS(2468), 1, + anon_sym_RBRACE, + STATE(1882), 1, + sym_accessibility_modifier, + STATE(1890), 1, + sym_decorator, + STATE(2015), 1, + sym_formal_parameters, + STATE(2320), 1, + sym__call_signature, + STATE(2548), 1, + aux_sym_export_statement_repeat1, + STATE(2706), 1, + aux_sym_object_repeat1, + STATE(2918), 1, + sym_type_parameters, + STATE(3037), 1, + sym_object, + STATE(3038), 1, + sym_array, + ACTIONS(2352), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(2354), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(1949), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(2710), 4, + sym_assignment_pattern, + sym_spread_element, + sym_method_definition, + sym_pair, + STATE(2158), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(2322), 10, + anon_sym_namespace, + anon_sym_type, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [7764] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(2264), 1, + ACTIONS(2177), 1, + anon_sym_LPAREN, + ACTIONS(2179), 1, + anon_sym_LT, + ACTIONS(2187), 1, anon_sym_EQ, - ACTIONS(2266), 1, + ACTIONS(2314), 1, anon_sym_LBRACK, - ACTIONS(2270), 1, + ACTIONS(2318), 1, anon_sym_EQ_GT, - ACTIONS(2272), 1, + ACTIONS(2320), 1, anon_sym_QMARK_DOT, - ACTIONS(2282), 1, + ACTIONS(2470), 1, anon_sym_DOT, - ACTIONS(1099), 14, - sym__automatic_semicolon, + STATE(1510), 1, + sym_type_arguments, + STATE(1704), 1, + sym_arguments, + ACTIONS(2189), 11, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -74766,7 +74761,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(2181), 15, + anon_sym_LBRACE_PIPE, + ACTIONS(2197), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -74782,11 +74778,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1097), 22, + ACTIONS(2185), 22, anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -74805,29 +74801,34 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [8290] = 12, + [7849] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2175), 1, + ACTIONS(1702), 1, + anon_sym_extends, + ACTIONS(2191), 1, anon_sym_LBRACK, - ACTIONS(2179), 1, + ACTIONS(2195), 1, anon_sym_QMARK_DOT, - ACTIONS(2219), 1, + ACTIONS(2203), 1, + anon_sym_COMMA, + ACTIONS(2206), 1, anon_sym_LT, - ACTIONS(2408), 1, - anon_sym_EQ_GT, - ACTIONS(2416), 1, - anon_sym_EQ, - ACTIONS(2420), 1, + ACTIONS(2212), 1, anon_sym_DOT, - STATE(313), 1, + ACTIONS(2409), 1, + anon_sym_EQ, + ACTIONS(2417), 1, + anon_sym_EQ_GT, + STATE(378), 1, sym_type_arguments, - ACTIONS(2492), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_implements, - ACTIONS(1099), 10, + ACTIONS(2209), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1039), 12, anon_sym_as, + anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, @@ -74837,7 +74838,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(2181), 15, + anon_sym_implements, + ACTIONS(2197), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -74853,11 +74855,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1097), 21, + ACTIONS(1037), 18, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, anon_sym_AMP_AMP, @@ -74865,9 +74866,7 @@ static 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_PERCENT, @@ -74875,30 +74874,30 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [8372] = 13, + [7936] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2157), 1, - anon_sym_LPAREN, - ACTIONS(2159), 1, - anon_sym_LT, - ACTIONS(2171), 1, + ACTIONS(1021), 1, + anon_sym_QMARK_DOT, + ACTIONS(1127), 1, anon_sym_EQ, - ACTIONS(2266), 1, + ACTIONS(1129), 1, + anon_sym_EQ_GT, + ACTIONS(1219), 1, anon_sym_LBRACK, - ACTIONS(2272), 1, - anon_sym_QMARK_DOT, - ACTIONS(2282), 1, + ACTIONS(1224), 1, anon_sym_DOT, - ACTIONS(2391), 1, - anon_sym_EQ_GT, - STATE(1347), 1, - sym_type_arguments, - STATE(1607), 1, - sym_arguments, - ACTIONS(2173), 11, + ACTIONS(1185), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(2303), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(841), 12, sym__automatic_semicolon, anon_sym_as, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, @@ -74908,7 +74907,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(2181), 15, + ACTIONS(831), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -74924,11 +74923,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(2169), 21, + ACTIONS(808), 19, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, + anon_sym_LT, anon_sym_SLASH, anon_sym_QMARK, anon_sym_AMP_AMP, @@ -74936,9 +74935,7 @@ static 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_PERCENT, @@ -74946,10 +74943,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [8456] = 3, + [8016] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2224), 23, + ACTIONS(2248), 23, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -74973,7 +74970,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(2226), 33, + ACTIONS(2250), 33, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, @@ -75007,29 +75004,28 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [8520] = 13, + [8080] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2377), 1, + ACTIONS(1139), 1, anon_sym_EQ, - ACTIONS(2379), 1, - anon_sym_LBRACK, - ACTIONS(2383), 1, + ACTIONS(1145), 1, anon_sym_EQ_GT, - ACTIONS(2385), 1, + ACTIONS(1147), 1, anon_sym_QMARK_DOT, - ACTIONS(2397), 1, - anon_sym_LT, - ACTIONS(2400), 1, + ACTIONS(1185), 1, + anon_sym_extends, + ACTIONS(1653), 1, + anon_sym_LBRACK, + ACTIONS(1655), 1, anon_sym_DOT, - ACTIONS(2494), 1, - anon_sym_LBRACE, - STATE(2708), 1, - sym_type_arguments, - ACTIONS(2492), 2, + ACTIONS(2300), 1, anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - ACTIONS(1099), 10, + ACTIONS(2303), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(841), 11, anon_sym_as, anon_sym_LPAREN, anon_sym_LT_EQ, @@ -75040,7 +75036,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(2181), 15, + anon_sym_LBRACE_PIPE, + ACTIONS(831), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -75056,11 +75053,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1097), 21, + ACTIONS(808), 20, anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, - anon_sym_GT, + anon_sym_LT, anon_sym_SLASH, anon_sym_QMARK, anon_sym_AMP_AMP, @@ -75068,9 +75066,7 @@ static 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_PERCENT, @@ -75078,22 +75074,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [8604] = 7, + [8162] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1411), 1, + ACTIONS(945), 1, anon_sym_extends, - ACTIONS(2230), 1, - anon_sym_DOT, - ACTIONS(2249), 2, + ACTIONS(2263), 1, + anon_sym_LT, + ACTIONS(2266), 3, anon_sym_COMMA, anon_sym_LBRACK, - ACTIONS(2233), 4, - anon_sym_LT, + anon_sym_DOT, + ACTIONS(2273), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(2183), 19, + ACTIONS(2256), 19, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -75113,7 +75109,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(2185), 29, + ACTIONS(2258), 29, sym__automatic_semicolon, anon_sym_as, anon_sym_RBRACE, @@ -75143,31 +75139,28 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [8676] = 13, + [8234] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(827), 1, - anon_sym_QMARK_DOT, - ACTIONS(1127), 1, + ACTIONS(2177), 1, + anon_sym_LPAREN, + ACTIONS(2179), 1, + anon_sym_LT, + ACTIONS(2187), 1, anon_sym_EQ, - ACTIONS(1129), 1, - anon_sym_EQ_GT, - ACTIONS(1623), 1, + ACTIONS(2314), 1, anon_sym_LBRACK, - ACTIONS(1625), 1, + ACTIONS(2320), 1, + anon_sym_QMARK_DOT, + ACTIONS(2470), 1, anon_sym_DOT, - ACTIONS(2145), 1, - anon_sym_LPAREN, - ACTIONS(2147), 1, - anon_sym_LT, - STATE(1089), 1, + STATE(1510), 1, sym_type_arguments, - STATE(1147), 1, + STATE(1704), 1, sym_arguments, - ACTIONS(1621), 11, + ACTIONS(2189), 11, anon_sym_as, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_COMMA, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -75176,7 +75169,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(831), 15, + anon_sym_LBRACE_PIPE, + ACTIONS(2197), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -75192,8 +75186,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1619), 21, + ACTIONS(2185), 22, anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -75214,54 +75209,102 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [8760] = 11, + [8316] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(2175), 1, - anon_sym_LBRACK, - ACTIONS(2177), 1, - anon_sym_DOT, - ACTIONS(2179), 1, - anon_sym_QMARK_DOT, - ACTIONS(2204), 1, - anon_sym_EQ, - ACTIONS(2214), 1, - anon_sym_EQ_GT, - ACTIONS(2499), 1, - anon_sym_COLON, - ACTIONS(2496), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - ACTIONS(1099), 10, - anon_sym_as, - anon_sym_LPAREN, - 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, + ACTIONS(81), 1, + anon_sym_DQUOTE, + ACTIONS(83), 1, + anon_sym_SQUOTE, + ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(2181), 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(1097), 22, + ACTIONS(1678), 1, + anon_sym_LT, + ACTIONS(2472), 1, + sym_identifier, + ACTIONS(2474), 1, + anon_sym_STAR, + ACTIONS(2476), 1, + anon_sym_LBRACE, + ACTIONS(2478), 1, + anon_sym_typeof, + ACTIONS(2480), 1, + anon_sym_LPAREN, + ACTIONS(2482), 1, + anon_sym_LBRACK, + ACTIONS(2484), 1, + anon_sym_new, + ACTIONS(2486), 1, + anon_sym_QMARK, + ACTIONS(2488), 1, + anon_sym_AMP, + ACTIONS(2490), 1, + anon_sym_PIPE, + ACTIONS(2496), 1, + sym_number, + ACTIONS(2498), 1, + sym_this, + ACTIONS(2502), 1, + sym_readonly, + ACTIONS(2504), 1, + anon_sym_keyof, + ACTIONS(2506), 1, + anon_sym_LBRACE_PIPE, + STATE(1231), 1, + sym_nested_type_identifier, + STATE(1412), 1, + sym__tuple_type_body, + STATE(1515), 1, + sym_template_string, + STATE(2874), 1, + sym_type_parameters, + STATE(3081), 1, + sym_formal_parameters, + STATE(3130), 1, + sym_nested_identifier, + ACTIONS(2492), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2500), 2, + sym_true, + sym_false, + STATE(1409), 2, + sym_string, + sym__number, + STATE(1376), 5, + sym__type, + sym_constructor_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + ACTIONS(2494), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(1411), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [8438] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2242), 23, anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -75283,28 +75326,60 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [8840] = 12, + ACTIONS(2244), 33, + sym__automatic_semicolon, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_of, + 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, + [8502] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2161), 1, - anon_sym_LPAREN, - ACTIONS(2163), 1, - anon_sym_LT, - ACTIONS(2171), 1, + ACTIONS(1013), 1, anon_sym_EQ, - ACTIONS(2379), 1, - anon_sym_LBRACK, - ACTIONS(2385), 1, + ACTIONS(1019), 1, + anon_sym_EQ_GT, + ACTIONS(1021), 1, anon_sym_QMARK_DOT, - ACTIONS(2410), 1, + ACTIONS(1219), 1, + anon_sym_LBRACK, + ACTIONS(1224), 1, anon_sym_DOT, - STATE(1556), 1, - sym_type_arguments, - STATE(1648), 1, - sym_arguments, - ACTIONS(2173), 11, + ACTIONS(841), 14, + sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -75313,8 +75388,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, - ACTIONS(2181), 15, + ACTIONS(831), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -75330,11 +75404,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(2169), 22, + ACTIONS(808), 22, anon_sym_STAR, - anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -75353,27 +75427,24 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [8922] = 11, + [8578] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1003), 1, + ACTIONS(2280), 1, anon_sym_EQ, - ACTIONS(1009), 1, + ACTIONS(2282), 1, + anon_sym_LBRACK, + ACTIONS(2286), 1, anon_sym_EQ_GT, - ACTIONS(1011), 1, + ACTIONS(2288), 1, anon_sym_QMARK_DOT, - ACTIONS(1219), 1, - anon_sym_LBRACK, - ACTIONS(1224), 1, + ACTIONS(2298), 1, anon_sym_DOT, - ACTIONS(1665), 1, - anon_sym_in, - ACTIONS(2501), 1, - anon_sym_of, - ACTIONS(841), 13, + ACTIONS(1039), 14, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LT_EQ, @@ -75384,7 +75455,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(831), 15, + ACTIONS(2197), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -75400,9 +75471,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(808), 21, + ACTIONS(1037), 22, anon_sym_STAR, anon_sym_BANG, + anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, @@ -75422,24 +75494,24 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [9002] = 11, + [8654] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2264), 1, + ACTIONS(2280), 1, anon_sym_EQ, - ACTIONS(2266), 1, + ACTIONS(2282), 1, anon_sym_LBRACK, - ACTIONS(2270), 1, + ACTIONS(2286), 1, anon_sym_EQ_GT, - ACTIONS(2272), 1, + ACTIONS(2288), 1, anon_sym_QMARK_DOT, - ACTIONS(2282), 1, + ACTIONS(2298), 1, anon_sym_DOT, - ACTIONS(2503), 1, + ACTIONS(2508), 1, anon_sym_in, - ACTIONS(2506), 1, + ACTIONS(2511), 1, anon_sym_of, - ACTIONS(1099), 13, + ACTIONS(1039), 13, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, @@ -75453,7 +75525,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(2181), 15, + ACTIONS(2197), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -75469,7 +75541,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1097), 21, + ACTIONS(1037), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_LT, @@ -75491,92 +75563,121 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [9082] = 3, + [8734] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(2123), 23, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_in, + ACTIONS(711), 1, + anon_sym_DQUOTE, + ACTIONS(713), 1, + anon_sym_SQUOTE, + ACTIONS(715), 1, + anon_sym_BQUOTE, + ACTIONS(1678), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(2513), 1, + sym_identifier, + ACTIONS(2515), 1, + anon_sym_STAR, + ACTIONS(2517), 1, + anon_sym_LBRACE, + ACTIONS(2519), 1, + anon_sym_typeof, + ACTIONS(2521), 1, + anon_sym_LPAREN, + ACTIONS(2523), 1, + anon_sym_LBRACK, + ACTIONS(2525), 1, + anon_sym_new, + ACTIONS(2527), 1, anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(2529), 1, anon_sym_AMP, - anon_sym_CARET, + ACTIONS(2531), 1, anon_sym_PIPE, + ACTIONS(2537), 1, + sym_number, + ACTIONS(2539), 1, + sym_this, + ACTIONS(2543), 1, + sym_readonly, + ACTIONS(2545), 1, + anon_sym_keyof, + ACTIONS(2547), 1, + anon_sym_LBRACE_PIPE, + STATE(1327), 1, + sym_nested_type_identifier, + STATE(1528), 1, + sym__tuple_type_body, + STATE(1709), 1, + sym_template_string, + STATE(2941), 1, + sym_type_parameters, + STATE(3062), 1, + sym_nested_identifier, + STATE(3125), 1, + sym_formal_parameters, + ACTIONS(2533), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - ACTIONS(2125), 33, - sym__automatic_semicolon, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, - 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, - [9146] = 11, + ACTIONS(2541), 2, + sym_true, + sym_false, + STATE(1541), 2, + sym_string, + sym__number, + STATE(1522), 5, + sym__type, + sym_constructor_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + ACTIONS(2535), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(1535), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [8856] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(827), 1, anon_sym_QMARK_DOT, - ACTIONS(1127), 1, + ACTIONS(1119), 1, anon_sym_EQ, - ACTIONS(1129), 1, + ACTIONS(1121), 1, anon_sym_EQ_GT, + ACTIONS(1185), 1, + anon_sym_extends, ACTIONS(1623), 1, anon_sym_LBRACK, ACTIONS(1625), 1, anon_sym_DOT, - ACTIONS(1185), 2, + ACTIONS(2300), 1, anon_sym_COMMA, - anon_sym_extends, - ACTIONS(2291), 3, + ACTIONS(2303), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, ACTIONS(841), 12, anon_sym_as, + anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_RBRACK, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -75585,6 +75686,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, + anon_sym_implements, ACTIONS(831), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -75621,51 +75723,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [9226] = 8, + [8938] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2175), 1, - anon_sym_LBRACK, - ACTIONS(2177), 1, - anon_sym_DOT, - ACTIONS(2179), 1, - anon_sym_QMARK_DOT, - ACTIONS(2204), 1, - anon_sym_EQ, - ACTIONS(1099), 15, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - 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, - ACTIONS(2181), 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(1097), 22, + ACTIONS(2147), 23, anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -75687,82 +75750,116 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [9300] = 32, + ACTIONS(2149), 33, + sym__automatic_semicolon, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_of, + 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, + [9002] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(81), 1, + ACTIONS(475), 1, anon_sym_DQUOTE, - ACTIONS(83), 1, + ACTIONS(477), 1, anon_sym_SQUOTE, - ACTIONS(85), 1, + ACTIONS(479), 1, anon_sym_BQUOTE, - ACTIONS(1691), 1, + ACTIONS(1678), 1, anon_sym_LT, - ACTIONS(2508), 1, + ACTIONS(2549), 1, sym_identifier, - ACTIONS(2510), 1, + ACTIONS(2551), 1, anon_sym_STAR, - ACTIONS(2512), 1, + ACTIONS(2553), 1, anon_sym_LBRACE, - ACTIONS(2514), 1, + ACTIONS(2555), 1, anon_sym_typeof, - ACTIONS(2516), 1, + ACTIONS(2557), 1, anon_sym_LPAREN, - ACTIONS(2518), 1, + ACTIONS(2559), 1, anon_sym_LBRACK, - ACTIONS(2520), 1, + ACTIONS(2561), 1, anon_sym_new, - ACTIONS(2522), 1, + ACTIONS(2563), 1, anon_sym_QMARK, - ACTIONS(2524), 1, + ACTIONS(2565), 1, anon_sym_AMP, - ACTIONS(2526), 1, + ACTIONS(2567), 1, anon_sym_PIPE, - ACTIONS(2532), 1, + ACTIONS(2573), 1, sym_number, - ACTIONS(2534), 1, + ACTIONS(2575), 1, sym_this, - ACTIONS(2538), 1, + ACTIONS(2579), 1, sym_readonly, - ACTIONS(2540), 1, + ACTIONS(2581), 1, anon_sym_keyof, - ACTIONS(2542), 1, + ACTIONS(2583), 1, anon_sym_LBRACE_PIPE, - STATE(1291), 1, + STATE(1012), 1, sym_nested_type_identifier, - STATE(1402), 1, + STATE(1019), 1, sym__tuple_type_body, - STATE(1529), 1, + STATE(1170), 1, sym_template_string, - STATE(2856), 1, + STATE(2959), 1, sym_type_parameters, - STATE(3131), 1, + STATE(3046), 1, sym_nested_identifier, - STATE(3175), 1, + STATE(3147), 1, sym_formal_parameters, - ACTIONS(2528), 2, + ACTIONS(2569), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2536), 2, + ACTIONS(2577), 2, sym_true, sym_false, - STATE(1399), 2, + STATE(1027), 2, sym_string, sym__number, - STATE(1423), 5, + STATE(1017), 5, sym__type, sym_constructor_type, sym_union_type, sym_intersection_type, sym_function_type, - ACTIONS(2530), 6, + ACTIONS(2571), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(1401), 14, + STATE(1023), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -75777,10 +75874,10 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [9422] = 3, + [9124] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2252), 23, + ACTIONS(2127), 23, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -75804,7 +75901,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(2254), 33, + ACTIONS(2129), 33, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, @@ -75838,26 +75935,57 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [9486] = 7, + [9188] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1089), 1, - anon_sym_extends, - ACTIONS(2233), 1, - anon_sym_LT, - ACTIONS(2230), 3, - anon_sym_COMMA, + ACTIONS(2191), 1, anon_sym_LBRACK, + ACTIONS(2193), 1, anon_sym_DOT, - ACTIONS(2236), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(2183), 19, - anon_sym_STAR, + ACTIONS(2195), 1, + anon_sym_QMARK_DOT, + ACTIONS(2201), 1, anon_sym_EQ, + ACTIONS(2214), 1, + anon_sym_EQ_GT, + ACTIONS(2585), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(1039), 12, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + 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(2197), 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(1037), 22, + anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_LT, + anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, anon_sym_AMP_AMP, @@ -75865,7 +75993,9 @@ static 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_PERCENT, @@ -75873,13 +76003,40 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(2185), 29, - sym__automatic_semicolon, - anon_sym_as, - anon_sym_RBRACE, + [9266] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2161), 1, anon_sym_LPAREN, - anon_sym_SEMI, + ACTIONS(2163), 1, + anon_sym_LT, + ACTIONS(2187), 1, + anon_sym_EQ, + ACTIONS(2191), 1, + anon_sym_LBRACK, + ACTIONS(2193), 1, + anon_sym_DOT, + ACTIONS(2195), 1, anon_sym_QMARK_DOT, + ACTIONS(2240), 1, + anon_sym_EQ_GT, + STATE(1046), 1, + sym_type_arguments, + STATE(1160), 1, + sym_arguments, + ACTIONS(2189), 11, + anon_sym_as, + anon_sym_COLON, + 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, + ACTIONS(2197), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -75895,125 +76052,51 @@ static 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, - [9558] = 32, - ACTIONS(3), 1, - sym_comment, - ACTIONS(427), 1, + ACTIONS(2185), 21, anon_sym_STAR, - ACTIONS(461), 1, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(463), 1, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_AMP, - ACTIONS(465), 1, + anon_sym_CARET, anon_sym_PIPE, - ACTIONS(495), 1, - anon_sym_keyof, - ACTIONS(497), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(815), 1, - anon_sym_typeof, - ACTIONS(817), 1, - anon_sym_LPAREN, - ACTIONS(829), 1, - anon_sym_new, - ACTIONS(845), 1, - anon_sym_DQUOTE, - ACTIONS(847), 1, - anon_sym_SQUOTE, - ACTIONS(849), 1, - sym_number, - ACTIONS(929), 1, - anon_sym_LBRACE, - ACTIONS(935), 1, - sym_readonly, - ACTIONS(1691), 1, - anon_sym_LT, - ACTIONS(2286), 1, - anon_sym_LBRACK, - ACTIONS(2544), 1, - sym_identifier, - ACTIONS(2546), 1, - sym_this, - ACTIONS(2548), 1, - anon_sym_asserts, - STATE(444), 1, - sym__tuple_type_body, - STATE(1913), 1, - sym_nested_type_identifier, - STATE(2959), 1, - sym_type_parameters, - STATE(2969), 1, - sym_type_predicate, - STATE(2996), 1, - sym_formal_parameters, - STATE(2999), 1, - sym_nested_identifier, - ACTIONS(853), 2, - sym_true, - sym_false, - ACTIONS(1693), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(446), 2, - sym_string, - sym__number, - STATE(2031), 5, - sym__type, - sym_constructor_type, - sym_union_type, - sym_intersection_type, - sym_function_type, - ACTIONS(843), 6, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - STATE(448), 14, - sym__primary_type, - sym_conditional_type, - sym_generic_type, - sym_type_query, - sym_index_type_query, - sym_lookup_type, - sym_literal_type, - sym_existential_type, - sym_flow_maybe_type, - sym_parenthesized_type, - sym_predefined_type, - sym_object_type, - sym_array_type, - sym_tuple_type, - [9680] = 10, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [9350] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2264), 1, + ACTIONS(1013), 1, anon_sym_EQ, - ACTIONS(2266), 1, - anon_sym_LBRACK, - ACTIONS(2270), 1, + ACTIONS(1019), 1, anon_sym_EQ_GT, - ACTIONS(2272), 1, + ACTIONS(1021), 1, anon_sym_QMARK_DOT, - ACTIONS(2282), 1, + ACTIONS(1219), 1, + anon_sym_LBRACK, + ACTIONS(1224), 1, anon_sym_DOT, - ACTIONS(2550), 2, + ACTIONS(1665), 1, + anon_sym_in, + ACTIONS(2587), 1, + anon_sym_of, + ACTIONS(841), 13, sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(1099), 12, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -76022,7 +76105,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(2181), 15, + ACTIONS(831), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -76038,10 +76121,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1097), 22, + ACTIONS(808), 21, anon_sym_STAR, anon_sym_BANG, - anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, @@ -76061,30 +76143,27 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [9758] = 12, + [9430] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1131), 1, + ACTIONS(1013), 1, anon_sym_EQ, - ACTIONS(1137), 1, + ACTIONS(1019), 1, anon_sym_EQ_GT, - ACTIONS(1139), 1, + ACTIONS(1021), 1, anon_sym_QMARK_DOT, - ACTIONS(1185), 1, - anon_sym_extends, - ACTIONS(1653), 1, + ACTIONS(1219), 1, anon_sym_LBRACK, - ACTIONS(1655), 1, + ACTIONS(1224), 1, anon_sym_DOT, - ACTIONS(2288), 1, - anon_sym_COMMA, - ACTIONS(2291), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(841), 11, + ACTIONS(1274), 1, + anon_sym_COLON, + ACTIONS(841), 13, + sym__automatic_semicolon, anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -76093,7 +76172,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, ACTIONS(831), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -76110,12 +76188,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(808), 20, + ACTIONS(808), 22, anon_sym_STAR, - anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, + anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, anon_sym_AMP_AMP, @@ -76123,7 +76201,9 @@ static 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_PERCENT, @@ -76131,31 +76211,31 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [9840] = 13, + [9508] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1011), 1, + ACTIONS(827), 1, anon_sym_QMARK_DOT, + ACTIONS(1115), 1, + anon_sym_EQ, ACTIONS(1117), 1, anon_sym_EQ_GT, - ACTIONS(1127), 1, - anon_sym_EQ, - ACTIONS(1219), 1, + ACTIONS(1623), 1, anon_sym_LBRACK, - ACTIONS(1224), 1, + ACTIONS(1625), 1, anon_sym_DOT, - ACTIONS(2157), 1, - anon_sym_LPAREN, - ACTIONS(2159), 1, - anon_sym_LT, - STATE(1335), 1, - sym_type_arguments, - STATE(1489), 1, - sym_arguments, - ACTIONS(1621), 11, - sym__automatic_semicolon, + ACTIONS(1185), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(2303), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(841), 12, anon_sym_as, - anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -76180,11 +76260,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1619), 21, + ACTIONS(808), 19, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, + anon_sym_LT, anon_sym_SLASH, anon_sym_QMARK, anon_sym_AMP_AMP, @@ -76192,9 +76272,7 @@ static 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_PERCENT, @@ -76202,10 +76280,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [9924] = 3, + [9588] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2245), 23, + ACTIONS(2216), 23, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -76229,7 +76307,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(2247), 33, + ACTIONS(2218), 33, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, @@ -76263,10 +76341,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [9988] = 3, + [9652] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2260), 23, + ACTIONS(2269), 23, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -76290,7 +76368,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(2262), 33, + ACTIONS(2271), 33, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, @@ -76324,26 +76402,30 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [10052] = 10, + [9716] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1262), 1, - anon_sym_COLON, - ACTIONS(2264), 1, + ACTIONS(2173), 1, + anon_sym_LPAREN, + ACTIONS(2175), 1, + anon_sym_LT, + ACTIONS(2187), 1, anon_sym_EQ, - ACTIONS(2266), 1, + ACTIONS(2282), 1, anon_sym_LBRACK, - ACTIONS(2270), 1, - anon_sym_EQ_GT, - ACTIONS(2272), 1, + ACTIONS(2288), 1, anon_sym_QMARK_DOT, - ACTIONS(2282), 1, + ACTIONS(2298), 1, anon_sym_DOT, - ACTIONS(1099), 13, + ACTIONS(2441), 1, + anon_sym_EQ_GT, + STATE(1319), 1, + sym_type_arguments, + STATE(1548), 1, + sym_arguments, + ACTIONS(2189), 11, sym__automatic_semicolon, anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, @@ -76353,7 +76435,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(2181), 15, + ACTIONS(2197), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -76369,8 +76451,34 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1097), 22, + ACTIONS(2185), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + 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_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [9800] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2276), 23, anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -76392,82 +76500,177 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [10130] = 32, + ACTIONS(2278), 33, + sym__automatic_semicolon, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_of, + 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, + [9864] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(713), 1, + ACTIONS(2256), 23, anon_sym_STAR, - ACTIONS(725), 1, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(727), 1, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_AMP, - ACTIONS(729), 1, + anon_sym_CARET, anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + ACTIONS(2258), 33, + sym__automatic_semicolon, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_of, + 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, + [9928] = 32, + ACTIONS(3), 1, + sym_comment, + ACTIONS(731), 1, + anon_sym_STAR, + ACTIONS(743), 1, + anon_sym_QMARK, ACTIONS(745), 1, - anon_sym_keyof, + anon_sym_AMP, ACTIONS(747), 1, + anon_sym_PIPE, + ACTIONS(763), 1, + anon_sym_keyof, + ACTIONS(765), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1691), 1, + ACTIONS(1678), 1, anon_sym_LT, - ACTIONS(2318), 1, + ACTIONS(2344), 1, anon_sym_DQUOTE, - ACTIONS(2320), 1, + ACTIONS(2346), 1, anon_sym_SQUOTE, - ACTIONS(2552), 1, + ACTIONS(2589), 1, sym_identifier, - ACTIONS(2554), 1, + ACTIONS(2591), 1, anon_sym_LBRACE, - ACTIONS(2556), 1, + ACTIONS(2593), 1, anon_sym_typeof, - ACTIONS(2558), 1, + ACTIONS(2595), 1, anon_sym_LPAREN, - ACTIONS(2560), 1, + ACTIONS(2597), 1, anon_sym_LBRACK, - ACTIONS(2562), 1, + ACTIONS(2599), 1, anon_sym_new, - ACTIONS(2568), 1, + ACTIONS(2605), 1, sym_number, - ACTIONS(2570), 1, + ACTIONS(2607), 1, sym_this, - ACTIONS(2574), 1, + ACTIONS(2611), 1, sym_readonly, - ACTIONS(2576), 1, + ACTIONS(2613), 1, anon_sym_asserts, - STATE(1947), 1, + STATE(1950), 1, sym_nested_type_identifier, - STATE(1972), 1, + STATE(2010), 1, sym__tuple_type_body, - STATE(2169), 1, + STATE(2197), 1, sym_type_predicate, - STATE(2982), 1, + STATE(3007), 1, sym_type_parameters, - STATE(2998), 1, + STATE(3017), 1, sym_nested_identifier, - STATE(3030), 1, + STATE(3065), 1, sym_formal_parameters, - ACTIONS(2564), 2, + ACTIONS(2601), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2572), 2, + ACTIONS(2609), 2, sym_true, sym_false, - STATE(1981), 2, + STATE(2000), 2, sym_string, sym__number, - STATE(2009), 5, + STATE(2018), 5, sym__type, sym_constructor_type, sym_union_type, sym_intersection_type, sym_function_type, - ACTIONS(2566), 6, + ACTIONS(2603), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(1974), 14, + STATE(2003), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -76482,27 +76685,31 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [10252] = 10, + [10050] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(2175), 1, - anon_sym_LBRACK, - ACTIONS(2177), 1, - anon_sym_DOT, - ACTIONS(2179), 1, + ACTIONS(827), 1, anon_sym_QMARK_DOT, - ACTIONS(2204), 1, + ACTIONS(1115), 1, anon_sym_EQ, - ACTIONS(2214), 1, + ACTIONS(1117), 1, anon_sym_EQ_GT, - ACTIONS(2578), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(1099), 12, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(1623), 1, + anon_sym_LBRACK, + ACTIONS(1625), 1, + anon_sym_DOT, + ACTIONS(2161), 1, anon_sym_LPAREN, + ACTIONS(2163), 1, + anon_sym_LT, + STATE(1049), 1, + sym_type_arguments, + STATE(1158), 1, + sym_arguments, + ACTIONS(1621), 11, + anon_sym_as, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -76511,7 +76718,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(2181), 15, + ACTIONS(831), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -76527,11 +76734,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1097), 22, + ACTIONS(1619), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -76550,12 +76756,48 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [10330] = 3, + [10134] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2183), 23, - anon_sym_STAR, + ACTIONS(2201), 1, anon_sym_EQ, + ACTIONS(2197), 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(1039), 18, + anon_sym_as, + 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_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(1037), 22, + anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -76577,17 +76819,40 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(2185), 33, + [10202] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1021), 1, + anon_sym_QMARK_DOT, + ACTIONS(1115), 1, + anon_sym_EQ, + ACTIONS(1129), 1, + anon_sym_EQ_GT, + ACTIONS(1219), 1, + anon_sym_LBRACK, + ACTIONS(1224), 1, + anon_sym_DOT, + ACTIONS(2173), 1, + anon_sym_LPAREN, + ACTIONS(2175), 1, + anon_sym_LT, + STATE(1316), 1, + sym_type_arguments, + STATE(1551), 1, + sym_arguments, + ACTIONS(1621), 11, sym__automatic_semicolon, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, 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, + ACTIONS(831), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -76603,35 +76868,50 @@ static 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, - [10394] = 10, + ACTIONS(1619), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + 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_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [10286] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1003), 1, - anon_sym_EQ, - ACTIONS(1009), 1, - anon_sym_EQ_GT, - ACTIONS(1011), 1, - anon_sym_QMARK_DOT, - ACTIONS(1219), 1, + ACTIONS(2191), 1, anon_sym_LBRACK, - ACTIONS(1224), 1, + ACTIONS(2193), 1, anon_sym_DOT, - ACTIONS(1258), 1, + ACTIONS(2195), 1, + anon_sym_QMARK_DOT, + ACTIONS(2201), 1, + anon_sym_EQ, + ACTIONS(2214), 1, + anon_sym_EQ_GT, + ACTIONS(2618), 1, anon_sym_COLON, - ACTIONS(841), 13, - sym__automatic_semicolon, - anon_sym_as, + ACTIONS(2615), 3, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + ACTIONS(1039), 10, + anon_sym_as, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -76640,7 +76920,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(831), 15, + ACTIONS(2197), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -76656,7 +76936,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(808), 22, + ACTIONS(1037), 22, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -76679,27 +76959,124 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [10472] = 10, + [10366] = 32, + ACTIONS(3), 1, + sym_comment, + ACTIONS(427), 1, + anon_sym_STAR, + ACTIONS(461), 1, + anon_sym_QMARK, + ACTIONS(463), 1, + anon_sym_AMP, + ACTIONS(465), 1, + anon_sym_PIPE, + ACTIONS(495), 1, + anon_sym_keyof, + ACTIONS(497), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(815), 1, + anon_sym_typeof, + ACTIONS(817), 1, + anon_sym_LPAREN, + ACTIONS(829), 1, + anon_sym_new, + ACTIONS(845), 1, + anon_sym_DQUOTE, + ACTIONS(847), 1, + anon_sym_SQUOTE, + ACTIONS(849), 1, + sym_number, + ACTIONS(929), 1, + anon_sym_LBRACE, + ACTIONS(935), 1, + sym_readonly, + ACTIONS(1678), 1, + anon_sym_LT, + ACTIONS(2310), 1, + anon_sym_LBRACK, + ACTIONS(2620), 1, + sym_identifier, + ACTIONS(2622), 1, + sym_this, + ACTIONS(2624), 1, + anon_sym_asserts, + STATE(434), 1, + sym__tuple_type_body, + STATE(1917), 1, + sym_nested_type_identifier, + STATE(2903), 1, + sym_type_predicate, + STATE(2916), 1, + sym_type_parameters, + STATE(3122), 1, + sym_formal_parameters, + STATE(3123), 1, + sym_nested_identifier, + ACTIONS(853), 2, + sym_true, + sym_false, + ACTIONS(1680), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(433), 2, + sym_string, + sym__number, + STATE(2060), 5, + sym__type, + sym_constructor_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + ACTIONS(843), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(432), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [10488] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1258), 1, - anon_sym_COLON, - ACTIONS(2264), 1, + ACTIONS(805), 1, anon_sym_EQ, - ACTIONS(2266), 1, - anon_sym_LBRACK, - ACTIONS(2270), 1, + ACTIONS(825), 1, anon_sym_EQ_GT, - ACTIONS(2272), 1, + ACTIONS(827), 1, anon_sym_QMARK_DOT, - ACTIONS(2282), 1, + ACTIONS(1185), 1, + anon_sym_extends, + ACTIONS(1623), 1, + anon_sym_LBRACK, + ACTIONS(1625), 1, anon_sym_DOT, - ACTIONS(1099), 13, - sym__automatic_semicolon, - anon_sym_as, + ACTIONS(1709), 1, + anon_sym_QMARK, + ACTIONS(2626), 1, + anon_sym_RPAREN, + ACTIONS(812), 2, anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(2303), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(841), 10, + anon_sym_as, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -76708,7 +77085,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(2181), 15, + ACTIONS(831), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -76724,22 +77101,19 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1097), 22, + ACTIONS(808), 19, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, - anon_sym_QMARK, 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_PERCENT, @@ -76747,90 +77121,25 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [10550] = 5, + [10574] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2204), 1, + ACTIONS(2191), 1, + anon_sym_LBRACK, + ACTIONS(2193), 1, + anon_sym_DOT, + ACTIONS(2195), 1, + anon_sym_QMARK_DOT, + ACTIONS(2201), 1, anon_sym_EQ, - ACTIONS(2181), 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(1099), 18, + ACTIONS(1039), 15, anon_sym_as, 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_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(1097), 22, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - 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_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [10618] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1003), 1, - anon_sym_EQ, - ACTIONS(1009), 1, - anon_sym_EQ_GT, - ACTIONS(1011), 1, - anon_sym_QMARK_DOT, - ACTIONS(1219), 1, - anon_sym_LBRACK, - ACTIONS(1224), 1, - anon_sym_DOT, - ACTIONS(1262), 1, - anon_sym_COLON, - ACTIONS(841), 13, - sym__automatic_semicolon, - anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -76839,7 +77148,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(831), 15, + ACTIONS(2197), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -76855,7 +77164,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(808), 22, + ACTIONS(1037), 22, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -76878,10 +77187,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [10696] = 3, + [10648] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2256), 23, + ACTIONS(2252), 23, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -76905,7 +77214,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(2258), 33, + ACTIONS(2254), 33, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, @@ -76939,105 +77248,58 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [10760] = 32, + [10712] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(569), 1, - anon_sym_DQUOTE, - ACTIONS(571), 1, - anon_sym_SQUOTE, - ACTIONS(573), 1, - anon_sym_BQUOTE, - ACTIONS(1691), 1, + ACTIONS(2191), 1, + anon_sym_LBRACK, + ACTIONS(2195), 1, + anon_sym_QMARK_DOT, + ACTIONS(2206), 1, anon_sym_LT, - ACTIONS(2580), 1, - sym_identifier, - ACTIONS(2582), 1, - anon_sym_STAR, - ACTIONS(2584), 1, + ACTIONS(2409), 1, + anon_sym_EQ, + ACTIONS(2415), 1, + anon_sym_DOT, + ACTIONS(2417), 1, + anon_sym_EQ_GT, + STATE(378), 1, + sym_type_arguments, + ACTIONS(2630), 3, anon_sym_LBRACE, - ACTIONS(2586), 1, - anon_sym_typeof, - ACTIONS(2588), 1, + anon_sym_COMMA, + anon_sym_implements, + ACTIONS(1039), 10, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(2590), 1, - anon_sym_LBRACK, - ACTIONS(2592), 1, - anon_sym_new, - ACTIONS(2594), 1, - anon_sym_QMARK, - ACTIONS(2596), 1, - anon_sym_AMP, - ACTIONS(2598), 1, - anon_sym_PIPE, - ACTIONS(2604), 1, - sym_number, - ACTIONS(2606), 1, - sym_this, - ACTIONS(2610), 1, - sym_readonly, - ACTIONS(2612), 1, - anon_sym_keyof, - ACTIONS(2614), 1, - anon_sym_LBRACE_PIPE, - STATE(1361), 1, - sym_nested_type_identifier, - STATE(1481), 1, - sym__tuple_type_body, - STATE(1632), 1, - sym_template_string, - STATE(2938), 1, - sym_type_parameters, - STATE(3043), 1, - sym_nested_identifier, - STATE(3159), 1, - sym_formal_parameters, - ACTIONS(2600), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2608), 2, - sym_true, - sym_false, - STATE(1483), 2, - sym_string, - sym__number, - STATE(1548), 5, - sym__type, - sym_constructor_type, - sym_union_type, - sym_intersection_type, - sym_function_type, - ACTIONS(2602), 6, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - STATE(1482), 14, - sym__primary_type, - sym_conditional_type, - sym_generic_type, - sym_type_query, - sym_index_type_query, - sym_lookup_type, - sym_literal_type, - sym_existential_type, - sym_flow_maybe_type, - sym_parenthesized_type, - sym_predefined_type, - sym_object_type, - sym_array_type, - sym_tuple_type, - [10882] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2127), 23, + 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(2197), 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(1037), 21, anon_sym_STAR, - anon_sym_EQ, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -77056,68 +77318,27 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(2129), 33, - sym__automatic_semicolon, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, - 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, - [10946] = 14, + [10794] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(805), 1, + ACTIONS(1013), 1, anon_sym_EQ, - ACTIONS(825), 1, + ACTIONS(1019), 1, anon_sym_EQ_GT, - ACTIONS(827), 1, + ACTIONS(1021), 1, anon_sym_QMARK_DOT, - ACTIONS(1185), 1, - anon_sym_extends, - ACTIONS(1623), 1, + ACTIONS(1219), 1, anon_sym_LBRACK, - ACTIONS(1625), 1, + ACTIONS(1224), 1, anon_sym_DOT, - ACTIONS(1717), 1, - anon_sym_QMARK, - ACTIONS(2616), 1, - anon_sym_RPAREN, - ACTIONS(812), 2, - anon_sym_COMMA, + ACTIONS(1284), 1, anon_sym_COLON, - ACTIONS(2291), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(841), 10, + ACTIONS(841), 13, + sym__automatic_semicolon, anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -77142,19 +77363,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(808), 19, + ACTIONS(808), 22, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, + anon_sym_QMARK, 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_PERCENT, @@ -77162,31 +77386,27 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [11032] = 13, + [10872] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2145), 1, - anon_sym_LPAREN, - ACTIONS(2147), 1, - anon_sym_LT, - ACTIONS(2171), 1, + ACTIONS(1284), 1, + anon_sym_COLON, + ACTIONS(2280), 1, anon_sym_EQ, - ACTIONS(2175), 1, + ACTIONS(2282), 1, anon_sym_LBRACK, - ACTIONS(2177), 1, - anon_sym_DOT, - ACTIONS(2179), 1, - anon_sym_QMARK_DOT, - ACTIONS(2200), 1, + ACTIONS(2286), 1, anon_sym_EQ_GT, - STATE(1088), 1, - sym_type_arguments, - STATE(1157), 1, - sym_arguments, - ACTIONS(2173), 11, + ACTIONS(2288), 1, + anon_sym_QMARK_DOT, + ACTIONS(2298), 1, + anon_sym_DOT, + ACTIONS(1039), 13, + sym__automatic_semicolon, anon_sym_as, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -77195,7 +77415,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(2181), 15, + ACTIONS(2197), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -77211,34 +77431,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(2169), 21, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - 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_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [11116] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2239), 23, + ACTIONS(1037), 22, anon_sym_STAR, - anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -77260,64 +77454,30 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(2241), 33, - sym__automatic_semicolon, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, - 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, - [11180] = 12, + [10950] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(827), 1, - anon_sym_QMARK_DOT, - ACTIONS(1119), 1, + ACTIONS(2312), 1, anon_sym_EQ, - ACTIONS(1121), 1, - anon_sym_EQ_GT, - ACTIONS(1185), 1, - anon_sym_extends, - ACTIONS(1623), 1, + ACTIONS(2314), 1, anon_sym_LBRACK, - ACTIONS(1625), 1, + ACTIONS(2318), 1, + anon_sym_EQ_GT, + ACTIONS(2320), 1, + anon_sym_QMARK_DOT, + ACTIONS(2453), 1, + anon_sym_LT, + ACTIONS(2456), 1, anon_sym_DOT, - ACTIONS(2288), 1, + ACTIONS(2632), 1, + anon_sym_LBRACE, + STATE(2647), 1, + sym_type_arguments, + ACTIONS(2630), 2, anon_sym_COMMA, - ACTIONS(2291), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(841), 12, + anon_sym_LBRACE_PIPE, + ACTIONS(1039), 10, anon_sym_as, - anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, @@ -77327,8 +77487,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_implements, - ACTIONS(831), 15, + ACTIONS(2197), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -77344,11 +77503,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(808), 19, + ACTIONS(1037), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, + anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, anon_sym_AMP_AMP, @@ -77356,7 +77515,9 @@ static 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_PERCENT, @@ -77364,24 +77525,27 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [11262] = 8, + [11034] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2264), 1, + ACTIONS(2280), 1, anon_sym_EQ, - ACTIONS(2266), 1, + ACTIONS(2282), 1, anon_sym_LBRACK, - ACTIONS(2272), 1, + ACTIONS(2286), 1, + anon_sym_EQ_GT, + ACTIONS(2288), 1, anon_sym_QMARK_DOT, - ACTIONS(2282), 1, + ACTIONS(2298), 1, anon_sym_DOT, - ACTIONS(1099), 14, + ACTIONS(2634), 2, sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(1039), 12, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -77390,7 +77554,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(2181), 15, + ACTIONS(2197), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -77406,7 +77570,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1097), 22, + ACTIONS(1037), 22, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -77429,29 +77593,27 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [11335] = 12, + [11112] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2175), 1, + ACTIONS(1274), 1, + anon_sym_COLON, + ACTIONS(2280), 1, + anon_sym_EQ, + ACTIONS(2282), 1, anon_sym_LBRACK, - ACTIONS(2177), 1, - anon_sym_DOT, - ACTIONS(2179), 1, - anon_sym_QMARK_DOT, - ACTIONS(2214), 1, + ACTIONS(2286), 1, anon_sym_EQ_GT, - ACTIONS(2358), 1, - anon_sym_EQ, - ACTIONS(2370), 1, - anon_sym_QMARK, - ACTIONS(2620), 1, - anon_sym_COLON, - ACTIONS(2361), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(1099), 10, + ACTIONS(2288), 1, + anon_sym_QMARK_DOT, + ACTIONS(2298), 1, + anon_sym_DOT, + ACTIONS(1039), 13, + sym__automatic_semicolon, anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -77460,7 +77622,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(2181), 15, + ACTIONS(2197), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -77476,13 +77638,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1097), 21, + ACTIONS(1037), 22, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -77498,117 +77661,89 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [11416] = 31, + [11190] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(427), 1, - anon_sym_STAR, - ACTIONS(461), 1, - anon_sym_QMARK, - ACTIONS(463), 1, + ACTIONS(1455), 1, + anon_sym_extends, + ACTIONS(2266), 1, + anon_sym_DOT, + ACTIONS(2260), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(2263), 4, + anon_sym_LT, + anon_sym_GT, anon_sym_AMP, - ACTIONS(465), 1, anon_sym_PIPE, - ACTIONS(495), 1, - anon_sym_keyof, - ACTIONS(497), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(815), 1, - anon_sym_typeof, - ACTIONS(817), 1, - anon_sym_LPAREN, - ACTIONS(829), 1, - anon_sym_new, - ACTIONS(845), 1, - anon_sym_DQUOTE, - ACTIONS(847), 1, - anon_sym_SQUOTE, - ACTIONS(849), 1, - sym_number, - ACTIONS(925), 1, - sym_identifier, - ACTIONS(929), 1, - anon_sym_LBRACE, - ACTIONS(935), 1, - sym_readonly, - ACTIONS(1691), 1, - anon_sym_LT, - ACTIONS(2286), 1, - anon_sym_LBRACK, - ACTIONS(2622), 1, - anon_sym_RBRACK, - ACTIONS(2624), 1, - sym_this, - STATE(444), 1, - sym__tuple_type_body, - STATE(1913), 1, - sym_nested_type_identifier, - STATE(2959), 1, - sym_type_parameters, - STATE(2996), 1, - sym_formal_parameters, - STATE(2999), 1, - sym_nested_identifier, - ACTIONS(853), 2, - sym_true, - sym_false, - ACTIONS(1693), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(446), 2, - sym_string, - sym__number, - STATE(2513), 5, - sym__type, - sym_constructor_type, - sym_union_type, - sym_intersection_type, - sym_function_type, - ACTIONS(843), 6, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - STATE(448), 14, - sym__primary_type, - sym_conditional_type, - sym_generic_type, - sym_type_query, - sym_index_type_query, - sym_lookup_type, - sym_literal_type, - sym_existential_type, - sym_flow_maybe_type, - sym_parenthesized_type, - sym_predefined_type, - sym_object_type, - sym_array_type, - sym_tuple_type, - [11535] = 12, + ACTIONS(2256), 19, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_in, + anon_sym_SLASH, + anon_sym_QMARK, + 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_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + ACTIONS(2258), 29, + sym__automatic_semicolon, + anon_sym_as, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + 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, + [11262] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(805), 1, + ACTIONS(2280), 1, anon_sym_EQ, - ACTIONS(825), 1, - anon_sym_EQ_GT, - ACTIONS(827), 1, - anon_sym_QMARK_DOT, - ACTIONS(1623), 1, + ACTIONS(2282), 1, anon_sym_LBRACK, - ACTIONS(1625), 1, + ACTIONS(2288), 1, + anon_sym_QMARK_DOT, + ACTIONS(2298), 1, anon_sym_DOT, - ACTIONS(1717), 1, - anon_sym_QMARK, - ACTIONS(1728), 1, - anon_sym_COLON, - ACTIONS(812), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(841), 10, + ACTIONS(1039), 14, + sym__automatic_semicolon, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -77617,7 +77752,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(831), 15, + ACTIONS(2197), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -77633,13 +77768,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(808), 21, + ACTIONS(1037), 22, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -77655,26 +77791,24 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [11616] = 10, + [11335] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(825), 1, - anon_sym_EQ_GT, ACTIONS(827), 1, anon_sym_QMARK_DOT, - ACTIONS(927), 1, + ACTIONS(1119), 1, anon_sym_EQ, + ACTIONS(1121), 1, + anon_sym_EQ_GT, ACTIONS(1623), 1, anon_sym_LBRACK, ACTIONS(1625), 1, anon_sym_DOT, - ACTIONS(1726), 1, - anon_sym_COLON, - ACTIONS(841), 12, + ACTIONS(841), 13, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_RBRACK, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -77683,6 +77817,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, + anon_sym_implements, ACTIONS(831), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -77722,7 +77857,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [11693] = 31, + [11410] = 31, ACTIONS(3), 1, sym_comment, ACTIONS(427), 1, @@ -77755,122 +77890,34 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(935), 1, sym_readonly, - ACTIONS(1691), 1, + ACTIONS(1678), 1, anon_sym_LT, - ACTIONS(2286), 1, + ACTIONS(2310), 1, anon_sym_LBRACK, - ACTIONS(2624), 1, - sym_this, - ACTIONS(2626), 1, + ACTIONS(2636), 1, anon_sym_RBRACK, - STATE(444), 1, - sym__tuple_type_body, - STATE(1913), 1, - sym_nested_type_identifier, - STATE(2959), 1, - sym_type_parameters, - STATE(2996), 1, - sym_formal_parameters, - STATE(2999), 1, - sym_nested_identifier, - ACTIONS(853), 2, - sym_true, - sym_false, - ACTIONS(1693), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(446), 2, - sym_string, - sym__number, - STATE(2513), 5, - sym__type, - sym_constructor_type, - sym_union_type, - sym_intersection_type, - sym_function_type, - ACTIONS(843), 6, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - STATE(448), 14, - sym__primary_type, - sym_conditional_type, - sym_generic_type, - sym_type_query, - sym_index_type_query, - sym_lookup_type, - sym_literal_type, - sym_existential_type, - sym_flow_maybe_type, - sym_parenthesized_type, - sym_predefined_type, - sym_object_type, - sym_array_type, - sym_tuple_type, - [11812] = 31, - ACTIONS(3), 1, - sym_comment, - ACTIONS(427), 1, - anon_sym_STAR, - ACTIONS(461), 1, - anon_sym_QMARK, - ACTIONS(463), 1, - anon_sym_AMP, - ACTIONS(465), 1, - anon_sym_PIPE, - ACTIONS(495), 1, - anon_sym_keyof, - ACTIONS(497), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(815), 1, - anon_sym_typeof, - ACTIONS(817), 1, - anon_sym_LPAREN, - ACTIONS(829), 1, - anon_sym_new, - ACTIONS(845), 1, - anon_sym_DQUOTE, - ACTIONS(847), 1, - anon_sym_SQUOTE, - ACTIONS(849), 1, - sym_number, - ACTIONS(925), 1, - sym_identifier, - ACTIONS(929), 1, - anon_sym_LBRACE, - ACTIONS(935), 1, - sym_readonly, - ACTIONS(1691), 1, - anon_sym_LT, - ACTIONS(2286), 1, - anon_sym_LBRACK, - ACTIONS(2624), 1, + ACTIONS(2638), 1, sym_this, - ACTIONS(2628), 1, - anon_sym_GT, - STATE(444), 1, + STATE(434), 1, sym__tuple_type_body, - STATE(1913), 1, + STATE(1917), 1, sym_nested_type_identifier, - STATE(2959), 1, + STATE(2916), 1, sym_type_parameters, - STATE(2996), 1, + STATE(3122), 1, sym_formal_parameters, - STATE(2999), 1, + STATE(3123), 1, sym_nested_identifier, ACTIONS(853), 2, sym_true, sym_false, - ACTIONS(1693), 2, + ACTIONS(1680), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(446), 2, + STATE(433), 2, sym_string, sym__number, - STATE(2203), 5, + STATE(2591), 5, sym__type, sym_constructor_type, sym_union_type, @@ -77883,7 +77930,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(448), 14, + STATE(432), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -77898,7 +77945,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [11931] = 31, + [11529] = 31, ACTIONS(3), 1, sym_comment, ACTIONS(427), 1, @@ -77931,34 +77978,34 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(935), 1, sym_readonly, - ACTIONS(1691), 1, + ACTIONS(1678), 1, anon_sym_LT, - ACTIONS(2286), 1, + ACTIONS(2310), 1, anon_sym_LBRACK, - ACTIONS(2624), 1, + ACTIONS(2638), 1, sym_this, - ACTIONS(2630), 1, + ACTIONS(2640), 1, anon_sym_GT, - STATE(444), 1, + STATE(434), 1, sym__tuple_type_body, - STATE(1913), 1, + STATE(1917), 1, sym_nested_type_identifier, - STATE(2959), 1, + STATE(2916), 1, sym_type_parameters, - STATE(2996), 1, + STATE(3122), 1, sym_formal_parameters, - STATE(2999), 1, + STATE(3123), 1, sym_nested_identifier, ACTIONS(853), 2, sym_true, sym_false, - ACTIONS(1693), 2, + ACTIONS(1680), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(446), 2, + STATE(433), 2, sym_string, sym__number, - STATE(2203), 5, + STATE(2244), 5, sym__type, sym_constructor_type, sym_union_type, @@ -77971,7 +78018,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(448), 14, + STATE(432), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -77986,69 +78033,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [12050] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2264), 1, - anon_sym_EQ, - ACTIONS(2181), 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(1099), 17, - sym__automatic_semicolon, - 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, - ACTIONS(1097), 22, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - 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_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [12117] = 31, + [11648] = 31, ACTIONS(3), 1, sym_comment, ACTIONS(427), 1, @@ -78081,34 +78066,34 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(935), 1, sym_readonly, - ACTIONS(1691), 1, + ACTIONS(1678), 1, anon_sym_LT, - ACTIONS(2286), 1, + ACTIONS(2310), 1, anon_sym_LBRACK, - ACTIONS(2624), 1, + ACTIONS(2638), 1, sym_this, - ACTIONS(2632), 1, + ACTIONS(2642), 1, anon_sym_GT, - STATE(444), 1, + STATE(434), 1, sym__tuple_type_body, - STATE(1913), 1, + STATE(1917), 1, sym_nested_type_identifier, - STATE(2959), 1, + STATE(2916), 1, sym_type_parameters, - STATE(2996), 1, + STATE(3122), 1, sym_formal_parameters, - STATE(2999), 1, + STATE(3123), 1, sym_nested_identifier, ACTIONS(853), 2, sym_true, sym_false, - ACTIONS(1693), 2, + ACTIONS(1680), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(446), 2, + STATE(433), 2, sym_string, sym__number, - STATE(2203), 5, + STATE(2244), 5, sym__type, sym_constructor_type, sym_union_type, @@ -78121,7 +78106,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(448), 14, + STATE(432), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -78136,7 +78121,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [12236] = 31, + [11767] = 31, ACTIONS(3), 1, sym_comment, ACTIONS(427), 1, @@ -78169,34 +78154,34 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(935), 1, sym_readonly, - ACTIONS(1691), 1, + ACTIONS(1678), 1, anon_sym_LT, - ACTIONS(2286), 1, + ACTIONS(2310), 1, anon_sym_LBRACK, - ACTIONS(2624), 1, + ACTIONS(2638), 1, sym_this, - ACTIONS(2634), 1, + ACTIONS(2644), 1, anon_sym_GT, - STATE(444), 1, + STATE(434), 1, sym__tuple_type_body, - STATE(1913), 1, + STATE(1917), 1, sym_nested_type_identifier, - STATE(2959), 1, + STATE(2916), 1, sym_type_parameters, - STATE(2996), 1, + STATE(3122), 1, sym_formal_parameters, - STATE(2999), 1, + STATE(3123), 1, sym_nested_identifier, ACTIONS(853), 2, sym_true, sym_false, - ACTIONS(1693), 2, + ACTIONS(1680), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(446), 2, + STATE(433), 2, sym_string, sym__number, - STATE(2203), 5, + STATE(2244), 5, sym__type, sym_constructor_type, sym_union_type, @@ -78209,7 +78194,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(448), 14, + STATE(432), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -78224,80 +78209,12 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [12355] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2230), 1, - anon_sym_DOT, - ACTIONS(2249), 1, - anon_sym_LBRACK, - ACTIONS(1411), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(2233), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(2183), 19, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_in, - anon_sym_SLASH, - anon_sym_QMARK, - 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_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - ACTIONS(2185), 28, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - 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, - [12426] = 7, + [11886] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2264), 1, + ACTIONS(2280), 1, anon_sym_EQ, - ACTIONS(2503), 1, - anon_sym_in, - ACTIONS(2506), 1, - anon_sym_of, - ACTIONS(2181), 15, + ACTIONS(2197), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -78313,10 +78230,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1099), 16, + ACTIONS(1039), 17, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, @@ -78330,9 +78248,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1097), 21, + ACTIONS(1037), 22, anon_sym_STAR, anon_sym_BANG, + anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, @@ -78352,203 +78271,91 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [12497] = 31, + [11953] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(427), 1, - anon_sym_STAR, - ACTIONS(461), 1, + ACTIONS(2191), 1, + anon_sym_LBRACK, + ACTIONS(2193), 1, + anon_sym_DOT, + ACTIONS(2195), 1, + anon_sym_QMARK_DOT, + ACTIONS(2214), 1, + anon_sym_EQ_GT, + ACTIONS(2376), 1, + anon_sym_EQ, + ACTIONS(2388), 1, anon_sym_QMARK, - ACTIONS(463), 1, - anon_sym_AMP, - ACTIONS(465), 1, - anon_sym_PIPE, - ACTIONS(495), 1, - anon_sym_keyof, - ACTIONS(497), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(815), 1, - anon_sym_typeof, - ACTIONS(817), 1, + ACTIONS(2379), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(1039), 10, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(829), 1, - anon_sym_new, - ACTIONS(845), 1, - anon_sym_DQUOTE, - ACTIONS(847), 1, - anon_sym_SQUOTE, - ACTIONS(849), 1, - sym_number, - ACTIONS(925), 1, - sym_identifier, - ACTIONS(929), 1, - anon_sym_LBRACE, - ACTIONS(935), 1, - sym_readonly, - ACTIONS(1691), 1, - anon_sym_LT, - ACTIONS(2286), 1, - anon_sym_LBRACK, - ACTIONS(2624), 1, - sym_this, - ACTIONS(2636), 1, - anon_sym_RBRACK, - STATE(444), 1, - sym__tuple_type_body, - STATE(1913), 1, - sym_nested_type_identifier, - STATE(2959), 1, - sym_type_parameters, - STATE(2996), 1, - sym_formal_parameters, - STATE(2999), 1, - sym_nested_identifier, - ACTIONS(853), 2, - sym_true, - sym_false, - ACTIONS(1693), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(446), 2, - sym_string, - sym__number, - STATE(2513), 5, - sym__type, - sym_constructor_type, - sym_union_type, - sym_intersection_type, - sym_function_type, - ACTIONS(843), 6, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - STATE(448), 14, - sym__primary_type, - sym_conditional_type, - sym_generic_type, - sym_type_query, - sym_index_type_query, - sym_lookup_type, - sym_literal_type, - sym_existential_type, - sym_flow_maybe_type, - sym_parenthesized_type, - sym_predefined_type, - sym_object_type, - sym_array_type, - sym_tuple_type, - [12616] = 31, - ACTIONS(3), 1, - sym_comment, - ACTIONS(427), 1, + 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(2197), 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(1037), 21, anon_sym_STAR, - ACTIONS(461), 1, - anon_sym_QMARK, - ACTIONS(463), 1, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_AMP, - ACTIONS(465), 1, + anon_sym_CARET, anon_sym_PIPE, - ACTIONS(495), 1, - anon_sym_keyof, - ACTIONS(497), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(815), 1, - anon_sym_typeof, - ACTIONS(817), 1, - anon_sym_LPAREN, - ACTIONS(829), 1, - anon_sym_new, - ACTIONS(845), 1, - anon_sym_DQUOTE, - ACTIONS(847), 1, - anon_sym_SQUOTE, - ACTIONS(849), 1, - sym_number, - ACTIONS(925), 1, - sym_identifier, - ACTIONS(929), 1, - anon_sym_LBRACE, - ACTIONS(935), 1, - sym_readonly, - ACTIONS(1691), 1, - anon_sym_LT, - ACTIONS(2286), 1, - anon_sym_LBRACK, - ACTIONS(2624), 1, - sym_this, - ACTIONS(2638), 1, - anon_sym_RBRACK, - STATE(444), 1, - sym__tuple_type_body, - STATE(1913), 1, - sym_nested_type_identifier, - STATE(2959), 1, - sym_type_parameters, - STATE(2996), 1, - sym_formal_parameters, - STATE(2999), 1, - sym_nested_identifier, - ACTIONS(853), 2, - sym_true, - sym_false, - ACTIONS(1693), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(446), 2, - sym_string, - sym__number, - STATE(2484), 5, - sym__type, - sym_constructor_type, - sym_union_type, - sym_intersection_type, - sym_function_type, - ACTIONS(843), 6, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - STATE(448), 14, - sym__primary_type, - sym_conditional_type, - sym_generic_type, - sym_type_query, - sym_index_type_query, - sym_lookup_type, - sym_literal_type, - sym_existential_type, - sym_flow_maybe_type, - sym_parenthesized_type, - sym_predefined_type, - sym_object_type, - sym_array_type, - sym_tuple_type, - [12735] = 10, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [12032] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2264), 1, + ACTIONS(1139), 1, anon_sym_EQ, - ACTIONS(2266), 1, - anon_sym_LBRACK, - ACTIONS(2272), 1, + ACTIONS(1145), 1, + anon_sym_EQ_GT, + ACTIONS(1147), 1, anon_sym_QMARK_DOT, - ACTIONS(2282), 1, + ACTIONS(1653), 1, + anon_sym_LBRACK, + ACTIONS(1655), 1, anon_sym_DOT, - ACTIONS(2503), 1, - anon_sym_in, - ACTIONS(2506), 1, - anon_sym_of, - ACTIONS(1099), 13, - sym__automatic_semicolon, + ACTIONS(841), 12, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -78557,7 +78364,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(2181), 15, + anon_sym_LBRACE_PIPE, + ACTIONS(831), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -78573,9 +78381,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1097), 21, + ACTIONS(808), 23, anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, + anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, @@ -78595,95 +78405,135 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [12812] = 31, + [12107] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(427), 1, - anon_sym_STAR, - ACTIONS(461), 1, - anon_sym_QMARK, - ACTIONS(463), 1, + ACTIONS(945), 1, + anon_sym_extends, + ACTIONS(2263), 1, + anon_sym_LT, + ACTIONS(2266), 3, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_DOT, + ACTIONS(2273), 3, + anon_sym_GT, anon_sym_AMP, - ACTIONS(465), 1, anon_sym_PIPE, - ACTIONS(495), 1, - anon_sym_keyof, - ACTIONS(497), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(815), 1, - anon_sym_typeof, - ACTIONS(817), 1, - anon_sym_LPAREN, - ACTIONS(829), 1, - anon_sym_new, - ACTIONS(845), 1, - anon_sym_DQUOTE, - ACTIONS(847), 1, - anon_sym_SQUOTE, - ACTIONS(849), 1, - sym_number, - ACTIONS(925), 1, - sym_identifier, - ACTIONS(929), 1, + ACTIONS(2256), 20, + anon_sym_STAR, + anon_sym_EQ, anon_sym_LBRACE, - ACTIONS(935), 1, - sym_readonly, - ACTIONS(1691), 1, - anon_sym_LT, - ACTIONS(2286), 1, + anon_sym_BANG, + anon_sym_in, + anon_sym_SLASH, + anon_sym_QMARK, + 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_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + ACTIONS(2258), 27, + anon_sym_as, + anon_sym_LPAREN, + 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_LBRACE_PIPE, + [12178] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1455), 1, + anon_sym_extends, + ACTIONS(2266), 1, + anon_sym_DOT, + ACTIONS(2260), 2, + anon_sym_COMMA, anon_sym_LBRACK, - ACTIONS(2624), 1, - sym_this, - ACTIONS(2640), 1, + ACTIONS(2263), 4, + anon_sym_LT, anon_sym_GT, - STATE(444), 1, - sym__tuple_type_body, - STATE(1913), 1, - sym_nested_type_identifier, - STATE(2959), 1, - sym_type_parameters, - STATE(2996), 1, - sym_formal_parameters, - STATE(2999), 1, - sym_nested_identifier, - ACTIONS(853), 2, - sym_true, - sym_false, - ACTIONS(1693), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(2256), 20, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_BANG, + anon_sym_in, + anon_sym_SLASH, + anon_sym_QMARK, + 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, - STATE(446), 2, - sym_string, - sym__number, - STATE(2203), 5, - sym__type, - sym_constructor_type, - sym_union_type, - sym_intersection_type, - sym_function_type, - ACTIONS(843), 6, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - STATE(448), 14, - sym__primary_type, - sym_conditional_type, - sym_generic_type, - sym_type_query, - sym_index_type_query, - sym_lookup_type, - sym_literal_type, - sym_existential_type, - sym_flow_maybe_type, - sym_parenthesized_type, - sym_predefined_type, - sym_object_type, - sym_array_type, - sym_tuple_type, - [12931] = 31, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + ACTIONS(2258), 27, + anon_sym_as, + anon_sym_LPAREN, + 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_LBRACE_PIPE, + [12249] = 31, ACTIONS(3), 1, sym_comment, ACTIONS(427), 1, @@ -78716,34 +78566,34 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(935), 1, sym_readonly, - ACTIONS(1691), 1, + ACTIONS(1678), 1, anon_sym_LT, - ACTIONS(2286), 1, + ACTIONS(2310), 1, anon_sym_LBRACK, - ACTIONS(2624), 1, + ACTIONS(2638), 1, sym_this, - ACTIONS(2642), 1, + ACTIONS(2646), 1, anon_sym_GT, - STATE(444), 1, + STATE(434), 1, sym__tuple_type_body, - STATE(1913), 1, + STATE(1917), 1, sym_nested_type_identifier, - STATE(2959), 1, + STATE(2916), 1, sym_type_parameters, - STATE(2996), 1, + STATE(3122), 1, sym_formal_parameters, - STATE(2999), 1, + STATE(3123), 1, sym_nested_identifier, ACTIONS(853), 2, sym_true, sym_false, - ACTIONS(1693), 2, + ACTIONS(1680), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(446), 2, + STATE(433), 2, sym_string, sym__number, - STATE(2203), 5, + STATE(2244), 5, sym__type, sym_constructor_type, sym_union_type, @@ -78756,7 +78606,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(448), 14, + STATE(432), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -78771,114 +78621,154 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [13050] = 31, + [12368] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(427), 1, - anon_sym_STAR, - ACTIONS(461), 1, - anon_sym_QMARK, - ACTIONS(463), 1, + ACTIONS(2263), 1, + anon_sym_LT, + ACTIONS(945), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(2266), 2, + anon_sym_LBRACK, + anon_sym_DOT, + ACTIONS(2273), 3, + anon_sym_GT, anon_sym_AMP, - ACTIONS(465), 1, anon_sym_PIPE, - ACTIONS(495), 1, - anon_sym_keyof, - ACTIONS(497), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(815), 1, - anon_sym_typeof, - ACTIONS(817), 1, + ACTIONS(2256), 19, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_in, + anon_sym_SLASH, + anon_sym_QMARK, + 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_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + ACTIONS(2258), 28, + sym__automatic_semicolon, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(829), 1, - anon_sym_new, - ACTIONS(845), 1, - anon_sym_DQUOTE, - ACTIONS(847), 1, - anon_sym_SQUOTE, - ACTIONS(849), 1, - sym_number, - ACTIONS(925), 1, - sym_identifier, - ACTIONS(929), 1, - anon_sym_LBRACE, - ACTIONS(935), 1, - sym_readonly, - ACTIONS(1691), 1, + anon_sym_SEMI, + 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, + [12439] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(945), 1, + anon_sym_extends, + ACTIONS(2263), 1, anon_sym_LT, - ACTIONS(2286), 1, + ACTIONS(2273), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(2266), 3, + anon_sym_RPAREN, anon_sym_LBRACK, - ACTIONS(2624), 1, - sym_this, - ACTIONS(2644), 1, - anon_sym_RBRACK, - STATE(444), 1, - sym__tuple_type_body, - STATE(1913), 1, - sym_nested_type_identifier, - STATE(2959), 1, - sym_type_parameters, - STATE(2996), 1, - sym_formal_parameters, - STATE(2999), 1, - sym_nested_identifier, - ACTIONS(853), 2, - sym_true, - sym_false, - ACTIONS(1693), 2, + anon_sym_DOT, + ACTIONS(2256), 20, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + 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, - STATE(446), 2, - sym_string, - sym__number, - STATE(2513), 5, - sym__type, - sym_constructor_type, - sym_union_type, - sym_intersection_type, - sym_function_type, - ACTIONS(843), 6, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - STATE(448), 14, - sym__primary_type, - sym_conditional_type, - sym_generic_type, - sym_type_query, - sym_index_type_query, - sym_lookup_type, - sym_literal_type, - sym_existential_type, - sym_flow_maybe_type, - sym_parenthesized_type, - sym_predefined_type, - sym_object_type, - sym_array_type, - sym_tuple_type, - [13169] = 7, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + ACTIONS(2258), 28, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_COLON, + 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, + [12510] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1411), 1, + ACTIONS(2263), 1, + anon_sym_LT, + ACTIONS(945), 2, + anon_sym_COMMA, anon_sym_extends, - ACTIONS(2230), 1, - anon_sym_DOT, - ACTIONS(2249), 2, - anon_sym_RPAREN, + ACTIONS(2266), 2, anon_sym_LBRACK, - ACTIONS(2233), 3, - anon_sym_LT, + anon_sym_DOT, + ACTIONS(2273), 3, + anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(2183), 20, + ACTIONS(2256), 19, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, anon_sym_AMP_AMP, @@ -78894,11 +78784,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(2185), 28, + ACTIONS(2258), 28, anon_sym_as, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_COLON, + anon_sym_RBRACK, anon_sym_QMARK_DOT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -78923,7 +78813,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [13240] = 31, + [12581] = 31, ACTIONS(3), 1, sym_comment, ACTIONS(427), 1, @@ -78956,34 +78846,34 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(935), 1, sym_readonly, - ACTIONS(1691), 1, + ACTIONS(1678), 1, anon_sym_LT, - ACTIONS(2286), 1, + ACTIONS(2310), 1, anon_sym_LBRACK, - ACTIONS(2624), 1, + ACTIONS(2638), 1, sym_this, - ACTIONS(2646), 1, + ACTIONS(2648), 1, anon_sym_GT, - STATE(444), 1, + STATE(434), 1, sym__tuple_type_body, - STATE(1913), 1, + STATE(1917), 1, sym_nested_type_identifier, - STATE(2959), 1, + STATE(2916), 1, sym_type_parameters, - STATE(2996), 1, + STATE(3122), 1, sym_formal_parameters, - STATE(2999), 1, + STATE(3123), 1, sym_nested_identifier, ACTIONS(853), 2, sym_true, sym_false, - ACTIONS(1693), 2, + ACTIONS(1680), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(446), 2, + STATE(433), 2, sym_string, sym__number, - STATE(2203), 5, + STATE(2244), 5, sym__type, sym_constructor_type, sym_union_type, @@ -78996,7 +78886,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(448), 14, + STATE(432), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -79011,7 +78901,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [13359] = 31, + [12700] = 31, ACTIONS(3), 1, sym_comment, ACTIONS(427), 1, @@ -79044,34 +78934,34 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(935), 1, sym_readonly, - ACTIONS(1691), 1, + ACTIONS(1678), 1, anon_sym_LT, - ACTIONS(2286), 1, + ACTIONS(2310), 1, anon_sym_LBRACK, - ACTIONS(2624), 1, + ACTIONS(2638), 1, sym_this, - ACTIONS(2648), 1, + ACTIONS(2650), 1, anon_sym_RBRACK, - STATE(444), 1, + STATE(434), 1, sym__tuple_type_body, - STATE(1913), 1, + STATE(1917), 1, sym_nested_type_identifier, - STATE(2959), 1, + STATE(2916), 1, sym_type_parameters, - STATE(2996), 1, + STATE(3122), 1, sym_formal_parameters, - STATE(2999), 1, + STATE(3123), 1, sym_nested_identifier, ACTIONS(853), 2, sym_true, sym_false, - ACTIONS(1693), 2, + ACTIONS(1680), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(446), 2, + STATE(433), 2, sym_string, sym__number, - STATE(2513), 5, + STATE(2591), 5, sym__type, sym_constructor_type, sym_union_type, @@ -79084,7 +78974,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(448), 14, + STATE(432), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -79099,26 +78989,26 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [13478] = 11, + [12819] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2175), 1, + ACTIONS(805), 1, + anon_sym_EQ, + ACTIONS(825), 1, + anon_sym_EQ_GT, + ACTIONS(827), 1, + anon_sym_QMARK_DOT, + ACTIONS(1623), 1, anon_sym_LBRACK, - ACTIONS(2177), 1, + ACTIONS(1625), 1, anon_sym_DOT, - ACTIONS(2179), 1, - anon_sym_QMARK_DOT, - ACTIONS(2214), 1, - anon_sym_EQ_GT, - ACTIONS(2358), 1, - anon_sym_EQ, - ACTIONS(2370), 1, + ACTIONS(1709), 1, anon_sym_QMARK, - ACTIONS(2361), 3, + ACTIONS(812), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - ACTIONS(1099), 10, + ACTIONS(841), 10, anon_sym_as, anon_sym_LPAREN, anon_sym_LT_EQ, @@ -79129,7 +79019,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(2181), 15, + ACTIONS(831), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -79145,7 +79035,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1097), 21, + ACTIONS(808), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -79167,95 +79057,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [13557] = 31, - ACTIONS(3), 1, - sym_comment, - ACTIONS(427), 1, - anon_sym_STAR, - ACTIONS(461), 1, - anon_sym_QMARK, - ACTIONS(463), 1, - anon_sym_AMP, - ACTIONS(465), 1, - anon_sym_PIPE, - ACTIONS(495), 1, - anon_sym_keyof, - ACTIONS(497), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(815), 1, - anon_sym_typeof, - ACTIONS(817), 1, - anon_sym_LPAREN, - ACTIONS(829), 1, - anon_sym_new, - ACTIONS(845), 1, - anon_sym_DQUOTE, - ACTIONS(847), 1, - anon_sym_SQUOTE, - ACTIONS(849), 1, - sym_number, - ACTIONS(929), 1, - anon_sym_LBRACE, - ACTIONS(935), 1, - sym_readonly, - ACTIONS(1691), 1, - anon_sym_LT, - ACTIONS(2286), 1, - anon_sym_LBRACK, - ACTIONS(2624), 1, - sym_this, - ACTIONS(2650), 1, - sym_identifier, - STATE(444), 1, - sym__tuple_type_body, - STATE(1913), 1, - sym_nested_type_identifier, - STATE(2729), 1, - sym_type_parameter, - STATE(2959), 1, - sym_type_parameters, - STATE(2996), 1, - sym_formal_parameters, - STATE(2999), 1, - sym_nested_identifier, - ACTIONS(853), 2, - sym_true, - sym_false, - ACTIONS(1693), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(446), 2, - sym_string, - sym__number, - STATE(2194), 5, - sym__type, - sym_constructor_type, - sym_union_type, - sym_intersection_type, - sym_function_type, - ACTIONS(843), 6, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - STATE(448), 14, - sym__primary_type, - sym_conditional_type, - sym_generic_type, - sym_type_query, - sym_index_type_query, - sym_lookup_type, - sym_literal_type, - sym_existential_type, - sym_flow_maybe_type, - sym_parenthesized_type, - sym_predefined_type, - sym_object_type, - sym_array_type, - sym_tuple_type, - [13676] = 31, + [12898] = 31, ACTIONS(3), 1, sym_comment, ACTIONS(427), 1, @@ -79288,34 +79090,34 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(935), 1, sym_readonly, - ACTIONS(1691), 1, + ACTIONS(1678), 1, anon_sym_LT, - ACTIONS(2286), 1, + ACTIONS(2310), 1, anon_sym_LBRACK, - ACTIONS(2624), 1, + ACTIONS(2638), 1, sym_this, ACTIONS(2652), 1, anon_sym_RBRACK, - STATE(444), 1, + STATE(434), 1, sym__tuple_type_body, - STATE(1913), 1, + STATE(1917), 1, sym_nested_type_identifier, - STATE(2959), 1, + STATE(2916), 1, sym_type_parameters, - STATE(2996), 1, + STATE(3122), 1, sym_formal_parameters, - STATE(2999), 1, + STATE(3123), 1, sym_nested_identifier, ACTIONS(853), 2, sym_true, sym_false, - ACTIONS(1693), 2, + ACTIONS(1680), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(446), 2, + STATE(433), 2, sym_string, sym__number, - STATE(2510), 5, + STATE(2505), 5, sym__type, sym_constructor_type, sym_union_type, @@ -79328,7 +79130,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(448), 14, + STATE(432), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -79343,22 +79145,22 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [13795] = 7, + [13017] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2230), 1, - anon_sym_DOT, - ACTIONS(2249), 1, + ACTIONS(2260), 1, anon_sym_LBRACK, - ACTIONS(1411), 2, + ACTIONS(2266), 1, + anon_sym_DOT, + ACTIONS(1455), 2, anon_sym_COMMA, anon_sym_extends, - ACTIONS(2233), 4, + ACTIONS(2263), 4, anon_sym_LT, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(2183), 19, + ACTIONS(2256), 19, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -79378,7 +79180,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(2185), 28, + ACTIONS(2258), 28, sym__automatic_semicolon, anon_sym_as, anon_sym_LPAREN, @@ -79407,7 +79209,71 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [13866] = 31, + [13088] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2280), 1, + anon_sym_EQ, + ACTIONS(2508), 1, + anon_sym_in, + ACTIONS(2511), 1, + anon_sym_of, + ACTIONS(2197), 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(1039), 16, + sym__automatic_semicolon, + 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, + ACTIONS(1037), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + 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_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [13159] = 31, ACTIONS(3), 1, sym_comment, ACTIONS(427), 1, @@ -79440,34 +79306,34 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(935), 1, sym_readonly, - ACTIONS(1691), 1, + ACTIONS(1678), 1, anon_sym_LT, - ACTIONS(2286), 1, + ACTIONS(2310), 1, anon_sym_LBRACK, - ACTIONS(2624), 1, + ACTIONS(2638), 1, sym_this, ACTIONS(2654), 1, anon_sym_GT, - STATE(444), 1, + STATE(434), 1, sym__tuple_type_body, - STATE(1913), 1, + STATE(1917), 1, sym_nested_type_identifier, - STATE(2959), 1, + STATE(2916), 1, sym_type_parameters, - STATE(2996), 1, + STATE(3122), 1, sym_formal_parameters, - STATE(2999), 1, + STATE(3123), 1, sym_nested_identifier, ACTIONS(853), 2, sym_true, sym_false, - ACTIONS(1693), 2, + ACTIONS(1680), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(446), 2, + STATE(433), 2, sym_string, sym__number, - STATE(2203), 5, + STATE(2244), 5, sym__type, sym_constructor_type, sym_union_type, @@ -79480,7 +79346,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(448), 14, + STATE(432), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -79495,95 +79361,143 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [13985] = 31, + [13278] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(427), 1, - anon_sym_STAR, - ACTIONS(461), 1, + ACTIONS(805), 1, + anon_sym_EQ, + ACTIONS(825), 1, + anon_sym_EQ_GT, + ACTIONS(827), 1, + anon_sym_QMARK_DOT, + ACTIONS(1623), 1, + anon_sym_LBRACK, + ACTIONS(1625), 1, + anon_sym_DOT, + ACTIONS(1709), 1, anon_sym_QMARK, - ACTIONS(463), 1, + ACTIONS(1724), 1, + anon_sym_COLON, + ACTIONS(812), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(841), 10, + anon_sym_as, + anon_sym_LPAREN, + 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(831), 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(808), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_AMP, - ACTIONS(465), 1, + anon_sym_CARET, anon_sym_PIPE, - ACTIONS(495), 1, - anon_sym_keyof, - ACTIONS(497), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(815), 1, - anon_sym_typeof, - ACTIONS(817), 1, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [13359] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(825), 1, + anon_sym_EQ_GT, + ACTIONS(827), 1, + anon_sym_QMARK_DOT, + ACTIONS(927), 1, + anon_sym_EQ, + ACTIONS(1623), 1, + anon_sym_LBRACK, + ACTIONS(1625), 1, + anon_sym_DOT, + ACTIONS(1732), 1, + anon_sym_COLON, + ACTIONS(841), 12, + anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(829), 1, - anon_sym_new, - ACTIONS(845), 1, - anon_sym_DQUOTE, - ACTIONS(847), 1, - anon_sym_SQUOTE, - ACTIONS(849), 1, - sym_number, - ACTIONS(925), 1, - sym_identifier, - ACTIONS(929), 1, - anon_sym_LBRACE, - ACTIONS(935), 1, - sym_readonly, - ACTIONS(1691), 1, + 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, + ACTIONS(831), 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(808), 22, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, anon_sym_LT, - ACTIONS(2286), 1, - anon_sym_LBRACK, - ACTIONS(2624), 1, - sym_this, - ACTIONS(2656), 1, anon_sym_GT, - STATE(444), 1, - sym__tuple_type_body, - STATE(1913), 1, - sym_nested_type_identifier, - STATE(2959), 1, - sym_type_parameters, - STATE(2996), 1, - sym_formal_parameters, - STATE(2999), 1, - sym_nested_identifier, - ACTIONS(853), 2, - sym_true, - sym_false, - ACTIONS(1693), 2, + anon_sym_SLASH, + anon_sym_QMARK, + 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, - STATE(446), 2, - sym_string, - sym__number, - STATE(2203), 5, - sym__type, - sym_constructor_type, - sym_union_type, - sym_intersection_type, - sym_function_type, - ACTIONS(843), 6, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - STATE(448), 14, - sym__primary_type, - sym_conditional_type, - sym_generic_type, - sym_type_query, - sym_index_type_query, - sym_lookup_type, - sym_literal_type, - sym_existential_type, - sym_flow_maybe_type, - sym_parenthesized_type, - sym_predefined_type, - sym_object_type, - sym_array_type, - sym_tuple_type, - [14104] = 31, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [13436] = 31, ACTIONS(3), 1, sym_comment, ACTIONS(427), 1, @@ -79616,34 +79530,34 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(935), 1, sym_readonly, - ACTIONS(1691), 1, + ACTIONS(1678), 1, anon_sym_LT, - ACTIONS(2286), 1, + ACTIONS(2310), 1, anon_sym_LBRACK, - ACTIONS(2624), 1, + ACTIONS(2638), 1, sym_this, - ACTIONS(2658), 1, - anon_sym_RBRACK, - STATE(444), 1, + ACTIONS(2656), 1, + anon_sym_GT, + STATE(434), 1, sym__tuple_type_body, - STATE(1913), 1, + STATE(1917), 1, sym_nested_type_identifier, - STATE(2959), 1, + STATE(2916), 1, sym_type_parameters, - STATE(2996), 1, + STATE(3122), 1, sym_formal_parameters, - STATE(2999), 1, + STATE(3123), 1, sym_nested_identifier, ACTIONS(853), 2, sym_true, sym_false, - ACTIONS(1693), 2, + ACTIONS(1680), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(446), 2, + STATE(433), 2, sym_string, sym__number, - STATE(2539), 5, + STATE(2244), 5, sym__type, sym_constructor_type, sym_union_type, @@ -79656,7 +79570,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(448), 14, + STATE(432), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -79671,38 +79585,47 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [14223] = 12, + [13555] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2175), 1, - anon_sym_LBRACK, - ACTIONS(2177), 1, + ACTIONS(1455), 1, + anon_sym_extends, + ACTIONS(2266), 1, anon_sym_DOT, - ACTIONS(2179), 1, - anon_sym_QMARK_DOT, - ACTIONS(2204), 1, + ACTIONS(2260), 2, + anon_sym_RPAREN, + anon_sym_LBRACK, + ACTIONS(2263), 3, + anon_sym_LT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(2256), 20, + anon_sym_STAR, anon_sym_EQ, - ACTIONS(2214), 1, - anon_sym_EQ_GT, - ACTIONS(2663), 1, - anon_sym_COLON, - ACTIONS(2665), 1, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(2660), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(1099), 10, + 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_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + ACTIONS(2258), 28, anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, - 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(2181), 15, + anon_sym_COLON, + anon_sym_QMARK_DOT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -79718,46 +79641,35 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1097), 21, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - 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_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [14304] = 9, + 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, + [13626] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2175), 1, + ACTIONS(2280), 1, + anon_sym_EQ, + ACTIONS(2282), 1, anon_sym_LBRACK, - ACTIONS(2177), 1, - anon_sym_DOT, - ACTIONS(2179), 1, + ACTIONS(2288), 1, anon_sym_QMARK_DOT, - ACTIONS(2408), 1, - anon_sym_EQ_GT, - ACTIONS(2416), 1, - anon_sym_EQ, - ACTIONS(1099), 13, + ACTIONS(2298), 1, + anon_sym_DOT, + ACTIONS(2508), 1, + anon_sym_in, + ACTIONS(2511), 1, + anon_sym_of, + ACTIONS(1039), 13, + sym__automatic_semicolon, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -79766,8 +79678,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_implements, - ACTIONS(2181), 15, + ACTIONS(2197), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -79783,10 +79694,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1097), 22, + ACTIONS(1037), 21, anon_sym_STAR, anon_sym_BANG, - anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, @@ -79806,28 +79716,29 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [14379] = 11, + [13703] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2175), 1, + ACTIONS(2191), 1, anon_sym_LBRACK, - ACTIONS(2177), 1, + ACTIONS(2193), 1, anon_sym_DOT, - ACTIONS(2179), 1, + ACTIONS(2195), 1, anon_sym_QMARK_DOT, - ACTIONS(2204), 1, + ACTIONS(2201), 1, anon_sym_EQ, ACTIONS(2214), 1, anon_sym_EQ_GT, - ACTIONS(2668), 1, - anon_sym_in, - ACTIONS(2670), 1, + ACTIONS(2661), 1, anon_sym_COLON, - ACTIONS(1099), 12, - anon_sym_as, + ACTIONS(2663), 1, + anon_sym_QMARK, + ACTIONS(2658), 2, anon_sym_COMMA, - anon_sym_LPAREN, anon_sym_RBRACK, + ACTIONS(1039), 10, + anon_sym_as, + anon_sym_LPAREN, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -79836,7 +79747,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(2181), 15, + ACTIONS(2197), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -79852,13 +79763,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1097), 21, + ACTIONS(1037), 21, anon_sym_STAR, anon_sym_BANG, + anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, - anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -79874,156 +79785,116 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [14458] = 7, + [13784] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(2233), 1, - anon_sym_LT, - ACTIONS(1089), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(2230), 2, - anon_sym_LBRACK, - anon_sym_DOT, - ACTIONS(2236), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(2183), 19, + ACTIONS(427), 1, anon_sym_STAR, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_in, - anon_sym_SLASH, + ACTIONS(461), 1, anon_sym_QMARK, - 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_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - ACTIONS(2185), 28, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - 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, - [14529] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1089), 1, - anon_sym_extends, - ACTIONS(2233), 1, - anon_sym_LT, - ACTIONS(2236), 2, + ACTIONS(463), 1, anon_sym_AMP, + ACTIONS(465), 1, anon_sym_PIPE, - ACTIONS(2230), 3, - anon_sym_RPAREN, + ACTIONS(495), 1, + anon_sym_keyof, + ACTIONS(497), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(815), 1, + anon_sym_typeof, + ACTIONS(817), 1, + anon_sym_LPAREN, + ACTIONS(829), 1, + anon_sym_new, + ACTIONS(845), 1, + anon_sym_DQUOTE, + ACTIONS(847), 1, + anon_sym_SQUOTE, + ACTIONS(849), 1, + sym_number, + ACTIONS(925), 1, + sym_identifier, + ACTIONS(929), 1, + anon_sym_LBRACE, + ACTIONS(935), 1, + sym_readonly, + ACTIONS(1678), 1, + anon_sym_LT, + ACTIONS(2310), 1, + anon_sym_LBRACK, + ACTIONS(2638), 1, + sym_this, + ACTIONS(2666), 1, + anon_sym_RBRACK, + STATE(434), 1, + sym__tuple_type_body, + STATE(1917), 1, + sym_nested_type_identifier, + STATE(2916), 1, + sym_type_parameters, + STATE(3122), 1, + sym_formal_parameters, + STATE(3123), 1, + sym_nested_identifier, + ACTIONS(853), 2, + sym_true, + sym_false, + ACTIONS(1680), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(433), 2, + sym_string, + sym__number, + STATE(2591), 5, + sym__type, + sym_constructor_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + ACTIONS(843), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(432), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [13903] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2191), 1, anon_sym_LBRACK, + ACTIONS(2193), 1, anon_sym_DOT, - ACTIONS(2183), 20, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - 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_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - ACTIONS(2185), 28, - anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_COLON, + ACTIONS(2195), 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, - [14600] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(805), 1, + ACTIONS(2201), 1, anon_sym_EQ, - ACTIONS(825), 1, + ACTIONS(2214), 1, anon_sym_EQ_GT, - ACTIONS(827), 1, - anon_sym_QMARK_DOT, - ACTIONS(1623), 1, - anon_sym_LBRACK, - ACTIONS(1625), 1, - anon_sym_DOT, - ACTIONS(1717), 1, - anon_sym_QMARK, - ACTIONS(812), 3, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(2668), 1, + anon_sym_in, + ACTIONS(2670), 1, anon_sym_COLON, - ACTIONS(841), 10, + ACTIONS(1039), 12, anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_RBRACK, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -80032,7 +79903,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(831), 15, + ACTIONS(2197), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -80048,13 +79919,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(808), 21, + ACTIONS(1037), 21, anon_sym_STAR, anon_sym_BANG, - anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -80070,71 +79941,183 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [14679] = 7, + [13982] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(2233), 1, - anon_sym_LT, - ACTIONS(1089), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(2230), 2, - anon_sym_LBRACK, - anon_sym_DOT, - ACTIONS(2236), 3, - anon_sym_GT, + ACTIONS(427), 1, + anon_sym_STAR, + ACTIONS(461), 1, + anon_sym_QMARK, + ACTIONS(463), 1, anon_sym_AMP, + ACTIONS(465), 1, anon_sym_PIPE, - ACTIONS(2183), 19, + ACTIONS(495), 1, + anon_sym_keyof, + ACTIONS(497), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(815), 1, + anon_sym_typeof, + ACTIONS(817), 1, + anon_sym_LPAREN, + ACTIONS(829), 1, + anon_sym_new, + ACTIONS(845), 1, + anon_sym_DQUOTE, + ACTIONS(847), 1, + anon_sym_SQUOTE, + ACTIONS(849), 1, + sym_number, + ACTIONS(925), 1, + sym_identifier, + ACTIONS(929), 1, + anon_sym_LBRACE, + ACTIONS(935), 1, + sym_readonly, + ACTIONS(1678), 1, + anon_sym_LT, + ACTIONS(2310), 1, + anon_sym_LBRACK, + ACTIONS(2638), 1, + sym_this, + ACTIONS(2672), 1, + anon_sym_RBRACK, + STATE(434), 1, + sym__tuple_type_body, + STATE(1917), 1, + sym_nested_type_identifier, + STATE(2916), 1, + sym_type_parameters, + STATE(3122), 1, + sym_formal_parameters, + STATE(3123), 1, + sym_nested_identifier, + ACTIONS(853), 2, + sym_true, + sym_false, + ACTIONS(1680), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(433), 2, + sym_string, + sym__number, + STATE(2601), 5, + sym__type, + sym_constructor_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + ACTIONS(843), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(432), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [14101] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(427), 1, anon_sym_STAR, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_in, - anon_sym_SLASH, + ACTIONS(461), 1, anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, + ACTIONS(463), 1, + anon_sym_AMP, + ACTIONS(465), 1, + anon_sym_PIPE, + ACTIONS(495), 1, + anon_sym_keyof, + ACTIONS(497), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(815), 1, + anon_sym_typeof, + ACTIONS(817), 1, + anon_sym_LPAREN, + ACTIONS(829), 1, + anon_sym_new, + ACTIONS(845), 1, + anon_sym_DQUOTE, + ACTIONS(847), 1, + anon_sym_SQUOTE, + ACTIONS(849), 1, + sym_number, + ACTIONS(929), 1, + anon_sym_LBRACE, + ACTIONS(935), 1, + sym_readonly, + ACTIONS(1678), 1, + anon_sym_LT, + ACTIONS(2310), 1, + anon_sym_LBRACK, + ACTIONS(2638), 1, + sym_this, + ACTIONS(2674), 1, + sym_identifier, + STATE(434), 1, + sym__tuple_type_body, + STATE(1917), 1, + sym_nested_type_identifier, + STATE(2618), 1, + sym_type_parameter, + STATE(2916), 1, + sym_type_parameters, + STATE(3122), 1, + sym_formal_parameters, + STATE(3123), 1, + sym_nested_identifier, + ACTIONS(853), 2, + sym_true, + sym_false, + ACTIONS(1680), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - ACTIONS(2185), 28, - sym__automatic_semicolon, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_SEMI, - 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, - [14750] = 31, + STATE(433), 2, + sym_string, + sym__number, + STATE(2235), 5, + sym__type, + sym_constructor_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + ACTIONS(843), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(432), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [14220] = 31, ACTIONS(3), 1, sym_comment, ACTIONS(427), 1, @@ -80167,34 +80150,34 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(935), 1, sym_readonly, - ACTIONS(1691), 1, + ACTIONS(1678), 1, anon_sym_LT, - ACTIONS(2286), 1, + ACTIONS(2310), 1, anon_sym_LBRACK, - ACTIONS(2624), 1, + ACTIONS(2638), 1, sym_this, - ACTIONS(2672), 1, + ACTIONS(2676), 1, anon_sym_GT, - STATE(444), 1, + STATE(434), 1, sym__tuple_type_body, - STATE(1913), 1, + STATE(1917), 1, sym_nested_type_identifier, - STATE(2959), 1, + STATE(2916), 1, sym_type_parameters, - STATE(2996), 1, + STATE(3122), 1, sym_formal_parameters, - STATE(2999), 1, + STATE(3123), 1, sym_nested_identifier, ACTIONS(853), 2, sym_true, sym_false, - ACTIONS(1693), 2, + ACTIONS(1680), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(446), 2, + STATE(433), 2, sym_string, sym__number, - STATE(2203), 5, + STATE(2244), 5, sym__type, sym_constructor_type, sym_union_type, @@ -80207,7 +80190,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(448), 14, + STATE(432), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -80222,7 +80205,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [14869] = 31, + [14339] = 31, ACTIONS(3), 1, sym_comment, ACTIONS(427), 1, @@ -80255,34 +80238,34 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(935), 1, sym_readonly, - ACTIONS(1691), 1, + ACTIONS(1678), 1, anon_sym_LT, - ACTIONS(2286), 1, + ACTIONS(2310), 1, anon_sym_LBRACK, - ACTIONS(2624), 1, + ACTIONS(2638), 1, sym_this, - ACTIONS(2674), 1, - anon_sym_RBRACK, - STATE(444), 1, + ACTIONS(2678), 1, + anon_sym_GT, + STATE(434), 1, sym__tuple_type_body, - STATE(1913), 1, + STATE(1917), 1, sym_nested_type_identifier, - STATE(2959), 1, + STATE(2916), 1, sym_type_parameters, - STATE(2996), 1, + STATE(3122), 1, sym_formal_parameters, - STATE(2999), 1, + STATE(3123), 1, sym_nested_identifier, ACTIONS(853), 2, sym_true, sym_false, - ACTIONS(1693), 2, + ACTIONS(1680), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(446), 2, + STATE(433), 2, sym_string, sym__number, - STATE(2530), 5, + STATE(2244), 5, sym__type, sym_constructor_type, sym_union_type, @@ -80295,7 +80278,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(448), 14, + STATE(432), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -80310,7 +80293,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [14988] = 31, + [14458] = 31, ACTIONS(3), 1, sym_comment, ACTIONS(427), 1, @@ -80343,34 +80326,34 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(935), 1, sym_readonly, - ACTIONS(1691), 1, + ACTIONS(1678), 1, anon_sym_LT, - ACTIONS(2286), 1, + ACTIONS(2310), 1, anon_sym_LBRACK, - ACTIONS(2624), 1, + ACTIONS(2638), 1, sym_this, - ACTIONS(2676), 1, + ACTIONS(2680), 1, anon_sym_GT, - STATE(444), 1, + STATE(434), 1, sym__tuple_type_body, - STATE(1913), 1, + STATE(1917), 1, sym_nested_type_identifier, - STATE(2959), 1, + STATE(2916), 1, sym_type_parameters, - STATE(2996), 1, + STATE(3122), 1, sym_formal_parameters, - STATE(2999), 1, + STATE(3123), 1, sym_nested_identifier, ACTIONS(853), 2, sym_true, sym_false, - ACTIONS(1693), 2, + ACTIONS(1680), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(446), 2, + STATE(433), 2, sym_string, sym__number, - STATE(2203), 5, + STATE(2244), 5, sym__type, sym_constructor_type, sym_union_type, @@ -80383,7 +80366,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(448), 14, + STATE(432), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -80398,7 +80381,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [15107] = 31, + [14577] = 31, ACTIONS(3), 1, sym_comment, ACTIONS(427), 1, @@ -80431,34 +80414,34 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(935), 1, sym_readonly, - ACTIONS(1691), 1, + ACTIONS(1678), 1, anon_sym_LT, - ACTIONS(2286), 1, + ACTIONS(2310), 1, anon_sym_LBRACK, - ACTIONS(2624), 1, + ACTIONS(2638), 1, sym_this, - ACTIONS(2678), 1, + ACTIONS(2682), 1, anon_sym_RBRACK, - STATE(444), 1, + STATE(434), 1, sym__tuple_type_body, - STATE(1913), 1, + STATE(1917), 1, sym_nested_type_identifier, - STATE(2959), 1, + STATE(2916), 1, sym_type_parameters, - STATE(2996), 1, + STATE(3122), 1, sym_formal_parameters, - STATE(2999), 1, + STATE(3123), 1, sym_nested_identifier, ACTIONS(853), 2, sym_true, sym_false, - ACTIONS(1693), 2, + ACTIONS(1680), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(446), 2, + STATE(433), 2, sym_string, sym__number, - STATE(2513), 5, + STATE(2542), 5, sym__type, sym_constructor_type, sym_union_type, @@ -80471,7 +80454,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(448), 14, + STATE(432), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -80486,23 +80469,28 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [15226] = 9, + [14696] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(827), 1, - anon_sym_QMARK_DOT, - ACTIONS(1119), 1, - anon_sym_EQ, - ACTIONS(1121), 1, - anon_sym_EQ_GT, - ACTIONS(1623), 1, + ACTIONS(2191), 1, anon_sym_LBRACK, - ACTIONS(1625), 1, + ACTIONS(2193), 1, anon_sym_DOT, - ACTIONS(841), 13, - anon_sym_as, - anon_sym_LBRACE, + ACTIONS(2195), 1, + anon_sym_QMARK_DOT, + ACTIONS(2214), 1, + anon_sym_EQ_GT, + ACTIONS(2376), 1, + anon_sym_EQ, + ACTIONS(2388), 1, + anon_sym_QMARK, + ACTIONS(2684), 1, + anon_sym_COLON, + ACTIONS(2379), 2, anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(1039), 10, + anon_sym_as, anon_sym_LPAREN, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, @@ -80512,8 +80500,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_implements, - ACTIONS(831), 15, + ACTIONS(2197), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -80529,14 +80516,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(808), 22, + ACTIONS(1037), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, - anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -80552,73 +80538,183 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [15301] = 9, + [14777] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(2377), 1, - anon_sym_EQ, - ACTIONS(2379), 1, - anon_sym_LBRACK, - ACTIONS(2383), 1, - anon_sym_EQ_GT, - ACTIONS(2385), 1, - anon_sym_QMARK_DOT, - ACTIONS(2410), 1, - anon_sym_DOT, - ACTIONS(1099), 12, - anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - 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_LBRACE_PIPE, - ACTIONS(2181), 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(1097), 23, + ACTIONS(427), 1, anon_sym_STAR, + ACTIONS(461), 1, + anon_sym_QMARK, + ACTIONS(463), 1, + anon_sym_AMP, + ACTIONS(465), 1, + anon_sym_PIPE, + ACTIONS(495), 1, + anon_sym_keyof, + ACTIONS(497), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(815), 1, + anon_sym_typeof, + ACTIONS(817), 1, + anon_sym_LPAREN, + ACTIONS(829), 1, + anon_sym_new, + ACTIONS(845), 1, + anon_sym_DQUOTE, + ACTIONS(847), 1, + anon_sym_SQUOTE, + ACTIONS(849), 1, + sym_number, + ACTIONS(925), 1, + sym_identifier, + ACTIONS(929), 1, anon_sym_LBRACE, - anon_sym_BANG, - anon_sym_in, + ACTIONS(935), 1, + sym_readonly, + ACTIONS(1678), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(2310), 1, + anon_sym_LBRACK, + ACTIONS(2638), 1, + sym_this, + ACTIONS(2686), 1, + anon_sym_RBRACK, + STATE(434), 1, + sym__tuple_type_body, + STATE(1917), 1, + sym_nested_type_identifier, + STATE(2916), 1, + sym_type_parameters, + STATE(3122), 1, + sym_formal_parameters, + STATE(3123), 1, + sym_nested_identifier, + ACTIONS(853), 2, + sym_true, + sym_false, + ACTIONS(1680), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(433), 2, + sym_string, + sym__number, + STATE(2591), 5, + sym__type, + sym_constructor_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + ACTIONS(843), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(432), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [14896] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(427), 1, + anon_sym_STAR, + ACTIONS(461), 1, anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(463), 1, anon_sym_AMP, - anon_sym_CARET, + ACTIONS(465), 1, anon_sym_PIPE, + ACTIONS(495), 1, + anon_sym_keyof, + ACTIONS(497), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(815), 1, + anon_sym_typeof, + ACTIONS(817), 1, + anon_sym_LPAREN, + ACTIONS(829), 1, + anon_sym_new, + ACTIONS(845), 1, + anon_sym_DQUOTE, + ACTIONS(847), 1, + anon_sym_SQUOTE, + ACTIONS(849), 1, + sym_number, + ACTIONS(925), 1, + sym_identifier, + ACTIONS(929), 1, + anon_sym_LBRACE, + ACTIONS(935), 1, + sym_readonly, + ACTIONS(1678), 1, + anon_sym_LT, + ACTIONS(2310), 1, + anon_sym_LBRACK, + ACTIONS(2638), 1, + sym_this, + ACTIONS(2688), 1, + anon_sym_GT, + STATE(434), 1, + sym__tuple_type_body, + STATE(1917), 1, + sym_nested_type_identifier, + STATE(2916), 1, + sym_type_parameters, + STATE(3122), 1, + sym_formal_parameters, + STATE(3123), 1, + sym_nested_identifier, + ACTIONS(853), 2, + sym_true, + sym_false, + ACTIONS(1680), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [15376] = 31, + STATE(433), 2, + sym_string, + sym__number, + STATE(2244), 5, + sym__type, + sym_constructor_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + ACTIONS(843), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(432), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [15015] = 31, ACTIONS(3), 1, sym_comment, ACTIONS(427), 1, @@ -80651,34 +80747,34 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(935), 1, sym_readonly, - ACTIONS(1691), 1, + ACTIONS(1678), 1, anon_sym_LT, - ACTIONS(2286), 1, + ACTIONS(2310), 1, anon_sym_LBRACK, - ACTIONS(2624), 1, + ACTIONS(2638), 1, sym_this, - ACTIONS(2680), 1, + ACTIONS(2690), 1, anon_sym_GT, - STATE(444), 1, + STATE(434), 1, sym__tuple_type_body, - STATE(1913), 1, + STATE(1917), 1, sym_nested_type_identifier, - STATE(2959), 1, + STATE(2916), 1, sym_type_parameters, - STATE(2996), 1, + STATE(3122), 1, sym_formal_parameters, - STATE(2999), 1, + STATE(3123), 1, sym_nested_identifier, ACTIONS(853), 2, sym_true, sym_false, - ACTIONS(1693), 2, + ACTIONS(1680), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(446), 2, + STATE(433), 2, sym_string, sym__number, - STATE(2203), 5, + STATE(2244), 5, sym__type, sym_constructor_type, sym_union_type, @@ -80691,7 +80787,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(448), 14, + STATE(432), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -80706,25 +80802,24 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [15495] = 7, + [15134] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1411), 1, - anon_sym_extends, - ACTIONS(2230), 1, + ACTIONS(2260), 1, + anon_sym_LBRACK, + ACTIONS(2266), 1, anon_sym_DOT, - ACTIONS(2249), 2, + ACTIONS(1455), 2, anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(2233), 4, + anon_sym_extends, + ACTIONS(2263), 4, anon_sym_LT, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(2183), 20, + ACTIONS(2256), 19, anon_sym_STAR, anon_sym_EQ, - anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_SLASH, @@ -80742,9 +80837,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(2185), 27, + ACTIONS(2258), 28, anon_sym_as, anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_QMARK_DOT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -80769,86 +80866,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, - [15566] = 7, + [15205] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1089), 1, - anon_sym_extends, - ACTIONS(2233), 1, - anon_sym_LT, - ACTIONS(2230), 3, - anon_sym_COMMA, + ACTIONS(2191), 1, anon_sym_LBRACK, + ACTIONS(2193), 1, anon_sym_DOT, - ACTIONS(2236), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(2183), 20, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_BANG, - anon_sym_in, - anon_sym_SLASH, - anon_sym_QMARK, - 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_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - ACTIONS(2185), 27, - anon_sym_as, - anon_sym_LPAREN, + ACTIONS(2195), 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_LBRACE_PIPE, - [15637] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1131), 1, + ACTIONS(2409), 1, anon_sym_EQ, - ACTIONS(1137), 1, + ACTIONS(2417), 1, anon_sym_EQ_GT, - ACTIONS(1139), 1, - anon_sym_QMARK_DOT, - ACTIONS(1653), 1, - anon_sym_LBRACK, - ACTIONS(1655), 1, - anon_sym_DOT, - ACTIONS(841), 12, + ACTIONS(1039), 13, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LT_EQ, @@ -80859,8 +80892,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, - ACTIONS(831), 15, + anon_sym_implements, + ACTIONS(2197), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -80876,9 +80909,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(808), 23, + ACTIONS(1037), 22, anon_sym_STAR, - anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -80900,12 +80932,50 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [15712] = 3, + [15280] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2252), 24, - anon_sym_STAR, + ACTIONS(2312), 1, anon_sym_EQ, + ACTIONS(2314), 1, + anon_sym_LBRACK, + ACTIONS(2318), 1, + anon_sym_EQ_GT, + ACTIONS(2320), 1, + anon_sym_QMARK_DOT, + ACTIONS(2470), 1, + anon_sym_DOT, + ACTIONS(1039), 12, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, + 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_LBRACE_PIPE, + ACTIONS(2197), 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(1037), 23, + anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, @@ -80928,38 +80998,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(2254), 30, - anon_sym_as, - anon_sym_COMMA, - 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, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, - [15774] = 30, + [15355] = 31, ACTIONS(3), 1, sym_comment, ACTIONS(427), 1, @@ -80992,32 +81031,34 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(935), 1, sym_readonly, - ACTIONS(1691), 1, + ACTIONS(1678), 1, anon_sym_LT, - ACTIONS(2286), 1, + ACTIONS(2310), 1, anon_sym_LBRACK, - ACTIONS(2624), 1, + ACTIONS(2638), 1, sym_this, - STATE(444), 1, + ACTIONS(2692), 1, + anon_sym_RBRACK, + STATE(434), 1, sym__tuple_type_body, - STATE(1913), 1, + STATE(1917), 1, sym_nested_type_identifier, - STATE(2959), 1, + STATE(2916), 1, sym_type_parameters, - STATE(2996), 1, + STATE(3122), 1, sym_formal_parameters, - STATE(2999), 1, + STATE(3123), 1, sym_nested_identifier, ACTIONS(853), 2, sym_true, sym_false, - ACTIONS(1693), 2, + ACTIONS(1680), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(446), 2, + STATE(433), 2, sym_string, sym__number, - STATE(2201), 5, + STATE(2591), 5, sym__type, sym_constructor_type, sym_union_type, @@ -81030,7 +81071,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(448), 14, + STATE(432), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -81045,7 +81086,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [15890] = 30, + [15474] = 31, ACTIONS(3), 1, sym_comment, ACTIONS(427), 1, @@ -81078,32 +81119,34 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(935), 1, sym_readonly, - ACTIONS(1691), 1, + ACTIONS(1678), 1, anon_sym_LT, - ACTIONS(2286), 1, + ACTIONS(2310), 1, anon_sym_LBRACK, - ACTIONS(2624), 1, + ACTIONS(2638), 1, sym_this, - STATE(444), 1, + ACTIONS(2694), 1, + anon_sym_RBRACK, + STATE(434), 1, sym__tuple_type_body, - STATE(1913), 1, + STATE(1917), 1, sym_nested_type_identifier, - STATE(2959), 1, + STATE(2916), 1, sym_type_parameters, - STATE(2996), 1, + STATE(3122), 1, sym_formal_parameters, - STATE(2999), 1, + STATE(3123), 1, sym_nested_identifier, ACTIONS(853), 2, sym_true, sym_false, - ACTIONS(1693), 2, + ACTIONS(1680), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(446), 2, + STATE(433), 2, sym_string, sym__number, - STATE(442), 5, + STATE(2591), 5, sym__type, sym_constructor_type, sym_union_type, @@ -81116,7 +81159,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(448), 14, + STATE(432), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -81131,7 +81174,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [16006] = 30, + [15593] = 31, ACTIONS(3), 1, sym_comment, ACTIONS(427), 1, @@ -81164,32 +81207,34 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(935), 1, sym_readonly, - ACTIONS(1691), 1, + ACTIONS(1678), 1, anon_sym_LT, - ACTIONS(2286), 1, + ACTIONS(2310), 1, anon_sym_LBRACK, - ACTIONS(2624), 1, + ACTIONS(2638), 1, sym_this, - STATE(444), 1, + ACTIONS(2696), 1, + anon_sym_RBRACK, + STATE(434), 1, sym__tuple_type_body, - STATE(1913), 1, + STATE(1917), 1, sym_nested_type_identifier, - STATE(2959), 1, + STATE(2916), 1, sym_type_parameters, - STATE(2996), 1, + STATE(3122), 1, sym_formal_parameters, - STATE(2999), 1, + STATE(3123), 1, sym_nested_identifier, ACTIONS(853), 2, sym_true, sym_false, - ACTIONS(1693), 2, + ACTIONS(1680), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(446), 2, + STATE(433), 2, sym_string, sym__number, - STATE(2568), 5, + STATE(2524), 5, sym__type, sym_constructor_type, sym_union_type, @@ -81202,179 +81247,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(448), 14, - sym__primary_type, - sym_conditional_type, - sym_generic_type, - sym_type_query, - sym_index_type_query, - sym_lookup_type, - sym_literal_type, - sym_existential_type, - sym_flow_maybe_type, - sym_parenthesized_type, - sym_predefined_type, - sym_object_type, - sym_array_type, - sym_tuple_type, - [16122] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(713), 1, - anon_sym_STAR, - ACTIONS(725), 1, - anon_sym_QMARK, - ACTIONS(727), 1, - anon_sym_AMP, - ACTIONS(729), 1, - anon_sym_PIPE, - ACTIONS(745), 1, - anon_sym_keyof, - ACTIONS(747), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1691), 1, - anon_sym_LT, - ACTIONS(2318), 1, - anon_sym_DQUOTE, - ACTIONS(2320), 1, - anon_sym_SQUOTE, - ACTIONS(2554), 1, - anon_sym_LBRACE, - ACTIONS(2556), 1, - anon_sym_typeof, - ACTIONS(2558), 1, - anon_sym_LPAREN, - ACTIONS(2560), 1, - anon_sym_LBRACK, - ACTIONS(2562), 1, - anon_sym_new, - ACTIONS(2568), 1, - sym_number, - ACTIONS(2574), 1, - sym_readonly, - ACTIONS(2682), 1, - sym_identifier, - ACTIONS(2684), 1, - sym_this, - STATE(1947), 1, - sym_nested_type_identifier, - STATE(1972), 1, - sym__tuple_type_body, - STATE(2982), 1, - sym_type_parameters, - STATE(2998), 1, - sym_nested_identifier, - STATE(3030), 1, - sym_formal_parameters, - ACTIONS(2564), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2572), 2, - sym_true, - sym_false, - STATE(1981), 2, - sym_string, - sym__number, - STATE(1978), 5, - sym__type, - sym_constructor_type, - sym_union_type, - sym_intersection_type, - sym_function_type, - ACTIONS(2566), 6, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - STATE(1974), 14, - sym__primary_type, - sym_conditional_type, - sym_generic_type, - sym_type_query, - sym_index_type_query, - sym_lookup_type, - sym_literal_type, - sym_existential_type, - sym_flow_maybe_type, - sym_parenthesized_type, - sym_predefined_type, - sym_object_type, - sym_array_type, - sym_tuple_type, - [16238] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(463), 1, - anon_sym_AMP, - ACTIONS(465), 1, - anon_sym_PIPE, - ACTIONS(713), 1, - anon_sym_STAR, - ACTIONS(725), 1, - anon_sym_QMARK, - ACTIONS(745), 1, - anon_sym_keyof, - ACTIONS(747), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(829), 1, - anon_sym_new, - ACTIONS(1691), 1, - anon_sym_LT, - ACTIONS(2318), 1, - anon_sym_DQUOTE, - ACTIONS(2320), 1, - anon_sym_SQUOTE, - ACTIONS(2554), 1, - anon_sym_LBRACE, - ACTIONS(2556), 1, - anon_sym_typeof, - ACTIONS(2558), 1, - anon_sym_LPAREN, - ACTIONS(2560), 1, - anon_sym_LBRACK, - ACTIONS(2568), 1, - sym_number, - ACTIONS(2574), 1, - sym_readonly, - ACTIONS(2682), 1, - sym_identifier, - ACTIONS(2686), 1, - sym_this, - STATE(1947), 1, - sym_nested_type_identifier, - STATE(1972), 1, - sym__tuple_type_body, - STATE(2959), 1, - sym_type_parameters, - STATE(2996), 1, - sym_formal_parameters, - STATE(2998), 1, - sym_nested_identifier, - ACTIONS(2564), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2572), 2, - sym_true, - sym_false, - STATE(1981), 2, - sym_string, - sym__number, - STATE(2611), 5, - sym__type, - sym_constructor_type, - sym_union_type, - sym_intersection_type, - sym_function_type, - ACTIONS(2566), 6, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - STATE(1977), 14, + STATE(432), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -81389,78 +81262,78 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [16354] = 30, + [15712] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(475), 1, anon_sym_DQUOTE, ACTIONS(477), 1, anon_sym_SQUOTE, - ACTIONS(1691), 1, + ACTIONS(1678), 1, anon_sym_LT, - ACTIONS(2456), 1, + ACTIONS(2549), 1, sym_identifier, - ACTIONS(2458), 1, + ACTIONS(2551), 1, anon_sym_STAR, - ACTIONS(2460), 1, + ACTIONS(2553), 1, anon_sym_LBRACE, - ACTIONS(2462), 1, + ACTIONS(2555), 1, anon_sym_typeof, - ACTIONS(2464), 1, + ACTIONS(2557), 1, anon_sym_LPAREN, - ACTIONS(2466), 1, + ACTIONS(2559), 1, anon_sym_LBRACK, - ACTIONS(2468), 1, + ACTIONS(2561), 1, anon_sym_new, - ACTIONS(2470), 1, + ACTIONS(2563), 1, anon_sym_QMARK, - ACTIONS(2472), 1, + ACTIONS(2565), 1, anon_sym_AMP, - ACTIONS(2474), 1, + ACTIONS(2567), 1, anon_sym_PIPE, - ACTIONS(2480), 1, + ACTIONS(2573), 1, sym_number, - ACTIONS(2482), 1, + ACTIONS(2575), 1, sym_this, - ACTIONS(2486), 1, + ACTIONS(2579), 1, sym_readonly, - ACTIONS(2488), 1, + ACTIONS(2581), 1, anon_sym_keyof, - ACTIONS(2490), 1, + ACTIONS(2583), 1, anon_sym_LBRACE_PIPE, - STATE(1003), 1, + STATE(1012), 1, sym_nested_type_identifier, - STATE(1036), 1, + STATE(1019), 1, sym__tuple_type_body, - STATE(2953), 1, + STATE(2959), 1, sym_type_parameters, - STATE(3027), 1, + STATE(3046), 1, sym_nested_identifier, - STATE(3083), 1, + STATE(3147), 1, sym_formal_parameters, - ACTIONS(2476), 2, + ACTIONS(2569), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2484), 2, + ACTIONS(2577), 2, sym_true, sym_false, - STATE(1034), 2, + STATE(1027), 2, sym_string, sym__number, - STATE(1061), 5, + STATE(1087), 5, sym__type, sym_constructor_type, sym_union_type, sym_intersection_type, sym_function_type, - ACTIONS(2478), 6, + ACTIONS(2571), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(1035), 14, + STATE(1023), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -81475,7 +81348,73 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [16470] = 30, + [15828] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(827), 1, + anon_sym_QMARK_DOT, + ACTIONS(1115), 1, + anon_sym_EQ, + ACTIONS(1117), 1, + anon_sym_EQ_GT, + ACTIONS(1623), 1, + anon_sym_LBRACK, + ACTIONS(1625), 1, + anon_sym_DOT, + ACTIONS(1746), 1, + anon_sym_COLON, + ACTIONS(841), 11, + anon_sym_as, + anon_sym_LPAREN, + 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, + ACTIONS(831), 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(808), 22, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + 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_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [15904] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(427), 1, @@ -81508,32 +81447,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(935), 1, sym_readonly, - ACTIONS(1691), 1, + ACTIONS(1678), 1, anon_sym_LT, - ACTIONS(2286), 1, + ACTIONS(2310), 1, anon_sym_LBRACK, - ACTIONS(2624), 1, + ACTIONS(2638), 1, sym_this, - STATE(444), 1, + STATE(434), 1, sym__tuple_type_body, - STATE(1913), 1, + STATE(1917), 1, sym_nested_type_identifier, - STATE(2959), 1, + STATE(2916), 1, sym_type_parameters, - STATE(2996), 1, + STATE(3122), 1, sym_formal_parameters, - STATE(2999), 1, + STATE(3123), 1, sym_nested_identifier, ACTIONS(853), 2, sym_true, sym_false, - ACTIONS(1693), 2, + ACTIONS(1680), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(446), 2, + STATE(433), 2, sym_string, sym__number, - STATE(2246), 5, + STATE(2517), 5, sym__type, sym_constructor_type, sym_union_type, @@ -81546,7 +81485,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(448), 14, + STATE(432), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -81561,7 +81500,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [16586] = 30, + [16020] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(427), 1, @@ -81594,131 +81533,45 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(935), 1, sym_readonly, - ACTIONS(1691), 1, - anon_sym_LT, - ACTIONS(2286), 1, - anon_sym_LBRACK, - ACTIONS(2624), 1, - sym_this, - STATE(444), 1, - sym__tuple_type_body, - STATE(1913), 1, - sym_nested_type_identifier, - STATE(2959), 1, - sym_type_parameters, - STATE(2996), 1, - sym_formal_parameters, - STATE(2999), 1, - sym_nested_identifier, - ACTIONS(853), 2, - sym_true, - sym_false, - ACTIONS(1693), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(446), 2, - sym_string, - sym__number, - STATE(437), 5, - sym__type, - sym_constructor_type, - sym_union_type, - sym_intersection_type, - sym_function_type, - ACTIONS(843), 6, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - STATE(448), 14, - sym__primary_type, - sym_conditional_type, - sym_generic_type, - sym_type_query, - sym_index_type_query, - sym_lookup_type, - sym_literal_type, - sym_existential_type, - sym_flow_maybe_type, - sym_parenthesized_type, - sym_predefined_type, - sym_object_type, - sym_array_type, - sym_tuple_type, - [16702] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(475), 1, - anon_sym_DQUOTE, - ACTIONS(477), 1, - anon_sym_SQUOTE, - ACTIONS(1691), 1, + ACTIONS(1678), 1, anon_sym_LT, - ACTIONS(2456), 1, - sym_identifier, - ACTIONS(2458), 1, - anon_sym_STAR, - ACTIONS(2460), 1, - anon_sym_LBRACE, - ACTIONS(2462), 1, - anon_sym_typeof, - ACTIONS(2464), 1, - anon_sym_LPAREN, - ACTIONS(2466), 1, + ACTIONS(2310), 1, anon_sym_LBRACK, - ACTIONS(2468), 1, - anon_sym_new, - ACTIONS(2470), 1, - anon_sym_QMARK, - ACTIONS(2472), 1, - anon_sym_AMP, - ACTIONS(2474), 1, - anon_sym_PIPE, - ACTIONS(2480), 1, - sym_number, - ACTIONS(2482), 1, + ACTIONS(2638), 1, sym_this, - ACTIONS(2486), 1, - sym_readonly, - ACTIONS(2488), 1, - anon_sym_keyof, - ACTIONS(2490), 1, - anon_sym_LBRACE_PIPE, - STATE(1003), 1, - sym_nested_type_identifier, - STATE(1036), 1, + STATE(434), 1, sym__tuple_type_body, - STATE(2953), 1, + STATE(1917), 1, + sym_nested_type_identifier, + STATE(2916), 1, sym_type_parameters, - STATE(3027), 1, - sym_nested_identifier, - STATE(3083), 1, + STATE(3122), 1, sym_formal_parameters, - ACTIONS(2476), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2484), 2, + STATE(3123), 1, + sym_nested_identifier, + ACTIONS(853), 2, sym_true, sym_false, - STATE(1034), 2, + ACTIONS(1680), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(433), 2, sym_string, sym__number, - STATE(1062), 5, + STATE(2586), 5, sym__type, sym_constructor_type, sym_union_type, sym_intersection_type, sym_function_type, - ACTIONS(2478), 6, + ACTIONS(843), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(1035), 14, + STATE(432), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -81733,7 +81586,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [16818] = 30, + [16136] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(427), 1, @@ -81766,32 +81619,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(935), 1, sym_readonly, - ACTIONS(1691), 1, + ACTIONS(1678), 1, anon_sym_LT, - ACTIONS(2286), 1, + ACTIONS(2310), 1, anon_sym_LBRACK, - ACTIONS(2688), 1, + ACTIONS(2638), 1, sym_this, - STATE(444), 1, + STATE(434), 1, sym__tuple_type_body, - STATE(1913), 1, + STATE(1917), 1, sym_nested_type_identifier, - STATE(2959), 1, + STATE(2916), 1, sym_type_parameters, - STATE(2996), 1, + STATE(3122), 1, sym_formal_parameters, - STATE(2999), 1, + STATE(3123), 1, sym_nested_identifier, ACTIONS(853), 2, sym_true, sym_false, - ACTIONS(1693), 2, + ACTIONS(1680), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(446), 2, + STATE(433), 2, sym_string, sym__number, - STATE(2626), 5, + STATE(436), 5, sym__type, sym_constructor_type, sym_union_type, @@ -81804,7 +81657,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(431), 14, + STATE(432), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -81819,33 +81672,41 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [16934] = 9, + [16252] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2266), 1, - anon_sym_LBRACK, - ACTIONS(2272), 1, - anon_sym_QMARK_DOT, - ACTIONS(2282), 1, - anon_sym_DOT, - ACTIONS(2387), 1, + ACTIONS(2276), 24, + anon_sym_STAR, anon_sym_EQ, - ACTIONS(2391), 1, - anon_sym_EQ_GT, - ACTIONS(1099), 12, - sym__automatic_semicolon, + anon_sym_LBRACE, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + 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_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + ACTIONS(2278), 30, anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, - 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, - ACTIONS(2181), 15, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -81861,8 +81722,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1097), 22, + 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_LBRACE_PIPE, + [16314] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2216), 24, anon_sym_STAR, + anon_sym_EQ, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -81884,93 +81759,38 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [17008] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(475), 1, - anon_sym_DQUOTE, - ACTIONS(477), 1, - anon_sym_SQUOTE, - ACTIONS(1691), 1, - anon_sym_LT, - ACTIONS(2456), 1, - sym_identifier, - ACTIONS(2458), 1, - anon_sym_STAR, - ACTIONS(2460), 1, - anon_sym_LBRACE, - ACTIONS(2462), 1, - anon_sym_typeof, - ACTIONS(2464), 1, + ACTIONS(2218), 30, + anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(2466), 1, anon_sym_LBRACK, - ACTIONS(2468), 1, - anon_sym_new, - ACTIONS(2470), 1, - anon_sym_QMARK, - ACTIONS(2472), 1, - anon_sym_AMP, - ACTIONS(2474), 1, - anon_sym_PIPE, - ACTIONS(2480), 1, - sym_number, - ACTIONS(2482), 1, - sym_this, - ACTIONS(2486), 1, - sym_readonly, - ACTIONS(2488), 1, - anon_sym_keyof, - ACTIONS(2490), 1, + 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_LBRACE_PIPE, - STATE(1003), 1, - sym_nested_type_identifier, - STATE(1036), 1, - sym__tuple_type_body, - STATE(2953), 1, - sym_type_parameters, - STATE(3027), 1, - sym_nested_identifier, - STATE(3083), 1, - sym_formal_parameters, - ACTIONS(2476), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2484), 2, - sym_true, - sym_false, - STATE(1034), 2, - sym_string, - sym__number, - STATE(1063), 5, - sym__type, - sym_constructor_type, - sym_union_type, - sym_intersection_type, - sym_function_type, - ACTIONS(2478), 6, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - STATE(1035), 14, - sym__primary_type, - sym_conditional_type, - sym_generic_type, - sym_type_query, - sym_index_type_query, - sym_lookup_type, - sym_literal_type, - sym_existential_type, - sym_flow_maybe_type, - sym_parenthesized_type, - sym_predefined_type, - sym_object_type, - sym_array_type, - sym_tuple_type, - [17124] = 30, + [16376] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(427), 1, @@ -82003,32 +81823,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(935), 1, sym_readonly, - ACTIONS(1691), 1, + ACTIONS(1678), 1, anon_sym_LT, - ACTIONS(2286), 1, + ACTIONS(2310), 1, anon_sym_LBRACK, - ACTIONS(2624), 1, + ACTIONS(2638), 1, sym_this, - STATE(444), 1, + STATE(434), 1, sym__tuple_type_body, - STATE(1913), 1, + STATE(1917), 1, sym_nested_type_identifier, - STATE(2959), 1, + STATE(2916), 1, sym_type_parameters, - STATE(2996), 1, + STATE(3122), 1, sym_formal_parameters, - STATE(2999), 1, + STATE(3123), 1, sym_nested_identifier, ACTIONS(853), 2, sym_true, sym_false, - ACTIONS(1693), 2, + ACTIONS(1680), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(446), 2, + STATE(433), 2, sym_string, sym__number, - STATE(430), 5, + STATE(1922), 5, sym__type, sym_constructor_type, sym_union_type, @@ -82041,7 +81861,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(448), 14, + STATE(432), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -82056,78 +81876,78 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [17240] = 30, + [16492] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(427), 1, - anon_sym_STAR, - ACTIONS(461), 1, - anon_sym_QMARK, - ACTIONS(463), 1, - anon_sym_AMP, - ACTIONS(465), 1, - anon_sym_PIPE, - ACTIONS(495), 1, - anon_sym_keyof, - ACTIONS(497), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(815), 1, - anon_sym_typeof, - ACTIONS(817), 1, - anon_sym_LPAREN, - ACTIONS(829), 1, - anon_sym_new, - ACTIONS(845), 1, + ACTIONS(81), 1, anon_sym_DQUOTE, - ACTIONS(847), 1, + ACTIONS(83), 1, anon_sym_SQUOTE, - ACTIONS(849), 1, - sym_number, - ACTIONS(925), 1, + ACTIONS(1678), 1, + anon_sym_LT, + ACTIONS(2472), 1, sym_identifier, - ACTIONS(929), 1, + ACTIONS(2474), 1, + anon_sym_STAR, + ACTIONS(2476), 1, anon_sym_LBRACE, - ACTIONS(935), 1, - sym_readonly, - ACTIONS(1691), 1, - anon_sym_LT, - ACTIONS(2286), 1, + ACTIONS(2478), 1, + anon_sym_typeof, + ACTIONS(2480), 1, + anon_sym_LPAREN, + ACTIONS(2482), 1, anon_sym_LBRACK, - ACTIONS(2624), 1, + ACTIONS(2484), 1, + anon_sym_new, + ACTIONS(2486), 1, + anon_sym_QMARK, + ACTIONS(2488), 1, + anon_sym_AMP, + ACTIONS(2490), 1, + anon_sym_PIPE, + ACTIONS(2496), 1, + sym_number, + ACTIONS(2498), 1, sym_this, - STATE(444), 1, - sym__tuple_type_body, - STATE(1913), 1, + ACTIONS(2502), 1, + sym_readonly, + ACTIONS(2504), 1, + anon_sym_keyof, + ACTIONS(2506), 1, + anon_sym_LBRACE_PIPE, + STATE(1231), 1, sym_nested_type_identifier, - STATE(2959), 1, + STATE(1412), 1, + sym__tuple_type_body, + STATE(2874), 1, sym_type_parameters, - STATE(2996), 1, + STATE(3081), 1, sym_formal_parameters, - STATE(2999), 1, + STATE(3130), 1, sym_nested_identifier, - ACTIONS(853), 2, - sym_true, - sym_false, - ACTIONS(1693), 2, + ACTIONS(2492), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(446), 2, + ACTIONS(2500), 2, + sym_true, + sym_false, + STATE(1409), 2, sym_string, sym__number, - STATE(2142), 5, + STATE(1348), 5, sym__type, sym_constructor_type, sym_union_type, sym_intersection_type, sym_function_type, - ACTIONS(843), 6, + ACTIONS(2494), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(448), 14, + STATE(1411), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -82142,65 +81962,65 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [17356] = 30, + [16608] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(427), 1, anon_sym_STAR, - ACTIONS(461), 1, - anon_sym_QMARK, - ACTIONS(463), 1, - anon_sym_AMP, - ACTIONS(465), 1, - anon_sym_PIPE, - ACTIONS(495), 1, - anon_sym_keyof, ACTIONS(497), 1, anon_sym_LBRACE_PIPE, - ACTIONS(815), 1, - anon_sym_typeof, ACTIONS(817), 1, anon_sym_LPAREN, - ACTIONS(829), 1, - anon_sym_new, ACTIONS(845), 1, anon_sym_DQUOTE, ACTIONS(847), 1, anon_sym_SQUOTE, ACTIONS(849), 1, sym_number, - ACTIONS(925), 1, - sym_identifier, ACTIONS(929), 1, anon_sym_LBRACE, ACTIONS(935), 1, sym_readonly, - ACTIONS(1691), 1, + ACTIONS(1678), 1, anon_sym_LT, - ACTIONS(2286), 1, + ACTIONS(2310), 1, anon_sym_LBRACK, - ACTIONS(2624), 1, + ACTIONS(2638), 1, sym_this, - STATE(444), 1, + ACTIONS(2698), 1, + sym_identifier, + ACTIONS(2700), 1, + anon_sym_typeof, + ACTIONS(2702), 1, + anon_sym_new, + ACTIONS(2704), 1, + anon_sym_QMARK, + ACTIONS(2706), 1, + anon_sym_AMP, + ACTIONS(2708), 1, + anon_sym_PIPE, + ACTIONS(2710), 1, + anon_sym_keyof, + STATE(434), 1, sym__tuple_type_body, - STATE(1913), 1, + STATE(482), 1, sym_nested_type_identifier, - STATE(2959), 1, + STATE(2954), 1, sym_type_parameters, - STATE(2996), 1, - sym_formal_parameters, - STATE(2999), 1, + STATE(3123), 1, sym_nested_identifier, + STATE(3171), 1, + sym_formal_parameters, ACTIONS(853), 2, sym_true, sym_false, - ACTIONS(1693), 2, + ACTIONS(1680), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(446), 2, + STATE(433), 2, sym_string, sym__number, - STATE(429), 5, + STATE(505), 5, sym__type, sym_constructor_type, sym_union_type, @@ -82213,7 +82033,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(448), 14, + STATE(432), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -82228,7 +82048,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [17472] = 30, + [16724] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(427), 1, @@ -82261,32 +82081,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(935), 1, sym_readonly, - ACTIONS(1691), 1, + ACTIONS(1678), 1, anon_sym_LT, - ACTIONS(2286), 1, + ACTIONS(2310), 1, anon_sym_LBRACK, - ACTIONS(2624), 1, + ACTIONS(2638), 1, sym_this, - STATE(444), 1, + STATE(434), 1, sym__tuple_type_body, - STATE(1913), 1, + STATE(1917), 1, sym_nested_type_identifier, - STATE(2959), 1, + STATE(2916), 1, sym_type_parameters, - STATE(2996), 1, + STATE(3122), 1, sym_formal_parameters, - STATE(2999), 1, + STATE(3123), 1, sym_nested_identifier, ACTIONS(853), 2, sym_true, sym_false, - ACTIONS(1693), 2, + ACTIONS(1680), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(446), 2, + STATE(433), 2, sym_string, sym__number, - STATE(1924), 5, + STATE(2279), 5, sym__type, sym_constructor_type, sym_union_type, @@ -82299,7 +82119,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(448), 14, + STATE(432), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -82314,132 +82134,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [17588] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2377), 1, - anon_sym_EQ, - ACTIONS(1099), 15, - anon_sym_as, - 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_LBRACE_PIPE, - ACTIONS(2181), 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(1097), 23, - anon_sym_STAR, - anon_sym_LBRACE, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - 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_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [17654] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2377), 1, - anon_sym_EQ, - ACTIONS(2379), 1, - anon_sym_LBRACK, - ACTIONS(2385), 1, - anon_sym_QMARK_DOT, - ACTIONS(2410), 1, - anon_sym_DOT, - ACTIONS(1099), 12, - anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - 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_LBRACE_PIPE, - ACTIONS(2181), 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(1097), 23, - anon_sym_STAR, - anon_sym_LBRACE, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - 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_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [17726] = 30, + [16840] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(427), 1, @@ -82470,34 +82165,34 @@ static uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(929), 1, anon_sym_LBRACE, - ACTIONS(933), 1, - sym_this, ACTIONS(935), 1, sym_readonly, - ACTIONS(1691), 1, + ACTIONS(1678), 1, anon_sym_LT, - ACTIONS(2286), 1, + ACTIONS(2310), 1, anon_sym_LBRACK, - STATE(426), 1, + ACTIONS(2638), 1, + sym_this, + STATE(434), 1, sym__tuple_type_body, - STATE(1913), 1, + STATE(1917), 1, sym_nested_type_identifier, - STATE(2959), 1, + STATE(2916), 1, sym_type_parameters, - STATE(2996), 1, + STATE(3122), 1, sym_formal_parameters, - STATE(2999), 1, + STATE(3123), 1, sym_nested_identifier, ACTIONS(853), 2, sym_true, sym_false, - ACTIONS(1693), 2, + ACTIONS(1680), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(446), 2, + STATE(433), 2, sym_string, sym__number, - STATE(2626), 5, + STATE(2501), 5, sym__type, sym_constructor_type, sym_union_type, @@ -82510,7 +82205,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2496), 14, + STATE(432), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -82525,78 +82220,78 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [17842] = 30, + [16956] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(427), 1, + ACTIONS(731), 1, anon_sym_STAR, - ACTIONS(461), 1, + ACTIONS(743), 1, anon_sym_QMARK, - ACTIONS(463), 1, + ACTIONS(745), 1, anon_sym_AMP, - ACTIONS(465), 1, + ACTIONS(747), 1, anon_sym_PIPE, - ACTIONS(495), 1, + ACTIONS(763), 1, anon_sym_keyof, - ACTIONS(497), 1, + ACTIONS(765), 1, anon_sym_LBRACE_PIPE, - ACTIONS(815), 1, + ACTIONS(1678), 1, + anon_sym_LT, + ACTIONS(2344), 1, + anon_sym_DQUOTE, + ACTIONS(2346), 1, + anon_sym_SQUOTE, + ACTIONS(2591), 1, + anon_sym_LBRACE, + ACTIONS(2593), 1, anon_sym_typeof, - ACTIONS(817), 1, + ACTIONS(2595), 1, anon_sym_LPAREN, - ACTIONS(829), 1, + ACTIONS(2597), 1, + anon_sym_LBRACK, + ACTIONS(2599), 1, anon_sym_new, - ACTIONS(845), 1, - anon_sym_DQUOTE, - ACTIONS(847), 1, - anon_sym_SQUOTE, - ACTIONS(849), 1, + ACTIONS(2605), 1, sym_number, - ACTIONS(925), 1, - sym_identifier, - ACTIONS(929), 1, - anon_sym_LBRACE, - ACTIONS(935), 1, + ACTIONS(2611), 1, sym_readonly, - ACTIONS(1691), 1, - anon_sym_LT, - ACTIONS(2286), 1, - anon_sym_LBRACK, - ACTIONS(2624), 1, + ACTIONS(2712), 1, + sym_identifier, + ACTIONS(2714), 1, sym_this, - STATE(444), 1, - sym__tuple_type_body, - STATE(1913), 1, + STATE(1950), 1, sym_nested_type_identifier, - STATE(2959), 1, + STATE(2010), 1, + sym__tuple_type_body, + STATE(3007), 1, sym_type_parameters, - STATE(2996), 1, - sym_formal_parameters, - STATE(2999), 1, + STATE(3017), 1, sym_nested_identifier, - ACTIONS(853), 2, - sym_true, - sym_false, - ACTIONS(1693), 2, + STATE(3065), 1, + sym_formal_parameters, + ACTIONS(2601), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(446), 2, + ACTIONS(2609), 2, + sym_true, + sym_false, + STATE(2000), 2, sym_string, sym__number, - STATE(2521), 5, + STATE(1978), 5, sym__type, sym_constructor_type, sym_union_type, sym_intersection_type, sym_function_type, - ACTIONS(843), 6, + ACTIONS(2603), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(448), 14, + STATE(2003), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -82611,7 +82306,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [17958] = 30, + [17072] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(427), 1, @@ -82644,32 +82339,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(935), 1, sym_readonly, - ACTIONS(1691), 1, + ACTIONS(1678), 1, anon_sym_LT, - ACTIONS(2466), 1, + ACTIONS(2310), 1, anon_sym_LBRACK, - ACTIONS(2690), 1, + ACTIONS(2638), 1, sym_this, - STATE(1051), 1, + STATE(434), 1, sym__tuple_type_body, - STATE(1913), 1, + STATE(1917), 1, sym_nested_type_identifier, - STATE(2959), 1, + STATE(2916), 1, sym_type_parameters, - STATE(2996), 1, + STATE(3122), 1, sym_formal_parameters, - STATE(2999), 1, + STATE(3123), 1, sym_nested_identifier, ACTIONS(853), 2, sym_true, sym_false, - ACTIONS(1693), 2, + ACTIONS(1680), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(446), 2, + STATE(433), 2, sym_string, sym__number, - STATE(2626), 5, + STATE(1923), 5, sym__type, sym_constructor_type, sym_union_type, @@ -82682,7 +82377,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2537), 14, + STATE(432), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -82697,78 +82392,78 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [18074] = 30, + [17188] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(81), 1, + ACTIONS(427), 1, + anon_sym_STAR, + ACTIONS(461), 1, + anon_sym_QMARK, + ACTIONS(463), 1, + anon_sym_AMP, + ACTIONS(465), 1, + anon_sym_PIPE, + ACTIONS(495), 1, + anon_sym_keyof, + ACTIONS(497), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(815), 1, + anon_sym_typeof, + ACTIONS(817), 1, + anon_sym_LPAREN, + ACTIONS(829), 1, + anon_sym_new, + ACTIONS(845), 1, anon_sym_DQUOTE, - ACTIONS(83), 1, + ACTIONS(847), 1, anon_sym_SQUOTE, - ACTIONS(1691), 1, - anon_sym_LT, - ACTIONS(2508), 1, + ACTIONS(849), 1, + sym_number, + ACTIONS(925), 1, sym_identifier, - ACTIONS(2510), 1, - anon_sym_STAR, - ACTIONS(2512), 1, + ACTIONS(929), 1, anon_sym_LBRACE, - ACTIONS(2514), 1, - anon_sym_typeof, - ACTIONS(2516), 1, - anon_sym_LPAREN, - ACTIONS(2518), 1, + ACTIONS(935), 1, + sym_readonly, + ACTIONS(1678), 1, + anon_sym_LT, + ACTIONS(2310), 1, anon_sym_LBRACK, - ACTIONS(2520), 1, - anon_sym_new, - ACTIONS(2522), 1, - anon_sym_QMARK, - ACTIONS(2524), 1, - anon_sym_AMP, - ACTIONS(2526), 1, - anon_sym_PIPE, - ACTIONS(2532), 1, - sym_number, - ACTIONS(2534), 1, + ACTIONS(2638), 1, sym_this, - ACTIONS(2538), 1, - sym_readonly, - ACTIONS(2540), 1, - anon_sym_keyof, - ACTIONS(2542), 1, - anon_sym_LBRACE_PIPE, - STATE(1291), 1, - sym_nested_type_identifier, - STATE(1402), 1, + STATE(434), 1, sym__tuple_type_body, - STATE(2856), 1, + STATE(1917), 1, + sym_nested_type_identifier, + STATE(2916), 1, sym_type_parameters, - STATE(3131), 1, - sym_nested_identifier, - STATE(3175), 1, + STATE(3122), 1, sym_formal_parameters, - ACTIONS(2528), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2536), 2, + STATE(3123), 1, + sym_nested_identifier, + ACTIONS(853), 2, sym_true, sym_false, - STATE(1399), 2, + ACTIONS(1680), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(433), 2, sym_string, sym__number, - STATE(1360), 5, + STATE(2191), 5, sym__type, sym_constructor_type, sym_union_type, sym_intersection_type, sym_function_type, - ACTIONS(2530), 6, + ACTIONS(843), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(1401), 14, + STATE(432), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -82783,7 +82478,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [18190] = 30, + [17304] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(427), 1, @@ -82816,32 +82511,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(935), 1, sym_readonly, - ACTIONS(1691), 1, + ACTIONS(1678), 1, anon_sym_LT, - ACTIONS(2286), 1, + ACTIONS(2310), 1, anon_sym_LBRACK, - ACTIONS(2624), 1, + ACTIONS(2638), 1, sym_this, - STATE(444), 1, + STATE(434), 1, sym__tuple_type_body, - STATE(1913), 1, + STATE(1917), 1, sym_nested_type_identifier, - STATE(2959), 1, + STATE(2916), 1, sym_type_parameters, - STATE(2996), 1, + STATE(3122), 1, sym_formal_parameters, - STATE(2999), 1, + STATE(3123), 1, sym_nested_identifier, ACTIONS(853), 2, sym_true, sym_false, - ACTIONS(1693), 2, + ACTIONS(1680), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(446), 2, + STATE(433), 2, sym_string, sym__number, - STATE(2481), 5, + STATE(2262), 5, sym__type, sym_constructor_type, sym_union_type, @@ -82854,7 +82549,152 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(448), 14, + STATE(432), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [17420] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2248), 24, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + 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_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + ACTIONS(2250), 30, + anon_sym_as, + anon_sym_COMMA, + 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, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_LBRACE_PIPE, + [17482] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(731), 1, + anon_sym_STAR, + ACTIONS(743), 1, + anon_sym_QMARK, + ACTIONS(745), 1, + anon_sym_AMP, + ACTIONS(747), 1, + anon_sym_PIPE, + ACTIONS(763), 1, + anon_sym_keyof, + ACTIONS(765), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1678), 1, + anon_sym_LT, + ACTIONS(2344), 1, + anon_sym_DQUOTE, + ACTIONS(2346), 1, + anon_sym_SQUOTE, + ACTIONS(2591), 1, + anon_sym_LBRACE, + ACTIONS(2593), 1, + anon_sym_typeof, + ACTIONS(2595), 1, + anon_sym_LPAREN, + ACTIONS(2597), 1, + anon_sym_LBRACK, + ACTIONS(2599), 1, + anon_sym_new, + ACTIONS(2605), 1, + sym_number, + ACTIONS(2611), 1, + sym_readonly, + ACTIONS(2712), 1, + sym_identifier, + ACTIONS(2714), 1, + sym_this, + STATE(1950), 1, + sym_nested_type_identifier, + STATE(2010), 1, + sym__tuple_type_body, + STATE(3007), 1, + sym_type_parameters, + STATE(3017), 1, + sym_nested_identifier, + STATE(3065), 1, + sym_formal_parameters, + ACTIONS(2601), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2609), 2, + sym_true, + sym_false, + STATE(2000), 2, + sym_string, + sym__number, + STATE(2064), 5, + sym__type, + sym_constructor_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + ACTIONS(2603), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(2003), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -82869,7 +82709,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [18306] = 30, + [17598] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(427), 1, @@ -82902,32 +82742,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(935), 1, sym_readonly, - ACTIONS(1691), 1, + ACTIONS(1678), 1, anon_sym_LT, - ACTIONS(2286), 1, + ACTIONS(2310), 1, anon_sym_LBRACK, - ACTIONS(2624), 1, + ACTIONS(2638), 1, sym_this, - STATE(444), 1, + STATE(434), 1, sym__tuple_type_body, - STATE(1913), 1, + STATE(1917), 1, sym_nested_type_identifier, - STATE(2959), 1, + STATE(2916), 1, sym_type_parameters, - STATE(2996), 1, + STATE(3122), 1, sym_formal_parameters, - STATE(2999), 1, + STATE(3123), 1, sym_nested_identifier, ACTIONS(853), 2, sym_true, sym_false, - ACTIONS(1693), 2, + ACTIONS(1680), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(446), 2, + STATE(433), 2, sym_string, sym__number, - STATE(2340), 5, + STATE(2530), 5, sym__type, sym_constructor_type, sym_union_type, @@ -82940,7 +82780,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(448), 14, + STATE(432), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -82955,7 +82795,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [18422] = 30, + [17714] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(427), 1, @@ -82988,32 +82828,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(935), 1, sym_readonly, - ACTIONS(1691), 1, + ACTIONS(1678), 1, anon_sym_LT, - ACTIONS(2286), 1, + ACTIONS(2310), 1, anon_sym_LBRACK, - ACTIONS(2624), 1, + ACTIONS(2638), 1, sym_this, - STATE(444), 1, + STATE(434), 1, sym__tuple_type_body, - STATE(1913), 1, + STATE(1917), 1, sym_nested_type_identifier, - STATE(2959), 1, + STATE(2916), 1, sym_type_parameters, - STATE(2996), 1, + STATE(3122), 1, sym_formal_parameters, - STATE(2999), 1, + STATE(3123), 1, sym_nested_identifier, ACTIONS(853), 2, sym_true, sym_false, - ACTIONS(1693), 2, + ACTIONS(1680), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(446), 2, + STATE(433), 2, sym_string, sym__number, - STATE(2538), 5, + STATE(2534), 5, sym__type, sym_constructor_type, sym_union_type, @@ -83026,7 +82866,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(448), 14, + STATE(432), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -83041,78 +82881,201 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [18538] = 30, + [17830] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(81), 1, - anon_sym_DQUOTE, - ACTIONS(83), 1, - anon_sym_SQUOTE, - ACTIONS(1691), 1, + ACTIONS(2312), 1, + anon_sym_EQ, + ACTIONS(2314), 1, + anon_sym_LBRACK, + ACTIONS(2320), 1, + anon_sym_QMARK_DOT, + ACTIONS(2470), 1, + anon_sym_DOT, + ACTIONS(1039), 12, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, + 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_LBRACE_PIPE, + ACTIONS(2197), 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(1037), 23, + anon_sym_STAR, + anon_sym_LBRACE, + anon_sym_BANG, + anon_sym_in, anon_sym_LT, - ACTIONS(2508), 1, - sym_identifier, - ACTIONS(2510), 1, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + 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_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [17902] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2127), 24, anon_sym_STAR, - ACTIONS(2512), 1, + anon_sym_EQ, anon_sym_LBRACE, - ACTIONS(2514), 1, - anon_sym_typeof, - ACTIONS(2516), 1, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + 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_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + ACTIONS(2129), 30, + anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(2518), 1, anon_sym_LBRACK, - ACTIONS(2520), 1, - anon_sym_new, - ACTIONS(2522), 1, + 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_LBRACE_PIPE, + [17964] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(731), 1, + anon_sym_STAR, + ACTIONS(743), 1, anon_sym_QMARK, - ACTIONS(2524), 1, + ACTIONS(745), 1, anon_sym_AMP, - ACTIONS(2526), 1, + ACTIONS(747), 1, anon_sym_PIPE, - ACTIONS(2532), 1, - sym_number, - ACTIONS(2534), 1, - sym_this, - ACTIONS(2538), 1, - sym_readonly, - ACTIONS(2540), 1, + ACTIONS(763), 1, anon_sym_keyof, - ACTIONS(2542), 1, + ACTIONS(765), 1, anon_sym_LBRACE_PIPE, - STATE(1291), 1, + ACTIONS(1678), 1, + anon_sym_LT, + ACTIONS(2344), 1, + anon_sym_DQUOTE, + ACTIONS(2346), 1, + anon_sym_SQUOTE, + ACTIONS(2591), 1, + anon_sym_LBRACE, + ACTIONS(2593), 1, + anon_sym_typeof, + ACTIONS(2595), 1, + anon_sym_LPAREN, + ACTIONS(2597), 1, + anon_sym_LBRACK, + ACTIONS(2599), 1, + anon_sym_new, + ACTIONS(2605), 1, + sym_number, + ACTIONS(2611), 1, + sym_readonly, + ACTIONS(2712), 1, + sym_identifier, + ACTIONS(2714), 1, + sym_this, + STATE(1950), 1, sym_nested_type_identifier, - STATE(1402), 1, + STATE(2010), 1, sym__tuple_type_body, - STATE(2856), 1, + STATE(3007), 1, sym_type_parameters, - STATE(3131), 1, + STATE(3017), 1, sym_nested_identifier, - STATE(3175), 1, + STATE(3065), 1, sym_formal_parameters, - ACTIONS(2528), 2, + ACTIONS(2601), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2536), 2, + ACTIONS(2609), 2, sym_true, sym_false, - STATE(1399), 2, + STATE(2000), 2, sym_string, sym__number, - STATE(1346), 5, + STATE(1985), 5, sym__type, sym_constructor_type, sym_union_type, sym_intersection_type, sym_function_type, - ACTIONS(2530), 6, + ACTIONS(2603), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(1401), 14, + STATE(2003), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -83127,14 +83090,49 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [18654] = 4, + [18080] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2692), 1, - anon_sym_COLON, - ACTIONS(2224), 23, - anon_sym_STAR, + ACTIONS(2191), 1, + anon_sym_LBRACK, + ACTIONS(2193), 1, + anon_sym_DOT, + ACTIONS(2195), 1, + anon_sym_QMARK_DOT, + ACTIONS(2409), 1, anon_sym_EQ, + ACTIONS(1039), 13, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + 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_implements, + ACTIONS(2197), 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(1037), 22, + anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -83156,13 +83154,44 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(2226), 30, - anon_sym_as, + [18152] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2263), 1, + anon_sym_LT, + ACTIONS(2266), 1, + anon_sym_DOT, + ACTIONS(2260), 3, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_implements, + ACTIONS(2256), 22, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + 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_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + ACTIONS(2258), 27, + anon_sym_as, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -83187,7 +83216,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [18718] = 30, + [18220] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(427), 1, @@ -83220,32 +83249,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(935), 1, sym_readonly, - ACTIONS(1691), 1, + ACTIONS(1678), 1, anon_sym_LT, - ACTIONS(2286), 1, + ACTIONS(2482), 1, anon_sym_LBRACK, - ACTIONS(2624), 1, + ACTIONS(2716), 1, sym_this, - STATE(444), 1, + STATE(1399), 1, sym__tuple_type_body, - STATE(1913), 1, + STATE(1917), 1, sym_nested_type_identifier, - STATE(2959), 1, + STATE(2916), 1, sym_type_parameters, - STATE(2996), 1, + STATE(3122), 1, sym_formal_parameters, - STATE(2999), 1, + STATE(3123), 1, sym_nested_identifier, ACTIONS(853), 2, sym_true, sym_false, - ACTIONS(1693), 2, + ACTIONS(1680), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(446), 2, + STATE(433), 2, sym_string, sym__number, - STATE(2542), 5, + STATE(2780), 5, sym__type, sym_constructor_type, sym_union_type, @@ -83258,7 +83287,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(448), 14, + STATE(2599), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -83273,78 +83302,164 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [18834] = 30, + [18336] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(713), 1, + ACTIONS(427), 1, anon_sym_STAR, - ACTIONS(725), 1, + ACTIONS(497), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(817), 1, + anon_sym_LPAREN, + ACTIONS(845), 1, + anon_sym_DQUOTE, + ACTIONS(847), 1, + anon_sym_SQUOTE, + ACTIONS(849), 1, + sym_number, + ACTIONS(929), 1, + anon_sym_LBRACE, + ACTIONS(935), 1, + sym_readonly, + ACTIONS(1678), 1, + anon_sym_LT, + ACTIONS(2310), 1, + anon_sym_LBRACK, + ACTIONS(2638), 1, + sym_this, + ACTIONS(2698), 1, + sym_identifier, + ACTIONS(2700), 1, + anon_sym_typeof, + ACTIONS(2702), 1, + anon_sym_new, + ACTIONS(2704), 1, anon_sym_QMARK, - ACTIONS(727), 1, + ACTIONS(2706), 1, anon_sym_AMP, - ACTIONS(729), 1, + ACTIONS(2708), 1, anon_sym_PIPE, - ACTIONS(745), 1, + ACTIONS(2710), 1, anon_sym_keyof, - ACTIONS(747), 1, + STATE(434), 1, + sym__tuple_type_body, + STATE(482), 1, + sym_nested_type_identifier, + STATE(2954), 1, + sym_type_parameters, + STATE(3123), 1, + sym_nested_identifier, + STATE(3171), 1, + sym_formal_parameters, + ACTIONS(853), 2, + sym_true, + sym_false, + ACTIONS(1680), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(433), 2, + sym_string, + sym__number, + STATE(429), 5, + sym__type, + sym_constructor_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + ACTIONS(843), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(432), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [18452] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(427), 1, + anon_sym_STAR, + ACTIONS(497), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1691), 1, - anon_sym_LT, - ACTIONS(2318), 1, + ACTIONS(817), 1, + anon_sym_LPAREN, + ACTIONS(845), 1, anon_sym_DQUOTE, - ACTIONS(2320), 1, + ACTIONS(847), 1, anon_sym_SQUOTE, - ACTIONS(2554), 1, - anon_sym_LBRACE, - ACTIONS(2556), 1, - anon_sym_typeof, - ACTIONS(2558), 1, - anon_sym_LPAREN, - ACTIONS(2560), 1, - anon_sym_LBRACK, - ACTIONS(2562), 1, - anon_sym_new, - ACTIONS(2568), 1, + ACTIONS(849), 1, sym_number, - ACTIONS(2574), 1, + ACTIONS(929), 1, + anon_sym_LBRACE, + ACTIONS(935), 1, sym_readonly, - ACTIONS(2682), 1, - sym_identifier, - ACTIONS(2684), 1, + ACTIONS(1678), 1, + anon_sym_LT, + ACTIONS(2310), 1, + anon_sym_LBRACK, + ACTIONS(2638), 1, sym_this, - STATE(1947), 1, - sym_nested_type_identifier, - STATE(1972), 1, + ACTIONS(2698), 1, + sym_identifier, + ACTIONS(2700), 1, + anon_sym_typeof, + ACTIONS(2702), 1, + anon_sym_new, + ACTIONS(2704), 1, + anon_sym_QMARK, + ACTIONS(2706), 1, + anon_sym_AMP, + ACTIONS(2708), 1, + anon_sym_PIPE, + ACTIONS(2710), 1, + anon_sym_keyof, + STATE(434), 1, sym__tuple_type_body, - STATE(2982), 1, + STATE(482), 1, + sym_nested_type_identifier, + STATE(2954), 1, sym_type_parameters, - STATE(2998), 1, + STATE(3123), 1, sym_nested_identifier, - STATE(3030), 1, + STATE(3171), 1, sym_formal_parameters, - ACTIONS(2564), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2572), 2, + ACTIONS(853), 2, sym_true, sym_false, - STATE(1981), 2, + ACTIONS(1680), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(433), 2, sym_string, sym__number, - STATE(2041), 5, + STATE(430), 5, sym__type, sym_constructor_type, sym_union_type, sym_intersection_type, sym_function_type, - ACTIONS(2566), 6, + ACTIONS(843), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(1974), 14, + STATE(432), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -83359,78 +83474,78 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [18950] = 30, + [18568] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(713), 1, + ACTIONS(427), 1, anon_sym_STAR, - ACTIONS(725), 1, - anon_sym_QMARK, - ACTIONS(727), 1, + ACTIONS(463), 1, anon_sym_AMP, - ACTIONS(729), 1, + ACTIONS(465), 1, anon_sym_PIPE, - ACTIONS(745), 1, - anon_sym_keyof, - ACTIONS(747), 1, + ACTIONS(497), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1691), 1, - anon_sym_LT, - ACTIONS(2318), 1, - anon_sym_DQUOTE, - ACTIONS(2320), 1, - anon_sym_SQUOTE, - ACTIONS(2554), 1, - anon_sym_LBRACE, - ACTIONS(2556), 1, - anon_sym_typeof, - ACTIONS(2558), 1, + ACTIONS(817), 1, anon_sym_LPAREN, - ACTIONS(2560), 1, - anon_sym_LBRACK, - ACTIONS(2562), 1, + ACTIONS(829), 1, anon_sym_new, - ACTIONS(2568), 1, + ACTIONS(845), 1, + anon_sym_DQUOTE, + ACTIONS(847), 1, + anon_sym_SQUOTE, + ACTIONS(849), 1, sym_number, - ACTIONS(2574), 1, + ACTIONS(929), 1, + anon_sym_LBRACE, + ACTIONS(935), 1, sym_readonly, - ACTIONS(2682), 1, + ACTIONS(1678), 1, + anon_sym_LT, + ACTIONS(2310), 1, + anon_sym_LBRACK, + ACTIONS(2698), 1, sym_identifier, - ACTIONS(2684), 1, + ACTIONS(2700), 1, + anon_sym_typeof, + ACTIONS(2704), 1, + anon_sym_QMARK, + ACTIONS(2710), 1, + anon_sym_keyof, + ACTIONS(2718), 1, sym_this, - STATE(1947), 1, - sym_nested_type_identifier, - STATE(1972), 1, + STATE(434), 1, sym__tuple_type_body, - STATE(2982), 1, + STATE(482), 1, + sym_nested_type_identifier, + STATE(2916), 1, sym_type_parameters, - STATE(2998), 1, - sym_nested_identifier, - STATE(3030), 1, + STATE(3122), 1, sym_formal_parameters, - ACTIONS(2564), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2572), 2, + STATE(3123), 1, + sym_nested_identifier, + ACTIONS(853), 2, sym_true, sym_false, - STATE(1981), 2, + ACTIONS(1680), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(433), 2, sym_string, sym__number, - STATE(2068), 5, + STATE(2771), 5, sym__type, sym_constructor_type, sym_union_type, sym_intersection_type, sym_function_type, - ACTIONS(2566), 6, + ACTIONS(843), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(1974), 14, + STATE(431), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -83445,78 +83560,78 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [19066] = 30, + [18684] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(475), 1, - anon_sym_DQUOTE, - ACTIONS(477), 1, - anon_sym_SQUOTE, - ACTIONS(1691), 1, - anon_sym_LT, - ACTIONS(2456), 1, - sym_identifier, - ACTIONS(2458), 1, + ACTIONS(427), 1, anon_sym_STAR, - ACTIONS(2460), 1, - anon_sym_LBRACE, - ACTIONS(2462), 1, - anon_sym_typeof, - ACTIONS(2464), 1, - anon_sym_LPAREN, - ACTIONS(2466), 1, - anon_sym_LBRACK, - ACTIONS(2468), 1, - anon_sym_new, - ACTIONS(2470), 1, + ACTIONS(461), 1, anon_sym_QMARK, - ACTIONS(2472), 1, + ACTIONS(463), 1, anon_sym_AMP, - ACTIONS(2474), 1, + ACTIONS(465), 1, anon_sym_PIPE, - ACTIONS(2480), 1, - sym_number, - ACTIONS(2482), 1, - sym_this, - ACTIONS(2486), 1, - sym_readonly, - ACTIONS(2488), 1, + ACTIONS(495), 1, anon_sym_keyof, - ACTIONS(2490), 1, + ACTIONS(497), 1, anon_sym_LBRACE_PIPE, - STATE(1003), 1, - sym_nested_type_identifier, - STATE(1036), 1, + ACTIONS(815), 1, + anon_sym_typeof, + ACTIONS(817), 1, + anon_sym_LPAREN, + ACTIONS(829), 1, + anon_sym_new, + ACTIONS(845), 1, + anon_sym_DQUOTE, + ACTIONS(847), 1, + anon_sym_SQUOTE, + ACTIONS(849), 1, + sym_number, + ACTIONS(925), 1, + sym_identifier, + ACTIONS(929), 1, + anon_sym_LBRACE, + ACTIONS(935), 1, + sym_readonly, + ACTIONS(1678), 1, + anon_sym_LT, + ACTIONS(2310), 1, + anon_sym_LBRACK, + ACTIONS(2638), 1, + sym_this, + STATE(434), 1, sym__tuple_type_body, - STATE(2953), 1, + STATE(1917), 1, + sym_nested_type_identifier, + STATE(2916), 1, sym_type_parameters, - STATE(3027), 1, - sym_nested_identifier, - STATE(3083), 1, + STATE(3122), 1, sym_formal_parameters, - ACTIONS(2476), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2484), 2, + STATE(3123), 1, + sym_nested_identifier, + ACTIONS(853), 2, sym_true, sym_false, - STATE(1034), 2, + ACTIONS(1680), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(433), 2, sym_string, sym__number, - STATE(1067), 5, + STATE(2512), 5, sym__type, sym_constructor_type, sym_union_type, sym_intersection_type, sym_function_type, - ACTIONS(2478), 6, + ACTIONS(843), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(1035), 14, + STATE(432), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -83531,7 +83646,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [19182] = 30, + [18800] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(427), 1, @@ -83564,32 +83679,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(935), 1, sym_readonly, - ACTIONS(1691), 1, + ACTIONS(1678), 1, anon_sym_LT, - ACTIONS(2286), 1, + ACTIONS(2310), 1, anon_sym_LBRACK, - ACTIONS(2624), 1, + ACTIONS(2638), 1, sym_this, - STATE(444), 1, + STATE(434), 1, sym__tuple_type_body, - STATE(1913), 1, + STATE(1917), 1, sym_nested_type_identifier, - STATE(2959), 1, + STATE(2916), 1, sym_type_parameters, - STATE(2996), 1, + STATE(3122), 1, sym_formal_parameters, - STATE(2999), 1, + STATE(3123), 1, sym_nested_identifier, ACTIONS(853), 2, sym_true, sym_false, - ACTIONS(1693), 2, + ACTIONS(1680), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(446), 2, + STATE(433), 2, sym_string, sym__number, - STATE(2555), 5, + STATE(1926), 5, sym__type, sym_constructor_type, sym_union_type, @@ -83602,7 +83717,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(448), 14, + STATE(432), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -83617,78 +83732,200 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [19298] = 30, + [18916] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(713), 1, + ACTIONS(2409), 1, + anon_sym_EQ, + ACTIONS(2197), 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(1039), 16, + 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_implements, + ACTIONS(1037), 22, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + 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_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [18982] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2312), 1, + anon_sym_EQ, + ACTIONS(1039), 15, + anon_sym_as, + 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_LBRACE_PIPE, + ACTIONS(2197), 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(1037), 23, anon_sym_STAR, - ACTIONS(725), 1, + anon_sym_LBRACE, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(727), 1, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_AMP, - ACTIONS(729), 1, + anon_sym_CARET, anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [19048] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(731), 1, + anon_sym_STAR, + ACTIONS(743), 1, + anon_sym_QMARK, ACTIONS(745), 1, - anon_sym_keyof, + anon_sym_AMP, ACTIONS(747), 1, + anon_sym_PIPE, + ACTIONS(763), 1, + anon_sym_keyof, + ACTIONS(765), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1691), 1, + ACTIONS(1678), 1, anon_sym_LT, - ACTIONS(2318), 1, + ACTIONS(2344), 1, anon_sym_DQUOTE, - ACTIONS(2320), 1, + ACTIONS(2346), 1, anon_sym_SQUOTE, - ACTIONS(2554), 1, + ACTIONS(2591), 1, anon_sym_LBRACE, - ACTIONS(2556), 1, + ACTIONS(2593), 1, anon_sym_typeof, - ACTIONS(2558), 1, + ACTIONS(2595), 1, anon_sym_LPAREN, - ACTIONS(2560), 1, + ACTIONS(2597), 1, anon_sym_LBRACK, - ACTIONS(2562), 1, + ACTIONS(2599), 1, anon_sym_new, - ACTIONS(2568), 1, + ACTIONS(2605), 1, sym_number, - ACTIONS(2574), 1, + ACTIONS(2611), 1, sym_readonly, - ACTIONS(2682), 1, + ACTIONS(2712), 1, sym_identifier, - ACTIONS(2684), 1, + ACTIONS(2714), 1, sym_this, - STATE(1947), 1, + STATE(1950), 1, sym_nested_type_identifier, - STATE(1972), 1, + STATE(2010), 1, sym__tuple_type_body, - STATE(2982), 1, + STATE(3007), 1, sym_type_parameters, - STATE(2998), 1, + STATE(3017), 1, sym_nested_identifier, - STATE(3030), 1, + STATE(3065), 1, sym_formal_parameters, - ACTIONS(2564), 2, + ACTIONS(2601), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2572), 2, + ACTIONS(2609), 2, sym_true, sym_false, - STATE(1981), 2, + STATE(2000), 2, sym_string, sym__number, - STATE(2061), 5, + STATE(2001), 5, sym__type, sym_constructor_type, sym_union_type, sym_intersection_type, sym_function_type, - ACTIONS(2566), 6, + ACTIONS(2603), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(1974), 14, + STATE(2003), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -83703,78 +83940,78 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [19414] = 30, + [19164] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(81), 1, - anon_sym_DQUOTE, - ACTIONS(83), 1, - anon_sym_SQUOTE, - ACTIONS(463), 1, + ACTIONS(731), 1, + anon_sym_STAR, + ACTIONS(743), 1, + anon_sym_QMARK, + ACTIONS(745), 1, anon_sym_AMP, - ACTIONS(465), 1, + ACTIONS(747), 1, anon_sym_PIPE, - ACTIONS(829), 1, - anon_sym_new, - ACTIONS(1691), 1, + ACTIONS(763), 1, + anon_sym_keyof, + ACTIONS(765), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1678), 1, anon_sym_LT, - ACTIONS(2508), 1, - sym_identifier, - ACTIONS(2510), 1, - anon_sym_STAR, - ACTIONS(2512), 1, + ACTIONS(2344), 1, + anon_sym_DQUOTE, + ACTIONS(2346), 1, + anon_sym_SQUOTE, + ACTIONS(2591), 1, anon_sym_LBRACE, - ACTIONS(2514), 1, + ACTIONS(2593), 1, anon_sym_typeof, - ACTIONS(2516), 1, + ACTIONS(2595), 1, anon_sym_LPAREN, - ACTIONS(2518), 1, + ACTIONS(2597), 1, anon_sym_LBRACK, - ACTIONS(2522), 1, - anon_sym_QMARK, - ACTIONS(2532), 1, + ACTIONS(2599), 1, + anon_sym_new, + ACTIONS(2605), 1, sym_number, - ACTIONS(2538), 1, + ACTIONS(2611), 1, sym_readonly, - ACTIONS(2540), 1, - anon_sym_keyof, - ACTIONS(2542), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(2694), 1, + ACTIONS(2712), 1, + sym_identifier, + ACTIONS(2714), 1, sym_this, - STATE(1291), 1, + STATE(1950), 1, sym_nested_type_identifier, - STATE(1402), 1, + STATE(2010), 1, sym__tuple_type_body, - STATE(2959), 1, + STATE(3007), 1, sym_type_parameters, - STATE(2996), 1, - sym_formal_parameters, - STATE(3131), 1, + STATE(3017), 1, sym_nested_identifier, - ACTIONS(2528), 2, + STATE(3065), 1, + sym_formal_parameters, + ACTIONS(2601), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2536), 2, + ACTIONS(2609), 2, sym_true, sym_false, - STATE(1399), 2, + STATE(2000), 2, sym_string, sym__number, - STATE(2613), 5, + STATE(1991), 5, sym__type, sym_constructor_type, sym_union_type, sym_intersection_type, sym_function_type, - ACTIONS(2530), 6, + ACTIONS(2603), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(1459), 14, + STATE(2003), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -83789,7 +84026,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [19530] = 30, + [19280] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(427), 1, @@ -83808,46 +84045,46 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(935), 1, sym_readonly, - ACTIONS(1691), 1, + ACTIONS(1678), 1, anon_sym_LT, - ACTIONS(2286), 1, + ACTIONS(2310), 1, anon_sym_LBRACK, - ACTIONS(2624), 1, + ACTIONS(2638), 1, sym_this, - ACTIONS(2696), 1, - sym_identifier, ACTIONS(2698), 1, - anon_sym_typeof, + sym_identifier, ACTIONS(2700), 1, - anon_sym_new, + anon_sym_typeof, ACTIONS(2702), 1, - anon_sym_QMARK, + anon_sym_new, ACTIONS(2704), 1, - anon_sym_AMP, + anon_sym_QMARK, ACTIONS(2706), 1, - anon_sym_PIPE, + anon_sym_AMP, ACTIONS(2708), 1, + anon_sym_PIPE, + ACTIONS(2710), 1, anon_sym_keyof, - STATE(444), 1, + STATE(434), 1, sym__tuple_type_body, - STATE(493), 1, + STATE(482), 1, sym_nested_type_identifier, - STATE(2944), 1, + STATE(2954), 1, sym_type_parameters, - STATE(2999), 1, + STATE(3123), 1, sym_nested_identifier, - STATE(3029), 1, + STATE(3171), 1, sym_formal_parameters, ACTIONS(853), 2, sym_true, sym_false, - ACTIONS(1693), 2, + ACTIONS(1680), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(446), 2, + STATE(433), 2, sym_string, sym__number, - STATE(429), 5, + STATE(508), 5, sym__type, sym_constructor_type, sym_union_type, @@ -83860,7 +84097,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(448), 14, + STATE(432), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -83875,78 +84112,78 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [19646] = 30, + [19396] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(81), 1, - anon_sym_DQUOTE, - ACTIONS(83), 1, - anon_sym_SQUOTE, - ACTIONS(1691), 1, - anon_sym_LT, - ACTIONS(2508), 1, - sym_identifier, - ACTIONS(2510), 1, + ACTIONS(427), 1, anon_sym_STAR, - ACTIONS(2512), 1, - anon_sym_LBRACE, - ACTIONS(2514), 1, - anon_sym_typeof, - ACTIONS(2516), 1, - anon_sym_LPAREN, - ACTIONS(2518), 1, - anon_sym_LBRACK, - ACTIONS(2520), 1, - anon_sym_new, - ACTIONS(2522), 1, + ACTIONS(461), 1, anon_sym_QMARK, - ACTIONS(2524), 1, + ACTIONS(463), 1, anon_sym_AMP, - ACTIONS(2526), 1, + ACTIONS(465), 1, anon_sym_PIPE, - ACTIONS(2532), 1, - sym_number, - ACTIONS(2534), 1, - sym_this, - ACTIONS(2538), 1, - sym_readonly, - ACTIONS(2540), 1, + ACTIONS(495), 1, anon_sym_keyof, - ACTIONS(2542), 1, + ACTIONS(497), 1, anon_sym_LBRACE_PIPE, - STATE(1291), 1, - sym_nested_type_identifier, - STATE(1402), 1, + ACTIONS(815), 1, + anon_sym_typeof, + ACTIONS(817), 1, + anon_sym_LPAREN, + ACTIONS(829), 1, + anon_sym_new, + ACTIONS(845), 1, + anon_sym_DQUOTE, + ACTIONS(847), 1, + anon_sym_SQUOTE, + ACTIONS(849), 1, + sym_number, + ACTIONS(925), 1, + sym_identifier, + ACTIONS(929), 1, + anon_sym_LBRACE, + ACTIONS(935), 1, + sym_readonly, + ACTIONS(1678), 1, + anon_sym_LT, + ACTIONS(2523), 1, + anon_sym_LBRACK, + ACTIONS(2720), 1, + sym_this, + STATE(1519), 1, sym__tuple_type_body, - STATE(2856), 1, + STATE(1917), 1, + sym_nested_type_identifier, + STATE(2916), 1, sym_type_parameters, - STATE(3131), 1, - sym_nested_identifier, - STATE(3175), 1, + STATE(3122), 1, sym_formal_parameters, - ACTIONS(2528), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2536), 2, + STATE(3123), 1, + sym_nested_identifier, + ACTIONS(853), 2, sym_true, sym_false, - STATE(1399), 2, + ACTIONS(1680), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(433), 2, sym_string, sym__number, - STATE(1318), 5, + STATE(2780), 5, sym__type, sym_constructor_type, sym_union_type, sym_intersection_type, sym_function_type, - ACTIONS(2530), 6, + ACTIONS(843), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(1401), 14, + STATE(2541), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -83961,164 +84198,143 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [19762] = 30, + [19512] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(81), 1, - anon_sym_DQUOTE, - ACTIONS(83), 1, - anon_sym_SQUOTE, - ACTIONS(1691), 1, - anon_sym_LT, - ACTIONS(2508), 1, - sym_identifier, - ACTIONS(2510), 1, - anon_sym_STAR, - ACTIONS(2512), 1, - anon_sym_LBRACE, - ACTIONS(2514), 1, - anon_sym_typeof, - ACTIONS(2516), 1, - anon_sym_LPAREN, - ACTIONS(2518), 1, + ACTIONS(2187), 1, + anon_sym_EQ, + ACTIONS(2191), 1, anon_sym_LBRACK, - ACTIONS(2520), 1, - anon_sym_new, - ACTIONS(2522), 1, + ACTIONS(2193), 1, + anon_sym_DOT, + ACTIONS(2195), 1, + anon_sym_QMARK_DOT, + ACTIONS(2240), 1, + anon_sym_EQ_GT, + ACTIONS(1039), 12, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_COLON, + 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, + ACTIONS(2197), 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(1037), 22, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(2524), 1, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_AMP, - ACTIONS(2526), 1, + anon_sym_CARET, anon_sym_PIPE, - ACTIONS(2532), 1, - sym_number, - ACTIONS(2534), 1, - sym_this, - ACTIONS(2538), 1, - sym_readonly, - ACTIONS(2540), 1, - anon_sym_keyof, - ACTIONS(2542), 1, - anon_sym_LBRACE_PIPE, - STATE(1291), 1, - sym_nested_type_identifier, - STATE(1402), 1, - sym__tuple_type_body, - STATE(2856), 1, - sym_type_parameters, - STATE(3131), 1, - sym_nested_identifier, - STATE(3175), 1, - sym_formal_parameters, - ACTIONS(2528), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2536), 2, - sym_true, - sym_false, - STATE(1399), 2, - sym_string, - sym__number, - STATE(1329), 5, - sym__type, - sym_constructor_type, - sym_union_type, - sym_intersection_type, - sym_function_type, - ACTIONS(2530), 6, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - STATE(1401), 14, - sym__primary_type, - sym_conditional_type, - sym_generic_type, - sym_type_query, - sym_index_type_query, - sym_lookup_type, - sym_literal_type, - sym_existential_type, - sym_flow_maybe_type, - sym_parenthesized_type, - sym_predefined_type, - sym_object_type, - sym_array_type, - sym_tuple_type, - [19878] = 30, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [19586] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(475), 1, - anon_sym_DQUOTE, - ACTIONS(477), 1, - anon_sym_SQUOTE, - ACTIONS(1691), 1, - anon_sym_LT, - ACTIONS(2456), 1, - sym_identifier, - ACTIONS(2458), 1, + ACTIONS(427), 1, anon_sym_STAR, - ACTIONS(2460), 1, - anon_sym_LBRACE, - ACTIONS(2462), 1, - anon_sym_typeof, - ACTIONS(2464), 1, - anon_sym_LPAREN, - ACTIONS(2466), 1, - anon_sym_LBRACK, - ACTIONS(2468), 1, - anon_sym_new, - ACTIONS(2470), 1, + ACTIONS(461), 1, anon_sym_QMARK, - ACTIONS(2472), 1, + ACTIONS(463), 1, anon_sym_AMP, - ACTIONS(2474), 1, + ACTIONS(465), 1, anon_sym_PIPE, - ACTIONS(2480), 1, + ACTIONS(495), 1, + anon_sym_keyof, + ACTIONS(497), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(815), 1, + anon_sym_typeof, + ACTIONS(817), 1, + anon_sym_LPAREN, + ACTIONS(829), 1, + anon_sym_new, + ACTIONS(845), 1, + anon_sym_DQUOTE, + ACTIONS(847), 1, + anon_sym_SQUOTE, + ACTIONS(849), 1, sym_number, - ACTIONS(2482), 1, - sym_this, - ACTIONS(2486), 1, + ACTIONS(925), 1, + sym_identifier, + ACTIONS(929), 1, + anon_sym_LBRACE, + ACTIONS(935), 1, sym_readonly, - ACTIONS(2488), 1, - anon_sym_keyof, - ACTIONS(2490), 1, - anon_sym_LBRACE_PIPE, - STATE(1003), 1, - sym_nested_type_identifier, - STATE(1036), 1, + ACTIONS(1678), 1, + anon_sym_LT, + ACTIONS(2310), 1, + anon_sym_LBRACK, + ACTIONS(2638), 1, + sym_this, + STATE(434), 1, sym__tuple_type_body, - STATE(2953), 1, + STATE(1917), 1, + sym_nested_type_identifier, + STATE(2916), 1, sym_type_parameters, - STATE(3027), 1, - sym_nested_identifier, - STATE(3083), 1, + STATE(3122), 1, sym_formal_parameters, - ACTIONS(2476), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2484), 2, + STATE(3123), 1, + sym_nested_identifier, + ACTIONS(853), 2, sym_true, sym_false, - STATE(1034), 2, + ACTIONS(1680), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(433), 2, sym_string, sym__number, - STATE(1070), 5, + STATE(2160), 5, sym__type, sym_constructor_type, sym_union_type, sym_intersection_type, sym_function_type, - ACTIONS(2478), 6, + ACTIONS(843), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(1035), 14, + STATE(432), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -84133,78 +84349,78 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [19994] = 30, + [19702] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(81), 1, + ACTIONS(731), 1, + anon_sym_STAR, + ACTIONS(743), 1, + anon_sym_QMARK, + ACTIONS(745), 1, + anon_sym_AMP, + ACTIONS(747), 1, + anon_sym_PIPE, + ACTIONS(763), 1, + anon_sym_keyof, + ACTIONS(765), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1678), 1, + anon_sym_LT, + ACTIONS(2344), 1, anon_sym_DQUOTE, - ACTIONS(83), 1, + ACTIONS(2346), 1, anon_sym_SQUOTE, - ACTIONS(1691), 1, - anon_sym_LT, - ACTIONS(2508), 1, - sym_identifier, - ACTIONS(2510), 1, - anon_sym_STAR, - ACTIONS(2512), 1, + ACTIONS(2591), 1, anon_sym_LBRACE, - ACTIONS(2514), 1, + ACTIONS(2593), 1, anon_sym_typeof, - ACTIONS(2516), 1, + ACTIONS(2595), 1, anon_sym_LPAREN, - ACTIONS(2518), 1, + ACTIONS(2597), 1, anon_sym_LBRACK, - ACTIONS(2520), 1, + ACTIONS(2599), 1, anon_sym_new, - ACTIONS(2522), 1, - anon_sym_QMARK, - ACTIONS(2524), 1, - anon_sym_AMP, - ACTIONS(2526), 1, - anon_sym_PIPE, - ACTIONS(2532), 1, + ACTIONS(2605), 1, sym_number, - ACTIONS(2534), 1, - sym_this, - ACTIONS(2538), 1, + ACTIONS(2611), 1, sym_readonly, - ACTIONS(2540), 1, - anon_sym_keyof, - ACTIONS(2542), 1, - anon_sym_LBRACE_PIPE, - STATE(1291), 1, + ACTIONS(2712), 1, + sym_identifier, + ACTIONS(2714), 1, + sym_this, + STATE(1950), 1, sym_nested_type_identifier, - STATE(1402), 1, + STATE(2010), 1, sym__tuple_type_body, - STATE(2856), 1, + STATE(3007), 1, sym_type_parameters, - STATE(3131), 1, + STATE(3017), 1, sym_nested_identifier, - STATE(3175), 1, + STATE(3065), 1, sym_formal_parameters, - ACTIONS(2528), 2, + ACTIONS(2601), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2536), 2, + ACTIONS(2609), 2, sym_true, sym_false, - STATE(1399), 2, + STATE(2000), 2, sym_string, sym__number, - STATE(1460), 5, + STATE(2002), 5, sym__type, sym_constructor_type, sym_union_type, sym_intersection_type, sym_function_type, - ACTIONS(2530), 6, + ACTIONS(2603), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(1401), 14, + STATE(2003), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -84219,65 +84435,65 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [20110] = 30, + [19818] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(427), 1, anon_sym_STAR, + ACTIONS(461), 1, + anon_sym_QMARK, + ACTIONS(463), 1, + anon_sym_AMP, + ACTIONS(465), 1, + anon_sym_PIPE, + ACTIONS(495), 1, + anon_sym_keyof, ACTIONS(497), 1, anon_sym_LBRACE_PIPE, + ACTIONS(815), 1, + anon_sym_typeof, ACTIONS(817), 1, anon_sym_LPAREN, + ACTIONS(829), 1, + anon_sym_new, ACTIONS(845), 1, anon_sym_DQUOTE, ACTIONS(847), 1, anon_sym_SQUOTE, ACTIONS(849), 1, sym_number, + ACTIONS(925), 1, + sym_identifier, ACTIONS(929), 1, anon_sym_LBRACE, ACTIONS(935), 1, sym_readonly, - ACTIONS(1691), 1, + ACTIONS(1678), 1, anon_sym_LT, - ACTIONS(2286), 1, + ACTIONS(2310), 1, anon_sym_LBRACK, - ACTIONS(2624), 1, + ACTIONS(2638), 1, sym_this, - ACTIONS(2696), 1, - sym_identifier, - ACTIONS(2698), 1, - anon_sym_typeof, - ACTIONS(2700), 1, - anon_sym_new, - ACTIONS(2702), 1, - anon_sym_QMARK, - ACTIONS(2704), 1, - anon_sym_AMP, - ACTIONS(2706), 1, - anon_sym_PIPE, - ACTIONS(2708), 1, - anon_sym_keyof, - STATE(444), 1, + STATE(434), 1, sym__tuple_type_body, - STATE(493), 1, + STATE(1917), 1, sym_nested_type_identifier, - STATE(2944), 1, + STATE(2916), 1, sym_type_parameters, - STATE(2999), 1, - sym_nested_identifier, - STATE(3029), 1, + STATE(3122), 1, sym_formal_parameters, + STATE(3123), 1, + sym_nested_identifier, ACTIONS(853), 2, sym_true, sym_false, - ACTIONS(1693), 2, + ACTIONS(1680), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(446), 2, + STATE(433), 2, sym_string, sym__number, - STATE(430), 5, + STATE(2602), 5, sym__type, sym_constructor_type, sym_union_type, @@ -84290,7 +84506,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(448), 14, + STATE(432), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -84305,137 +84521,78 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [20226] = 3, + [19934] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(2224), 24, + ACTIONS(427), 1, anon_sym_STAR, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(461), 1, anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(463), 1, anon_sym_AMP, - anon_sym_CARET, + ACTIONS(465), 1, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - ACTIONS(2226), 30, - anon_sym_as, - anon_sym_COMMA, - 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, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, + ACTIONS(495), 1, + anon_sym_keyof, + ACTIONS(497), 1, anon_sym_LBRACE_PIPE, - [20288] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(475), 1, + ACTIONS(815), 1, + anon_sym_typeof, + ACTIONS(817), 1, + anon_sym_LPAREN, + ACTIONS(829), 1, + anon_sym_new, + ACTIONS(845), 1, anon_sym_DQUOTE, - ACTIONS(477), 1, + ACTIONS(847), 1, anon_sym_SQUOTE, - ACTIONS(1691), 1, - anon_sym_LT, - ACTIONS(2456), 1, + ACTIONS(849), 1, + sym_number, + ACTIONS(925), 1, sym_identifier, - ACTIONS(2458), 1, - anon_sym_STAR, - ACTIONS(2460), 1, + ACTIONS(929), 1, anon_sym_LBRACE, - ACTIONS(2462), 1, - anon_sym_typeof, - ACTIONS(2464), 1, - anon_sym_LPAREN, - ACTIONS(2466), 1, + ACTIONS(935), 1, + sym_readonly, + ACTIONS(1678), 1, + anon_sym_LT, + ACTIONS(2310), 1, anon_sym_LBRACK, - ACTIONS(2468), 1, - anon_sym_new, - ACTIONS(2470), 1, - anon_sym_QMARK, - ACTIONS(2472), 1, - anon_sym_AMP, - ACTIONS(2474), 1, - anon_sym_PIPE, - ACTIONS(2480), 1, - sym_number, - ACTIONS(2482), 1, + ACTIONS(2638), 1, sym_this, - ACTIONS(2486), 1, - sym_readonly, - ACTIONS(2488), 1, - anon_sym_keyof, - ACTIONS(2490), 1, - anon_sym_LBRACE_PIPE, - STATE(1003), 1, - sym_nested_type_identifier, - STATE(1036), 1, + STATE(434), 1, sym__tuple_type_body, - STATE(2953), 1, + STATE(1917), 1, + sym_nested_type_identifier, + STATE(2916), 1, sym_type_parameters, - STATE(3027), 1, - sym_nested_identifier, - STATE(3083), 1, + STATE(3122), 1, sym_formal_parameters, - ACTIONS(2476), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2484), 2, + STATE(3123), 1, + sym_nested_identifier, + ACTIONS(853), 2, sym_true, sym_false, - STATE(1034), 2, + ACTIONS(1680), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(433), 2, sym_string, sym__number, - STATE(1072), 5, + STATE(2244), 5, sym__type, sym_constructor_type, sym_union_type, sym_intersection_type, sym_function_type, - ACTIONS(2478), 6, + ACTIONS(843), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(1035), 14, + STATE(432), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -84450,7 +84607,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [20404] = 30, + [20050] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(427), 1, @@ -84483,32 +84640,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(935), 1, sym_readonly, - ACTIONS(1691), 1, + ACTIONS(1678), 1, anon_sym_LT, - ACTIONS(2286), 1, + ACTIONS(2310), 1, anon_sym_LBRACK, - ACTIONS(2624), 1, + ACTIONS(2638), 1, sym_this, - STATE(444), 1, + STATE(434), 1, sym__tuple_type_body, - STATE(1913), 1, + STATE(1917), 1, sym_nested_type_identifier, - STATE(2959), 1, + STATE(2916), 1, sym_type_parameters, - STATE(2996), 1, + STATE(3122), 1, sym_formal_parameters, - STATE(2999), 1, + STATE(3123), 1, sym_nested_identifier, ACTIONS(853), 2, sym_true, sym_false, - ACTIONS(1693), 2, + ACTIONS(1680), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(446), 2, + STATE(433), 2, sym_string, sym__number, - STATE(2203), 5, + STATE(423), 5, sym__type, sym_constructor_type, sym_union_type, @@ -84521,7 +84678,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(448), 14, + STATE(432), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -84536,7 +84693,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [20520] = 30, + [20166] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(427), 1, @@ -84569,32 +84726,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(935), 1, sym_readonly, - ACTIONS(1691), 1, + ACTIONS(1678), 1, anon_sym_LT, - ACTIONS(2286), 1, + ACTIONS(2310), 1, anon_sym_LBRACK, - ACTIONS(2624), 1, + ACTIONS(2638), 1, sym_this, - STATE(444), 1, + STATE(434), 1, sym__tuple_type_body, - STATE(1913), 1, + STATE(1917), 1, sym_nested_type_identifier, - STATE(2959), 1, + STATE(2916), 1, sym_type_parameters, - STATE(2996), 1, + STATE(3122), 1, sym_formal_parameters, - STATE(2999), 1, + STATE(3123), 1, sym_nested_identifier, ACTIONS(853), 2, sym_true, sym_false, - ACTIONS(1693), 2, + ACTIONS(1680), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(446), 2, + STATE(433), 2, sym_string, sym__number, - STATE(2590), 5, + STATE(2176), 5, sym__type, sym_constructor_type, sym_union_type, @@ -84607,7 +84764,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(448), 14, + STATE(432), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -84622,78 +84779,78 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [20636] = 30, + [20282] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(713), 1, + ACTIONS(427), 1, anon_sym_STAR, - ACTIONS(725), 1, + ACTIONS(461), 1, anon_sym_QMARK, - ACTIONS(727), 1, + ACTIONS(463), 1, anon_sym_AMP, - ACTIONS(729), 1, + ACTIONS(465), 1, anon_sym_PIPE, - ACTIONS(745), 1, + ACTIONS(495), 1, anon_sym_keyof, - ACTIONS(747), 1, + ACTIONS(497), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1691), 1, - anon_sym_LT, - ACTIONS(2318), 1, - anon_sym_DQUOTE, - ACTIONS(2320), 1, - anon_sym_SQUOTE, - ACTIONS(2554), 1, - anon_sym_LBRACE, - ACTIONS(2556), 1, + ACTIONS(815), 1, anon_sym_typeof, - ACTIONS(2558), 1, + ACTIONS(817), 1, anon_sym_LPAREN, - ACTIONS(2560), 1, - anon_sym_LBRACK, - ACTIONS(2562), 1, + ACTIONS(829), 1, anon_sym_new, - ACTIONS(2568), 1, + ACTIONS(845), 1, + anon_sym_DQUOTE, + ACTIONS(847), 1, + anon_sym_SQUOTE, + ACTIONS(849), 1, sym_number, - ACTIONS(2574), 1, - sym_readonly, - ACTIONS(2682), 1, + ACTIONS(925), 1, sym_identifier, - ACTIONS(2684), 1, + ACTIONS(929), 1, + anon_sym_LBRACE, + ACTIONS(935), 1, + sym_readonly, + ACTIONS(1678), 1, + anon_sym_LT, + ACTIONS(2310), 1, + anon_sym_LBRACK, + ACTIONS(2638), 1, sym_this, - STATE(1947), 1, - sym_nested_type_identifier, - STATE(1972), 1, + STATE(434), 1, sym__tuple_type_body, - STATE(2982), 1, + STATE(1917), 1, + sym_nested_type_identifier, + STATE(2916), 1, sym_type_parameters, - STATE(2998), 1, - sym_nested_identifier, - STATE(3030), 1, + STATE(3122), 1, sym_formal_parameters, - ACTIONS(2564), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2572), 2, + STATE(3123), 1, + sym_nested_identifier, + ACTIONS(853), 2, sym_true, sym_false, - STATE(1981), 2, + ACTIONS(1680), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(433), 2, sym_string, sym__number, - STATE(2425), 5, + STATE(420), 5, sym__type, sym_constructor_type, sym_union_type, sym_intersection_type, sym_function_type, - ACTIONS(2566), 6, + ACTIONS(843), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(1974), 14, + STATE(432), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -84708,78 +84865,78 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [20752] = 30, + [20398] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(81), 1, + ACTIONS(427), 1, + anon_sym_STAR, + ACTIONS(497), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(817), 1, + anon_sym_LPAREN, + ACTIONS(845), 1, anon_sym_DQUOTE, - ACTIONS(83), 1, + ACTIONS(847), 1, anon_sym_SQUOTE, - ACTIONS(1691), 1, + ACTIONS(849), 1, + sym_number, + ACTIONS(929), 1, + anon_sym_LBRACE, + ACTIONS(935), 1, + sym_readonly, + ACTIONS(1678), 1, anon_sym_LT, - ACTIONS(2508), 1, + ACTIONS(2310), 1, + anon_sym_LBRACK, + ACTIONS(2638), 1, + sym_this, + ACTIONS(2698), 1, sym_identifier, - ACTIONS(2510), 1, - anon_sym_STAR, - ACTIONS(2512), 1, - anon_sym_LBRACE, - ACTIONS(2514), 1, + ACTIONS(2700), 1, anon_sym_typeof, - ACTIONS(2516), 1, - anon_sym_LPAREN, - ACTIONS(2518), 1, - anon_sym_LBRACK, - ACTIONS(2520), 1, + ACTIONS(2702), 1, anon_sym_new, - ACTIONS(2522), 1, + ACTIONS(2704), 1, anon_sym_QMARK, - ACTIONS(2524), 1, + ACTIONS(2706), 1, anon_sym_AMP, - ACTIONS(2526), 1, + ACTIONS(2708), 1, anon_sym_PIPE, - ACTIONS(2532), 1, - sym_number, - ACTIONS(2534), 1, - sym_this, - ACTIONS(2538), 1, - sym_readonly, - ACTIONS(2540), 1, + ACTIONS(2710), 1, anon_sym_keyof, - ACTIONS(2542), 1, - anon_sym_LBRACE_PIPE, - STATE(1291), 1, - sym_nested_type_identifier, - STATE(1402), 1, + STATE(434), 1, sym__tuple_type_body, - STATE(2856), 1, + STATE(482), 1, + sym_nested_type_identifier, + STATE(2954), 1, sym_type_parameters, - STATE(3131), 1, + STATE(3123), 1, sym_nested_identifier, - STATE(3175), 1, + STATE(3171), 1, sym_formal_parameters, - ACTIONS(2528), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2536), 2, + ACTIONS(853), 2, sym_true, sym_false, - STATE(1399), 2, + ACTIONS(1680), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(433), 2, sym_string, sym__number, - STATE(1463), 5, + STATE(420), 5, sym__type, sym_constructor_type, sym_union_type, sym_intersection_type, sym_function_type, - ACTIONS(2530), 6, + ACTIONS(843), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(1401), 14, + STATE(432), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -84794,166 +84951,78 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [20868] = 32, - ACTIONS(3), 1, - sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(123), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1691), 1, - anon_sym_LT, - ACTIONS(1722), 1, - anon_sym_LBRACE, - ACTIONS(2300), 1, - anon_sym_STAR, - ACTIONS(2306), 1, - anon_sym_LPAREN, - ACTIONS(2310), 1, - anon_sym_LBRACK, - ACTIONS(2314), 1, - anon_sym_new, - ACTIONS(2316), 1, - anon_sym_DASH, - ACTIONS(2318), 1, - anon_sym_DQUOTE, - ACTIONS(2320), 1, - anon_sym_SQUOTE, - ACTIONS(2322), 1, - sym_number, - ACTIONS(2712), 1, - anon_sym_export, - ACTIONS(2716), 1, - anon_sym_async, - ACTIONS(2718), 1, - anon_sym_static, - ACTIONS(2724), 1, - sym_readonly, - STATE(1876), 1, - sym_accessibility_modifier, - STATE(1905), 1, - sym_decorator, - STATE(2020), 1, - sym_formal_parameters, - STATE(2406), 1, - sym__call_signature, - STATE(2485), 1, - aux_sym_export_statement_repeat1, - STATE(2862), 1, - sym_type_parameters, - STATE(3086), 1, - sym_array, - STATE(3204), 1, - sym_object, - ACTIONS(2714), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(2720), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(2722), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(1937), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(2786), 4, - sym_assignment_pattern, - sym_spread_element, - sym_method_definition, - sym_pair, - STATE(2178), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(2710), 10, - anon_sym_namespace, - anon_sym_type, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [20988] = 30, + [20514] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(427), 1, + ACTIONS(731), 1, anon_sym_STAR, - ACTIONS(461), 1, + ACTIONS(743), 1, anon_sym_QMARK, - ACTIONS(463), 1, + ACTIONS(745), 1, anon_sym_AMP, - ACTIONS(465), 1, + ACTIONS(747), 1, anon_sym_PIPE, - ACTIONS(495), 1, + ACTIONS(763), 1, anon_sym_keyof, - ACTIONS(497), 1, + ACTIONS(765), 1, anon_sym_LBRACE_PIPE, - ACTIONS(815), 1, + ACTIONS(1678), 1, + anon_sym_LT, + ACTIONS(2344), 1, + anon_sym_DQUOTE, + ACTIONS(2346), 1, + anon_sym_SQUOTE, + ACTIONS(2591), 1, + anon_sym_LBRACE, + ACTIONS(2593), 1, anon_sym_typeof, - ACTIONS(817), 1, + ACTIONS(2595), 1, anon_sym_LPAREN, - ACTIONS(829), 1, + ACTIONS(2597), 1, + anon_sym_LBRACK, + ACTIONS(2599), 1, anon_sym_new, - ACTIONS(845), 1, - anon_sym_DQUOTE, - ACTIONS(847), 1, - anon_sym_SQUOTE, - ACTIONS(849), 1, + ACTIONS(2605), 1, sym_number, - ACTIONS(925), 1, - sym_identifier, - ACTIONS(929), 1, - anon_sym_LBRACE, - ACTIONS(935), 1, + ACTIONS(2611), 1, sym_readonly, - ACTIONS(1691), 1, - anon_sym_LT, - ACTIONS(2286), 1, - anon_sym_LBRACK, - ACTIONS(2624), 1, + ACTIONS(2712), 1, + sym_identifier, + ACTIONS(2714), 1, sym_this, - STATE(444), 1, - sym__tuple_type_body, - STATE(1913), 1, + STATE(1950), 1, sym_nested_type_identifier, - STATE(2959), 1, + STATE(2010), 1, + sym__tuple_type_body, + STATE(3007), 1, sym_type_parameters, - STATE(2996), 1, - sym_formal_parameters, - STATE(2999), 1, + STATE(3017), 1, sym_nested_identifier, - ACTIONS(853), 2, - sym_true, - sym_false, - ACTIONS(1693), 2, + STATE(3065), 1, + sym_formal_parameters, + ACTIONS(2601), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(446), 2, + ACTIONS(2609), 2, + sym_true, + sym_false, + STATE(2000), 2, sym_string, sym__number, - STATE(2579), 5, + STATE(1980), 5, sym__type, sym_constructor_type, sym_union_type, sym_intersection_type, sym_function_type, - ACTIONS(843), 6, + ACTIONS(2603), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(448), 14, + STATE(2003), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -84968,65 +85037,65 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [21104] = 30, + [20630] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(427), 1, anon_sym_STAR, - ACTIONS(461), 1, - anon_sym_QMARK, - ACTIONS(463), 1, - anon_sym_AMP, - ACTIONS(465), 1, - anon_sym_PIPE, - ACTIONS(495), 1, - anon_sym_keyof, ACTIONS(497), 1, anon_sym_LBRACE_PIPE, - ACTIONS(815), 1, - anon_sym_typeof, ACTIONS(817), 1, anon_sym_LPAREN, - ACTIONS(829), 1, - anon_sym_new, ACTIONS(845), 1, anon_sym_DQUOTE, ACTIONS(847), 1, anon_sym_SQUOTE, ACTIONS(849), 1, sym_number, - ACTIONS(925), 1, - sym_identifier, ACTIONS(929), 1, anon_sym_LBRACE, ACTIONS(935), 1, sym_readonly, - ACTIONS(1691), 1, + ACTIONS(1678), 1, anon_sym_LT, - ACTIONS(2590), 1, + ACTIONS(2310), 1, anon_sym_LBRACK, - ACTIONS(2726), 1, + ACTIONS(2638), 1, sym_this, - STATE(1525), 1, + ACTIONS(2698), 1, + sym_identifier, + ACTIONS(2700), 1, + anon_sym_typeof, + ACTIONS(2702), 1, + anon_sym_new, + ACTIONS(2704), 1, + anon_sym_QMARK, + ACTIONS(2706), 1, + anon_sym_AMP, + ACTIONS(2708), 1, + anon_sym_PIPE, + ACTIONS(2710), 1, + anon_sym_keyof, + STATE(434), 1, sym__tuple_type_body, - STATE(1913), 1, + STATE(482), 1, sym_nested_type_identifier, - STATE(2959), 1, + STATE(2954), 1, sym_type_parameters, - STATE(2996), 1, - sym_formal_parameters, - STATE(2999), 1, + STATE(3123), 1, sym_nested_identifier, + STATE(3171), 1, + sym_formal_parameters, ACTIONS(853), 2, sym_true, sym_false, - ACTIONS(1693), 2, + ACTIONS(1680), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(446), 2, + STATE(433), 2, sym_string, sym__number, - STATE(2626), 5, + STATE(423), 5, sym__type, sym_constructor_type, sym_union_type, @@ -85039,7 +85108,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2540), 14, + STATE(432), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -85054,78 +85123,78 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [21220] = 30, + [20746] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(427), 1, - anon_sym_STAR, - ACTIONS(461), 1, - anon_sym_QMARK, - ACTIONS(463), 1, - anon_sym_AMP, - ACTIONS(465), 1, - anon_sym_PIPE, - ACTIONS(495), 1, - anon_sym_keyof, - ACTIONS(497), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(815), 1, - anon_sym_typeof, - ACTIONS(817), 1, - anon_sym_LPAREN, - ACTIONS(829), 1, - anon_sym_new, - ACTIONS(845), 1, + ACTIONS(81), 1, anon_sym_DQUOTE, - ACTIONS(847), 1, + ACTIONS(83), 1, anon_sym_SQUOTE, - ACTIONS(849), 1, - sym_number, - ACTIONS(925), 1, - sym_identifier, - ACTIONS(929), 1, - anon_sym_LBRACE, - ACTIONS(935), 1, - sym_readonly, - ACTIONS(1691), 1, + ACTIONS(1678), 1, anon_sym_LT, - ACTIONS(2286), 1, + ACTIONS(2472), 1, + sym_identifier, + ACTIONS(2474), 1, + anon_sym_STAR, + ACTIONS(2476), 1, + anon_sym_LBRACE, + ACTIONS(2478), 1, + anon_sym_typeof, + ACTIONS(2480), 1, + anon_sym_LPAREN, + ACTIONS(2482), 1, anon_sym_LBRACK, - ACTIONS(2624), 1, + ACTIONS(2484), 1, + anon_sym_new, + ACTIONS(2486), 1, + anon_sym_QMARK, + ACTIONS(2488), 1, + anon_sym_AMP, + ACTIONS(2490), 1, + anon_sym_PIPE, + ACTIONS(2496), 1, + sym_number, + ACTIONS(2498), 1, sym_this, - STATE(444), 1, - sym__tuple_type_body, - STATE(1913), 1, + ACTIONS(2502), 1, + sym_readonly, + ACTIONS(2504), 1, + anon_sym_keyof, + ACTIONS(2506), 1, + anon_sym_LBRACE_PIPE, + STATE(1231), 1, sym_nested_type_identifier, - STATE(2959), 1, + STATE(1412), 1, + sym__tuple_type_body, + STATE(2874), 1, sym_type_parameters, - STATE(2996), 1, + STATE(3081), 1, sym_formal_parameters, - STATE(2999), 1, + STATE(3130), 1, sym_nested_identifier, - ACTIONS(853), 2, - sym_true, - sym_false, - ACTIONS(1693), 2, + ACTIONS(2492), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(446), 2, + ACTIONS(2500), 2, + sym_true, + sym_false, + STATE(1409), 2, sym_string, sym__number, - STATE(2143), 5, + STATE(1467), 5, sym__type, sym_constructor_type, sym_union_type, sym_intersection_type, sym_function_type, - ACTIONS(843), 6, + ACTIONS(2494), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(448), 14, + STATE(1411), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -85140,137 +85209,78 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [21336] = 3, + [20862] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(2224), 23, + ACTIONS(731), 1, anon_sym_STAR, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(743), 1, anon_sym_QMARK, - 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_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - ACTIONS(2226), 31, - 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_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, - [21398] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(427), 1, - anon_sym_STAR, - ACTIONS(463), 1, + ACTIONS(745), 1, anon_sym_AMP, - ACTIONS(465), 1, + ACTIONS(747), 1, anon_sym_PIPE, - ACTIONS(497), 1, + ACTIONS(763), 1, + anon_sym_keyof, + ACTIONS(765), 1, anon_sym_LBRACE_PIPE, - ACTIONS(817), 1, - anon_sym_LPAREN, - ACTIONS(829), 1, - anon_sym_new, - ACTIONS(845), 1, + ACTIONS(1678), 1, + anon_sym_LT, + ACTIONS(2344), 1, anon_sym_DQUOTE, - ACTIONS(847), 1, + ACTIONS(2346), 1, anon_sym_SQUOTE, - ACTIONS(849), 1, - sym_number, - ACTIONS(929), 1, + ACTIONS(2591), 1, anon_sym_LBRACE, - ACTIONS(935), 1, - sym_readonly, - ACTIONS(1691), 1, - anon_sym_LT, - ACTIONS(2286), 1, + ACTIONS(2593), 1, + anon_sym_typeof, + ACTIONS(2595), 1, + anon_sym_LPAREN, + ACTIONS(2597), 1, anon_sym_LBRACK, - ACTIONS(2688), 1, - sym_this, - ACTIONS(2696), 1, + ACTIONS(2599), 1, + anon_sym_new, + ACTIONS(2605), 1, + sym_number, + ACTIONS(2611), 1, + sym_readonly, + ACTIONS(2712), 1, sym_identifier, - ACTIONS(2698), 1, - anon_sym_typeof, - ACTIONS(2702), 1, - anon_sym_QMARK, - ACTIONS(2708), 1, - anon_sym_keyof, - STATE(444), 1, - sym__tuple_type_body, - STATE(493), 1, + ACTIONS(2714), 1, + sym_this, + STATE(1950), 1, sym_nested_type_identifier, - STATE(2959), 1, + STATE(2010), 1, + sym__tuple_type_body, + STATE(3007), 1, sym_type_parameters, - STATE(2996), 1, - sym_formal_parameters, - STATE(2999), 1, + STATE(3017), 1, sym_nested_identifier, - ACTIONS(853), 2, - sym_true, - sym_false, - ACTIONS(1693), 2, + STATE(3065), 1, + sym_formal_parameters, + ACTIONS(2601), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(446), 2, + ACTIONS(2609), 2, + sym_true, + sym_false, + STATE(2000), 2, sym_string, sym__number, - STATE(2607), 5, + STATE(2422), 5, sym__type, sym_constructor_type, sym_union_type, sym_intersection_type, sym_function_type, - ACTIONS(843), 6, + ACTIONS(2603), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(431), 14, + STATE(2003), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -85285,78 +85295,78 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [21514] = 30, + [20978] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(713), 1, + ACTIONS(731), 1, anon_sym_STAR, - ACTIONS(725), 1, + ACTIONS(743), 1, anon_sym_QMARK, - ACTIONS(727), 1, + ACTIONS(745), 1, anon_sym_AMP, - ACTIONS(729), 1, + ACTIONS(747), 1, anon_sym_PIPE, - ACTIONS(745), 1, + ACTIONS(763), 1, anon_sym_keyof, - ACTIONS(747), 1, + ACTIONS(765), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1691), 1, + ACTIONS(1678), 1, anon_sym_LT, - ACTIONS(2318), 1, + ACTIONS(2344), 1, anon_sym_DQUOTE, - ACTIONS(2320), 1, + ACTIONS(2346), 1, anon_sym_SQUOTE, - ACTIONS(2554), 1, + ACTIONS(2591), 1, anon_sym_LBRACE, - ACTIONS(2556), 1, + ACTIONS(2593), 1, anon_sym_typeof, - ACTIONS(2558), 1, + ACTIONS(2595), 1, anon_sym_LPAREN, - ACTIONS(2560), 1, + ACTIONS(2597), 1, anon_sym_LBRACK, - ACTIONS(2562), 1, + ACTIONS(2599), 1, anon_sym_new, - ACTIONS(2568), 1, + ACTIONS(2605), 1, sym_number, - ACTIONS(2574), 1, + ACTIONS(2611), 1, sym_readonly, - ACTIONS(2682), 1, + ACTIONS(2712), 1, sym_identifier, - ACTIONS(2684), 1, + ACTIONS(2714), 1, sym_this, - STATE(1947), 1, + STATE(1950), 1, sym_nested_type_identifier, - STATE(1972), 1, + STATE(2010), 1, sym__tuple_type_body, - STATE(2982), 1, + STATE(3007), 1, sym_type_parameters, - STATE(2998), 1, + STATE(3017), 1, sym_nested_identifier, - STATE(3030), 1, + STATE(3065), 1, sym_formal_parameters, - ACTIONS(2564), 2, + ACTIONS(2601), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2572), 2, + ACTIONS(2609), 2, sym_true, sym_false, - STATE(1981), 2, + STATE(2000), 2, sym_string, sym__number, - STATE(2009), 5, + STATE(1990), 5, sym__type, sym_constructor_type, sym_union_type, sym_intersection_type, sym_function_type, - ACTIONS(2566), 6, + ACTIONS(2603), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(1974), 14, + STATE(2003), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -85371,7 +85381,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [21630] = 30, + [21094] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(427), 1, @@ -85404,32 +85414,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(935), 1, sym_readonly, - ACTIONS(1691), 1, + ACTIONS(1678), 1, anon_sym_LT, - ACTIONS(2518), 1, + ACTIONS(2310), 1, anon_sym_LBRACK, - ACTIONS(2728), 1, + ACTIONS(2638), 1, sym_this, - STATE(1466), 1, + STATE(434), 1, sym__tuple_type_body, - STATE(1913), 1, + STATE(1917), 1, sym_nested_type_identifier, - STATE(2959), 1, + STATE(2916), 1, sym_type_parameters, - STATE(2996), 1, + STATE(3122), 1, sym_formal_parameters, - STATE(2999), 1, + STATE(3123), 1, sym_nested_identifier, ACTIONS(853), 2, sym_true, sym_false, - ACTIONS(1693), 2, + ACTIONS(1680), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(446), 2, + STATE(433), 2, sym_string, sym__number, - STATE(2626), 5, + STATE(2514), 5, sym__type, sym_constructor_type, sym_union_type, @@ -85442,7 +85452,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2503), 14, + STATE(432), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -85457,78 +85467,78 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [21746] = 30, + [21210] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(713), 1, - anon_sym_STAR, - ACTIONS(725), 1, - anon_sym_QMARK, - ACTIONS(727), 1, - anon_sym_AMP, - ACTIONS(729), 1, - anon_sym_PIPE, - ACTIONS(745), 1, - anon_sym_keyof, - ACTIONS(747), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1691), 1, - anon_sym_LT, - ACTIONS(2318), 1, + ACTIONS(711), 1, anon_sym_DQUOTE, - ACTIONS(2320), 1, + ACTIONS(713), 1, anon_sym_SQUOTE, - ACTIONS(2554), 1, + ACTIONS(1678), 1, + anon_sym_LT, + ACTIONS(2513), 1, + sym_identifier, + ACTIONS(2515), 1, + anon_sym_STAR, + ACTIONS(2517), 1, anon_sym_LBRACE, - ACTIONS(2556), 1, + ACTIONS(2519), 1, anon_sym_typeof, - ACTIONS(2558), 1, + ACTIONS(2521), 1, anon_sym_LPAREN, - ACTIONS(2560), 1, + ACTIONS(2523), 1, anon_sym_LBRACK, - ACTIONS(2562), 1, + ACTIONS(2525), 1, anon_sym_new, - ACTIONS(2568), 1, + ACTIONS(2527), 1, + anon_sym_QMARK, + ACTIONS(2529), 1, + anon_sym_AMP, + ACTIONS(2531), 1, + anon_sym_PIPE, + ACTIONS(2537), 1, sym_number, - ACTIONS(2574), 1, - sym_readonly, - ACTIONS(2682), 1, - sym_identifier, - ACTIONS(2684), 1, + ACTIONS(2539), 1, sym_this, - STATE(1947), 1, + ACTIONS(2543), 1, + sym_readonly, + ACTIONS(2545), 1, + anon_sym_keyof, + ACTIONS(2547), 1, + anon_sym_LBRACE_PIPE, + STATE(1327), 1, sym_nested_type_identifier, - STATE(1972), 1, + STATE(1528), 1, sym__tuple_type_body, - STATE(2982), 1, + STATE(2941), 1, sym_type_parameters, - STATE(2998), 1, + STATE(3062), 1, sym_nested_identifier, - STATE(3030), 1, + STATE(3125), 1, sym_formal_parameters, - ACTIONS(2564), 2, + ACTIONS(2533), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2572), 2, + ACTIONS(2541), 2, sym_true, sym_false, - STATE(1981), 2, + STATE(1541), 2, sym_string, sym__number, - STATE(1986), 5, + STATE(1608), 5, sym__type, sym_constructor_type, sym_union_type, sym_intersection_type, sym_function_type, - ACTIONS(2566), 6, + ACTIONS(2535), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(1974), 14, + STATE(1535), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -85543,7 +85553,66 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [21862] = 30, + [21326] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2147), 24, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + 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_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + ACTIONS(2149), 30, + anon_sym_as, + anon_sym_COMMA, + 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, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_LBRACE_PIPE, + [21388] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(427), 1, @@ -85576,32 +85645,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(935), 1, sym_readonly, - ACTIONS(1691), 1, + ACTIONS(1678), 1, anon_sym_LT, - ACTIONS(2286), 1, + ACTIONS(2310), 1, anon_sym_LBRACK, - ACTIONS(2624), 1, + ACTIONS(2638), 1, sym_this, - STATE(444), 1, + STATE(434), 1, sym__tuple_type_body, - STATE(1913), 1, + STATE(1917), 1, sym_nested_type_identifier, - STATE(2959), 1, + STATE(2916), 1, sym_type_parameters, - STATE(2996), 1, + STATE(3122), 1, sym_formal_parameters, - STATE(2999), 1, + STATE(3123), 1, sym_nested_identifier, ACTIONS(853), 2, sym_true, sym_false, - ACTIONS(1693), 2, + ACTIONS(1680), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(446), 2, + STATE(433), 2, sym_string, sym__number, - STATE(2223), 5, + STATE(2538), 5, sym__type, sym_constructor_type, sym_union_type, @@ -85614,7 +85683,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(448), 14, + STATE(432), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -85629,78 +85698,78 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [21978] = 30, + [21504] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(713), 1, - anon_sym_STAR, - ACTIONS(725), 1, - anon_sym_QMARK, - ACTIONS(727), 1, - anon_sym_AMP, - ACTIONS(729), 1, - anon_sym_PIPE, - ACTIONS(745), 1, - anon_sym_keyof, - ACTIONS(747), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1691), 1, - anon_sym_LT, - ACTIONS(2318), 1, + ACTIONS(711), 1, anon_sym_DQUOTE, - ACTIONS(2320), 1, + ACTIONS(713), 1, anon_sym_SQUOTE, - ACTIONS(2554), 1, + ACTIONS(1678), 1, + anon_sym_LT, + ACTIONS(2513), 1, + sym_identifier, + ACTIONS(2515), 1, + anon_sym_STAR, + ACTIONS(2517), 1, anon_sym_LBRACE, - ACTIONS(2556), 1, + ACTIONS(2519), 1, anon_sym_typeof, - ACTIONS(2558), 1, + ACTIONS(2521), 1, anon_sym_LPAREN, - ACTIONS(2560), 1, + ACTIONS(2523), 1, anon_sym_LBRACK, - ACTIONS(2562), 1, + ACTIONS(2525), 1, anon_sym_new, - ACTIONS(2568), 1, + ACTIONS(2527), 1, + anon_sym_QMARK, + ACTIONS(2529), 1, + anon_sym_AMP, + ACTIONS(2531), 1, + anon_sym_PIPE, + ACTIONS(2537), 1, sym_number, - ACTIONS(2574), 1, - sym_readonly, - ACTIONS(2682), 1, - sym_identifier, - ACTIONS(2684), 1, + ACTIONS(2539), 1, sym_this, - STATE(1947), 1, + ACTIONS(2543), 1, + sym_readonly, + ACTIONS(2545), 1, + anon_sym_keyof, + ACTIONS(2547), 1, + anon_sym_LBRACE_PIPE, + STATE(1327), 1, sym_nested_type_identifier, - STATE(1972), 1, + STATE(1528), 1, sym__tuple_type_body, - STATE(2982), 1, + STATE(2941), 1, sym_type_parameters, - STATE(2998), 1, + STATE(3062), 1, sym_nested_identifier, - STATE(3030), 1, + STATE(3125), 1, sym_formal_parameters, - ACTIONS(2564), 2, + ACTIONS(2533), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2572), 2, + ACTIONS(2541), 2, sym_true, sym_false, - STATE(1981), 2, + STATE(1541), 2, sym_string, sym__number, - STATE(1966), 5, + STATE(1480), 5, sym__type, sym_constructor_type, sym_union_type, sym_intersection_type, sym_function_type, - ACTIONS(2566), 6, + ACTIONS(2535), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(1974), 14, + STATE(1535), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -85715,78 +85784,78 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [22094] = 30, + [21620] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(427), 1, - anon_sym_STAR, - ACTIONS(461), 1, - anon_sym_QMARK, ACTIONS(463), 1, anon_sym_AMP, ACTIONS(465), 1, anon_sym_PIPE, - ACTIONS(495), 1, - anon_sym_keyof, - ACTIONS(497), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(815), 1, - anon_sym_typeof, - ACTIONS(817), 1, - anon_sym_LPAREN, - ACTIONS(829), 1, - anon_sym_new, - ACTIONS(845), 1, + ACTIONS(475), 1, anon_sym_DQUOTE, - ACTIONS(847), 1, + ACTIONS(477), 1, anon_sym_SQUOTE, - ACTIONS(849), 1, - sym_number, - ACTIONS(925), 1, + ACTIONS(829), 1, + anon_sym_new, + ACTIONS(1678), 1, + anon_sym_LT, + ACTIONS(2549), 1, sym_identifier, - ACTIONS(929), 1, + ACTIONS(2551), 1, + anon_sym_STAR, + ACTIONS(2553), 1, anon_sym_LBRACE, - ACTIONS(935), 1, - sym_readonly, - ACTIONS(1691), 1, - anon_sym_LT, - ACTIONS(2286), 1, + ACTIONS(2555), 1, + anon_sym_typeof, + ACTIONS(2557), 1, + anon_sym_LPAREN, + ACTIONS(2559), 1, anon_sym_LBRACK, - ACTIONS(2624), 1, + ACTIONS(2563), 1, + anon_sym_QMARK, + ACTIONS(2573), 1, + sym_number, + ACTIONS(2579), 1, + sym_readonly, + ACTIONS(2581), 1, + anon_sym_keyof, + ACTIONS(2583), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(2722), 1, sym_this, - STATE(444), 1, - sym__tuple_type_body, - STATE(1913), 1, + STATE(1012), 1, sym_nested_type_identifier, - STATE(2959), 1, + STATE(1019), 1, + sym__tuple_type_body, + STATE(2916), 1, sym_type_parameters, - STATE(2996), 1, - sym_formal_parameters, - STATE(2999), 1, + STATE(3046), 1, sym_nested_identifier, - ACTIONS(853), 2, - sym_true, - sym_false, - ACTIONS(1693), 2, + STATE(3122), 1, + sym_formal_parameters, + ACTIONS(2569), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(446), 2, + ACTIONS(2577), 2, + sym_true, + sym_false, + STATE(1027), 2, sym_string, sym__number, - STATE(2599), 5, + STATE(2786), 5, sym__type, sym_constructor_type, sym_union_type, sym_intersection_type, sym_function_type, - ACTIONS(843), 6, + ACTIONS(2571), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(448), 14, + STATE(1079), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -85801,78 +85870,78 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [22210] = 30, + [21736] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(427), 1, - anon_sym_STAR, - ACTIONS(461), 1, - anon_sym_QMARK, - ACTIONS(463), 1, - anon_sym_AMP, - ACTIONS(465), 1, - anon_sym_PIPE, - ACTIONS(495), 1, - anon_sym_keyof, - ACTIONS(497), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(815), 1, - anon_sym_typeof, - ACTIONS(817), 1, - anon_sym_LPAREN, - ACTIONS(829), 1, - anon_sym_new, - ACTIONS(845), 1, + ACTIONS(475), 1, anon_sym_DQUOTE, - ACTIONS(847), 1, + ACTIONS(477), 1, anon_sym_SQUOTE, - ACTIONS(849), 1, - sym_number, - ACTIONS(925), 1, + ACTIONS(1678), 1, + anon_sym_LT, + ACTIONS(2549), 1, sym_identifier, - ACTIONS(929), 1, + ACTIONS(2551), 1, + anon_sym_STAR, + ACTIONS(2553), 1, anon_sym_LBRACE, - ACTIONS(935), 1, - sym_readonly, - ACTIONS(1691), 1, - anon_sym_LT, - ACTIONS(2286), 1, + ACTIONS(2555), 1, + anon_sym_typeof, + ACTIONS(2557), 1, + anon_sym_LPAREN, + ACTIONS(2559), 1, anon_sym_LBRACK, - ACTIONS(2624), 1, + ACTIONS(2561), 1, + anon_sym_new, + ACTIONS(2563), 1, + anon_sym_QMARK, + ACTIONS(2565), 1, + anon_sym_AMP, + ACTIONS(2567), 1, + anon_sym_PIPE, + ACTIONS(2573), 1, + sym_number, + ACTIONS(2575), 1, sym_this, - STATE(444), 1, - sym__tuple_type_body, - STATE(1913), 1, + ACTIONS(2579), 1, + sym_readonly, + ACTIONS(2581), 1, + anon_sym_keyof, + ACTIONS(2583), 1, + anon_sym_LBRACE_PIPE, + STATE(1012), 1, sym_nested_type_identifier, + STATE(1019), 1, + sym__tuple_type_body, STATE(2959), 1, sym_type_parameters, - STATE(2996), 1, - sym_formal_parameters, - STATE(2999), 1, + STATE(3046), 1, sym_nested_identifier, - ACTIONS(853), 2, - sym_true, - sym_false, - ACTIONS(1693), 2, + STATE(3147), 1, + sym_formal_parameters, + ACTIONS(2569), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(446), 2, + ACTIONS(2577), 2, + sym_true, + sym_false, + STATE(1027), 2, sym_string, sym__number, - STATE(2597), 5, + STATE(1084), 5, sym__type, sym_constructor_type, sym_union_type, sym_intersection_type, sym_function_type, - ACTIONS(843), 6, + ACTIONS(2571), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(448), 14, + STATE(1023), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -85887,7 +85956,67 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [22326] = 30, + [21852] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2724), 1, + anon_sym_COLON, + ACTIONS(2242), 23, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + 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_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + ACTIONS(2244), 30, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + 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, + [21916] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(427), 1, @@ -85920,32 +86049,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(935), 1, sym_readonly, - ACTIONS(1691), 1, + ACTIONS(1678), 1, anon_sym_LT, - ACTIONS(2286), 1, + ACTIONS(2310), 1, anon_sym_LBRACK, - ACTIONS(2624), 1, + ACTIONS(2638), 1, sym_this, - STATE(444), 1, + STATE(434), 1, sym__tuple_type_body, - STATE(1913), 1, + STATE(1917), 1, sym_nested_type_identifier, - STATE(2959), 1, + STATE(2916), 1, sym_type_parameters, - STATE(2996), 1, + STATE(3122), 1, sym_formal_parameters, - STATE(2999), 1, + STATE(3123), 1, sym_nested_identifier, ACTIONS(853), 2, sym_true, sym_false, - ACTIONS(1693), 2, + ACTIONS(1680), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(446), 2, + STATE(433), 2, sym_string, sym__number, - STATE(2585), 5, + STATE(2238), 5, sym__type, sym_constructor_type, sym_union_type, @@ -85958,7 +86087,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(448), 14, + STATE(432), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -85973,7 +86102,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [22442] = 30, + [22032] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(427), 1, @@ -86006,32 +86135,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(935), 1, sym_readonly, - ACTIONS(1125), 1, - sym_this, - ACTIONS(1691), 1, + ACTIONS(1678), 1, anon_sym_LT, - ACTIONS(2560), 1, + ACTIONS(2310), 1, anon_sym_LBRACK, - STATE(1913), 1, - sym_nested_type_identifier, - STATE(1994), 1, + ACTIONS(2638), 1, + sym_this, + STATE(434), 1, sym__tuple_type_body, - STATE(2959), 1, + STATE(1917), 1, + sym_nested_type_identifier, + STATE(2916), 1, sym_type_parameters, - STATE(2996), 1, + STATE(3122), 1, sym_formal_parameters, - STATE(2999), 1, + STATE(3123), 1, sym_nested_identifier, ACTIONS(853), 2, sym_true, sym_false, - ACTIONS(1693), 2, + ACTIONS(1680), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(446), 2, + STATE(433), 2, sym_string, sym__number, - STATE(2626), 5, + STATE(2372), 5, sym__type, sym_constructor_type, sym_union_type, @@ -86044,7 +86173,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2533), 14, + STATE(432), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -86059,78 +86188,78 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [22558] = 30, + [22148] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(475), 1, - anon_sym_DQUOTE, - ACTIONS(477), 1, - anon_sym_SQUOTE, - ACTIONS(1691), 1, - anon_sym_LT, - ACTIONS(2456), 1, - sym_identifier, - ACTIONS(2458), 1, + ACTIONS(427), 1, anon_sym_STAR, - ACTIONS(2460), 1, - anon_sym_LBRACE, - ACTIONS(2462), 1, - anon_sym_typeof, - ACTIONS(2464), 1, - anon_sym_LPAREN, - ACTIONS(2466), 1, - anon_sym_LBRACK, - ACTIONS(2468), 1, - anon_sym_new, - ACTIONS(2470), 1, + ACTIONS(461), 1, anon_sym_QMARK, - ACTIONS(2472), 1, + ACTIONS(463), 1, anon_sym_AMP, - ACTIONS(2474), 1, + ACTIONS(465), 1, anon_sym_PIPE, - ACTIONS(2480), 1, - sym_number, - ACTIONS(2482), 1, - sym_this, - ACTIONS(2486), 1, + ACTIONS(495), 1, + anon_sym_keyof, + ACTIONS(497), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(815), 1, + anon_sym_typeof, + ACTIONS(817), 1, + anon_sym_LPAREN, + ACTIONS(829), 1, + anon_sym_new, + ACTIONS(845), 1, + anon_sym_DQUOTE, + ACTIONS(847), 1, + anon_sym_SQUOTE, + ACTIONS(849), 1, + sym_number, + ACTIONS(925), 1, + sym_identifier, + ACTIONS(929), 1, + anon_sym_LBRACE, + ACTIONS(935), 1, sym_readonly, - ACTIONS(2488), 1, - anon_sym_keyof, - ACTIONS(2490), 1, - anon_sym_LBRACE_PIPE, - STATE(1003), 1, - sym_nested_type_identifier, - STATE(1036), 1, + ACTIONS(1678), 1, + anon_sym_LT, + ACTIONS(2310), 1, + anon_sym_LBRACK, + ACTIONS(2638), 1, + sym_this, + STATE(434), 1, sym__tuple_type_body, - STATE(2953), 1, + STATE(1917), 1, + sym_nested_type_identifier, + STATE(2916), 1, sym_type_parameters, - STATE(3027), 1, - sym_nested_identifier, - STATE(3083), 1, + STATE(3122), 1, sym_formal_parameters, - ACTIONS(2476), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2484), 2, + STATE(3123), 1, + sym_nested_identifier, + ACTIONS(853), 2, sym_true, sym_false, - STATE(1034), 2, + ACTIONS(1680), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(433), 2, sym_string, sym__number, - STATE(1074), 5, + STATE(2523), 5, sym__type, sym_constructor_type, sym_union_type, sym_intersection_type, sym_function_type, - ACTIONS(2478), 6, + ACTIONS(843), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(1035), 14, + STATE(432), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -86145,140 +86274,166 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [22674] = 6, + [22264] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(2230), 1, - anon_sym_DOT, - ACTIONS(2233), 1, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(123), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1678), 1, anon_sym_LT, - ACTIONS(2249), 3, + ACTIONS(1728), 1, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_implements, - ACTIONS(2183), 22, + ACTIONS(2326), 1, anon_sym_STAR, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - 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_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - ACTIONS(2185), 27, - anon_sym_as, + ACTIONS(2332), 1, anon_sym_LPAREN, + ACTIONS(2336), 1, anon_sym_LBRACK, - 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, - [22742] = 30, + ACTIONS(2340), 1, + anon_sym_new, + ACTIONS(2342), 1, + anon_sym_DASH, + ACTIONS(2344), 1, + anon_sym_DQUOTE, + ACTIONS(2346), 1, + anon_sym_SQUOTE, + ACTIONS(2348), 1, + sym_number, + ACTIONS(2728), 1, + anon_sym_export, + ACTIONS(2732), 1, + anon_sym_async, + ACTIONS(2734), 1, + anon_sym_static, + ACTIONS(2740), 1, + sym_readonly, + STATE(1882), 1, + sym_accessibility_modifier, + STATE(1890), 1, + sym_decorator, + STATE(2015), 1, + sym_formal_parameters, + STATE(2320), 1, + sym__call_signature, + STATE(2548), 1, + aux_sym_export_statement_repeat1, + STATE(2918), 1, + sym_type_parameters, + STATE(3037), 1, + sym_object, + STATE(3038), 1, + sym_array, + ACTIONS(2730), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(2736), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(2738), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(1949), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(2976), 4, + sym_assignment_pattern, + sym_spread_element, + sym_method_definition, + sym_pair, + STATE(2223), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(2726), 10, + anon_sym_namespace, + anon_sym_type, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [22384] = 30, ACTIONS(3), 1, sym_comment, + ACTIONS(427), 1, + anon_sym_STAR, + ACTIONS(461), 1, + anon_sym_QMARK, ACTIONS(463), 1, anon_sym_AMP, ACTIONS(465), 1, anon_sym_PIPE, - ACTIONS(569), 1, - anon_sym_DQUOTE, - ACTIONS(571), 1, - anon_sym_SQUOTE, + ACTIONS(495), 1, + anon_sym_keyof, + ACTIONS(497), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(815), 1, + anon_sym_typeof, + ACTIONS(817), 1, + anon_sym_LPAREN, ACTIONS(829), 1, anon_sym_new, - ACTIONS(1691), 1, - anon_sym_LT, - ACTIONS(2580), 1, + ACTIONS(845), 1, + anon_sym_DQUOTE, + ACTIONS(847), 1, + anon_sym_SQUOTE, + ACTIONS(849), 1, + sym_number, + ACTIONS(925), 1, sym_identifier, - ACTIONS(2582), 1, - anon_sym_STAR, - ACTIONS(2584), 1, + ACTIONS(929), 1, anon_sym_LBRACE, - ACTIONS(2586), 1, - anon_sym_typeof, - ACTIONS(2588), 1, - anon_sym_LPAREN, - ACTIONS(2590), 1, - anon_sym_LBRACK, - ACTIONS(2594), 1, - anon_sym_QMARK, - ACTIONS(2604), 1, - sym_number, - ACTIONS(2610), 1, + ACTIONS(935), 1, sym_readonly, - ACTIONS(2612), 1, - anon_sym_keyof, - ACTIONS(2614), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(2730), 1, + ACTIONS(1678), 1, + anon_sym_LT, + ACTIONS(2310), 1, + anon_sym_LBRACK, + ACTIONS(2638), 1, sym_this, - STATE(1361), 1, - sym_nested_type_identifier, - STATE(1481), 1, + STATE(434), 1, sym__tuple_type_body, - STATE(2959), 1, + STATE(1917), 1, + sym_nested_type_identifier, + STATE(2916), 1, sym_type_parameters, - STATE(2996), 1, + STATE(3122), 1, sym_formal_parameters, - STATE(3043), 1, + STATE(3123), 1, sym_nested_identifier, - ACTIONS(2600), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2608), 2, + ACTIONS(853), 2, sym_true, sym_false, - STATE(1483), 2, + ACTIONS(1680), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(433), 2, sym_string, sym__number, - STATE(2604), 5, + STATE(426), 5, sym__type, sym_constructor_type, sym_union_type, sym_intersection_type, sym_function_type, - ACTIONS(2602), 6, + ACTIONS(843), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(1519), 14, + STATE(432), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -86293,78 +86448,78 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [22858] = 30, + [22500] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(569), 1, - anon_sym_DQUOTE, - ACTIONS(571), 1, - anon_sym_SQUOTE, - ACTIONS(1691), 1, - anon_sym_LT, - ACTIONS(2580), 1, - sym_identifier, - ACTIONS(2582), 1, + ACTIONS(427), 1, anon_sym_STAR, - ACTIONS(2584), 1, - anon_sym_LBRACE, - ACTIONS(2586), 1, - anon_sym_typeof, - ACTIONS(2588), 1, - anon_sym_LPAREN, - ACTIONS(2590), 1, - anon_sym_LBRACK, - ACTIONS(2592), 1, - anon_sym_new, - ACTIONS(2594), 1, + ACTIONS(461), 1, anon_sym_QMARK, - ACTIONS(2596), 1, + ACTIONS(463), 1, anon_sym_AMP, - ACTIONS(2598), 1, + ACTIONS(465), 1, anon_sym_PIPE, - ACTIONS(2604), 1, - sym_number, - ACTIONS(2606), 1, - sym_this, - ACTIONS(2610), 1, - sym_readonly, - ACTIONS(2612), 1, + ACTIONS(495), 1, anon_sym_keyof, - ACTIONS(2614), 1, + ACTIONS(497), 1, anon_sym_LBRACE_PIPE, - STATE(1361), 1, - sym_nested_type_identifier, - STATE(1481), 1, + ACTIONS(815), 1, + anon_sym_typeof, + ACTIONS(817), 1, + anon_sym_LPAREN, + ACTIONS(829), 1, + anon_sym_new, + ACTIONS(845), 1, + anon_sym_DQUOTE, + ACTIONS(847), 1, + anon_sym_SQUOTE, + ACTIONS(849), 1, + sym_number, + ACTIONS(925), 1, + sym_identifier, + ACTIONS(929), 1, + anon_sym_LBRACE, + ACTIONS(935), 1, + sym_readonly, + ACTIONS(1678), 1, + anon_sym_LT, + ACTIONS(2310), 1, + anon_sym_LBRACK, + ACTIONS(2638), 1, + sym_this, + STATE(434), 1, sym__tuple_type_body, - STATE(2938), 1, + STATE(1917), 1, + sym_nested_type_identifier, + STATE(2916), 1, sym_type_parameters, - STATE(3043), 1, - sym_nested_identifier, - STATE(3159), 1, + STATE(3122), 1, sym_formal_parameters, - ACTIONS(2600), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2608), 2, + STATE(3123), 1, + sym_nested_identifier, + ACTIONS(853), 2, sym_true, sym_false, - STATE(1483), 2, + ACTIONS(1680), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(433), 2, sym_string, sym__number, - STATE(1521), 5, + STATE(2235), 5, sym__type, sym_constructor_type, sym_union_type, sym_intersection_type, sym_function_type, - ACTIONS(2602), 6, + ACTIONS(843), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(1482), 14, + STATE(432), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -86379,144 +86534,78 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [22974] = 10, + [22616] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(827), 1, - anon_sym_QMARK_DOT, - ACTIONS(1127), 1, - anon_sym_EQ, - ACTIONS(1129), 1, - anon_sym_EQ_GT, - ACTIONS(1623), 1, - anon_sym_LBRACK, - ACTIONS(1625), 1, - anon_sym_DOT, - ACTIONS(1744), 1, - anon_sym_COLON, - ACTIONS(841), 11, - anon_sym_as, - anon_sym_LPAREN, - 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, - ACTIONS(831), 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(808), 22, + ACTIONS(427), 1, anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(461), 1, anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(463), 1, anon_sym_AMP, - anon_sym_CARET, + ACTIONS(465), 1, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [23050] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(569), 1, + ACTIONS(495), 1, + anon_sym_keyof, + ACTIONS(497), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(815), 1, + anon_sym_typeof, + ACTIONS(817), 1, + anon_sym_LPAREN, + ACTIONS(829), 1, + anon_sym_new, + ACTIONS(845), 1, anon_sym_DQUOTE, - ACTIONS(571), 1, + ACTIONS(847), 1, anon_sym_SQUOTE, - ACTIONS(1691), 1, - anon_sym_LT, - ACTIONS(2580), 1, + ACTIONS(849), 1, + sym_number, + ACTIONS(925), 1, sym_identifier, - ACTIONS(2582), 1, - anon_sym_STAR, - ACTIONS(2584), 1, + ACTIONS(929), 1, anon_sym_LBRACE, - ACTIONS(2586), 1, - anon_sym_typeof, - ACTIONS(2588), 1, - anon_sym_LPAREN, - ACTIONS(2590), 1, + ACTIONS(935), 1, + sym_readonly, + ACTIONS(1678), 1, + anon_sym_LT, + ACTIONS(2310), 1, anon_sym_LBRACK, - ACTIONS(2592), 1, - anon_sym_new, - ACTIONS(2594), 1, - anon_sym_QMARK, - ACTIONS(2596), 1, - anon_sym_AMP, - ACTIONS(2598), 1, - anon_sym_PIPE, - ACTIONS(2604), 1, - sym_number, - ACTIONS(2606), 1, + ACTIONS(2638), 1, sym_this, - ACTIONS(2610), 1, - sym_readonly, - ACTIONS(2612), 1, - anon_sym_keyof, - ACTIONS(2614), 1, - anon_sym_LBRACE_PIPE, - STATE(1361), 1, - sym_nested_type_identifier, - STATE(1481), 1, + STATE(434), 1, sym__tuple_type_body, - STATE(2938), 1, + STATE(1917), 1, + sym_nested_type_identifier, + STATE(2916), 1, sym_type_parameters, - STATE(3043), 1, - sym_nested_identifier, - STATE(3159), 1, + STATE(3122), 1, sym_formal_parameters, - ACTIONS(2600), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2608), 2, + STATE(3123), 1, + sym_nested_identifier, + ACTIONS(853), 2, sym_true, sym_false, - STATE(1483), 2, + ACTIONS(1680), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(433), 2, sym_string, sym__number, - STATE(1522), 5, + STATE(2060), 5, sym__type, sym_constructor_type, sym_union_type, sym_intersection_type, sym_function_type, - ACTIONS(2602), 6, + ACTIONS(843), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(1482), 14, + STATE(432), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -86531,10 +86620,10 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [23166] = 3, + [22732] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2239), 24, + ACTIONS(2242), 24, anon_sym_STAR, anon_sym_EQ, anon_sym_LBRACE, @@ -86559,7 +86648,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(2241), 30, + ACTIONS(2244), 30, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -86590,7 +86679,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_LBRACE_PIPE, - [23228] = 30, + [22794] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(427), 1, @@ -86623,32 +86712,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(935), 1, sym_readonly, - ACTIONS(1691), 1, + ACTIONS(1678), 1, anon_sym_LT, - ACTIONS(2286), 1, + ACTIONS(2310), 1, anon_sym_LBRACK, - ACTIONS(2624), 1, + ACTIONS(2638), 1, sym_this, - STATE(444), 1, + STATE(434), 1, sym__tuple_type_body, - STATE(1913), 1, + STATE(1917), 1, sym_nested_type_identifier, - STATE(2959), 1, + STATE(2916), 1, sym_type_parameters, - STATE(2996), 1, + STATE(3122), 1, sym_formal_parameters, - STATE(2999), 1, + STATE(3123), 1, sym_nested_identifier, ACTIONS(853), 2, sym_true, sym_false, - ACTIONS(1693), 2, + ACTIONS(1680), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(446), 2, + STATE(433), 2, sym_string, sym__number, - STATE(2216), 5, + STATE(2152), 5, sym__type, sym_constructor_type, sym_union_type, @@ -86661,7 +86750,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(448), 14, + STATE(432), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -86676,7 +86765,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [23344] = 30, + [22910] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(427), 1, @@ -86709,32 +86798,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(935), 1, sym_readonly, - ACTIONS(1691), 1, + ACTIONS(1678), 1, anon_sym_LT, - ACTIONS(2286), 1, + ACTIONS(2559), 1, anon_sym_LBRACK, - ACTIONS(2624), 1, + ACTIONS(2742), 1, sym_this, - STATE(444), 1, + STATE(1096), 1, sym__tuple_type_body, - STATE(1913), 1, + STATE(1917), 1, sym_nested_type_identifier, - STATE(2959), 1, + STATE(2916), 1, sym_type_parameters, - STATE(2996), 1, + STATE(3122), 1, sym_formal_parameters, - STATE(2999), 1, + STATE(3123), 1, sym_nested_identifier, ACTIONS(853), 2, sym_true, sym_false, - ACTIONS(1693), 2, + ACTIONS(1680), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(446), 2, + STATE(433), 2, sym_string, sym__number, - STATE(2493), 5, + STATE(2780), 5, sym__type, sym_constructor_type, sym_union_type, @@ -86747,7 +86836,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(448), 14, + STATE(2562), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -86762,78 +86851,78 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [23460] = 30, + [23026] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(427), 1, - anon_sym_STAR, - ACTIONS(461), 1, - anon_sym_QMARK, ACTIONS(463), 1, anon_sym_AMP, ACTIONS(465), 1, anon_sym_PIPE, - ACTIONS(495), 1, - anon_sym_keyof, - ACTIONS(497), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(815), 1, - anon_sym_typeof, - ACTIONS(817), 1, - anon_sym_LPAREN, - ACTIONS(829), 1, - anon_sym_new, - ACTIONS(845), 1, + ACTIONS(711), 1, anon_sym_DQUOTE, - ACTIONS(847), 1, + ACTIONS(713), 1, anon_sym_SQUOTE, - ACTIONS(849), 1, - sym_number, - ACTIONS(925), 1, + ACTIONS(829), 1, + anon_sym_new, + ACTIONS(1678), 1, + anon_sym_LT, + ACTIONS(2513), 1, sym_identifier, - ACTIONS(929), 1, + ACTIONS(2515), 1, + anon_sym_STAR, + ACTIONS(2517), 1, anon_sym_LBRACE, - ACTIONS(935), 1, - sym_readonly, - ACTIONS(1691), 1, - anon_sym_LT, - ACTIONS(2286), 1, + ACTIONS(2519), 1, + anon_sym_typeof, + ACTIONS(2521), 1, + anon_sym_LPAREN, + ACTIONS(2523), 1, anon_sym_LBRACK, - ACTIONS(2624), 1, + ACTIONS(2527), 1, + anon_sym_QMARK, + ACTIONS(2537), 1, + sym_number, + ACTIONS(2543), 1, + sym_readonly, + ACTIONS(2545), 1, + anon_sym_keyof, + ACTIONS(2547), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(2744), 1, sym_this, - STATE(444), 1, - sym__tuple_type_body, - STATE(1913), 1, + STATE(1327), 1, sym_nested_type_identifier, - STATE(2959), 1, + STATE(1528), 1, + sym__tuple_type_body, + STATE(2916), 1, sym_type_parameters, - STATE(2996), 1, - sym_formal_parameters, - STATE(2999), 1, + STATE(3062), 1, sym_nested_identifier, - ACTIONS(853), 2, - sym_true, - sym_false, - ACTIONS(1693), 2, + STATE(3122), 1, + sym_formal_parameters, + ACTIONS(2533), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(446), 2, + ACTIONS(2541), 2, + sym_true, + sym_false, + STATE(1541), 2, sym_string, sym__number, - STATE(2254), 5, + STATE(2657), 5, sym__type, sym_constructor_type, sym_union_type, sym_intersection_type, sym_function_type, - ACTIONS(843), 6, + ACTIONS(2535), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(448), 14, + STATE(1487), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -86848,139 +86937,78 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [23576] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2416), 1, - anon_sym_EQ, - ACTIONS(2181), 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(1099), 16, - 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_implements, - ACTIONS(1097), 22, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - 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_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [23642] = 30, + [23142] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(713), 1, + ACTIONS(731), 1, anon_sym_STAR, - ACTIONS(725), 1, + ACTIONS(743), 1, anon_sym_QMARK, - ACTIONS(727), 1, + ACTIONS(745), 1, anon_sym_AMP, - ACTIONS(729), 1, + ACTIONS(747), 1, anon_sym_PIPE, - ACTIONS(745), 1, + ACTIONS(763), 1, anon_sym_keyof, - ACTIONS(747), 1, + ACTIONS(765), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1691), 1, + ACTIONS(1678), 1, anon_sym_LT, - ACTIONS(2318), 1, + ACTIONS(2344), 1, anon_sym_DQUOTE, - ACTIONS(2320), 1, + ACTIONS(2346), 1, anon_sym_SQUOTE, - ACTIONS(2554), 1, + ACTIONS(2591), 1, anon_sym_LBRACE, - ACTIONS(2556), 1, + ACTIONS(2593), 1, anon_sym_typeof, - ACTIONS(2558), 1, + ACTIONS(2595), 1, anon_sym_LPAREN, - ACTIONS(2560), 1, + ACTIONS(2597), 1, anon_sym_LBRACK, - ACTIONS(2562), 1, + ACTIONS(2599), 1, anon_sym_new, - ACTIONS(2568), 1, + ACTIONS(2605), 1, sym_number, - ACTIONS(2574), 1, + ACTIONS(2611), 1, sym_readonly, - ACTIONS(2682), 1, + ACTIONS(2712), 1, sym_identifier, - ACTIONS(2684), 1, + ACTIONS(2714), 1, sym_this, - STATE(1947), 1, + STATE(1950), 1, sym_nested_type_identifier, - STATE(1972), 1, + STATE(2010), 1, sym__tuple_type_body, - STATE(2982), 1, + STATE(3007), 1, sym_type_parameters, - STATE(2998), 1, + STATE(3017), 1, sym_nested_identifier, - STATE(3030), 1, + STATE(3065), 1, sym_formal_parameters, - ACTIONS(2564), 2, + ACTIONS(2601), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2572), 2, + ACTIONS(2609), 2, sym_true, sym_false, - STATE(1981), 2, + STATE(2000), 2, sym_string, sym__number, - STATE(2392), 5, + STATE(2044), 5, sym__type, sym_constructor_type, sym_union_type, sym_intersection_type, sym_function_type, - ACTIONS(2566), 6, + ACTIONS(2603), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(1974), 14, + STATE(2003), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -86995,65 +87023,65 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [23758] = 30, + [23258] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(427), 1, anon_sym_STAR, - ACTIONS(461), 1, - anon_sym_QMARK, - ACTIONS(463), 1, - anon_sym_AMP, - ACTIONS(465), 1, - anon_sym_PIPE, - ACTIONS(495), 1, - anon_sym_keyof, ACTIONS(497), 1, anon_sym_LBRACE_PIPE, - ACTIONS(815), 1, - anon_sym_typeof, ACTIONS(817), 1, anon_sym_LPAREN, - ACTIONS(829), 1, - anon_sym_new, ACTIONS(845), 1, anon_sym_DQUOTE, ACTIONS(847), 1, anon_sym_SQUOTE, ACTIONS(849), 1, sym_number, - ACTIONS(925), 1, - sym_identifier, ACTIONS(929), 1, anon_sym_LBRACE, ACTIONS(935), 1, sym_readonly, - ACTIONS(1691), 1, + ACTIONS(1678), 1, anon_sym_LT, - ACTIONS(2286), 1, + ACTIONS(2310), 1, anon_sym_LBRACK, - ACTIONS(2624), 1, + ACTIONS(2638), 1, sym_this, - STATE(444), 1, + ACTIONS(2698), 1, + sym_identifier, + ACTIONS(2700), 1, + anon_sym_typeof, + ACTIONS(2702), 1, + anon_sym_new, + ACTIONS(2704), 1, + anon_sym_QMARK, + ACTIONS(2706), 1, + anon_sym_AMP, + ACTIONS(2708), 1, + anon_sym_PIPE, + ACTIONS(2710), 1, + anon_sym_keyof, + STATE(434), 1, sym__tuple_type_body, - STATE(1913), 1, + STATE(482), 1, sym_nested_type_identifier, - STATE(2959), 1, + STATE(2954), 1, sym_type_parameters, - STATE(2996), 1, - sym_formal_parameters, - STATE(2999), 1, + STATE(3123), 1, sym_nested_identifier, + STATE(3171), 1, + sym_formal_parameters, ACTIONS(853), 2, sym_true, sym_false, - ACTIONS(1693), 2, + ACTIONS(1680), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(446), 2, + STATE(433), 2, sym_string, sym__number, - STATE(2415), 5, + STATE(436), 5, sym__type, sym_constructor_type, sym_union_type, @@ -87066,7 +87094,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(448), 14, + STATE(432), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -87081,137 +87109,78 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [23874] = 3, + [23374] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(2245), 24, + ACTIONS(475), 1, + anon_sym_DQUOTE, + ACTIONS(477), 1, + anon_sym_SQUOTE, + ACTIONS(1678), 1, + anon_sym_LT, + ACTIONS(2549), 1, + sym_identifier, + ACTIONS(2551), 1, anon_sym_STAR, - anon_sym_EQ, + ACTIONS(2553), 1, anon_sym_LBRACE, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - 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_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - ACTIONS(2247), 30, - anon_sym_as, - anon_sym_COMMA, + ACTIONS(2555), 1, + anon_sym_typeof, + ACTIONS(2557), 1, anon_sym_LPAREN, + ACTIONS(2559), 1, 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_LBRACE_PIPE, - [23936] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(427), 1, - anon_sym_STAR, - ACTIONS(461), 1, + ACTIONS(2561), 1, + anon_sym_new, + ACTIONS(2563), 1, anon_sym_QMARK, - ACTIONS(463), 1, + ACTIONS(2565), 1, anon_sym_AMP, - ACTIONS(465), 1, + ACTIONS(2567), 1, anon_sym_PIPE, - ACTIONS(495), 1, - anon_sym_keyof, - ACTIONS(497), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(815), 1, - anon_sym_typeof, - ACTIONS(817), 1, - anon_sym_LPAREN, - ACTIONS(829), 1, - anon_sym_new, - ACTIONS(845), 1, - anon_sym_DQUOTE, - ACTIONS(847), 1, - anon_sym_SQUOTE, - ACTIONS(849), 1, + ACTIONS(2573), 1, sym_number, - ACTIONS(925), 1, - sym_identifier, - ACTIONS(929), 1, - anon_sym_LBRACE, - ACTIONS(935), 1, - sym_readonly, - ACTIONS(1691), 1, - anon_sym_LT, - ACTIONS(2286), 1, - anon_sym_LBRACK, - ACTIONS(2624), 1, + ACTIONS(2575), 1, sym_this, - STATE(444), 1, - sym__tuple_type_body, - STATE(1913), 1, + ACTIONS(2579), 1, + sym_readonly, + ACTIONS(2581), 1, + anon_sym_keyof, + ACTIONS(2583), 1, + anon_sym_LBRACE_PIPE, + STATE(1012), 1, sym_nested_type_identifier, + STATE(1019), 1, + sym__tuple_type_body, STATE(2959), 1, sym_type_parameters, - STATE(2996), 1, - sym_formal_parameters, - STATE(2999), 1, + STATE(3046), 1, sym_nested_identifier, - ACTIONS(853), 2, - sym_true, - sym_false, - ACTIONS(1693), 2, + STATE(3147), 1, + sym_formal_parameters, + ACTIONS(2569), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(446), 2, + ACTIONS(2577), 2, + sym_true, + sym_false, + STATE(1027), 2, sym_string, sym__number, - STATE(2583), 5, + STATE(1042), 5, sym__type, sym_constructor_type, sym_union_type, sym_intersection_type, sym_function_type, - ACTIONS(843), 6, + ACTIONS(2571), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(448), 14, + STATE(1023), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -87226,149 +87195,84 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [24052] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2171), 1, - anon_sym_EQ, - ACTIONS(2175), 1, - anon_sym_LBRACK, - ACTIONS(2177), 1, - anon_sym_DOT, - ACTIONS(2179), 1, - anon_sym_QMARK_DOT, - ACTIONS(2200), 1, - anon_sym_EQ_GT, - ACTIONS(1099), 12, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_COLON, - 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, - ACTIONS(2181), 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(1097), 22, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - 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_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [24126] = 32, + [23490] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(91), 1, anon_sym_AT, ACTIONS(123), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1691), 1, + ACTIONS(1678), 1, anon_sym_LT, - ACTIONS(1722), 1, + ACTIONS(1728), 1, anon_sym_LBRACE, - ACTIONS(2300), 1, + ACTIONS(2326), 1, anon_sym_STAR, - ACTIONS(2306), 1, + ACTIONS(2332), 1, anon_sym_LPAREN, - ACTIONS(2310), 1, + ACTIONS(2336), 1, anon_sym_LBRACK, - ACTIONS(2314), 1, + ACTIONS(2340), 1, anon_sym_new, - ACTIONS(2316), 1, + ACTIONS(2342), 1, anon_sym_DASH, - ACTIONS(2318), 1, + ACTIONS(2344), 1, anon_sym_DQUOTE, - ACTIONS(2320), 1, + ACTIONS(2346), 1, anon_sym_SQUOTE, - ACTIONS(2322), 1, + ACTIONS(2348), 1, sym_number, - ACTIONS(2712), 1, + ACTIONS(2728), 1, anon_sym_export, - ACTIONS(2716), 1, + ACTIONS(2732), 1, anon_sym_async, - ACTIONS(2718), 1, + ACTIONS(2734), 1, anon_sym_static, - ACTIONS(2724), 1, + ACTIONS(2740), 1, sym_readonly, - STATE(1876), 1, + STATE(1882), 1, sym_accessibility_modifier, - STATE(1905), 1, + STATE(1890), 1, sym_decorator, - STATE(2020), 1, + STATE(2015), 1, sym_formal_parameters, - STATE(2406), 1, + STATE(2320), 1, sym__call_signature, - STATE(2485), 1, + STATE(2548), 1, aux_sym_export_statement_repeat1, - STATE(2862), 1, + STATE(2918), 1, sym_type_parameters, - STATE(3086), 1, - sym_array, - STATE(3204), 1, + STATE(3037), 1, sym_object, - ACTIONS(2714), 2, + STATE(3038), 1, + sym_array, + ACTIONS(2730), 2, anon_sym_COMMA, anon_sym_RBRACE, - ACTIONS(2720), 2, + ACTIONS(2736), 2, anon_sym_get, anon_sym_set, - ACTIONS(2722), 3, + ACTIONS(2738), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(1937), 3, + STATE(1949), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(2786), 4, + STATE(2976), 4, sym_assignment_pattern, sym_spread_element, sym_method_definition, sym_pair, - STATE(2249), 6, + STATE(2182), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(2710), 10, + ACTIONS(2726), 10, anon_sym_namespace, anon_sym_type, sym_identifier, @@ -87379,78 +87283,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [24246] = 30, + [23610] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(713), 1, + ACTIONS(427), 1, anon_sym_STAR, - ACTIONS(725), 1, - anon_sym_QMARK, - ACTIONS(727), 1, - anon_sym_AMP, - ACTIONS(729), 1, - anon_sym_PIPE, - ACTIONS(745), 1, - anon_sym_keyof, - ACTIONS(747), 1, + ACTIONS(497), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1691), 1, - anon_sym_LT, - ACTIONS(2318), 1, + ACTIONS(817), 1, + anon_sym_LPAREN, + ACTIONS(845), 1, anon_sym_DQUOTE, - ACTIONS(2320), 1, + ACTIONS(847), 1, anon_sym_SQUOTE, - ACTIONS(2554), 1, - anon_sym_LBRACE, - ACTIONS(2556), 1, - anon_sym_typeof, - ACTIONS(2558), 1, - anon_sym_LPAREN, - ACTIONS(2560), 1, - anon_sym_LBRACK, - ACTIONS(2562), 1, - anon_sym_new, - ACTIONS(2568), 1, + ACTIONS(849), 1, sym_number, - ACTIONS(2574), 1, + ACTIONS(929), 1, + anon_sym_LBRACE, + ACTIONS(935), 1, sym_readonly, - ACTIONS(2682), 1, - sym_identifier, - ACTIONS(2684), 1, + ACTIONS(1678), 1, + anon_sym_LT, + ACTIONS(2310), 1, + anon_sym_LBRACK, + ACTIONS(2638), 1, sym_this, - STATE(1947), 1, - sym_nested_type_identifier, - STATE(1972), 1, + ACTIONS(2698), 1, + sym_identifier, + ACTIONS(2700), 1, + anon_sym_typeof, + ACTIONS(2702), 1, + anon_sym_new, + ACTIONS(2704), 1, + anon_sym_QMARK, + ACTIONS(2706), 1, + anon_sym_AMP, + ACTIONS(2708), 1, + anon_sym_PIPE, + ACTIONS(2710), 1, + anon_sym_keyof, + STATE(434), 1, sym__tuple_type_body, - STATE(2982), 1, + STATE(482), 1, + sym_nested_type_identifier, + STATE(2954), 1, sym_type_parameters, - STATE(2998), 1, + STATE(3123), 1, sym_nested_identifier, - STATE(3030), 1, + STATE(3171), 1, sym_formal_parameters, - ACTIONS(2564), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2572), 2, + ACTIONS(853), 2, sym_true, sym_false, - STATE(1981), 2, + ACTIONS(1680), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(433), 2, sym_string, sym__number, - STATE(1980), 5, + STATE(499), 5, sym__type, sym_constructor_type, sym_union_type, sym_intersection_type, sym_function_type, - ACTIONS(2566), 6, + ACTIONS(843), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(1974), 14, + STATE(432), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -87465,78 +87369,78 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [24362] = 30, + [23726] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(427), 1, - anon_sym_STAR, - ACTIONS(461), 1, - anon_sym_QMARK, ACTIONS(463), 1, anon_sym_AMP, ACTIONS(465), 1, anon_sym_PIPE, - ACTIONS(495), 1, + ACTIONS(731), 1, + anon_sym_STAR, + ACTIONS(743), 1, + anon_sym_QMARK, + ACTIONS(763), 1, anon_sym_keyof, - ACTIONS(497), 1, + ACTIONS(765), 1, anon_sym_LBRACE_PIPE, - ACTIONS(815), 1, - anon_sym_typeof, - ACTIONS(817), 1, - anon_sym_LPAREN, ACTIONS(829), 1, anon_sym_new, - ACTIONS(845), 1, + ACTIONS(1678), 1, + anon_sym_LT, + ACTIONS(2344), 1, anon_sym_DQUOTE, - ACTIONS(847), 1, + ACTIONS(2346), 1, anon_sym_SQUOTE, - ACTIONS(849), 1, - sym_number, - ACTIONS(925), 1, - sym_identifier, - ACTIONS(929), 1, + ACTIONS(2591), 1, anon_sym_LBRACE, - ACTIONS(935), 1, - sym_readonly, - ACTIONS(1691), 1, - anon_sym_LT, - ACTIONS(2286), 1, + ACTIONS(2593), 1, + anon_sym_typeof, + ACTIONS(2595), 1, + anon_sym_LPAREN, + ACTIONS(2597), 1, anon_sym_LBRACK, - ACTIONS(2624), 1, + ACTIONS(2605), 1, + sym_number, + ACTIONS(2611), 1, + sym_readonly, + ACTIONS(2712), 1, + sym_identifier, + ACTIONS(2746), 1, sym_this, - STATE(444), 1, - sym__tuple_type_body, - STATE(1913), 1, + STATE(1950), 1, sym_nested_type_identifier, - STATE(2959), 1, + STATE(2010), 1, + sym__tuple_type_body, + STATE(2916), 1, sym_type_parameters, - STATE(2996), 1, - sym_formal_parameters, - STATE(2999), 1, + STATE(3017), 1, sym_nested_identifier, - ACTIONS(853), 2, - sym_true, - sym_false, - ACTIONS(1693), 2, + STATE(3122), 1, + sym_formal_parameters, + ACTIONS(2601), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(446), 2, + ACTIONS(2609), 2, + sym_true, + sym_false, + STATE(2000), 2, sym_string, sym__number, - STATE(1923), 5, + STATE(2787), 5, sym__type, sym_constructor_type, sym_union_type, sym_intersection_type, sym_function_type, - ACTIONS(843), 6, + ACTIONS(2603), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(448), 14, + STATE(1971), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -87551,15 +87455,54 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [24478] = 3, + [23842] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2127), 24, - anon_sym_STAR, + ACTIONS(2187), 1, anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_BANG, + ACTIONS(2191), 1, + anon_sym_LBRACK, + ACTIONS(2193), 1, + anon_sym_DOT, + ACTIONS(2195), 1, + anon_sym_QMARK_DOT, + ACTIONS(2240), 1, + anon_sym_EQ_GT, + ACTIONS(2668), 1, anon_sym_in, + ACTIONS(2748), 1, + anon_sym_COLON, + ACTIONS(1039), 11, + anon_sym_as, + anon_sym_LPAREN, + 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, + ACTIONS(2197), 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(1037), 21, + anon_sym_STAR, + anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, @@ -87579,109 +87522,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(2129), 30, - anon_sym_as, - anon_sym_COMMA, - 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, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, - [24540] = 30, + [23920] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(427), 1, + ACTIONS(731), 1, anon_sym_STAR, - ACTIONS(461), 1, + ACTIONS(743), 1, anon_sym_QMARK, - ACTIONS(463), 1, + ACTIONS(745), 1, anon_sym_AMP, - ACTIONS(465), 1, + ACTIONS(747), 1, anon_sym_PIPE, - ACTIONS(495), 1, + ACTIONS(763), 1, anon_sym_keyof, - ACTIONS(497), 1, + ACTIONS(765), 1, anon_sym_LBRACE_PIPE, - ACTIONS(815), 1, + ACTIONS(1678), 1, + anon_sym_LT, + ACTIONS(2344), 1, + anon_sym_DQUOTE, + ACTIONS(2346), 1, + anon_sym_SQUOTE, + ACTIONS(2591), 1, + anon_sym_LBRACE, + ACTIONS(2593), 1, anon_sym_typeof, - ACTIONS(817), 1, + ACTIONS(2595), 1, anon_sym_LPAREN, - ACTIONS(829), 1, + ACTIONS(2597), 1, + anon_sym_LBRACK, + ACTIONS(2599), 1, anon_sym_new, - ACTIONS(845), 1, - anon_sym_DQUOTE, - ACTIONS(847), 1, - anon_sym_SQUOTE, - ACTIONS(849), 1, + ACTIONS(2605), 1, sym_number, - ACTIONS(925), 1, - sym_identifier, - ACTIONS(929), 1, - anon_sym_LBRACE, - ACTIONS(935), 1, + ACTIONS(2611), 1, sym_readonly, - ACTIONS(1691), 1, - anon_sym_LT, - ACTIONS(2286), 1, - anon_sym_LBRACK, - ACTIONS(2624), 1, + ACTIONS(2712), 1, + sym_identifier, + ACTIONS(2714), 1, sym_this, - STATE(444), 1, - sym__tuple_type_body, - STATE(1913), 1, + STATE(1950), 1, sym_nested_type_identifier, - STATE(2959), 1, + STATE(2010), 1, + sym__tuple_type_body, + STATE(3007), 1, sym_type_parameters, - STATE(2996), 1, - sym_formal_parameters, - STATE(2999), 1, + STATE(3017), 1, sym_nested_identifier, - ACTIONS(853), 2, - sym_true, - sym_false, - ACTIONS(1693), 2, + STATE(3065), 1, + sym_formal_parameters, + ACTIONS(2601), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(446), 2, + ACTIONS(2609), 2, + sym_true, + sym_false, + STATE(2000), 2, sym_string, sym__number, - STATE(2582), 5, + STATE(2429), 5, sym__type, sym_constructor_type, sym_union_type, sym_intersection_type, sym_function_type, - ACTIONS(843), 6, + ACTIONS(2603), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(448), 14, + STATE(2003), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -87696,24 +87608,24 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [24656] = 11, + [24036] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2171), 1, + ACTIONS(2187), 1, anon_sym_EQ, - ACTIONS(2175), 1, + ACTIONS(2191), 1, anon_sym_LBRACK, - ACTIONS(2177), 1, + ACTIONS(2193), 1, anon_sym_DOT, - ACTIONS(2179), 1, + ACTIONS(2195), 1, anon_sym_QMARK_DOT, - ACTIONS(2200), 1, + ACTIONS(2240), 1, anon_sym_EQ_GT, ACTIONS(2668), 1, anon_sym_in, ACTIONS(2670), 1, anon_sym_COLON, - ACTIONS(1099), 11, + ACTIONS(1039), 11, anon_sym_as, anon_sym_LPAREN, anon_sym_RBRACK, @@ -87725,7 +87637,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(2181), 15, + ACTIONS(2197), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -87741,7 +87653,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1097), 21, + ACTIONS(1037), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_LT, @@ -87763,7 +87675,93 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [24734] = 30, + [24114] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(81), 1, + anon_sym_DQUOTE, + ACTIONS(83), 1, + anon_sym_SQUOTE, + ACTIONS(1678), 1, + anon_sym_LT, + ACTIONS(2472), 1, + sym_identifier, + ACTIONS(2474), 1, + anon_sym_STAR, + ACTIONS(2476), 1, + anon_sym_LBRACE, + ACTIONS(2478), 1, + anon_sym_typeof, + ACTIONS(2480), 1, + anon_sym_LPAREN, + ACTIONS(2482), 1, + anon_sym_LBRACK, + ACTIONS(2484), 1, + anon_sym_new, + ACTIONS(2486), 1, + anon_sym_QMARK, + ACTIONS(2488), 1, + anon_sym_AMP, + ACTIONS(2490), 1, + anon_sym_PIPE, + ACTIONS(2496), 1, + sym_number, + ACTIONS(2498), 1, + sym_this, + ACTIONS(2502), 1, + sym_readonly, + ACTIONS(2504), 1, + anon_sym_keyof, + ACTIONS(2506), 1, + anon_sym_LBRACE_PIPE, + STATE(1231), 1, + sym_nested_type_identifier, + STATE(1412), 1, + sym__tuple_type_body, + STATE(2874), 1, + sym_type_parameters, + STATE(3081), 1, + sym_formal_parameters, + STATE(3130), 1, + sym_nested_identifier, + ACTIONS(2492), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2500), 2, + sym_true, + sym_false, + STATE(1409), 2, + sym_string, + sym__number, + STATE(1427), 5, + sym__type, + sym_constructor_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + ACTIONS(2494), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(1411), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [24230] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(427), 1, @@ -87796,32 +87794,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(935), 1, sym_readonly, - ACTIONS(1691), 1, + ACTIONS(1678), 1, anon_sym_LT, - ACTIONS(2286), 1, + ACTIONS(2310), 1, anon_sym_LBRACK, - ACTIONS(2624), 1, + ACTIONS(2638), 1, sym_this, - STATE(444), 1, + STATE(434), 1, sym__tuple_type_body, - STATE(1913), 1, + STATE(1917), 1, sym_nested_type_identifier, - STATE(2959), 1, + STATE(2916), 1, sym_type_parameters, - STATE(2996), 1, + STATE(3122), 1, sym_formal_parameters, - STATE(2999), 1, + STATE(3123), 1, sym_nested_identifier, ACTIONS(853), 2, sym_true, sym_false, - ACTIONS(1693), 2, + ACTIONS(1680), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(446), 2, + STATE(433), 2, sym_string, sym__number, - STATE(2598), 5, + STATE(2515), 5, sym__type, sym_constructor_type, sym_union_type, @@ -87834,7 +87832,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(448), 14, + STATE(432), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -87849,78 +87847,78 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [24850] = 30, + [24346] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(427), 1, - anon_sym_STAR, - ACTIONS(461), 1, - anon_sym_QMARK, - ACTIONS(463), 1, - anon_sym_AMP, - ACTIONS(465), 1, - anon_sym_PIPE, - ACTIONS(495), 1, - anon_sym_keyof, - ACTIONS(497), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(815), 1, - anon_sym_typeof, - ACTIONS(817), 1, - anon_sym_LPAREN, - ACTIONS(829), 1, - anon_sym_new, - ACTIONS(845), 1, + ACTIONS(81), 1, anon_sym_DQUOTE, - ACTIONS(847), 1, + ACTIONS(83), 1, anon_sym_SQUOTE, - ACTIONS(849), 1, - sym_number, - ACTIONS(925), 1, + ACTIONS(1678), 1, + anon_sym_LT, + ACTIONS(2472), 1, sym_identifier, - ACTIONS(929), 1, + ACTIONS(2474), 1, + anon_sym_STAR, + ACTIONS(2476), 1, anon_sym_LBRACE, - ACTIONS(935), 1, - sym_readonly, - ACTIONS(1691), 1, - anon_sym_LT, - ACTIONS(2286), 1, + ACTIONS(2478), 1, + anon_sym_typeof, + ACTIONS(2480), 1, + anon_sym_LPAREN, + ACTIONS(2482), 1, anon_sym_LBRACK, - ACTIONS(2624), 1, + ACTIONS(2484), 1, + anon_sym_new, + ACTIONS(2486), 1, + anon_sym_QMARK, + ACTIONS(2488), 1, + anon_sym_AMP, + ACTIONS(2490), 1, + anon_sym_PIPE, + ACTIONS(2496), 1, + sym_number, + ACTIONS(2498), 1, sym_this, - STATE(444), 1, - sym__tuple_type_body, - STATE(1913), 1, + ACTIONS(2502), 1, + sym_readonly, + ACTIONS(2504), 1, + anon_sym_keyof, + ACTIONS(2506), 1, + anon_sym_LBRACE_PIPE, + STATE(1231), 1, sym_nested_type_identifier, - STATE(2959), 1, + STATE(1412), 1, + sym__tuple_type_body, + STATE(2874), 1, sym_type_parameters, - STATE(2996), 1, + STATE(3081), 1, sym_formal_parameters, - STATE(2999), 1, + STATE(3130), 1, sym_nested_identifier, - ACTIONS(853), 2, - sym_true, - sym_false, - ACTIONS(1693), 2, + ACTIONS(2492), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(446), 2, + ACTIONS(2500), 2, + sym_true, + sym_false, + STATE(1409), 2, sym_string, sym__number, - STATE(423), 5, + STATE(1429), 5, sym__type, sym_constructor_type, sym_union_type, sym_intersection_type, sym_function_type, - ACTIONS(843), 6, + ACTIONS(2494), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(448), 14, + STATE(1411), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -87935,65 +87933,65 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [24966] = 30, + [24462] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(427), 1, anon_sym_STAR, - ACTIONS(461), 1, - anon_sym_QMARK, - ACTIONS(463), 1, - anon_sym_AMP, - ACTIONS(465), 1, - anon_sym_PIPE, - ACTIONS(495), 1, - anon_sym_keyof, ACTIONS(497), 1, anon_sym_LBRACE_PIPE, - ACTIONS(815), 1, - anon_sym_typeof, ACTIONS(817), 1, anon_sym_LPAREN, - ACTIONS(829), 1, - anon_sym_new, ACTIONS(845), 1, anon_sym_DQUOTE, ACTIONS(847), 1, anon_sym_SQUOTE, ACTIONS(849), 1, sym_number, - ACTIONS(925), 1, - sym_identifier, ACTIONS(929), 1, anon_sym_LBRACE, ACTIONS(935), 1, sym_readonly, - ACTIONS(1691), 1, + ACTIONS(1678), 1, anon_sym_LT, - ACTIONS(2286), 1, + ACTIONS(2310), 1, anon_sym_LBRACK, - ACTIONS(2624), 1, + ACTIONS(2638), 1, sym_this, - STATE(444), 1, + ACTIONS(2698), 1, + sym_identifier, + ACTIONS(2700), 1, + anon_sym_typeof, + ACTIONS(2702), 1, + anon_sym_new, + ACTIONS(2704), 1, + anon_sym_QMARK, + ACTIONS(2706), 1, + anon_sym_AMP, + ACTIONS(2708), 1, + anon_sym_PIPE, + ACTIONS(2710), 1, + anon_sym_keyof, + STATE(434), 1, sym__tuple_type_body, - STATE(1913), 1, + STATE(482), 1, sym_nested_type_identifier, - STATE(2959), 1, + STATE(2954), 1, sym_type_parameters, - STATE(2996), 1, - sym_formal_parameters, - STATE(2999), 1, + STATE(3123), 1, sym_nested_identifier, + STATE(3171), 1, + sym_formal_parameters, ACTIONS(853), 2, sym_true, sym_false, - ACTIONS(1693), 2, + ACTIONS(1680), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(446), 2, + STATE(433), 2, sym_string, sym__number, - STATE(2511), 5, + STATE(426), 5, sym__type, sym_constructor_type, sym_union_type, @@ -88006,7 +88004,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(448), 14, + STATE(432), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -88021,78 +88019,271 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [25082] = 30, + [24578] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(81), 1, - anon_sym_DQUOTE, - ACTIONS(83), 1, - anon_sym_SQUOTE, - ACTIONS(1691), 1, + ACTIONS(827), 1, + anon_sym_QMARK_DOT, + ACTIONS(1115), 1, + anon_sym_EQ, + ACTIONS(1117), 1, + anon_sym_EQ_GT, + ACTIONS(1623), 1, + anon_sym_LBRACK, + ACTIONS(1625), 1, + anon_sym_DOT, + ACTIONS(841), 12, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_COLON, + 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, + ACTIONS(831), 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(808), 22, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, anon_sym_LT, - ACTIONS(2508), 1, - sym_identifier, - ACTIONS(2510), 1, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + 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_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [24652] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(827), 1, + anon_sym_QMARK_DOT, + ACTIONS(1115), 1, + anon_sym_EQ, + ACTIONS(1117), 1, + anon_sym_EQ_GT, + ACTIONS(1623), 1, + anon_sym_LBRACK, + ACTIONS(1625), 1, + anon_sym_DOT, + ACTIONS(1732), 1, + anon_sym_COLON, + ACTIONS(841), 11, + anon_sym_as, + anon_sym_LPAREN, + 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, + ACTIONS(831), 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(808), 22, anon_sym_STAR, - ACTIONS(2512), 1, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + 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_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [24728] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2266), 1, + anon_sym_DOT, + ACTIONS(2260), 2, + anon_sym_COMMA, + anon_sym_LBRACE_PIPE, + ACTIONS(2263), 2, anon_sym_LBRACE, - ACTIONS(2514), 1, - anon_sym_typeof, - ACTIONS(2516), 1, + anon_sym_LT, + ACTIONS(2256), 22, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + 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_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + ACTIONS(2258), 27, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(2518), 1, anon_sym_LBRACK, - ACTIONS(2520), 1, - anon_sym_new, - ACTIONS(2522), 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, + [24796] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(731), 1, + anon_sym_STAR, + ACTIONS(743), 1, anon_sym_QMARK, - ACTIONS(2524), 1, + ACTIONS(745), 1, anon_sym_AMP, - ACTIONS(2526), 1, + ACTIONS(747), 1, anon_sym_PIPE, - ACTIONS(2532), 1, - sym_number, - ACTIONS(2534), 1, - sym_this, - ACTIONS(2538), 1, - sym_readonly, - ACTIONS(2540), 1, + ACTIONS(763), 1, anon_sym_keyof, - ACTIONS(2542), 1, + ACTIONS(765), 1, anon_sym_LBRACE_PIPE, - STATE(1291), 1, + ACTIONS(1678), 1, + anon_sym_LT, + ACTIONS(2344), 1, + anon_sym_DQUOTE, + ACTIONS(2346), 1, + anon_sym_SQUOTE, + ACTIONS(2591), 1, + anon_sym_LBRACE, + ACTIONS(2593), 1, + anon_sym_typeof, + ACTIONS(2595), 1, + anon_sym_LPAREN, + ACTIONS(2597), 1, + anon_sym_LBRACK, + ACTIONS(2599), 1, + anon_sym_new, + ACTIONS(2605), 1, + sym_number, + ACTIONS(2611), 1, + sym_readonly, + ACTIONS(2712), 1, + sym_identifier, + ACTIONS(2714), 1, + sym_this, + STATE(1950), 1, sym_nested_type_identifier, - STATE(1402), 1, + STATE(2010), 1, sym__tuple_type_body, - STATE(2856), 1, + STATE(3007), 1, sym_type_parameters, - STATE(3131), 1, + STATE(3017), 1, sym_nested_identifier, - STATE(3175), 1, + STATE(3065), 1, sym_formal_parameters, - ACTIONS(2528), 2, + ACTIONS(2601), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2536), 2, + ACTIONS(2609), 2, sym_true, sym_false, - STATE(1399), 2, + STATE(2000), 2, sym_string, sym__number, - STATE(1364), 5, + STATE(1997), 5, sym__type, sym_constructor_type, sym_union_type, sym_intersection_type, sym_function_type, - ACTIONS(2530), 6, + ACTIONS(2603), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(1401), 14, + STATE(2003), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -88107,78 +88298,78 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [25198] = 30, + [24912] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(475), 1, anon_sym_DQUOTE, ACTIONS(477), 1, anon_sym_SQUOTE, - ACTIONS(1691), 1, + ACTIONS(1678), 1, anon_sym_LT, - ACTIONS(2456), 1, + ACTIONS(2549), 1, sym_identifier, - ACTIONS(2458), 1, + ACTIONS(2551), 1, anon_sym_STAR, - ACTIONS(2460), 1, + ACTIONS(2553), 1, anon_sym_LBRACE, - ACTIONS(2462), 1, + ACTIONS(2555), 1, anon_sym_typeof, - ACTIONS(2464), 1, + ACTIONS(2557), 1, anon_sym_LPAREN, - ACTIONS(2466), 1, + ACTIONS(2559), 1, anon_sym_LBRACK, - ACTIONS(2468), 1, + ACTIONS(2561), 1, anon_sym_new, - ACTIONS(2470), 1, + ACTIONS(2563), 1, anon_sym_QMARK, - ACTIONS(2472), 1, + ACTIONS(2565), 1, anon_sym_AMP, - ACTIONS(2474), 1, + ACTIONS(2567), 1, anon_sym_PIPE, - ACTIONS(2480), 1, + ACTIONS(2573), 1, sym_number, - ACTIONS(2482), 1, + ACTIONS(2575), 1, sym_this, - ACTIONS(2486), 1, + ACTIONS(2579), 1, sym_readonly, - ACTIONS(2488), 1, + ACTIONS(2581), 1, anon_sym_keyof, - ACTIONS(2490), 1, + ACTIONS(2583), 1, anon_sym_LBRACE_PIPE, - STATE(1003), 1, + STATE(1012), 1, sym_nested_type_identifier, - STATE(1036), 1, + STATE(1019), 1, sym__tuple_type_body, - STATE(2953), 1, + STATE(2959), 1, sym_type_parameters, - STATE(3027), 1, + STATE(3046), 1, sym_nested_identifier, - STATE(3083), 1, + STATE(3147), 1, sym_formal_parameters, - ACTIONS(2476), 2, + ACTIONS(2569), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2484), 2, + ACTIONS(2577), 2, sym_true, sym_false, - STATE(1034), 2, + STATE(1027), 2, sym_string, sym__number, - STATE(1047), 5, + STATE(1034), 5, sym__type, sym_constructor_type, sym_union_type, sym_intersection_type, sym_function_type, - ACTIONS(2478), 6, + ACTIONS(2571), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(1035), 14, + STATE(1023), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -88193,65 +88384,65 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [25314] = 30, + [25028] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(427), 1, anon_sym_STAR, + ACTIONS(461), 1, + anon_sym_QMARK, + ACTIONS(463), 1, + anon_sym_AMP, + ACTIONS(465), 1, + anon_sym_PIPE, + ACTIONS(495), 1, + anon_sym_keyof, ACTIONS(497), 1, anon_sym_LBRACE_PIPE, + ACTIONS(815), 1, + anon_sym_typeof, ACTIONS(817), 1, anon_sym_LPAREN, + ACTIONS(829), 1, + anon_sym_new, ACTIONS(845), 1, anon_sym_DQUOTE, ACTIONS(847), 1, anon_sym_SQUOTE, ACTIONS(849), 1, sym_number, + ACTIONS(925), 1, + sym_identifier, ACTIONS(929), 1, anon_sym_LBRACE, ACTIONS(935), 1, sym_readonly, - ACTIONS(1691), 1, + ACTIONS(1678), 1, anon_sym_LT, - ACTIONS(2286), 1, + ACTIONS(2310), 1, anon_sym_LBRACK, - ACTIONS(2624), 1, + ACTIONS(2718), 1, sym_this, - ACTIONS(2696), 1, - sym_identifier, - ACTIONS(2698), 1, - anon_sym_typeof, - ACTIONS(2700), 1, - anon_sym_new, - ACTIONS(2702), 1, - anon_sym_QMARK, - ACTIONS(2704), 1, - anon_sym_AMP, - ACTIONS(2706), 1, - anon_sym_PIPE, - ACTIONS(2708), 1, - anon_sym_keyof, - STATE(444), 1, + STATE(434), 1, sym__tuple_type_body, - STATE(493), 1, + STATE(1917), 1, sym_nested_type_identifier, - STATE(2944), 1, + STATE(2916), 1, sym_type_parameters, - STATE(2999), 1, - sym_nested_identifier, - STATE(3029), 1, + STATE(3122), 1, sym_formal_parameters, + STATE(3123), 1, + sym_nested_identifier, ACTIONS(853), 2, sym_true, sym_false, - ACTIONS(1693), 2, + ACTIONS(1680), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(446), 2, + STATE(433), 2, sym_string, sym__number, - STATE(509), 5, + STATE(2780), 5, sym__type, sym_constructor_type, sym_union_type, @@ -88264,7 +88455,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(448), 14, + STATE(431), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -88279,78 +88470,78 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [25430] = 30, + [25144] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(81), 1, - anon_sym_DQUOTE, - ACTIONS(83), 1, - anon_sym_SQUOTE, - ACTIONS(1691), 1, - anon_sym_LT, - ACTIONS(2508), 1, - sym_identifier, - ACTIONS(2510), 1, + ACTIONS(427), 1, anon_sym_STAR, - ACTIONS(2512), 1, - anon_sym_LBRACE, - ACTIONS(2514), 1, - anon_sym_typeof, - ACTIONS(2516), 1, - anon_sym_LPAREN, - ACTIONS(2518), 1, - anon_sym_LBRACK, - ACTIONS(2520), 1, - anon_sym_new, - ACTIONS(2522), 1, + ACTIONS(461), 1, anon_sym_QMARK, - ACTIONS(2524), 1, + ACTIONS(463), 1, anon_sym_AMP, - ACTIONS(2526), 1, + ACTIONS(465), 1, anon_sym_PIPE, - ACTIONS(2532), 1, - sym_number, - ACTIONS(2534), 1, - sym_this, - ACTIONS(2538), 1, - sym_readonly, - ACTIONS(2540), 1, + ACTIONS(495), 1, anon_sym_keyof, - ACTIONS(2542), 1, + ACTIONS(497), 1, anon_sym_LBRACE_PIPE, - STATE(1291), 1, - sym_nested_type_identifier, - STATE(1402), 1, + ACTIONS(815), 1, + anon_sym_typeof, + ACTIONS(817), 1, + anon_sym_LPAREN, + ACTIONS(829), 1, + anon_sym_new, + ACTIONS(845), 1, + anon_sym_DQUOTE, + ACTIONS(847), 1, + anon_sym_SQUOTE, + ACTIONS(849), 1, + sym_number, + ACTIONS(925), 1, + sym_identifier, + ACTIONS(929), 1, + anon_sym_LBRACE, + ACTIONS(935), 1, + sym_readonly, + ACTIONS(1678), 1, + anon_sym_LT, + ACTIONS(2310), 1, + anon_sym_LBRACK, + ACTIONS(2638), 1, + sym_this, + STATE(434), 1, sym__tuple_type_body, - STATE(2856), 1, + STATE(1917), 1, + sym_nested_type_identifier, + STATE(2916), 1, sym_type_parameters, - STATE(3131), 1, - sym_nested_identifier, - STATE(3175), 1, + STATE(3122), 1, sym_formal_parameters, - ACTIONS(2528), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2536), 2, + STATE(3123), 1, + sym_nested_identifier, + ACTIONS(853), 2, sym_true, sym_false, - STATE(1399), 2, + ACTIONS(1680), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(433), 2, sym_string, sym__number, - STATE(1365), 5, + STATE(430), 5, sym__type, sym_constructor_type, sym_union_type, sym_intersection_type, sym_function_type, - ACTIONS(2530), 6, + ACTIONS(843), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(1401), 14, + STATE(432), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -88365,78 +88556,78 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [25546] = 30, + [25260] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(81), 1, - anon_sym_DQUOTE, - ACTIONS(83), 1, - anon_sym_SQUOTE, - ACTIONS(1691), 1, - anon_sym_LT, - ACTIONS(2508), 1, - sym_identifier, - ACTIONS(2510), 1, + ACTIONS(427), 1, anon_sym_STAR, - ACTIONS(2512), 1, - anon_sym_LBRACE, - ACTIONS(2514), 1, - anon_sym_typeof, - ACTIONS(2516), 1, - anon_sym_LPAREN, - ACTIONS(2518), 1, - anon_sym_LBRACK, - ACTIONS(2520), 1, - anon_sym_new, - ACTIONS(2522), 1, + ACTIONS(461), 1, anon_sym_QMARK, - ACTIONS(2524), 1, + ACTIONS(463), 1, anon_sym_AMP, - ACTIONS(2526), 1, + ACTIONS(465), 1, anon_sym_PIPE, - ACTIONS(2532), 1, - sym_number, - ACTIONS(2534), 1, - sym_this, - ACTIONS(2538), 1, - sym_readonly, - ACTIONS(2540), 1, + ACTIONS(495), 1, anon_sym_keyof, - ACTIONS(2542), 1, + ACTIONS(497), 1, anon_sym_LBRACE_PIPE, - STATE(1291), 1, - sym_nested_type_identifier, - STATE(1402), 1, + ACTIONS(815), 1, + anon_sym_typeof, + ACTIONS(817), 1, + anon_sym_LPAREN, + ACTIONS(829), 1, + anon_sym_new, + ACTIONS(845), 1, + anon_sym_DQUOTE, + ACTIONS(847), 1, + anon_sym_SQUOTE, + ACTIONS(849), 1, + sym_number, + ACTIONS(925), 1, + sym_identifier, + ACTIONS(929), 1, + anon_sym_LBRACE, + ACTIONS(935), 1, + sym_readonly, + ACTIONS(1678), 1, + anon_sym_LT, + ACTIONS(2310), 1, + anon_sym_LBRACK, + ACTIONS(2638), 1, + sym_this, + STATE(434), 1, sym__tuple_type_body, - STATE(2856), 1, + STATE(1917), 1, + sym_nested_type_identifier, + STATE(2916), 1, sym_type_parameters, - STATE(3131), 1, - sym_nested_identifier, - STATE(3175), 1, + STATE(3122), 1, sym_formal_parameters, - ACTIONS(2528), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2536), 2, + STATE(3123), 1, + sym_nested_identifier, + ACTIONS(853), 2, sym_true, sym_false, - STATE(1399), 2, + ACTIONS(1680), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(433), 2, sym_string, sym__number, - STATE(1367), 5, + STATE(429), 5, sym__type, sym_constructor_type, sym_union_type, sym_intersection_type, sym_function_type, - ACTIONS(2530), 6, + ACTIONS(843), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(1401), 14, + STATE(432), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -88451,7 +88642,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [25662] = 30, + [25376] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(427), 1, @@ -88470,46 +88661,46 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(935), 1, sym_readonly, - ACTIONS(1691), 1, + ACTIONS(1678), 1, anon_sym_LT, - ACTIONS(2286), 1, + ACTIONS(2310), 1, anon_sym_LBRACK, - ACTIONS(2624), 1, + ACTIONS(2638), 1, sym_this, - ACTIONS(2696), 1, - sym_identifier, ACTIONS(2698), 1, - anon_sym_typeof, + sym_identifier, ACTIONS(2700), 1, - anon_sym_new, + anon_sym_typeof, ACTIONS(2702), 1, - anon_sym_QMARK, + anon_sym_new, ACTIONS(2704), 1, - anon_sym_AMP, + anon_sym_QMARK, ACTIONS(2706), 1, - anon_sym_PIPE, + anon_sym_AMP, ACTIONS(2708), 1, + anon_sym_PIPE, + ACTIONS(2710), 1, anon_sym_keyof, - STATE(444), 1, + STATE(434), 1, sym__tuple_type_body, - STATE(493), 1, + STATE(482), 1, sym_nested_type_identifier, - STATE(2944), 1, + STATE(2954), 1, sym_type_parameters, - STATE(2999), 1, + STATE(3123), 1, sym_nested_identifier, - STATE(3029), 1, + STATE(3171), 1, sym_formal_parameters, ACTIONS(853), 2, sym_true, sym_false, - ACTIONS(1693), 2, + ACTIONS(1680), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(446), 2, + STATE(433), 2, sym_string, sym__number, - STATE(440), 5, + STATE(504), 5, sym__type, sym_constructor_type, sym_union_type, @@ -88522,7 +88713,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(448), 14, + STATE(432), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -88537,25 +88728,24 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [25778] = 10, + [25492] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(827), 1, + ACTIONS(1021), 1, anon_sym_QMARK_DOT, ACTIONS(1127), 1, anon_sym_EQ, ACTIONS(1129), 1, anon_sym_EQ_GT, - ACTIONS(1623), 1, + ACTIONS(1219), 1, anon_sym_LBRACK, - ACTIONS(1625), 1, + ACTIONS(1224), 1, anon_sym_DOT, - ACTIONS(1726), 1, - anon_sym_COLON, - ACTIONS(841), 11, + ACTIONS(841), 12, + sym__automatic_semicolon, anon_sym_as, anon_sym_LPAREN, - anon_sym_RBRACK, + anon_sym_SEMI, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -88603,151 +88793,65 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [25854] = 30, + [25566] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(475), 1, - anon_sym_DQUOTE, - ACTIONS(477), 1, - anon_sym_SQUOTE, - ACTIONS(1691), 1, - anon_sym_LT, - ACTIONS(2456), 1, - sym_identifier, - ACTIONS(2458), 1, + ACTIONS(427), 1, anon_sym_STAR, - ACTIONS(2460), 1, - anon_sym_LBRACE, - ACTIONS(2462), 1, - anon_sym_typeof, - ACTIONS(2464), 1, - anon_sym_LPAREN, - ACTIONS(2466), 1, - anon_sym_LBRACK, - ACTIONS(2468), 1, - anon_sym_new, - ACTIONS(2470), 1, + ACTIONS(461), 1, anon_sym_QMARK, - ACTIONS(2472), 1, + ACTIONS(463), 1, anon_sym_AMP, - ACTIONS(2474), 1, + ACTIONS(465), 1, anon_sym_PIPE, - ACTIONS(2480), 1, - sym_number, - ACTIONS(2482), 1, - sym_this, - ACTIONS(2486), 1, - sym_readonly, - ACTIONS(2488), 1, + ACTIONS(495), 1, anon_sym_keyof, - ACTIONS(2490), 1, - anon_sym_LBRACE_PIPE, - STATE(1003), 1, - sym_nested_type_identifier, - STATE(1036), 1, - sym__tuple_type_body, - STATE(2953), 1, - sym_type_parameters, - STATE(3027), 1, - sym_nested_identifier, - STATE(3083), 1, - sym_formal_parameters, - ACTIONS(2476), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2484), 2, - sym_true, - sym_false, - STATE(1034), 2, - sym_string, - sym__number, - STATE(1046), 5, - sym__type, - sym_constructor_type, - sym_union_type, - sym_intersection_type, - sym_function_type, - ACTIONS(2478), 6, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - STATE(1035), 14, - sym__primary_type, - sym_conditional_type, - sym_generic_type, - sym_type_query, - sym_index_type_query, - sym_lookup_type, - sym_literal_type, - sym_existential_type, - sym_flow_maybe_type, - sym_parenthesized_type, - sym_predefined_type, - sym_object_type, - sym_array_type, - sym_tuple_type, - [25970] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(427), 1, - anon_sym_STAR, ACTIONS(497), 1, anon_sym_LBRACE_PIPE, + ACTIONS(815), 1, + anon_sym_typeof, ACTIONS(817), 1, anon_sym_LPAREN, + ACTIONS(829), 1, + anon_sym_new, ACTIONS(845), 1, anon_sym_DQUOTE, ACTIONS(847), 1, anon_sym_SQUOTE, ACTIONS(849), 1, sym_number, + ACTIONS(925), 1, + sym_identifier, ACTIONS(929), 1, anon_sym_LBRACE, ACTIONS(935), 1, sym_readonly, - ACTIONS(1691), 1, + ACTIONS(1678), 1, anon_sym_LT, - ACTIONS(2286), 1, + ACTIONS(2310), 1, anon_sym_LBRACK, - ACTIONS(2624), 1, + ACTIONS(2638), 1, sym_this, - ACTIONS(2696), 1, - sym_identifier, - ACTIONS(2698), 1, - anon_sym_typeof, - ACTIONS(2700), 1, - anon_sym_new, - ACTIONS(2702), 1, - anon_sym_QMARK, - ACTIONS(2704), 1, - anon_sym_AMP, - ACTIONS(2706), 1, - anon_sym_PIPE, - ACTIONS(2708), 1, - anon_sym_keyof, - STATE(444), 1, + STATE(434), 1, sym__tuple_type_body, - STATE(493), 1, + STATE(1917), 1, sym_nested_type_identifier, - STATE(2944), 1, + STATE(2916), 1, sym_type_parameters, - STATE(2999), 1, - sym_nested_identifier, - STATE(3029), 1, + STATE(3122), 1, sym_formal_parameters, + STATE(3123), 1, + sym_nested_identifier, ACTIONS(853), 2, sym_true, sym_false, - ACTIONS(1693), 2, + ACTIONS(1680), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(446), 2, + STATE(433), 2, sym_string, sym__number, - STATE(423), 5, + STATE(2507), 5, sym__type, sym_constructor_type, sym_union_type, @@ -88760,7 +88864,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(448), 14, + STATE(432), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -88775,7 +88879,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [26086] = 30, + [25682] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(427), 1, @@ -88808,32 +88912,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(935), 1, sym_readonly, - ACTIONS(1691), 1, + ACTIONS(1678), 1, anon_sym_LT, - ACTIONS(2286), 1, + ACTIONS(2310), 1, anon_sym_LBRACK, - ACTIONS(2624), 1, + ACTIONS(2638), 1, sym_this, - STATE(444), 1, + STATE(434), 1, sym__tuple_type_body, - STATE(1913), 1, + STATE(1917), 1, sym_nested_type_identifier, - STATE(2959), 1, + STATE(2916), 1, sym_type_parameters, - STATE(2996), 1, + STATE(3122), 1, sym_formal_parameters, - STATE(2999), 1, + STATE(3123), 1, sym_nested_identifier, ACTIONS(853), 2, sym_true, sym_false, - ACTIONS(1693), 2, + ACTIONS(1680), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(446), 2, + STATE(433), 2, sym_string, sym__number, - STATE(2276), 5, + STATE(2416), 5, sym__type, sym_constructor_type, sym_union_type, @@ -88846,7 +88950,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(448), 14, + STATE(432), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -88861,7 +88965,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [26202] = 30, + [25798] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(427), 1, @@ -88894,32 +88998,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(935), 1, sym_readonly, - ACTIONS(1691), 1, + ACTIONS(1678), 1, anon_sym_LT, - ACTIONS(2286), 1, + ACTIONS(2310), 1, anon_sym_LBRACK, - ACTIONS(2624), 1, + ACTIONS(2638), 1, sym_this, - STATE(444), 1, + STATE(434), 1, sym__tuple_type_body, - STATE(1913), 1, + STATE(1917), 1, sym_nested_type_identifier, - STATE(2959), 1, + STATE(2916), 1, sym_type_parameters, - STATE(2996), 1, + STATE(3122), 1, sym_formal_parameters, - STATE(2999), 1, + STATE(3123), 1, sym_nested_identifier, ACTIONS(853), 2, sym_true, sym_false, - ACTIONS(1693), 2, + ACTIONS(1680), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(446), 2, + STATE(433), 2, sym_string, sym__number, - STATE(1922), 5, + STATE(2521), 5, sym__type, sym_constructor_type, sym_union_type, @@ -88932,7 +89036,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(448), 14, + STATE(432), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -88947,7 +89051,66 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [26318] = 30, + [25914] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2269), 24, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + 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_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + ACTIONS(2271), 30, + anon_sym_as, + anon_sym_COMMA, + 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, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_LBRACE_PIPE, + [25976] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(427), 1, @@ -88980,32 +89143,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(935), 1, sym_readonly, - ACTIONS(1691), 1, + ACTIONS(1678), 1, anon_sym_LT, - ACTIONS(2286), 1, + ACTIONS(2310), 1, anon_sym_LBRACK, - ACTIONS(2624), 1, + ACTIONS(2638), 1, sym_this, - STATE(444), 1, + STATE(434), 1, sym__tuple_type_body, - STATE(1913), 1, + STATE(1917), 1, sym_nested_type_identifier, - STATE(2959), 1, + STATE(2916), 1, sym_type_parameters, - STATE(2996), 1, + STATE(3122), 1, sym_formal_parameters, - STATE(2999), 1, + STATE(3123), 1, sym_nested_identifier, ACTIONS(853), 2, sym_true, sym_false, - ACTIONS(1693), 2, + ACTIONS(1680), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(446), 2, + STATE(433), 2, sym_string, sym__number, - STATE(2527), 5, + STATE(2581), 5, sym__type, sym_constructor_type, sym_union_type, @@ -89018,7 +89181,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(448), 14, + STATE(432), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -89033,78 +89196,78 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [26434] = 30, + [26092] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(569), 1, + ACTIONS(81), 1, anon_sym_DQUOTE, - ACTIONS(571), 1, + ACTIONS(83), 1, anon_sym_SQUOTE, - ACTIONS(1691), 1, + ACTIONS(1678), 1, anon_sym_LT, - ACTIONS(2580), 1, + ACTIONS(2472), 1, sym_identifier, - ACTIONS(2582), 1, + ACTIONS(2474), 1, anon_sym_STAR, - ACTIONS(2584), 1, + ACTIONS(2476), 1, anon_sym_LBRACE, - ACTIONS(2586), 1, + ACTIONS(2478), 1, anon_sym_typeof, - ACTIONS(2588), 1, + ACTIONS(2480), 1, anon_sym_LPAREN, - ACTIONS(2590), 1, + ACTIONS(2482), 1, anon_sym_LBRACK, - ACTIONS(2592), 1, + ACTIONS(2484), 1, anon_sym_new, - ACTIONS(2594), 1, + ACTIONS(2486), 1, anon_sym_QMARK, - ACTIONS(2596), 1, + ACTIONS(2488), 1, anon_sym_AMP, - ACTIONS(2598), 1, + ACTIONS(2490), 1, anon_sym_PIPE, - ACTIONS(2604), 1, + ACTIONS(2496), 1, sym_number, - ACTIONS(2606), 1, + ACTIONS(2498), 1, sym_this, - ACTIONS(2610), 1, + ACTIONS(2502), 1, sym_readonly, - ACTIONS(2612), 1, + ACTIONS(2504), 1, anon_sym_keyof, - ACTIONS(2614), 1, + ACTIONS(2506), 1, anon_sym_LBRACE_PIPE, - STATE(1361), 1, + STATE(1231), 1, sym_nested_type_identifier, - STATE(1481), 1, + STATE(1412), 1, sym__tuple_type_body, - STATE(2938), 1, + STATE(2874), 1, sym_type_parameters, - STATE(3043), 1, - sym_nested_identifier, - STATE(3159), 1, + STATE(3081), 1, sym_formal_parameters, - ACTIONS(2600), 2, + STATE(3130), 1, + sym_nested_identifier, + ACTIONS(2492), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2608), 2, + ACTIONS(2500), 2, sym_true, sym_false, - STATE(1483), 2, + STATE(1409), 2, sym_string, sym__number, - STATE(1619), 5, + STATE(1413), 5, sym__type, sym_constructor_type, sym_union_type, sym_intersection_type, sym_function_type, - ACTIONS(2602), 6, + ACTIONS(2494), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(1482), 14, + STATE(1411), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -89119,10 +89282,10 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [26550] = 3, + [26208] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2260), 24, + ACTIONS(2256), 24, anon_sym_STAR, anon_sym_EQ, anon_sym_LBRACE, @@ -89147,7 +89310,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(2262), 30, + ACTIONS(2258), 30, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -89178,78 +89341,137 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_LBRACE_PIPE, - [26612] = 30, + [26270] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(713), 1, + ACTIONS(2252), 24, anon_sym_STAR, - ACTIONS(725), 1, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(727), 1, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_AMP, - ACTIONS(729), 1, + anon_sym_CARET, anon_sym_PIPE, - ACTIONS(745), 1, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + ACTIONS(2254), 30, + anon_sym_as, + anon_sym_COMMA, + 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, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_LBRACE_PIPE, + [26332] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(427), 1, + anon_sym_STAR, + ACTIONS(461), 1, + anon_sym_QMARK, + ACTIONS(463), 1, + anon_sym_AMP, + ACTIONS(465), 1, + anon_sym_PIPE, + ACTIONS(495), 1, anon_sym_keyof, - ACTIONS(747), 1, + ACTIONS(497), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1691), 1, - anon_sym_LT, - ACTIONS(2318), 1, - anon_sym_DQUOTE, - ACTIONS(2320), 1, - anon_sym_SQUOTE, - ACTIONS(2554), 1, - anon_sym_LBRACE, - ACTIONS(2556), 1, + ACTIONS(815), 1, anon_sym_typeof, - ACTIONS(2558), 1, + ACTIONS(817), 1, anon_sym_LPAREN, - ACTIONS(2560), 1, - anon_sym_LBRACK, - ACTIONS(2562), 1, + ACTIONS(829), 1, anon_sym_new, - ACTIONS(2568), 1, + ACTIONS(845), 1, + anon_sym_DQUOTE, + ACTIONS(847), 1, + anon_sym_SQUOTE, + ACTIONS(849), 1, sym_number, - ACTIONS(2574), 1, - sym_readonly, - ACTIONS(2682), 1, + ACTIONS(925), 1, sym_identifier, - ACTIONS(2684), 1, + ACTIONS(929), 1, + anon_sym_LBRACE, + ACTIONS(935), 1, + sym_readonly, + ACTIONS(1678), 1, + anon_sym_LT, + ACTIONS(2310), 1, + anon_sym_LBRACK, + ACTIONS(2638), 1, sym_this, - STATE(1947), 1, - sym_nested_type_identifier, - STATE(1972), 1, + STATE(434), 1, sym__tuple_type_body, - STATE(2982), 1, + STATE(1917), 1, + sym_nested_type_identifier, + STATE(2916), 1, sym_type_parameters, - STATE(2998), 1, - sym_nested_identifier, - STATE(3030), 1, + STATE(3122), 1, sym_formal_parameters, - ACTIONS(2564), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2572), 2, + STATE(3123), 1, + sym_nested_identifier, + ACTIONS(853), 2, sym_true, sym_false, - STATE(1981), 2, + ACTIONS(1680), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(433), 2, sym_string, sym__number, - STATE(2447), 5, + STATE(2535), 5, sym__type, sym_constructor_type, sym_union_type, sym_intersection_type, sym_function_type, - ACTIONS(2566), 6, + ACTIONS(843), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(1974), 14, + STATE(432), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -89264,7 +89486,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [26728] = 30, + [26448] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(427), 1, @@ -89297,32 +89519,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(935), 1, sym_readonly, - ACTIONS(1691), 1, + ACTIONS(1678), 1, anon_sym_LT, - ACTIONS(2286), 1, + ACTIONS(2310), 1, anon_sym_LBRACK, - ACTIONS(2624), 1, + ACTIONS(2638), 1, sym_this, - STATE(444), 1, + STATE(434), 1, sym__tuple_type_body, - STATE(1913), 1, + STATE(1917), 1, sym_nested_type_identifier, - STATE(2959), 1, + STATE(2916), 1, sym_type_parameters, - STATE(2996), 1, + STATE(3122), 1, sym_formal_parameters, - STATE(2999), 1, + STATE(3123), 1, sym_nested_identifier, ACTIONS(853), 2, sym_true, sym_false, - ACTIONS(1693), 2, + ACTIONS(1680), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(446), 2, + STATE(433), 2, sym_string, sym__number, - STATE(440), 5, + STATE(2543), 5, sym__type, sym_constructor_type, sym_union_type, @@ -89335,7 +89557,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(448), 14, + STATE(432), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -89350,78 +89572,78 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [26844] = 30, + [26564] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(463), 1, + ACTIONS(731), 1, + anon_sym_STAR, + ACTIONS(743), 1, + anon_sym_QMARK, + ACTIONS(745), 1, anon_sym_AMP, - ACTIONS(465), 1, + ACTIONS(747), 1, anon_sym_PIPE, - ACTIONS(475), 1, + ACTIONS(763), 1, + anon_sym_keyof, + ACTIONS(765), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1678), 1, + anon_sym_LT, + ACTIONS(2344), 1, anon_sym_DQUOTE, - ACTIONS(477), 1, + ACTIONS(2346), 1, anon_sym_SQUOTE, - ACTIONS(829), 1, - anon_sym_new, - ACTIONS(1691), 1, - anon_sym_LT, - ACTIONS(2456), 1, - sym_identifier, - ACTIONS(2458), 1, - anon_sym_STAR, - ACTIONS(2460), 1, + ACTIONS(2591), 1, anon_sym_LBRACE, - ACTIONS(2462), 1, + ACTIONS(2593), 1, anon_sym_typeof, - ACTIONS(2464), 1, + ACTIONS(2595), 1, anon_sym_LPAREN, - ACTIONS(2466), 1, + ACTIONS(2597), 1, anon_sym_LBRACK, - ACTIONS(2470), 1, - anon_sym_QMARK, - ACTIONS(2480), 1, + ACTIONS(2599), 1, + anon_sym_new, + ACTIONS(2605), 1, sym_number, - ACTIONS(2486), 1, + ACTIONS(2611), 1, sym_readonly, - ACTIONS(2488), 1, - anon_sym_keyof, - ACTIONS(2490), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(2732), 1, + ACTIONS(2712), 1, + sym_identifier, + ACTIONS(2714), 1, sym_this, - STATE(1003), 1, + STATE(1950), 1, sym_nested_type_identifier, - STATE(1036), 1, + STATE(2010), 1, sym__tuple_type_body, - STATE(2959), 1, + STATE(3007), 1, sym_type_parameters, - STATE(2996), 1, - sym_formal_parameters, - STATE(3027), 1, + STATE(3017), 1, sym_nested_identifier, - ACTIONS(2476), 2, + STATE(3065), 1, + sym_formal_parameters, + ACTIONS(2601), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2484), 2, + ACTIONS(2609), 2, sym_true, sym_false, - STATE(1034), 2, + STATE(2000), 2, sym_string, sym__number, - STATE(2610), 5, + STATE(1996), 5, sym__type, sym_constructor_type, sym_union_type, sym_intersection_type, sym_function_type, - ACTIONS(2478), 6, + ACTIONS(2603), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(1045), 14, + STATE(2003), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -89436,137 +89658,78 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [26960] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2123), 24, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - 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_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - ACTIONS(2125), 30, - anon_sym_as, - anon_sym_COMMA, - 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, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, - [27022] = 30, + [26680] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(713), 1, - anon_sym_STAR, - ACTIONS(725), 1, - anon_sym_QMARK, - ACTIONS(727), 1, + ACTIONS(81), 1, + anon_sym_DQUOTE, + ACTIONS(83), 1, + anon_sym_SQUOTE, + ACTIONS(463), 1, anon_sym_AMP, - ACTIONS(729), 1, + ACTIONS(465), 1, anon_sym_PIPE, - ACTIONS(745), 1, - anon_sym_keyof, - ACTIONS(747), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1691), 1, + ACTIONS(829), 1, + anon_sym_new, + ACTIONS(1678), 1, anon_sym_LT, - ACTIONS(2318), 1, - anon_sym_DQUOTE, - ACTIONS(2320), 1, - anon_sym_SQUOTE, - ACTIONS(2554), 1, + ACTIONS(2472), 1, + sym_identifier, + ACTIONS(2474), 1, + anon_sym_STAR, + ACTIONS(2476), 1, anon_sym_LBRACE, - ACTIONS(2556), 1, + ACTIONS(2478), 1, anon_sym_typeof, - ACTIONS(2558), 1, + ACTIONS(2480), 1, anon_sym_LPAREN, - ACTIONS(2560), 1, + ACTIONS(2482), 1, anon_sym_LBRACK, - ACTIONS(2562), 1, - anon_sym_new, - ACTIONS(2568), 1, + ACTIONS(2486), 1, + anon_sym_QMARK, + ACTIONS(2496), 1, sym_number, - ACTIONS(2574), 1, + ACTIONS(2502), 1, sym_readonly, - ACTIONS(2682), 1, - sym_identifier, - ACTIONS(2684), 1, + ACTIONS(2504), 1, + anon_sym_keyof, + ACTIONS(2506), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(2750), 1, sym_this, - STATE(1947), 1, + STATE(1231), 1, sym_nested_type_identifier, - STATE(1972), 1, + STATE(1412), 1, sym__tuple_type_body, - STATE(2982), 1, + STATE(2916), 1, sym_type_parameters, - STATE(2998), 1, - sym_nested_identifier, - STATE(3030), 1, + STATE(3122), 1, sym_formal_parameters, - ACTIONS(2564), 2, + STATE(3130), 1, + sym_nested_identifier, + ACTIONS(2492), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2572), 2, + ACTIONS(2500), 2, sym_true, sym_false, - STATE(1981), 2, + STATE(1409), 2, sym_string, sym__number, - STATE(1971), 5, + STATE(2788), 5, sym__type, sym_constructor_type, sym_union_type, sym_intersection_type, sym_function_type, - ACTIONS(2566), 6, + ACTIONS(2494), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(1974), 14, + STATE(1430), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -89581,7 +89744,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [27138] = 30, + [26796] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(427), 1, @@ -89614,32 +89777,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(935), 1, sym_readonly, - ACTIONS(1691), 1, + ACTIONS(1678), 1, anon_sym_LT, - ACTIONS(2286), 1, + ACTIONS(2310), 1, anon_sym_LBRACK, - ACTIONS(2624), 1, + ACTIONS(2638), 1, sym_this, - STATE(444), 1, + STATE(434), 1, sym__tuple_type_body, - STATE(1913), 1, + STATE(1917), 1, sym_nested_type_identifier, - STATE(2959), 1, + STATE(2916), 1, sym_type_parameters, - STATE(2996), 1, + STATE(3122), 1, sym_formal_parameters, - STATE(2999), 1, + STATE(3123), 1, sym_nested_identifier, ACTIONS(853), 2, sym_true, sym_false, - ACTIONS(1693), 2, + ACTIONS(1680), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(446), 2, + STATE(433), 2, sym_string, sym__number, - STATE(2031), 5, + STATE(2582), 5, sym__type, sym_constructor_type, sym_union_type, @@ -89652,7 +89815,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(448), 14, + STATE(432), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -89667,78 +89830,78 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [27254] = 30, + [26912] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(427), 1, - anon_sym_STAR, - ACTIONS(497), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(817), 1, - anon_sym_LPAREN, - ACTIONS(845), 1, + ACTIONS(81), 1, anon_sym_DQUOTE, - ACTIONS(847), 1, + ACTIONS(83), 1, anon_sym_SQUOTE, - ACTIONS(849), 1, - sym_number, - ACTIONS(929), 1, - anon_sym_LBRACE, - ACTIONS(935), 1, - sym_readonly, - ACTIONS(1691), 1, + ACTIONS(1678), 1, anon_sym_LT, - ACTIONS(2286), 1, - anon_sym_LBRACK, - ACTIONS(2624), 1, - sym_this, - ACTIONS(2696), 1, + ACTIONS(2472), 1, sym_identifier, - ACTIONS(2698), 1, + ACTIONS(2474), 1, + anon_sym_STAR, + ACTIONS(2476), 1, + anon_sym_LBRACE, + ACTIONS(2478), 1, anon_sym_typeof, - ACTIONS(2700), 1, + ACTIONS(2480), 1, + anon_sym_LPAREN, + ACTIONS(2482), 1, + anon_sym_LBRACK, + ACTIONS(2484), 1, anon_sym_new, - ACTIONS(2702), 1, + ACTIONS(2486), 1, anon_sym_QMARK, - ACTIONS(2704), 1, + ACTIONS(2488), 1, anon_sym_AMP, - ACTIONS(2706), 1, + ACTIONS(2490), 1, anon_sym_PIPE, - ACTIONS(2708), 1, + ACTIONS(2496), 1, + sym_number, + ACTIONS(2498), 1, + sym_this, + ACTIONS(2502), 1, + sym_readonly, + ACTIONS(2504), 1, anon_sym_keyof, - STATE(444), 1, - sym__tuple_type_body, - STATE(493), 1, + ACTIONS(2506), 1, + anon_sym_LBRACE_PIPE, + STATE(1231), 1, sym_nested_type_identifier, - STATE(2944), 1, + STATE(1412), 1, + sym__tuple_type_body, + STATE(2874), 1, sym_type_parameters, - STATE(2999), 1, - sym_nested_identifier, - STATE(3029), 1, + STATE(3081), 1, sym_formal_parameters, - ACTIONS(853), 2, - sym_true, - sym_false, - ACTIONS(1693), 2, + STATE(3130), 1, + sym_nested_identifier, + ACTIONS(2492), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(446), 2, + ACTIONS(2500), 2, + sym_true, + sym_false, + STATE(1409), 2, sym_string, sym__number, - STATE(437), 5, + STATE(1435), 5, sym__type, sym_constructor_type, sym_union_type, sym_intersection_type, sym_function_type, - ACTIONS(843), 6, + ACTIONS(2494), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(448), 14, + STATE(1411), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -89753,78 +89916,78 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [27370] = 30, + [27028] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(713), 1, + ACTIONS(731), 1, anon_sym_STAR, - ACTIONS(725), 1, + ACTIONS(743), 1, anon_sym_QMARK, - ACTIONS(727), 1, + ACTIONS(745), 1, anon_sym_AMP, - ACTIONS(729), 1, + ACTIONS(747), 1, anon_sym_PIPE, - ACTIONS(745), 1, + ACTIONS(763), 1, anon_sym_keyof, - ACTIONS(747), 1, + ACTIONS(765), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1691), 1, + ACTIONS(1678), 1, anon_sym_LT, - ACTIONS(2318), 1, + ACTIONS(2344), 1, anon_sym_DQUOTE, - ACTIONS(2320), 1, + ACTIONS(2346), 1, anon_sym_SQUOTE, - ACTIONS(2554), 1, + ACTIONS(2591), 1, anon_sym_LBRACE, - ACTIONS(2556), 1, + ACTIONS(2593), 1, anon_sym_typeof, - ACTIONS(2558), 1, + ACTIONS(2595), 1, anon_sym_LPAREN, - ACTIONS(2560), 1, + ACTIONS(2597), 1, anon_sym_LBRACK, - ACTIONS(2562), 1, + ACTIONS(2599), 1, anon_sym_new, - ACTIONS(2568), 1, + ACTIONS(2605), 1, sym_number, - ACTIONS(2574), 1, + ACTIONS(2611), 1, sym_readonly, - ACTIONS(2682), 1, + ACTIONS(2712), 1, sym_identifier, - ACTIONS(2684), 1, + ACTIONS(2714), 1, sym_this, - STATE(1947), 1, + STATE(1950), 1, sym_nested_type_identifier, - STATE(1972), 1, + STATE(2010), 1, sym__tuple_type_body, - STATE(2982), 1, + STATE(3007), 1, sym_type_parameters, - STATE(2998), 1, + STATE(3017), 1, sym_nested_identifier, - STATE(3030), 1, + STATE(3065), 1, sym_formal_parameters, - ACTIONS(2564), 2, + ACTIONS(2601), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2572), 2, + ACTIONS(2609), 2, sym_true, sym_false, - STATE(1981), 2, + STATE(2000), 2, sym_string, sym__number, - STATE(2450), 5, + STATE(2462), 5, sym__type, sym_constructor_type, sym_union_type, sym_intersection_type, sym_function_type, - ACTIONS(2566), 6, + ACTIONS(2603), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(1974), 14, + STATE(2003), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -89839,78 +90002,137 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [27486] = 30, + [27144] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(427), 1, + ACTIONS(2242), 23, anon_sym_STAR, - ACTIONS(497), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(817), 1, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + 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_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + ACTIONS(2244), 31, + anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(845), 1, + anon_sym_RPAREN, + 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, + 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, + [27206] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(711), 1, anon_sym_DQUOTE, - ACTIONS(847), 1, + ACTIONS(713), 1, anon_sym_SQUOTE, - ACTIONS(849), 1, - sym_number, - ACTIONS(929), 1, - anon_sym_LBRACE, - ACTIONS(935), 1, - sym_readonly, - ACTIONS(1691), 1, + ACTIONS(1678), 1, anon_sym_LT, - ACTIONS(2286), 1, - anon_sym_LBRACK, - ACTIONS(2624), 1, - sym_this, - ACTIONS(2696), 1, + ACTIONS(2513), 1, sym_identifier, - ACTIONS(2698), 1, + ACTIONS(2515), 1, + anon_sym_STAR, + ACTIONS(2517), 1, + anon_sym_LBRACE, + ACTIONS(2519), 1, anon_sym_typeof, - ACTIONS(2700), 1, + ACTIONS(2521), 1, + anon_sym_LPAREN, + ACTIONS(2523), 1, + anon_sym_LBRACK, + ACTIONS(2525), 1, anon_sym_new, - ACTIONS(2702), 1, + ACTIONS(2527), 1, anon_sym_QMARK, - ACTIONS(2704), 1, + ACTIONS(2529), 1, anon_sym_AMP, - ACTIONS(2706), 1, + ACTIONS(2531), 1, anon_sym_PIPE, - ACTIONS(2708), 1, + ACTIONS(2537), 1, + sym_number, + ACTIONS(2539), 1, + sym_this, + ACTIONS(2543), 1, + sym_readonly, + ACTIONS(2545), 1, anon_sym_keyof, - STATE(444), 1, - sym__tuple_type_body, - STATE(493), 1, + ACTIONS(2547), 1, + anon_sym_LBRACE_PIPE, + STATE(1327), 1, sym_nested_type_identifier, - STATE(2944), 1, + STATE(1528), 1, + sym__tuple_type_body, + STATE(2941), 1, sym_type_parameters, - STATE(2999), 1, + STATE(3062), 1, sym_nested_identifier, - STATE(3029), 1, + STATE(3125), 1, sym_formal_parameters, - ACTIONS(853), 2, - sym_true, - sym_false, - ACTIONS(1693), 2, + ACTIONS(2533), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(446), 2, + ACTIONS(2541), 2, + sym_true, + sym_false, + STATE(1541), 2, sym_string, sym__number, - STATE(503), 5, + STATE(1625), 5, sym__type, sym_constructor_type, sym_union_type, sym_intersection_type, sym_function_type, - ACTIONS(843), 6, + ACTIONS(2535), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(448), 14, + STATE(1535), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -89925,78 +90147,250 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [27602] = 30, + [27322] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(427), 1, - anon_sym_STAR, - ACTIONS(497), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(817), 1, - anon_sym_LPAREN, - ACTIONS(845), 1, + ACTIONS(475), 1, anon_sym_DQUOTE, - ACTIONS(847), 1, + ACTIONS(477), 1, anon_sym_SQUOTE, - ACTIONS(849), 1, - sym_number, - ACTIONS(929), 1, + ACTIONS(1678), 1, + anon_sym_LT, + ACTIONS(2549), 1, + sym_identifier, + ACTIONS(2551), 1, + anon_sym_STAR, + ACTIONS(2553), 1, anon_sym_LBRACE, - ACTIONS(935), 1, + ACTIONS(2555), 1, + anon_sym_typeof, + ACTIONS(2557), 1, + anon_sym_LPAREN, + ACTIONS(2559), 1, + anon_sym_LBRACK, + ACTIONS(2561), 1, + anon_sym_new, + ACTIONS(2563), 1, + anon_sym_QMARK, + ACTIONS(2565), 1, + anon_sym_AMP, + ACTIONS(2567), 1, + anon_sym_PIPE, + ACTIONS(2573), 1, + sym_number, + ACTIONS(2575), 1, + sym_this, + ACTIONS(2579), 1, sym_readonly, - ACTIONS(1691), 1, + ACTIONS(2581), 1, + anon_sym_keyof, + ACTIONS(2583), 1, + anon_sym_LBRACE_PIPE, + STATE(1012), 1, + sym_nested_type_identifier, + STATE(1019), 1, + sym__tuple_type_body, + STATE(2959), 1, + sym_type_parameters, + STATE(3046), 1, + sym_nested_identifier, + STATE(3147), 1, + sym_formal_parameters, + ACTIONS(2569), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2577), 2, + sym_true, + sym_false, + STATE(1027), 2, + sym_string, + sym__number, + STATE(1025), 5, + sym__type, + sym_constructor_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + ACTIONS(2571), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(1023), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [27438] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(711), 1, + anon_sym_DQUOTE, + ACTIONS(713), 1, + anon_sym_SQUOTE, + ACTIONS(1678), 1, anon_sym_LT, - ACTIONS(2286), 1, + ACTIONS(2513), 1, + sym_identifier, + ACTIONS(2515), 1, + anon_sym_STAR, + ACTIONS(2517), 1, + anon_sym_LBRACE, + ACTIONS(2519), 1, + anon_sym_typeof, + ACTIONS(2521), 1, + anon_sym_LPAREN, + ACTIONS(2523), 1, anon_sym_LBRACK, - ACTIONS(2624), 1, + ACTIONS(2525), 1, + anon_sym_new, + ACTIONS(2527), 1, + anon_sym_QMARK, + ACTIONS(2529), 1, + anon_sym_AMP, + ACTIONS(2531), 1, + anon_sym_PIPE, + ACTIONS(2537), 1, + sym_number, + ACTIONS(2539), 1, sym_this, - ACTIONS(2696), 1, + ACTIONS(2543), 1, + sym_readonly, + ACTIONS(2545), 1, + anon_sym_keyof, + ACTIONS(2547), 1, + anon_sym_LBRACE_PIPE, + STATE(1327), 1, + sym_nested_type_identifier, + STATE(1528), 1, + sym__tuple_type_body, + STATE(2941), 1, + sym_type_parameters, + STATE(3062), 1, + sym_nested_identifier, + STATE(3125), 1, + sym_formal_parameters, + ACTIONS(2533), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2541), 2, + sym_true, + sym_false, + STATE(1541), 2, + sym_string, + sym__number, + STATE(1569), 5, + sym__type, + sym_constructor_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + ACTIONS(2535), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(1535), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [27554] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(711), 1, + anon_sym_DQUOTE, + ACTIONS(713), 1, + anon_sym_SQUOTE, + ACTIONS(1678), 1, + anon_sym_LT, + ACTIONS(2513), 1, sym_identifier, - ACTIONS(2698), 1, + ACTIONS(2515), 1, + anon_sym_STAR, + ACTIONS(2517), 1, + anon_sym_LBRACE, + ACTIONS(2519), 1, anon_sym_typeof, - ACTIONS(2700), 1, + ACTIONS(2521), 1, + anon_sym_LPAREN, + ACTIONS(2523), 1, + anon_sym_LBRACK, + ACTIONS(2525), 1, anon_sym_new, - ACTIONS(2702), 1, + ACTIONS(2527), 1, anon_sym_QMARK, - ACTIONS(2704), 1, + ACTIONS(2529), 1, anon_sym_AMP, - ACTIONS(2706), 1, + ACTIONS(2531), 1, anon_sym_PIPE, - ACTIONS(2708), 1, + ACTIONS(2537), 1, + sym_number, + ACTIONS(2539), 1, + sym_this, + ACTIONS(2543), 1, + sym_readonly, + ACTIONS(2545), 1, anon_sym_keyof, - STATE(444), 1, - sym__tuple_type_body, - STATE(493), 1, + ACTIONS(2547), 1, + anon_sym_LBRACE_PIPE, + STATE(1327), 1, sym_nested_type_identifier, - STATE(2944), 1, + STATE(1528), 1, + sym__tuple_type_body, + STATE(2941), 1, sym_type_parameters, - STATE(2999), 1, + STATE(3062), 1, sym_nested_identifier, - STATE(3029), 1, + STATE(3125), 1, sym_formal_parameters, - ACTIONS(853), 2, - sym_true, - sym_false, - ACTIONS(1693), 2, + ACTIONS(2533), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(446), 2, + ACTIONS(2541), 2, + sym_true, + sym_false, + STATE(1541), 2, sym_string, sym__number, - STATE(497), 5, + STATE(1570), 5, sym__type, sym_constructor_type, sym_union_type, sym_intersection_type, sym_function_type, - ACTIONS(843), 6, + ACTIONS(2535), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(448), 14, + STATE(1535), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -90011,142 +90405,78 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [27718] = 8, + [27670] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(2175), 1, - anon_sym_LBRACK, - ACTIONS(2177), 1, - anon_sym_DOT, - ACTIONS(2179), 1, - anon_sym_QMARK_DOT, - ACTIONS(2416), 1, - anon_sym_EQ, - ACTIONS(1099), 13, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - 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_implements, - ACTIONS(2181), 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(1097), 22, + ACTIONS(731), 1, anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(743), 1, anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(745), 1, anon_sym_AMP, - anon_sym_CARET, + ACTIONS(747), 1, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [27790] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(427), 1, - anon_sym_STAR, - ACTIONS(497), 1, + ACTIONS(763), 1, + anon_sym_keyof, + ACTIONS(765), 1, anon_sym_LBRACE_PIPE, - ACTIONS(817), 1, - anon_sym_LPAREN, - ACTIONS(845), 1, + ACTIONS(1678), 1, + anon_sym_LT, + ACTIONS(2344), 1, anon_sym_DQUOTE, - ACTIONS(847), 1, + ACTIONS(2346), 1, anon_sym_SQUOTE, - ACTIONS(849), 1, - sym_number, - ACTIONS(929), 1, + ACTIONS(2591), 1, anon_sym_LBRACE, - ACTIONS(935), 1, - sym_readonly, - ACTIONS(1691), 1, - anon_sym_LT, - ACTIONS(2286), 1, - anon_sym_LBRACK, - ACTIONS(2624), 1, - sym_this, - ACTIONS(2696), 1, - sym_identifier, - ACTIONS(2698), 1, + ACTIONS(2593), 1, anon_sym_typeof, - ACTIONS(2700), 1, + ACTIONS(2595), 1, + anon_sym_LPAREN, + ACTIONS(2597), 1, + anon_sym_LBRACK, + ACTIONS(2599), 1, anon_sym_new, - ACTIONS(2702), 1, - anon_sym_QMARK, - ACTIONS(2704), 1, - anon_sym_AMP, - ACTIONS(2706), 1, - anon_sym_PIPE, - ACTIONS(2708), 1, - anon_sym_keyof, - STATE(444), 1, - sym__tuple_type_body, - STATE(493), 1, + ACTIONS(2605), 1, + sym_number, + ACTIONS(2611), 1, + sym_readonly, + ACTIONS(2712), 1, + sym_identifier, + ACTIONS(2714), 1, + sym_this, + STATE(1950), 1, sym_nested_type_identifier, - STATE(2944), 1, + STATE(2010), 1, + sym__tuple_type_body, + STATE(3007), 1, sym_type_parameters, - STATE(2999), 1, + STATE(3017), 1, sym_nested_identifier, - STATE(3029), 1, + STATE(3065), 1, sym_formal_parameters, - ACTIONS(853), 2, - sym_true, - sym_false, - ACTIONS(1693), 2, + ACTIONS(2601), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(446), 2, + ACTIONS(2609), 2, + sym_true, + sym_false, + STATE(2000), 2, sym_string, sym__number, - STATE(442), 5, + STATE(2072), 5, sym__type, sym_constructor_type, sym_union_type, sym_intersection_type, sym_function_type, - ACTIONS(843), 6, + ACTIONS(2603), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(448), 14, + STATE(2003), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -90161,78 +90491,78 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [27906] = 30, + [27786] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(713), 1, + ACTIONS(731), 1, anon_sym_STAR, - ACTIONS(725), 1, + ACTIONS(743), 1, anon_sym_QMARK, - ACTIONS(727), 1, + ACTIONS(745), 1, anon_sym_AMP, - ACTIONS(729), 1, + ACTIONS(747), 1, anon_sym_PIPE, - ACTIONS(745), 1, + ACTIONS(763), 1, anon_sym_keyof, - ACTIONS(747), 1, + ACTIONS(765), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1691), 1, + ACTIONS(1678), 1, anon_sym_LT, - ACTIONS(2318), 1, + ACTIONS(2344), 1, anon_sym_DQUOTE, - ACTIONS(2320), 1, + ACTIONS(2346), 1, anon_sym_SQUOTE, - ACTIONS(2554), 1, + ACTIONS(2591), 1, anon_sym_LBRACE, - ACTIONS(2556), 1, + ACTIONS(2593), 1, anon_sym_typeof, - ACTIONS(2558), 1, + ACTIONS(2595), 1, anon_sym_LPAREN, - ACTIONS(2560), 1, + ACTIONS(2597), 1, anon_sym_LBRACK, - ACTIONS(2562), 1, + ACTIONS(2599), 1, anon_sym_new, - ACTIONS(2568), 1, + ACTIONS(2605), 1, sym_number, - ACTIONS(2574), 1, + ACTIONS(2611), 1, sym_readonly, - ACTIONS(2682), 1, + ACTIONS(2712), 1, sym_identifier, - ACTIONS(2684), 1, + ACTIONS(2714), 1, sym_this, - STATE(1947), 1, + STATE(1950), 1, sym_nested_type_identifier, - STATE(1972), 1, + STATE(2010), 1, sym__tuple_type_body, - STATE(2982), 1, + STATE(3007), 1, sym_type_parameters, - STATE(2998), 1, + STATE(3017), 1, sym_nested_identifier, - STATE(3030), 1, + STATE(3065), 1, sym_formal_parameters, - ACTIONS(2564), 2, + ACTIONS(2601), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2572), 2, + ACTIONS(2609), 2, sym_true, sym_false, - STATE(1981), 2, + STATE(2000), 2, sym_string, sym__number, - STATE(2004), 5, + STATE(2071), 5, sym__type, sym_constructor_type, sym_union_type, sym_intersection_type, sym_function_type, - ACTIONS(2566), 6, + ACTIONS(2603), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(1974), 14, + STATE(2003), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -90247,69 +90577,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [28022] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2230), 1, - anon_sym_DOT, - ACTIONS(2233), 2, - anon_sym_LBRACE, - anon_sym_LT, - ACTIONS(2249), 2, - anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - ACTIONS(2183), 22, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - 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_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - ACTIONS(2185), 27, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - 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, - [28090] = 30, + [27902] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(427), 1, @@ -90340,34 +90608,34 @@ static uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(929), 1, anon_sym_LBRACE, + ACTIONS(933), 1, + sym_this, ACTIONS(935), 1, sym_readonly, - ACTIONS(1691), 1, + ACTIONS(1678), 1, anon_sym_LT, - ACTIONS(2286), 1, + ACTIONS(2310), 1, anon_sym_LBRACK, - ACTIONS(2624), 1, - sym_this, - STATE(444), 1, + STATE(424), 1, sym__tuple_type_body, - STATE(1913), 1, + STATE(1917), 1, sym_nested_type_identifier, - STATE(2959), 1, + STATE(2916), 1, sym_type_parameters, - STATE(2996), 1, + STATE(3122), 1, sym_formal_parameters, - STATE(2999), 1, + STATE(3123), 1, sym_nested_identifier, ACTIONS(853), 2, sym_true, sym_false, - ACTIONS(1693), 2, + ACTIONS(1680), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(446), 2, + STATE(433), 2, sym_string, sym__number, - STATE(2194), 5, + STATE(2780), 5, sym__type, sym_constructor_type, sym_union_type, @@ -90380,7 +90648,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(448), 14, + STATE(2509), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -90395,72 +90663,93 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [28206] = 9, + [28018] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(827), 1, - anon_sym_QMARK_DOT, - ACTIONS(1127), 1, - anon_sym_EQ, - ACTIONS(1129), 1, - anon_sym_EQ_GT, - ACTIONS(1623), 1, - anon_sym_LBRACK, - ACTIONS(1625), 1, - anon_sym_DOT, - ACTIONS(841), 12, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_COLON, - 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, - ACTIONS(831), 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(808), 22, + ACTIONS(731), 1, anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(743), 1, anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(745), 1, anon_sym_AMP, - anon_sym_CARET, + ACTIONS(747), 1, anon_sym_PIPE, + ACTIONS(763), 1, + anon_sym_keyof, + ACTIONS(765), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1678), 1, + anon_sym_LT, + ACTIONS(2344), 1, + anon_sym_DQUOTE, + ACTIONS(2346), 1, + anon_sym_SQUOTE, + ACTIONS(2591), 1, + anon_sym_LBRACE, + ACTIONS(2593), 1, + anon_sym_typeof, + ACTIONS(2595), 1, + anon_sym_LPAREN, + ACTIONS(2597), 1, + anon_sym_LBRACK, + ACTIONS(2599), 1, + anon_sym_new, + ACTIONS(2605), 1, + sym_number, + ACTIONS(2611), 1, + sym_readonly, + ACTIONS(2712), 1, + sym_identifier, + ACTIONS(2714), 1, + sym_this, + STATE(1950), 1, + sym_nested_type_identifier, + STATE(2010), 1, + sym__tuple_type_body, + STATE(3007), 1, + sym_type_parameters, + STATE(3017), 1, + sym_nested_identifier, + STATE(3065), 1, + sym_formal_parameters, + ACTIONS(2601), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [28280] = 30, + ACTIONS(2609), 2, + sym_true, + sym_false, + STATE(2000), 2, + sym_string, + sym__number, + STATE(2018), 5, + sym__type, + sym_constructor_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + ACTIONS(2603), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(2003), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [28134] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(427), 1, @@ -90493,32 +90782,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(935), 1, sym_readonly, - ACTIONS(1691), 1, + ACTIONS(1678), 1, anon_sym_LT, - ACTIONS(2286), 1, + ACTIONS(2310), 1, anon_sym_LBRACK, - ACTIONS(2624), 1, + ACTIONS(2638), 1, sym_this, - STATE(444), 1, + STATE(434), 1, sym__tuple_type_body, - STATE(1913), 1, + STATE(1917), 1, sym_nested_type_identifier, - STATE(2959), 1, + STATE(2916), 1, sym_type_parameters, - STATE(2996), 1, + STATE(3122), 1, sym_formal_parameters, - STATE(2999), 1, + STATE(3123), 1, sym_nested_identifier, ACTIONS(853), 2, sym_true, sym_false, - ACTIONS(1693), 2, + ACTIONS(1680), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(446), 2, + STATE(433), 2, sym_string, sym__number, - STATE(2528), 5, + STATE(2171), 5, sym__type, sym_constructor_type, sym_union_type, @@ -90531,7 +90820,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(448), 14, + STATE(432), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -90546,78 +90835,78 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [28396] = 30, + [28250] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(427), 1, - anon_sym_STAR, - ACTIONS(497), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(817), 1, - anon_sym_LPAREN, - ACTIONS(845), 1, + ACTIONS(475), 1, anon_sym_DQUOTE, - ACTIONS(847), 1, + ACTIONS(477), 1, anon_sym_SQUOTE, - ACTIONS(849), 1, - sym_number, - ACTIONS(929), 1, - anon_sym_LBRACE, - ACTIONS(935), 1, - sym_readonly, - ACTIONS(1691), 1, + ACTIONS(1678), 1, anon_sym_LT, - ACTIONS(2286), 1, - anon_sym_LBRACK, - ACTIONS(2624), 1, - sym_this, - ACTIONS(2696), 1, + ACTIONS(2549), 1, sym_identifier, - ACTIONS(2698), 1, + ACTIONS(2551), 1, + anon_sym_STAR, + ACTIONS(2553), 1, + anon_sym_LBRACE, + ACTIONS(2555), 1, anon_sym_typeof, - ACTIONS(2700), 1, + ACTIONS(2557), 1, + anon_sym_LPAREN, + ACTIONS(2559), 1, + anon_sym_LBRACK, + ACTIONS(2561), 1, anon_sym_new, - ACTIONS(2702), 1, + ACTIONS(2563), 1, anon_sym_QMARK, - ACTIONS(2704), 1, + ACTIONS(2565), 1, anon_sym_AMP, - ACTIONS(2706), 1, + ACTIONS(2567), 1, anon_sym_PIPE, - ACTIONS(2708), 1, + ACTIONS(2573), 1, + sym_number, + ACTIONS(2575), 1, + sym_this, + ACTIONS(2579), 1, + sym_readonly, + ACTIONS(2581), 1, anon_sym_keyof, - STATE(444), 1, - sym__tuple_type_body, - STATE(493), 1, + ACTIONS(2583), 1, + anon_sym_LBRACE_PIPE, + STATE(1012), 1, sym_nested_type_identifier, - STATE(2944), 1, + STATE(1019), 1, + sym__tuple_type_body, + STATE(2959), 1, sym_type_parameters, - STATE(2999), 1, + STATE(3046), 1, sym_nested_identifier, - STATE(3029), 1, + STATE(3147), 1, sym_formal_parameters, - ACTIONS(853), 2, - sym_true, - sym_false, - ACTIONS(1693), 2, + ACTIONS(2569), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(446), 2, + ACTIONS(2577), 2, + sym_true, + sym_false, + STATE(1027), 2, sym_string, sym__number, - STATE(502), 5, + STATE(1058), 5, sym__type, sym_constructor_type, sym_union_type, sym_intersection_type, sym_function_type, - ACTIONS(843), 6, + ACTIONS(2571), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(448), 14, + STATE(1023), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -90632,78 +90921,78 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [28512] = 30, + [28366] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(713), 1, + ACTIONS(731), 1, anon_sym_STAR, - ACTIONS(725), 1, + ACTIONS(743), 1, anon_sym_QMARK, - ACTIONS(727), 1, + ACTIONS(745), 1, anon_sym_AMP, - ACTIONS(729), 1, + ACTIONS(747), 1, anon_sym_PIPE, - ACTIONS(745), 1, + ACTIONS(763), 1, anon_sym_keyof, - ACTIONS(747), 1, + ACTIONS(765), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1691), 1, + ACTIONS(1678), 1, anon_sym_LT, - ACTIONS(2318), 1, + ACTIONS(2344), 1, anon_sym_DQUOTE, - ACTIONS(2320), 1, + ACTIONS(2346), 1, anon_sym_SQUOTE, - ACTIONS(2554), 1, + ACTIONS(2591), 1, anon_sym_LBRACE, - ACTIONS(2556), 1, + ACTIONS(2593), 1, anon_sym_typeof, - ACTIONS(2558), 1, + ACTIONS(2595), 1, anon_sym_LPAREN, - ACTIONS(2560), 1, + ACTIONS(2597), 1, anon_sym_LBRACK, - ACTIONS(2562), 1, + ACTIONS(2599), 1, anon_sym_new, - ACTIONS(2568), 1, + ACTIONS(2605), 1, sym_number, - ACTIONS(2574), 1, + ACTIONS(2611), 1, sym_readonly, - ACTIONS(2682), 1, + ACTIONS(2712), 1, sym_identifier, - ACTIONS(2684), 1, + ACTIONS(2714), 1, sym_this, - STATE(1947), 1, + STATE(1950), 1, sym_nested_type_identifier, - STATE(1972), 1, + STATE(2010), 1, sym__tuple_type_body, - STATE(2982), 1, + STATE(3007), 1, sym_type_parameters, - STATE(2998), 1, + STATE(3017), 1, sym_nested_identifier, - STATE(3030), 1, + STATE(3065), 1, sym_formal_parameters, - ACTIONS(2564), 2, + ACTIONS(2601), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2572), 2, + ACTIONS(2609), 2, sym_true, sym_false, - STATE(1981), 2, + STATE(2000), 2, sym_string, sym__number, - STATE(2001), 5, + STATE(2406), 5, sym__type, sym_constructor_type, sym_union_type, sym_intersection_type, sym_function_type, - ACTIONS(2566), 6, + ACTIONS(2603), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(1974), 14, + STATE(2003), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -90718,20 +91007,20 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [28628] = 9, + [28482] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1011), 1, + ACTIONS(2282), 1, + anon_sym_LBRACK, + ACTIONS(2288), 1, anon_sym_QMARK_DOT, - ACTIONS(1115), 1, + ACTIONS(2298), 1, + anon_sym_DOT, + ACTIONS(2437), 1, anon_sym_EQ, - ACTIONS(1117), 1, + ACTIONS(2441), 1, anon_sym_EQ_GT, - ACTIONS(1219), 1, - anon_sym_LBRACK, - ACTIONS(1224), 1, - anon_sym_DOT, - ACTIONS(841), 12, + ACTIONS(1039), 12, sym__automatic_semicolon, anon_sym_as, anon_sym_LPAREN, @@ -90744,7 +91033,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(831), 15, + ACTIONS(2197), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -90760,7 +91049,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(808), 22, + ACTIONS(1037), 22, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -90783,78 +91072,250 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [28702] = 30, + [28556] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(427), 1, + anon_sym_STAR, + ACTIONS(461), 1, + anon_sym_QMARK, + ACTIONS(463), 1, + anon_sym_AMP, + ACTIONS(465), 1, + anon_sym_PIPE, + ACTIONS(495), 1, + anon_sym_keyof, + ACTIONS(497), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(815), 1, + anon_sym_typeof, + ACTIONS(817), 1, + anon_sym_LPAREN, + ACTIONS(829), 1, + anon_sym_new, + ACTIONS(845), 1, + anon_sym_DQUOTE, + ACTIONS(847), 1, + anon_sym_SQUOTE, + ACTIONS(849), 1, + sym_number, + ACTIONS(925), 1, + sym_identifier, + ACTIONS(929), 1, + anon_sym_LBRACE, + ACTIONS(935), 1, + sym_readonly, + ACTIONS(1678), 1, + anon_sym_LT, + ACTIONS(2310), 1, + anon_sym_LBRACK, + ACTIONS(2638), 1, + sym_this, + STATE(434), 1, + sym__tuple_type_body, + STATE(1917), 1, + sym_nested_type_identifier, + STATE(2916), 1, + sym_type_parameters, + STATE(3122), 1, + sym_formal_parameters, + STATE(3123), 1, + sym_nested_identifier, + ACTIONS(853), 2, + sym_true, + sym_false, + ACTIONS(1680), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(433), 2, + sym_string, + sym__number, + STATE(2579), 5, + sym__type, + sym_constructor_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + ACTIONS(843), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(432), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [28672] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(81), 1, + anon_sym_DQUOTE, + ACTIONS(83), 1, + anon_sym_SQUOTE, + ACTIONS(1678), 1, + anon_sym_LT, + ACTIONS(2472), 1, + sym_identifier, + ACTIONS(2474), 1, + anon_sym_STAR, + ACTIONS(2476), 1, + anon_sym_LBRACE, + ACTIONS(2478), 1, + anon_sym_typeof, + ACTIONS(2480), 1, + anon_sym_LPAREN, + ACTIONS(2482), 1, + anon_sym_LBRACK, + ACTIONS(2484), 1, + anon_sym_new, + ACTIONS(2486), 1, + anon_sym_QMARK, + ACTIONS(2488), 1, + anon_sym_AMP, + ACTIONS(2490), 1, + anon_sym_PIPE, + ACTIONS(2496), 1, + sym_number, + ACTIONS(2498), 1, + sym_this, + ACTIONS(2502), 1, + sym_readonly, + ACTIONS(2504), 1, + anon_sym_keyof, + ACTIONS(2506), 1, + anon_sym_LBRACE_PIPE, + STATE(1231), 1, + sym_nested_type_identifier, + STATE(1412), 1, + sym__tuple_type_body, + STATE(2874), 1, + sym_type_parameters, + STATE(3081), 1, + sym_formal_parameters, + STATE(3130), 1, + sym_nested_identifier, + ACTIONS(2492), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2500), 2, + sym_true, + sym_false, + STATE(1409), 2, + sym_string, + sym__number, + STATE(1396), 5, + sym__type, + sym_constructor_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + ACTIONS(2494), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(1411), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [28788] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(713), 1, + ACTIONS(427), 1, anon_sym_STAR, - ACTIONS(725), 1, + ACTIONS(461), 1, anon_sym_QMARK, - ACTIONS(727), 1, + ACTIONS(463), 1, anon_sym_AMP, - ACTIONS(729), 1, + ACTIONS(465), 1, anon_sym_PIPE, - ACTIONS(745), 1, + ACTIONS(495), 1, anon_sym_keyof, - ACTIONS(747), 1, + ACTIONS(497), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1691), 1, - anon_sym_LT, - ACTIONS(2318), 1, - anon_sym_DQUOTE, - ACTIONS(2320), 1, - anon_sym_SQUOTE, - ACTIONS(2554), 1, - anon_sym_LBRACE, - ACTIONS(2556), 1, + ACTIONS(815), 1, anon_sym_typeof, - ACTIONS(2558), 1, + ACTIONS(817), 1, anon_sym_LPAREN, - ACTIONS(2560), 1, - anon_sym_LBRACK, - ACTIONS(2562), 1, + ACTIONS(829), 1, anon_sym_new, - ACTIONS(2568), 1, + ACTIONS(845), 1, + anon_sym_DQUOTE, + ACTIONS(847), 1, + anon_sym_SQUOTE, + ACTIONS(849), 1, sym_number, - ACTIONS(2574), 1, - sym_readonly, - ACTIONS(2682), 1, + ACTIONS(925), 1, sym_identifier, - ACTIONS(2684), 1, + ACTIONS(929), 1, + anon_sym_LBRACE, + ACTIONS(935), 1, + sym_readonly, + ACTIONS(1125), 1, sym_this, - STATE(1947), 1, + ACTIONS(1678), 1, + anon_sym_LT, + ACTIONS(2597), 1, + anon_sym_LBRACK, + STATE(1917), 1, sym_nested_type_identifier, STATE(1972), 1, sym__tuple_type_body, - STATE(2982), 1, + STATE(2916), 1, sym_type_parameters, - STATE(2998), 1, - sym_nested_identifier, - STATE(3030), 1, + STATE(3122), 1, sym_formal_parameters, - ACTIONS(2564), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2572), 2, + STATE(3123), 1, + sym_nested_identifier, + ACTIONS(853), 2, sym_true, sym_false, - STATE(1981), 2, + ACTIONS(1680), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(433), 2, sym_string, sym__number, - STATE(2000), 5, + STATE(2780), 5, sym__type, sym_constructor_type, sym_union_type, sym_intersection_type, sym_function_type, - ACTIONS(2566), 6, + ACTIONS(843), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(1974), 14, + STATE(2596), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -90869,78 +91330,78 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [28818] = 30, + [28904] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(569), 1, + ACTIONS(81), 1, anon_sym_DQUOTE, - ACTIONS(571), 1, + ACTIONS(83), 1, anon_sym_SQUOTE, - ACTIONS(1691), 1, + ACTIONS(1678), 1, anon_sym_LT, - ACTIONS(2580), 1, + ACTIONS(2472), 1, sym_identifier, - ACTIONS(2582), 1, + ACTIONS(2474), 1, anon_sym_STAR, - ACTIONS(2584), 1, + ACTIONS(2476), 1, anon_sym_LBRACE, - ACTIONS(2586), 1, + ACTIONS(2478), 1, anon_sym_typeof, - ACTIONS(2588), 1, + ACTIONS(2480), 1, anon_sym_LPAREN, - ACTIONS(2590), 1, + ACTIONS(2482), 1, anon_sym_LBRACK, - ACTIONS(2592), 1, + ACTIONS(2484), 1, anon_sym_new, - ACTIONS(2594), 1, + ACTIONS(2486), 1, anon_sym_QMARK, - ACTIONS(2596), 1, + ACTIONS(2488), 1, anon_sym_AMP, - ACTIONS(2598), 1, + ACTIONS(2490), 1, anon_sym_PIPE, - ACTIONS(2604), 1, + ACTIONS(2496), 1, sym_number, - ACTIONS(2606), 1, + ACTIONS(2498), 1, sym_this, - ACTIONS(2610), 1, + ACTIONS(2502), 1, sym_readonly, - ACTIONS(2612), 1, + ACTIONS(2504), 1, anon_sym_keyof, - ACTIONS(2614), 1, + ACTIONS(2506), 1, anon_sym_LBRACE_PIPE, - STATE(1361), 1, + STATE(1231), 1, sym_nested_type_identifier, - STATE(1481), 1, + STATE(1412), 1, sym__tuple_type_body, - STATE(2938), 1, + STATE(2874), 1, sym_type_parameters, - STATE(3043), 1, - sym_nested_identifier, - STATE(3159), 1, + STATE(3081), 1, sym_formal_parameters, - ACTIONS(2600), 2, + STATE(3130), 1, + sym_nested_identifier, + ACTIONS(2492), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2608), 2, + ACTIONS(2500), 2, sym_true, sym_false, - STATE(1483), 2, + STATE(1409), 2, sym_string, sym__number, - STATE(1609), 5, + STATE(1382), 5, sym__type, sym_constructor_type, sym_union_type, sym_intersection_type, sym_function_type, - ACTIONS(2602), 6, + ACTIONS(2494), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(1482), 14, + STATE(1411), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -90955,145 +91416,78 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [28934] = 11, + [29020] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(2171), 1, - anon_sym_EQ, - ACTIONS(2175), 1, - anon_sym_LBRACK, - ACTIONS(2177), 1, - anon_sym_DOT, - ACTIONS(2179), 1, - anon_sym_QMARK_DOT, - ACTIONS(2200), 1, - anon_sym_EQ_GT, - ACTIONS(2668), 1, - anon_sym_in, - ACTIONS(2734), 1, - anon_sym_COLON, - ACTIONS(1099), 11, - anon_sym_as, - anon_sym_LPAREN, - 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, - ACTIONS(2181), 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(1097), 21, + ACTIONS(427), 1, anon_sym_STAR, - anon_sym_BANG, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(461), 1, anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(463), 1, anon_sym_AMP, - anon_sym_CARET, + ACTIONS(465), 1, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [29012] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(569), 1, + ACTIONS(495), 1, + anon_sym_keyof, + ACTIONS(497), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(815), 1, + anon_sym_typeof, + ACTIONS(817), 1, + anon_sym_LPAREN, + ACTIONS(829), 1, + anon_sym_new, + ACTIONS(845), 1, anon_sym_DQUOTE, - ACTIONS(571), 1, + ACTIONS(847), 1, anon_sym_SQUOTE, - ACTIONS(1691), 1, - anon_sym_LT, - ACTIONS(2580), 1, + ACTIONS(849), 1, + sym_number, + ACTIONS(925), 1, sym_identifier, - ACTIONS(2582), 1, - anon_sym_STAR, - ACTIONS(2584), 1, + ACTIONS(929), 1, anon_sym_LBRACE, - ACTIONS(2586), 1, - anon_sym_typeof, - ACTIONS(2588), 1, - anon_sym_LPAREN, - ACTIONS(2590), 1, + ACTIONS(935), 1, + sym_readonly, + ACTIONS(1678), 1, + anon_sym_LT, + ACTIONS(2310), 1, anon_sym_LBRACK, - ACTIONS(2592), 1, - anon_sym_new, - ACTIONS(2594), 1, - anon_sym_QMARK, - ACTIONS(2596), 1, - anon_sym_AMP, - ACTIONS(2598), 1, - anon_sym_PIPE, - ACTIONS(2604), 1, - sym_number, - ACTIONS(2606), 1, + ACTIONS(2638), 1, sym_this, - ACTIONS(2610), 1, - sym_readonly, - ACTIONS(2612), 1, - anon_sym_keyof, - ACTIONS(2614), 1, - anon_sym_LBRACE_PIPE, - STATE(1361), 1, - sym_nested_type_identifier, - STATE(1481), 1, + STATE(434), 1, sym__tuple_type_body, - STATE(2938), 1, + STATE(1917), 1, + sym_nested_type_identifier, + STATE(2916), 1, sym_type_parameters, - STATE(3043), 1, - sym_nested_identifier, - STATE(3159), 1, + STATE(3122), 1, sym_formal_parameters, - ACTIONS(2600), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2608), 2, + STATE(3123), 1, + sym_nested_identifier, + ACTIONS(853), 2, sym_true, sym_false, - STATE(1483), 2, + ACTIONS(1680), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(433), 2, sym_string, sym__number, - STATE(1573), 5, + STATE(2578), 5, sym__type, sym_constructor_type, sym_union_type, sym_intersection_type, sym_function_type, - ACTIONS(2602), 6, + ACTIONS(843), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(1482), 14, + STATE(432), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -91108,78 +91502,78 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [29128] = 30, + [29136] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(569), 1, + ACTIONS(81), 1, anon_sym_DQUOTE, - ACTIONS(571), 1, + ACTIONS(83), 1, anon_sym_SQUOTE, - ACTIONS(1691), 1, + ACTIONS(1678), 1, anon_sym_LT, - ACTIONS(2580), 1, + ACTIONS(2472), 1, sym_identifier, - ACTIONS(2582), 1, + ACTIONS(2474), 1, anon_sym_STAR, - ACTIONS(2584), 1, + ACTIONS(2476), 1, anon_sym_LBRACE, - ACTIONS(2586), 1, + ACTIONS(2478), 1, anon_sym_typeof, - ACTIONS(2588), 1, + ACTIONS(2480), 1, anon_sym_LPAREN, - ACTIONS(2590), 1, + ACTIONS(2482), 1, anon_sym_LBRACK, - ACTIONS(2592), 1, + ACTIONS(2484), 1, anon_sym_new, - ACTIONS(2594), 1, + ACTIONS(2486), 1, anon_sym_QMARK, - ACTIONS(2596), 1, + ACTIONS(2488), 1, anon_sym_AMP, - ACTIONS(2598), 1, + ACTIONS(2490), 1, anon_sym_PIPE, - ACTIONS(2604), 1, + ACTIONS(2496), 1, sym_number, - ACTIONS(2606), 1, + ACTIONS(2498), 1, sym_this, - ACTIONS(2610), 1, + ACTIONS(2502), 1, sym_readonly, - ACTIONS(2612), 1, + ACTIONS(2504), 1, anon_sym_keyof, - ACTIONS(2614), 1, + ACTIONS(2506), 1, anon_sym_LBRACE_PIPE, - STATE(1361), 1, + STATE(1231), 1, sym_nested_type_identifier, - STATE(1481), 1, + STATE(1412), 1, sym__tuple_type_body, - STATE(2938), 1, + STATE(2874), 1, sym_type_parameters, - STATE(3043), 1, - sym_nested_identifier, - STATE(3159), 1, + STATE(3081), 1, sym_formal_parameters, - ACTIONS(2600), 2, + STATE(3130), 1, + sym_nested_identifier, + ACTIONS(2492), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2608), 2, + ACTIONS(2500), 2, sym_true, sym_false, - STATE(1483), 2, + STATE(1409), 2, sym_string, sym__number, - STATE(1575), 5, + STATE(1391), 5, sym__type, sym_constructor_type, sym_union_type, sym_intersection_type, sym_function_type, - ACTIONS(2602), 6, + ACTIONS(2494), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(1482), 14, + STATE(1411), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -91194,78 +91588,78 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [29244] = 30, + [29252] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(713), 1, - anon_sym_STAR, - ACTIONS(725), 1, - anon_sym_QMARK, - ACTIONS(727), 1, - anon_sym_AMP, - ACTIONS(729), 1, - anon_sym_PIPE, - ACTIONS(745), 1, - anon_sym_keyof, - ACTIONS(747), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1691), 1, - anon_sym_LT, - ACTIONS(2318), 1, + ACTIONS(711), 1, anon_sym_DQUOTE, - ACTIONS(2320), 1, + ACTIONS(713), 1, anon_sym_SQUOTE, - ACTIONS(2554), 1, + ACTIONS(1678), 1, + anon_sym_LT, + ACTIONS(2513), 1, + sym_identifier, + ACTIONS(2515), 1, + anon_sym_STAR, + ACTIONS(2517), 1, anon_sym_LBRACE, - ACTIONS(2556), 1, + ACTIONS(2519), 1, anon_sym_typeof, - ACTIONS(2558), 1, + ACTIONS(2521), 1, anon_sym_LPAREN, - ACTIONS(2560), 1, + ACTIONS(2523), 1, anon_sym_LBRACK, - ACTIONS(2562), 1, + ACTIONS(2525), 1, anon_sym_new, - ACTIONS(2568), 1, + ACTIONS(2527), 1, + anon_sym_QMARK, + ACTIONS(2529), 1, + anon_sym_AMP, + ACTIONS(2531), 1, + anon_sym_PIPE, + ACTIONS(2537), 1, sym_number, - ACTIONS(2574), 1, - sym_readonly, - ACTIONS(2682), 1, - sym_identifier, - ACTIONS(2684), 1, + ACTIONS(2539), 1, sym_this, - STATE(1947), 1, + ACTIONS(2543), 1, + sym_readonly, + ACTIONS(2545), 1, + anon_sym_keyof, + ACTIONS(2547), 1, + anon_sym_LBRACE_PIPE, + STATE(1327), 1, sym_nested_type_identifier, - STATE(1972), 1, + STATE(1528), 1, sym__tuple_type_body, - STATE(2982), 1, + STATE(2941), 1, sym_type_parameters, - STATE(2998), 1, + STATE(3062), 1, sym_nested_identifier, - STATE(3030), 1, + STATE(3125), 1, sym_formal_parameters, - ACTIONS(2564), 2, + ACTIONS(2533), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2572), 2, + ACTIONS(2541), 2, sym_true, sym_false, - STATE(1981), 2, + STATE(1541), 2, sym_string, sym__number, - STATE(1970), 5, + STATE(1583), 5, sym__type, sym_constructor_type, sym_union_type, sym_intersection_type, sym_function_type, - ACTIONS(2566), 6, + ACTIONS(2535), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(1974), 14, + STATE(1535), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -91280,78 +91674,78 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [29360] = 30, + [29368] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(713), 1, - anon_sym_STAR, - ACTIONS(725), 1, - anon_sym_QMARK, - ACTIONS(727), 1, - anon_sym_AMP, - ACTIONS(729), 1, - anon_sym_PIPE, - ACTIONS(745), 1, - anon_sym_keyof, - ACTIONS(747), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1691), 1, - anon_sym_LT, - ACTIONS(2318), 1, + ACTIONS(475), 1, anon_sym_DQUOTE, - ACTIONS(2320), 1, + ACTIONS(477), 1, anon_sym_SQUOTE, - ACTIONS(2554), 1, + ACTIONS(1678), 1, + anon_sym_LT, + ACTIONS(2549), 1, + sym_identifier, + ACTIONS(2551), 1, + anon_sym_STAR, + ACTIONS(2553), 1, anon_sym_LBRACE, - ACTIONS(2556), 1, + ACTIONS(2555), 1, anon_sym_typeof, - ACTIONS(2558), 1, + ACTIONS(2557), 1, anon_sym_LPAREN, - ACTIONS(2560), 1, + ACTIONS(2559), 1, anon_sym_LBRACK, - ACTIONS(2562), 1, + ACTIONS(2561), 1, anon_sym_new, - ACTIONS(2568), 1, + ACTIONS(2563), 1, + anon_sym_QMARK, + ACTIONS(2565), 1, + anon_sym_AMP, + ACTIONS(2567), 1, + anon_sym_PIPE, + ACTIONS(2573), 1, sym_number, - ACTIONS(2574), 1, - sym_readonly, - ACTIONS(2682), 1, - sym_identifier, - ACTIONS(2684), 1, + ACTIONS(2575), 1, sym_this, - STATE(1947), 1, + ACTIONS(2579), 1, + sym_readonly, + ACTIONS(2581), 1, + anon_sym_keyof, + ACTIONS(2583), 1, + anon_sym_LBRACE_PIPE, + STATE(1012), 1, sym_nested_type_identifier, - STATE(1972), 1, + STATE(1019), 1, sym__tuple_type_body, - STATE(2982), 1, + STATE(2959), 1, sym_type_parameters, - STATE(2998), 1, + STATE(3046), 1, sym_nested_identifier, - STATE(3030), 1, + STATE(3147), 1, sym_formal_parameters, - ACTIONS(2564), 2, + ACTIONS(2569), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2572), 2, + ACTIONS(2577), 2, sym_true, sym_false, - STATE(1981), 2, + STATE(1027), 2, sym_string, sym__number, - STATE(2067), 5, + STATE(1050), 5, sym__type, sym_constructor_type, sym_union_type, sym_intersection_type, sym_function_type, - ACTIONS(2566), 6, + ACTIONS(2571), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(1974), 14, + STATE(1023), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -91366,78 +91760,78 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [29476] = 30, + [29484] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(427), 1, - anon_sym_STAR, - ACTIONS(461), 1, - anon_sym_QMARK, - ACTIONS(463), 1, - anon_sym_AMP, - ACTIONS(465), 1, - anon_sym_PIPE, - ACTIONS(495), 1, - anon_sym_keyof, - ACTIONS(497), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(815), 1, - anon_sym_typeof, - ACTIONS(817), 1, - anon_sym_LPAREN, - ACTIONS(829), 1, - anon_sym_new, - ACTIONS(845), 1, + ACTIONS(475), 1, anon_sym_DQUOTE, - ACTIONS(847), 1, + ACTIONS(477), 1, anon_sym_SQUOTE, - ACTIONS(849), 1, - sym_number, - ACTIONS(925), 1, + ACTIONS(1678), 1, + anon_sym_LT, + ACTIONS(2549), 1, sym_identifier, - ACTIONS(929), 1, + ACTIONS(2551), 1, + anon_sym_STAR, + ACTIONS(2553), 1, anon_sym_LBRACE, - ACTIONS(935), 1, - sym_readonly, - ACTIONS(1691), 1, - anon_sym_LT, - ACTIONS(2286), 1, + ACTIONS(2555), 1, + anon_sym_typeof, + ACTIONS(2557), 1, + anon_sym_LPAREN, + ACTIONS(2559), 1, anon_sym_LBRACK, - ACTIONS(2624), 1, + ACTIONS(2561), 1, + anon_sym_new, + ACTIONS(2563), 1, + anon_sym_QMARK, + ACTIONS(2565), 1, + anon_sym_AMP, + ACTIONS(2567), 1, + anon_sym_PIPE, + ACTIONS(2573), 1, + sym_number, + ACTIONS(2575), 1, sym_this, - STATE(444), 1, - sym__tuple_type_body, - STATE(1913), 1, + ACTIONS(2579), 1, + sym_readonly, + ACTIONS(2581), 1, + anon_sym_keyof, + ACTIONS(2583), 1, + anon_sym_LBRACE_PIPE, + STATE(1012), 1, sym_nested_type_identifier, + STATE(1019), 1, + sym__tuple_type_body, STATE(2959), 1, sym_type_parameters, - STATE(2996), 1, - sym_formal_parameters, - STATE(2999), 1, + STATE(3046), 1, sym_nested_identifier, - ACTIONS(853), 2, - sym_true, - sym_false, - ACTIONS(1693), 2, + STATE(3147), 1, + sym_formal_parameters, + ACTIONS(2569), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(446), 2, + ACTIONS(2577), 2, + sym_true, + sym_false, + STATE(1027), 2, sym_string, sym__number, - STATE(2488), 5, + STATE(1052), 5, sym__type, sym_constructor_type, sym_union_type, sym_intersection_type, sym_function_type, - ACTIONS(843), 6, + ACTIONS(2571), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(448), 14, + STATE(1023), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -91452,196 +91846,78 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [29592] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2256), 24, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - 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_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - ACTIONS(2258), 30, - anon_sym_as, - anon_sym_COMMA, - 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, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, - [29654] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2183), 24, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - 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_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - ACTIONS(2185), 30, - anon_sym_as, - anon_sym_COMMA, - 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, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, - [29716] = 30, + [29600] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(569), 1, + ACTIONS(711), 1, anon_sym_DQUOTE, - ACTIONS(571), 1, + ACTIONS(713), 1, anon_sym_SQUOTE, - ACTIONS(1691), 1, + ACTIONS(1678), 1, anon_sym_LT, - ACTIONS(2580), 1, + ACTIONS(2513), 1, sym_identifier, - ACTIONS(2582), 1, + ACTIONS(2515), 1, anon_sym_STAR, - ACTIONS(2584), 1, + ACTIONS(2517), 1, anon_sym_LBRACE, - ACTIONS(2586), 1, + ACTIONS(2519), 1, anon_sym_typeof, - ACTIONS(2588), 1, + ACTIONS(2521), 1, anon_sym_LPAREN, - ACTIONS(2590), 1, + ACTIONS(2523), 1, anon_sym_LBRACK, - ACTIONS(2592), 1, + ACTIONS(2525), 1, anon_sym_new, - ACTIONS(2594), 1, + ACTIONS(2527), 1, anon_sym_QMARK, - ACTIONS(2596), 1, + ACTIONS(2529), 1, anon_sym_AMP, - ACTIONS(2598), 1, + ACTIONS(2531), 1, anon_sym_PIPE, - ACTIONS(2604), 1, + ACTIONS(2537), 1, sym_number, - ACTIONS(2606), 1, + ACTIONS(2539), 1, sym_this, - ACTIONS(2610), 1, + ACTIONS(2543), 1, sym_readonly, - ACTIONS(2612), 1, + ACTIONS(2545), 1, anon_sym_keyof, - ACTIONS(2614), 1, + ACTIONS(2547), 1, anon_sym_LBRACE_PIPE, - STATE(1361), 1, + STATE(1327), 1, sym_nested_type_identifier, - STATE(1481), 1, + STATE(1528), 1, sym__tuple_type_body, - STATE(2938), 1, + STATE(2941), 1, sym_type_parameters, - STATE(3043), 1, + STATE(3062), 1, sym_nested_identifier, - STATE(3159), 1, + STATE(3125), 1, sym_formal_parameters, - ACTIONS(2600), 2, + ACTIONS(2533), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2608), 2, + ACTIONS(2541), 2, sym_true, sym_false, - STATE(1483), 2, + STATE(1541), 2, sym_string, sym__number, - STATE(1582), 5, + STATE(1615), 5, sym__type, sym_constructor_type, sym_union_type, sym_intersection_type, sym_function_type, - ACTIONS(2602), 6, + ACTIONS(2535), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(1482), 14, + STATE(1535), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -91656,78 +91932,78 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [29832] = 30, + [29716] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(569), 1, + ACTIONS(475), 1, anon_sym_DQUOTE, - ACTIONS(571), 1, + ACTIONS(477), 1, anon_sym_SQUOTE, - ACTIONS(1691), 1, + ACTIONS(1678), 1, anon_sym_LT, - ACTIONS(2580), 1, + ACTIONS(2549), 1, sym_identifier, - ACTIONS(2582), 1, + ACTIONS(2551), 1, anon_sym_STAR, - ACTIONS(2584), 1, + ACTIONS(2553), 1, anon_sym_LBRACE, - ACTIONS(2586), 1, + ACTIONS(2555), 1, anon_sym_typeof, - ACTIONS(2588), 1, + ACTIONS(2557), 1, anon_sym_LPAREN, - ACTIONS(2590), 1, + ACTIONS(2559), 1, anon_sym_LBRACK, - ACTIONS(2592), 1, + ACTIONS(2561), 1, anon_sym_new, - ACTIONS(2594), 1, + ACTIONS(2563), 1, anon_sym_QMARK, - ACTIONS(2596), 1, + ACTIONS(2565), 1, anon_sym_AMP, - ACTIONS(2598), 1, + ACTIONS(2567), 1, anon_sym_PIPE, - ACTIONS(2604), 1, + ACTIONS(2573), 1, sym_number, - ACTIONS(2606), 1, + ACTIONS(2575), 1, sym_this, - ACTIONS(2610), 1, + ACTIONS(2579), 1, sym_readonly, - ACTIONS(2612), 1, + ACTIONS(2581), 1, anon_sym_keyof, - ACTIONS(2614), 1, + ACTIONS(2583), 1, anon_sym_LBRACE_PIPE, - STATE(1361), 1, + STATE(1012), 1, sym_nested_type_identifier, - STATE(1481), 1, + STATE(1019), 1, sym__tuple_type_body, - STATE(2938), 1, + STATE(2959), 1, sym_type_parameters, - STATE(3043), 1, + STATE(3046), 1, sym_nested_identifier, - STATE(3159), 1, + STATE(3147), 1, sym_formal_parameters, - ACTIONS(2600), 2, + ACTIONS(2569), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2608), 2, + ACTIONS(2577), 2, sym_true, sym_false, - STATE(1483), 2, + STATE(1027), 2, sym_string, sym__number, - STATE(1615), 5, + STATE(1057), 5, sym__type, sym_constructor_type, sym_union_type, sym_intersection_type, sym_function_type, - ACTIONS(2602), 6, + ACTIONS(2571), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(1482), 14, + STATE(1023), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -91742,10 +92018,10 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [29948] = 3, + [29832] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2224), 23, + ACTIONS(2242), 23, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -91769,7 +92045,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(2226), 31, + ACTIONS(2244), 31, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, @@ -91801,78 +92077,164 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, + [29894] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(711), 1, + anon_sym_DQUOTE, + ACTIONS(713), 1, + anon_sym_SQUOTE, + ACTIONS(1678), 1, + anon_sym_LT, + ACTIONS(2513), 1, + sym_identifier, + ACTIONS(2515), 1, + anon_sym_STAR, + ACTIONS(2517), 1, + anon_sym_LBRACE, + ACTIONS(2519), 1, + anon_sym_typeof, + ACTIONS(2521), 1, + anon_sym_LPAREN, + ACTIONS(2523), 1, + anon_sym_LBRACK, + ACTIONS(2525), 1, + anon_sym_new, + ACTIONS(2527), 1, + anon_sym_QMARK, + ACTIONS(2529), 1, + anon_sym_AMP, + ACTIONS(2531), 1, + anon_sym_PIPE, + ACTIONS(2537), 1, + sym_number, + ACTIONS(2539), 1, + sym_this, + ACTIONS(2543), 1, + sym_readonly, + ACTIONS(2545), 1, + anon_sym_keyof, + ACTIONS(2547), 1, + anon_sym_LBRACE_PIPE, + STATE(1327), 1, + sym_nested_type_identifier, + STATE(1528), 1, + sym__tuple_type_body, + STATE(2941), 1, + sym_type_parameters, + STATE(3062), 1, + sym_nested_identifier, + STATE(3125), 1, + sym_formal_parameters, + ACTIONS(2533), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2541), 2, + sym_true, + sym_false, + STATE(1541), 2, + sym_string, + sym__number, + STATE(1605), 5, + sym__type, + sym_constructor_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + ACTIONS(2535), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(1535), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, [30010] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(569), 1, + ACTIONS(711), 1, anon_sym_DQUOTE, - ACTIONS(571), 1, + ACTIONS(713), 1, anon_sym_SQUOTE, - ACTIONS(1691), 1, + ACTIONS(1678), 1, anon_sym_LT, - ACTIONS(2580), 1, + ACTIONS(2513), 1, sym_identifier, - ACTIONS(2582), 1, + ACTIONS(2515), 1, anon_sym_STAR, - ACTIONS(2584), 1, + ACTIONS(2517), 1, anon_sym_LBRACE, - ACTIONS(2586), 1, + ACTIONS(2519), 1, anon_sym_typeof, - ACTIONS(2588), 1, + ACTIONS(2521), 1, anon_sym_LPAREN, - ACTIONS(2590), 1, + ACTIONS(2523), 1, anon_sym_LBRACK, - ACTIONS(2592), 1, + ACTIONS(2525), 1, anon_sym_new, - ACTIONS(2594), 1, + ACTIONS(2527), 1, anon_sym_QMARK, - ACTIONS(2596), 1, + ACTIONS(2529), 1, anon_sym_AMP, - ACTIONS(2598), 1, + ACTIONS(2531), 1, anon_sym_PIPE, - ACTIONS(2604), 1, + ACTIONS(2537), 1, sym_number, - ACTIONS(2606), 1, + ACTIONS(2539), 1, sym_this, - ACTIONS(2610), 1, + ACTIONS(2543), 1, sym_readonly, - ACTIONS(2612), 1, + ACTIONS(2545), 1, anon_sym_keyof, - ACTIONS(2614), 1, + ACTIONS(2547), 1, anon_sym_LBRACE_PIPE, - STATE(1361), 1, + STATE(1327), 1, sym_nested_type_identifier, - STATE(1481), 1, + STATE(1528), 1, sym__tuple_type_body, - STATE(2938), 1, + STATE(2941), 1, sym_type_parameters, - STATE(3043), 1, + STATE(3062), 1, sym_nested_identifier, - STATE(3159), 1, + STATE(3125), 1, sym_formal_parameters, - ACTIONS(2600), 2, + ACTIONS(2533), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2608), 2, + ACTIONS(2541), 2, sym_true, sym_false, - STATE(1483), 2, + STATE(1541), 2, sym_string, sym__number, - STATE(1591), 5, + STATE(1614), 5, sym__type, sym_constructor_type, sym_union_type, sym_intersection_type, sym_function_type, - ACTIONS(2602), 6, + ACTIONS(2535), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(1482), 14, + STATE(1535), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -91892,17 +92254,17 @@ static uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(827), 1, anon_sym_QMARK_DOT, - ACTIONS(1127), 1, + ACTIONS(1115), 1, anon_sym_EQ, - ACTIONS(1129), 1, + ACTIONS(1117), 1, anon_sym_EQ_GT, ACTIONS(1623), 1, anon_sym_LBRACK, ACTIONS(1625), 1, anon_sym_DOT, - ACTIONS(1665), 1, + ACTIONS(1780), 1, anon_sym_in, - ACTIONS(2501), 1, + ACTIONS(2752), 1, anon_sym_of, ACTIONS(841), 10, anon_sym_as, @@ -91956,14 +92318,14 @@ static uint16_t ts_small_parse_table[] = { [30203] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2387), 1, + ACTIONS(2187), 1, anon_sym_EQ, - ACTIONS(1099), 15, - sym__automatic_semicolon, + ACTIONS(1039), 15, 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, @@ -91974,7 +92336,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(2181), 15, + ACTIONS(2197), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -91990,7 +92352,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1097), 22, + ACTIONS(1037), 22, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -92016,21 +92378,21 @@ static uint16_t ts_small_parse_table[] = { [30268] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2171), 1, + ACTIONS(827), 1, + anon_sym_QMARK_DOT, + ACTIONS(1115), 1, anon_sym_EQ, - ACTIONS(2175), 1, + ACTIONS(1117), 1, + anon_sym_EQ_GT, + ACTIONS(1623), 1, anon_sym_LBRACK, - ACTIONS(2177), 1, + ACTIONS(1625), 1, anon_sym_DOT, - ACTIONS(2179), 1, - anon_sym_QMARK_DOT, - ACTIONS(2200), 1, - anon_sym_EQ_GT, - ACTIONS(2503), 1, + ACTIONS(1665), 1, anon_sym_in, - ACTIONS(2506), 1, + ACTIONS(2587), 1, anon_sym_of, - ACTIONS(1099), 10, + ACTIONS(841), 10, anon_sym_as, anon_sym_LPAREN, anon_sym_LT_EQ, @@ -92041,7 +92403,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(2181), 15, + ACTIONS(831), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -92057,7 +92419,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1097), 21, + ACTIONS(808), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_LT, @@ -92079,22 +92441,26 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [30345] = 8, + [30345] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2171), 1, + ACTIONS(2187), 1, anon_sym_EQ, - ACTIONS(2175), 1, + ACTIONS(2191), 1, anon_sym_LBRACK, - ACTIONS(2177), 1, + ACTIONS(2193), 1, anon_sym_DOT, - ACTIONS(2179), 1, + ACTIONS(2195), 1, anon_sym_QMARK_DOT, - ACTIONS(1099), 12, + ACTIONS(2240), 1, + anon_sym_EQ_GT, + ACTIONS(2508), 1, + anon_sym_in, + ACTIONS(2511), 1, + anon_sym_of, + ACTIONS(1039), 10, anon_sym_as, anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_RBRACK, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -92103,7 +92469,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(2181), 15, + ACTIONS(2197), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -92119,10 +92485,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1097), 22, + ACTIONS(1037), 21, anon_sym_STAR, anon_sym_BANG, - anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, @@ -92142,17 +92507,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [30416] = 5, + [30422] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2171), 1, + ACTIONS(2437), 1, anon_sym_EQ, - ACTIONS(1099), 15, + ACTIONS(1039), 15, + sym__automatic_semicolon, anon_sym_as, anon_sym_LPAREN, - anon_sym_COLON, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -92163,7 +92528,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(2181), 15, + ACTIONS(2197), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -92179,7 +92544,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1097), 22, + ACTIONS(1037), 22, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -92202,24 +92567,24 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [30481] = 11, + [30487] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(827), 1, - anon_sym_QMARK_DOT, - ACTIONS(1127), 1, + ACTIONS(2187), 1, anon_sym_EQ, - ACTIONS(1129), 1, - anon_sym_EQ_GT, - ACTIONS(1623), 1, + ACTIONS(2191), 1, anon_sym_LBRACK, - ACTIONS(1625), 1, + ACTIONS(2193), 1, anon_sym_DOT, - ACTIONS(1772), 1, + ACTIONS(2195), 1, + anon_sym_QMARK_DOT, + ACTIONS(2233), 1, anon_sym_in, - ACTIONS(2736), 1, + ACTIONS(2236), 1, anon_sym_of, - ACTIONS(841), 10, + ACTIONS(2240), 1, + anon_sym_EQ_GT, + ACTIONS(1039), 10, anon_sym_as, anon_sym_LPAREN, anon_sym_LT_EQ, @@ -92230,7 +92595,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(831), 15, + ACTIONS(2197), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -92246,7 +92611,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(808), 21, + ACTIONS(1037), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_LT, @@ -92268,26 +92633,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [30558] = 11, + [30564] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2171), 1, - anon_sym_EQ, - ACTIONS(2175), 1, + ACTIONS(2282), 1, anon_sym_LBRACK, - ACTIONS(2177), 1, - anon_sym_DOT, - ACTIONS(2179), 1, + ACTIONS(2288), 1, anon_sym_QMARK_DOT, - ACTIONS(2193), 1, - anon_sym_in, - ACTIONS(2196), 1, - anon_sym_of, - ACTIONS(2200), 1, - anon_sym_EQ_GT, - ACTIONS(1099), 10, + ACTIONS(2298), 1, + anon_sym_DOT, + ACTIONS(2437), 1, + anon_sym_EQ, + ACTIONS(1039), 12, + sym__automatic_semicolon, anon_sym_as, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -92296,7 +92657,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(2181), 15, + ACTIONS(2197), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -92312,9 +92673,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1097), 21, + ACTIONS(1037), 22, anon_sym_STAR, anon_sym_BANG, + anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, @@ -92337,19 +92699,19 @@ static uint16_t ts_small_parse_table[] = { [30635] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2266), 1, + ACTIONS(2187), 1, + anon_sym_EQ, + ACTIONS(2191), 1, anon_sym_LBRACK, - ACTIONS(2272), 1, - anon_sym_QMARK_DOT, - ACTIONS(2282), 1, + ACTIONS(2193), 1, anon_sym_DOT, - ACTIONS(2387), 1, - anon_sym_EQ, - ACTIONS(1099), 12, - sym__automatic_semicolon, + ACTIONS(2195), 1, + anon_sym_QMARK_DOT, + ACTIONS(1039), 12, anon_sym_as, anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -92358,7 +92720,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(2181), 15, + ACTIONS(2197), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -92374,7 +92736,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1097), 22, + ACTIONS(1037), 22, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -92397,24 +92759,21 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [30706] = 10, + [30706] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2171), 1, + ACTIONS(2187), 1, anon_sym_EQ, - ACTIONS(2175), 1, - anon_sym_LBRACK, - ACTIONS(2177), 1, - anon_sym_DOT, - ACTIONS(2179), 1, - anon_sym_QMARK_DOT, - ACTIONS(2503), 1, + ACTIONS(2233), 1, anon_sym_in, - ACTIONS(2506), 1, + ACTIONS(2236), 1, anon_sym_of, - ACTIONS(1099), 10, + ACTIONS(1039), 13, 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, @@ -92423,7 +92782,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(2181), 15, + ACTIONS(2197), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -92439,7 +92798,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1097), 21, + ACTIONS(1037), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_LT, @@ -92461,21 +92820,24 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [30780] = 7, + [30774] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2171), 1, + ACTIONS(2187), 1, anon_sym_EQ, - ACTIONS(2503), 1, + ACTIONS(2191), 1, + anon_sym_LBRACK, + ACTIONS(2193), 1, + anon_sym_DOT, + ACTIONS(2195), 1, + anon_sym_QMARK_DOT, + ACTIONS(2508), 1, anon_sym_in, - ACTIONS(2506), 1, + ACTIONS(2511), 1, anon_sym_of, - ACTIONS(1099), 13, + ACTIONS(1039), 10, 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, @@ -92484,7 +92846,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(2181), 15, + ACTIONS(2197), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -92500,7 +92862,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1097), 21, + ACTIONS(1037), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_LT, @@ -92522,24 +92884,21 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [30848] = 10, + [30848] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2171), 1, + ACTIONS(2187), 1, anon_sym_EQ, - ACTIONS(2175), 1, - anon_sym_LBRACK, - ACTIONS(2177), 1, - anon_sym_DOT, - ACTIONS(2179), 1, - anon_sym_QMARK_DOT, - ACTIONS(2193), 1, + ACTIONS(2508), 1, anon_sym_in, - ACTIONS(2196), 1, + ACTIONS(2511), 1, anon_sym_of, - ACTIONS(1099), 10, + ACTIONS(1039), 13, 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, @@ -92548,7 +92907,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(2181), 15, + ACTIONS(2197), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -92564,7 +92923,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1097), 21, + ACTIONS(1037), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_LT, @@ -92586,21 +92945,24 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [30922] = 7, + [30916] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2171), 1, + ACTIONS(2187), 1, anon_sym_EQ, + ACTIONS(2191), 1, + anon_sym_LBRACK, ACTIONS(2193), 1, + anon_sym_DOT, + ACTIONS(2195), 1, + anon_sym_QMARK_DOT, + ACTIONS(2233), 1, anon_sym_in, - ACTIONS(2196), 1, + ACTIONS(2236), 1, anon_sym_of, - ACTIONS(1099), 13, + ACTIONS(1039), 10, 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, @@ -92609,7 +92971,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(2181), 15, + ACTIONS(2197), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -92625,7 +92987,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1097), 21, + ACTIONS(1037), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_LT, @@ -92650,28 +93012,28 @@ static uint16_t ts_small_parse_table[] = { [30990] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2318), 1, + ACTIONS(2344), 1, anon_sym_DQUOTE, - ACTIONS(2320), 1, + ACTIONS(2346), 1, anon_sym_SQUOTE, - ACTIONS(2738), 1, + ACTIONS(2754), 1, sym_identifier, - ACTIONS(2740), 1, + ACTIONS(2756), 1, anon_sym_STAR, - ACTIONS(2744), 1, + ACTIONS(2760), 1, anon_sym_LBRACE, - STATE(2926), 1, + STATE(2853), 1, sym_import_clause, - ACTIONS(2748), 2, + ACTIONS(2764), 2, anon_sym_type, anon_sym_typeof, - STATE(2954), 2, + STATE(2924), 2, sym_string, sym_import_require_clause, - STATE(3062), 2, + STATE(3155), 2, sym_namespace_import, sym_named_imports, - ACTIONS(2742), 15, + ACTIONS(2758), 15, anon_sym_as, anon_sym_BANG, anon_sym_in, @@ -92687,97 +93049,255 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_instanceof, - ACTIONS(2746), 22, + ACTIONS(2762), 22, + sym__automatic_semicolon, + 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_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [31065] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(1199), 1, + anon_sym_LBRACE, + ACTIONS(2766), 1, + anon_sym_STAR, + ACTIONS(2768), 1, + anon_sym_default, + ACTIONS(2770), 1, + anon_sym_EQ, + ACTIONS(2772), 1, + anon_sym_as, + ACTIONS(2774), 1, + anon_sym_namespace, + ACTIONS(2778), 1, + anon_sym_type, + ACTIONS(2780), 1, + anon_sym_import, + ACTIONS(2782), 1, + anon_sym_var, + ACTIONS(2784), 1, + anon_sym_let, + ACTIONS(2786), 1, + anon_sym_const, + ACTIONS(2788), 1, + anon_sym_class, + ACTIONS(2790), 1, + anon_sym_async, + ACTIONS(2792), 1, + anon_sym_function, + ACTIONS(2794), 1, + anon_sym_abstract, + ACTIONS(2796), 1, + anon_sym_declare, + ACTIONS(2798), 1, + anon_sym_module, + ACTIONS(2800), 1, + anon_sym_interface, + ACTIONS(2802), 1, + anon_sym_enum, + STATE(1890), 1, + sym_decorator, + STATE(2273), 1, + aux_sym_export_statement_repeat1, + STATE(2470), 1, + sym__declaration, + STATE(2474), 1, + sym_internal_module, + STATE(2603), 1, + sym_export_clause, + STATE(2641), 1, + aux_sym_object_repeat1, + ACTIONS(2776), 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, + STATE(2469), 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, + [31173] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(1199), 1, + anon_sym_LBRACE, + ACTIONS(2766), 1, + anon_sym_STAR, + ACTIONS(2768), 1, + anon_sym_default, + ACTIONS(2770), 1, + anon_sym_EQ, + ACTIONS(2772), 1, + anon_sym_as, + ACTIONS(2774), 1, + anon_sym_namespace, + ACTIONS(2778), 1, + anon_sym_type, + ACTIONS(2780), 1, + anon_sym_import, + ACTIONS(2782), 1, + anon_sym_var, + ACTIONS(2784), 1, + anon_sym_let, + ACTIONS(2786), 1, + anon_sym_const, + ACTIONS(2788), 1, + anon_sym_class, + ACTIONS(2790), 1, + anon_sym_async, + ACTIONS(2792), 1, + anon_sym_function, + ACTIONS(2794), 1, + anon_sym_abstract, + ACTIONS(2796), 1, + anon_sym_declare, + ACTIONS(2798), 1, + anon_sym_module, + ACTIONS(2800), 1, + anon_sym_interface, + ACTIONS(2802), 1, + anon_sym_enum, + STATE(1890), 1, + sym_decorator, + STATE(2273), 1, + aux_sym_export_statement_repeat1, + STATE(2470), 1, + sym__declaration, + STATE(2474), 1, + sym_internal_module, + STATE(2603), 1, + sym_export_clause, + STATE(2696), 1, + aux_sym_object_repeat1, + ACTIONS(2776), 9, sym__automatic_semicolon, 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_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [31065] = 28, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + STATE(2469), 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, + [31281] = 28, ACTIONS(3), 1, sym_comment, ACTIONS(91), 1, anon_sym_AT, - ACTIONS(1691), 1, + ACTIONS(1678), 1, anon_sym_LT, - ACTIONS(2306), 1, + ACTIONS(2332), 1, anon_sym_LPAREN, - ACTIONS(2314), 1, + ACTIONS(2340), 1, anon_sym_new, - ACTIONS(2316), 1, + ACTIONS(2342), 1, anon_sym_DASH, - ACTIONS(2318), 1, + ACTIONS(2344), 1, anon_sym_DQUOTE, - ACTIONS(2320), 1, + ACTIONS(2346), 1, anon_sym_SQUOTE, - ACTIONS(2752), 1, + ACTIONS(2806), 1, anon_sym_export, - ACTIONS(2754), 1, + ACTIONS(2808), 1, anon_sym_STAR, - ACTIONS(2760), 1, + ACTIONS(2810), 1, anon_sym_LBRACK, - ACTIONS(2762), 1, + ACTIONS(2812), 1, anon_sym_async, - ACTIONS(2764), 1, + ACTIONS(2814), 1, sym_number, - ACTIONS(2766), 1, + ACTIONS(2816), 1, anon_sym_static, - ACTIONS(2772), 1, + ACTIONS(2822), 1, sym_readonly, - STATE(1877), 1, + STATE(1878), 1, sym_accessibility_modifier, - STATE(1905), 1, + STATE(1890), 1, sym_decorator, - STATE(2020), 1, + STATE(2015), 1, sym_formal_parameters, - STATE(2406), 1, + STATE(2320), 1, sym__call_signature, - STATE(2485), 1, + STATE(2548), 1, aux_sym_export_statement_repeat1, - STATE(2862), 1, + STATE(2918), 1, sym_type_parameters, - ACTIONS(2756), 2, + ACTIONS(2462), 2, anon_sym_COMMA, anon_sym_SEMI, - ACTIONS(2758), 2, + ACTIONS(2464), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(2768), 2, + ACTIONS(2818), 2, anon_sym_get, anon_sym_set, - ACTIONS(2770), 3, + ACTIONS(2820), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(1946), 3, + STATE(1947), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(2196), 6, + STATE(2185), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(2750), 10, + ACTIONS(2804), 10, anon_sym_namespace, anon_sym_type, sym_identifier, @@ -92788,74 +93308,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [31171] = 28, + [31387] = 28, ACTIONS(3), 1, sym_comment, ACTIONS(91), 1, anon_sym_AT, - ACTIONS(1691), 1, + ACTIONS(1678), 1, anon_sym_LT, - ACTIONS(2306), 1, + ACTIONS(2332), 1, anon_sym_LPAREN, - ACTIONS(2314), 1, + ACTIONS(2340), 1, anon_sym_new, - ACTIONS(2316), 1, + ACTIONS(2342), 1, anon_sym_DASH, - ACTIONS(2318), 1, + ACTIONS(2344), 1, anon_sym_DQUOTE, - ACTIONS(2320), 1, + ACTIONS(2346), 1, anon_sym_SQUOTE, - ACTIONS(2752), 1, + ACTIONS(2806), 1, anon_sym_export, - ACTIONS(2754), 1, + ACTIONS(2808), 1, anon_sym_STAR, - ACTIONS(2760), 1, + ACTIONS(2810), 1, anon_sym_LBRACK, - ACTIONS(2762), 1, + ACTIONS(2812), 1, anon_sym_async, - ACTIONS(2764), 1, + ACTIONS(2814), 1, sym_number, - ACTIONS(2766), 1, + ACTIONS(2816), 1, anon_sym_static, - ACTIONS(2772), 1, + ACTIONS(2822), 1, sym_readonly, - STATE(1877), 1, + STATE(1878), 1, sym_accessibility_modifier, - STATE(1905), 1, + STATE(1890), 1, sym_decorator, - STATE(2020), 1, + STATE(2015), 1, sym_formal_parameters, - STATE(2406), 1, + STATE(2320), 1, sym__call_signature, - STATE(2485), 1, + STATE(2548), 1, aux_sym_export_statement_repeat1, - STATE(2862), 1, + STATE(2918), 1, sym_type_parameters, - ACTIONS(2768), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(2774), 2, + ACTIONS(2334), 2, anon_sym_COMMA, anon_sym_SEMI, - ACTIONS(2776), 2, + ACTIONS(2358), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(2770), 3, + ACTIONS(2818), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(2820), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(1946), 3, + STATE(1947), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(2166), 6, + STATE(2158), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(2750), 10, + ACTIONS(2804), 10, anon_sym_namespace, anon_sym_type, sym_identifier, @@ -92866,74 +93386,153 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [31277] = 28, + [31493] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(1199), 1, + anon_sym_LBRACE, + ACTIONS(2766), 1, + anon_sym_STAR, + ACTIONS(2768), 1, + anon_sym_default, + ACTIONS(2770), 1, + anon_sym_EQ, + ACTIONS(2772), 1, + anon_sym_as, + ACTIONS(2774), 1, + anon_sym_namespace, + ACTIONS(2778), 1, + anon_sym_type, + ACTIONS(2780), 1, + anon_sym_import, + ACTIONS(2782), 1, + anon_sym_var, + ACTIONS(2784), 1, + anon_sym_let, + ACTIONS(2786), 1, + anon_sym_const, + ACTIONS(2788), 1, + anon_sym_class, + ACTIONS(2790), 1, + anon_sym_async, + ACTIONS(2792), 1, + anon_sym_function, + ACTIONS(2794), 1, + anon_sym_abstract, + ACTIONS(2796), 1, + anon_sym_declare, + ACTIONS(2798), 1, + anon_sym_module, + ACTIONS(2800), 1, + anon_sym_interface, + ACTIONS(2802), 1, + anon_sym_enum, + STATE(1890), 1, + sym_decorator, + STATE(2273), 1, + aux_sym_export_statement_repeat1, + STATE(2470), 1, + sym__declaration, + STATE(2474), 1, + sym_internal_module, + STATE(2603), 1, + sym_export_clause, + STATE(2651), 1, + aux_sym_object_repeat1, + ACTIONS(2776), 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, + STATE(2469), 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, + [31601] = 28, ACTIONS(3), 1, sym_comment, ACTIONS(91), 1, anon_sym_AT, - ACTIONS(1691), 1, + ACTIONS(1678), 1, anon_sym_LT, - ACTIONS(2306), 1, + ACTIONS(2332), 1, anon_sym_LPAREN, - ACTIONS(2314), 1, + ACTIONS(2340), 1, anon_sym_new, - ACTIONS(2316), 1, + ACTIONS(2342), 1, anon_sym_DASH, - ACTIONS(2318), 1, + ACTIONS(2344), 1, anon_sym_DQUOTE, - ACTIONS(2320), 1, + ACTIONS(2346), 1, anon_sym_SQUOTE, - ACTIONS(2752), 1, + ACTIONS(2806), 1, anon_sym_export, - ACTIONS(2754), 1, + ACTIONS(2808), 1, anon_sym_STAR, - ACTIONS(2760), 1, + ACTIONS(2810), 1, anon_sym_LBRACK, - ACTIONS(2762), 1, + ACTIONS(2812), 1, anon_sym_async, - ACTIONS(2764), 1, + ACTIONS(2814), 1, sym_number, - ACTIONS(2766), 1, + ACTIONS(2816), 1, anon_sym_static, - ACTIONS(2772), 1, + ACTIONS(2822), 1, sym_readonly, - STATE(1877), 1, + STATE(1878), 1, sym_accessibility_modifier, - STATE(1905), 1, + STATE(1890), 1, sym_decorator, - STATE(2020), 1, + STATE(2015), 1, sym_formal_parameters, - STATE(2406), 1, + STATE(2320), 1, sym__call_signature, - STATE(2485), 1, + STATE(2548), 1, aux_sym_export_statement_repeat1, - STATE(2862), 1, + STATE(2918), 1, sym_type_parameters, - ACTIONS(2308), 2, + ACTIONS(2818), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(2824), 2, anon_sym_COMMA, anon_sym_SEMI, - ACTIONS(2332), 2, + ACTIONS(2826), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(2768), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(2770), 3, + ACTIONS(2820), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(1946), 3, + STATE(1947), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(2185), 6, + STATE(2159), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(2750), 10, + ACTIONS(2804), 10, anon_sym_namespace, anon_sym_type, sym_identifier, @@ -92944,62 +93543,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [31383] = 29, + [31707] = 29, ACTIONS(3), 1, sym_comment, ACTIONS(91), 1, anon_sym_AT, ACTIONS(1199), 1, anon_sym_LBRACE, - ACTIONS(2778), 1, + ACTIONS(2766), 1, anon_sym_STAR, - ACTIONS(2780), 1, + ACTIONS(2768), 1, anon_sym_default, - ACTIONS(2782), 1, + ACTIONS(2770), 1, anon_sym_EQ, - ACTIONS(2784), 1, + ACTIONS(2772), 1, anon_sym_as, - ACTIONS(2786), 1, + ACTIONS(2774), 1, anon_sym_namespace, - ACTIONS(2790), 1, + ACTIONS(2778), 1, anon_sym_type, - ACTIONS(2792), 1, + ACTIONS(2780), 1, anon_sym_import, - ACTIONS(2794), 1, + ACTIONS(2782), 1, anon_sym_var, - ACTIONS(2796), 1, + ACTIONS(2784), 1, anon_sym_let, - ACTIONS(2798), 1, + ACTIONS(2786), 1, anon_sym_const, - ACTIONS(2800), 1, + ACTIONS(2788), 1, anon_sym_class, - ACTIONS(2802), 1, + ACTIONS(2790), 1, anon_sym_async, - ACTIONS(2804), 1, + ACTIONS(2792), 1, anon_sym_function, - ACTIONS(2806), 1, + ACTIONS(2794), 1, anon_sym_abstract, - ACTIONS(2808), 1, + ACTIONS(2796), 1, anon_sym_declare, - ACTIONS(2810), 1, + ACTIONS(2798), 1, anon_sym_module, - ACTIONS(2812), 1, + ACTIONS(2800), 1, anon_sym_interface, - ACTIONS(2814), 1, + ACTIONS(2802), 1, anon_sym_enum, - STATE(1905), 1, + STATE(1890), 1, sym_decorator, - STATE(2429), 1, + STATE(2273), 1, + aux_sym_export_statement_repeat1, + STATE(2470), 1, sym__declaration, - STATE(2431), 1, + STATE(2474), 1, sym_internal_module, - STATE(2551), 1, - aux_sym_export_statement_repeat1, - STATE(2581), 1, + STATE(2603), 1, sym_export_clause, - STATE(2739), 1, + STATE(2757), 1, aux_sym_object_repeat1, - ACTIONS(2788), 9, + ACTIONS(2776), 9, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -93009,7 +93608,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - STATE(2426), 13, + STATE(2469), 13, sym_variable_declaration, sym_lexical_declaration, sym_class_declaration, @@ -93023,151 +93622,227 @@ static uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_enum_declaration, sym_type_alias_declaration, - [31491] = 29, + [31815] = 28, ACTIONS(3), 1, sym_comment, ACTIONS(91), 1, anon_sym_AT, - ACTIONS(1199), 1, - anon_sym_LBRACE, - ACTIONS(2778), 1, + ACTIONS(1678), 1, + anon_sym_LT, + ACTIONS(2332), 1, + anon_sym_LPAREN, + ACTIONS(2340), 1, + anon_sym_new, + ACTIONS(2342), 1, + anon_sym_DASH, + ACTIONS(2344), 1, + anon_sym_DQUOTE, + ACTIONS(2346), 1, + anon_sym_SQUOTE, + ACTIONS(2806), 1, + anon_sym_export, + ACTIONS(2808), 1, anon_sym_STAR, - ACTIONS(2780), 1, - anon_sym_default, - ACTIONS(2782), 1, - anon_sym_EQ, - ACTIONS(2784), 1, - anon_sym_as, - ACTIONS(2786), 1, + ACTIONS(2810), 1, + anon_sym_LBRACK, + ACTIONS(2812), 1, + anon_sym_async, + ACTIONS(2814), 1, + sym_number, + ACTIONS(2816), 1, + anon_sym_static, + ACTIONS(2822), 1, + sym_readonly, + STATE(1878), 1, + sym_accessibility_modifier, + STATE(1890), 1, + sym_decorator, + STATE(2015), 1, + sym_formal_parameters, + STATE(2320), 1, + sym__call_signature, + STATE(2548), 1, + aux_sym_export_statement_repeat1, + STATE(2918), 1, + sym_type_parameters, + ACTIONS(2818), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(2828), 2, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(2830), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(2820), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(1947), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(2175), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(2804), 10, anon_sym_namespace, - ACTIONS(2790), 1, anon_sym_type, - ACTIONS(2792), 1, - anon_sym_import, - ACTIONS(2794), 1, - anon_sym_var, - ACTIONS(2796), 1, - anon_sym_let, - ACTIONS(2798), 1, - anon_sym_const, - ACTIONS(2800), 1, - anon_sym_class, - ACTIONS(2802), 1, - anon_sym_async, - ACTIONS(2804), 1, - anon_sym_function, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [31921] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(1678), 1, + anon_sym_LT, + ACTIONS(2332), 1, + anon_sym_LPAREN, + ACTIONS(2340), 1, + anon_sym_new, + ACTIONS(2342), 1, + anon_sym_DASH, + ACTIONS(2344), 1, + anon_sym_DQUOTE, + ACTIONS(2346), 1, + anon_sym_SQUOTE, ACTIONS(2806), 1, - anon_sym_abstract, + anon_sym_export, ACTIONS(2808), 1, - anon_sym_declare, + anon_sym_STAR, ACTIONS(2810), 1, - anon_sym_module, + anon_sym_LBRACK, ACTIONS(2812), 1, - anon_sym_interface, + anon_sym_async, ACTIONS(2814), 1, - anon_sym_enum, - STATE(1905), 1, + sym_number, + ACTIONS(2816), 1, + anon_sym_static, + ACTIONS(2822), 1, + sym_readonly, + STATE(1878), 1, + sym_accessibility_modifier, + STATE(1890), 1, sym_decorator, - STATE(2429), 1, - sym__declaration, - STATE(2431), 1, - sym_internal_module, - STATE(2551), 1, + STATE(2015), 1, + sym_formal_parameters, + STATE(2320), 1, + sym__call_signature, + STATE(2548), 1, aux_sym_export_statement_repeat1, - STATE(2581), 1, - sym_export_clause, - STATE(2678), 1, - aux_sym_object_repeat1, - ACTIONS(2788), 9, - sym__automatic_semicolon, + STATE(2918), 1, + sym_type_parameters, + ACTIONS(2818), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(2832), 2, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, + ACTIONS(2834), 2, + anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - STATE(2426), 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, - [31599] = 29, + ACTIONS(2820), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(1947), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(2249), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(2804), 10, + anon_sym_namespace, + anon_sym_type, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [32027] = 29, ACTIONS(3), 1, sym_comment, ACTIONS(91), 1, anon_sym_AT, ACTIONS(1199), 1, anon_sym_LBRACE, - ACTIONS(2778), 1, + ACTIONS(2766), 1, anon_sym_STAR, - ACTIONS(2780), 1, + ACTIONS(2768), 1, anon_sym_default, - ACTIONS(2782), 1, + ACTIONS(2770), 1, anon_sym_EQ, - ACTIONS(2784), 1, + ACTIONS(2772), 1, anon_sym_as, - ACTIONS(2786), 1, + ACTIONS(2774), 1, anon_sym_namespace, - ACTIONS(2790), 1, + ACTIONS(2778), 1, anon_sym_type, - ACTIONS(2792), 1, + ACTIONS(2780), 1, anon_sym_import, - ACTIONS(2794), 1, + ACTIONS(2782), 1, anon_sym_var, - ACTIONS(2796), 1, + ACTIONS(2784), 1, anon_sym_let, - ACTIONS(2798), 1, + ACTIONS(2786), 1, anon_sym_const, - ACTIONS(2800), 1, + ACTIONS(2788), 1, anon_sym_class, - ACTIONS(2802), 1, + ACTIONS(2790), 1, anon_sym_async, - ACTIONS(2804), 1, + ACTIONS(2792), 1, anon_sym_function, - ACTIONS(2806), 1, + ACTIONS(2794), 1, anon_sym_abstract, - ACTIONS(2808), 1, + ACTIONS(2796), 1, anon_sym_declare, - ACTIONS(2810), 1, + ACTIONS(2798), 1, anon_sym_module, - ACTIONS(2812), 1, + ACTIONS(2800), 1, anon_sym_interface, - ACTIONS(2814), 1, + ACTIONS(2802), 1, anon_sym_enum, - STATE(1905), 1, + STATE(1890), 1, sym_decorator, - STATE(2429), 1, + STATE(2273), 1, + aux_sym_export_statement_repeat1, + STATE(2470), 1, sym__declaration, - STATE(2431), 1, + STATE(2474), 1, sym_internal_module, - STATE(2551), 1, - aux_sym_export_statement_repeat1, - STATE(2581), 1, + STATE(2603), 1, sym_export_clause, - STATE(2645), 1, - aux_sym_object_repeat1, - ACTIONS(2788), 9, - sym__automatic_semicolon, + ACTIONS(2836), 2, anon_sym_COMMA, anon_sym_RBRACE, + ACTIONS(2776), 7, + sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - STATE(2426), 13, + STATE(2469), 13, sym_variable_declaration, sym_lexical_declaration, sym_class_declaration, @@ -93181,62 +93856,60 @@ static uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_enum_declaration, sym_type_alias_declaration, - [31707] = 29, + [32134] = 28, ACTIONS(3), 1, sym_comment, ACTIONS(91), 1, anon_sym_AT, ACTIONS(1199), 1, anon_sym_LBRACE, - ACTIONS(2778), 1, + ACTIONS(2766), 1, anon_sym_STAR, - ACTIONS(2780), 1, + ACTIONS(2768), 1, anon_sym_default, - ACTIONS(2782), 1, - anon_sym_EQ, - ACTIONS(2784), 1, + ACTIONS(2772), 1, anon_sym_as, - ACTIONS(2786), 1, + ACTIONS(2774), 1, anon_sym_namespace, - ACTIONS(2790), 1, + ACTIONS(2778), 1, anon_sym_type, - ACTIONS(2792), 1, + ACTIONS(2780), 1, anon_sym_import, - ACTIONS(2794), 1, + ACTIONS(2782), 1, anon_sym_var, - ACTIONS(2796), 1, + ACTIONS(2784), 1, anon_sym_let, - ACTIONS(2798), 1, + ACTIONS(2786), 1, anon_sym_const, - ACTIONS(2800), 1, + ACTIONS(2788), 1, anon_sym_class, - ACTIONS(2802), 1, + ACTIONS(2790), 1, anon_sym_async, - ACTIONS(2804), 1, + ACTIONS(2792), 1, anon_sym_function, - ACTIONS(2806), 1, + ACTIONS(2794), 1, anon_sym_abstract, - ACTIONS(2808), 1, + ACTIONS(2796), 1, anon_sym_declare, - ACTIONS(2810), 1, + ACTIONS(2798), 1, anon_sym_module, - ACTIONS(2812), 1, + ACTIONS(2800), 1, anon_sym_interface, - ACTIONS(2814), 1, + ACTIONS(2802), 1, anon_sym_enum, - STATE(1905), 1, + ACTIONS(2839), 1, + anon_sym_EQ, + STATE(1890), 1, sym_decorator, - STATE(2429), 1, + STATE(2273), 1, + aux_sym_export_statement_repeat1, + STATE(2470), 1, sym__declaration, - STATE(2431), 1, + STATE(2474), 1, sym_internal_module, - STATE(2551), 1, - aux_sym_export_statement_repeat1, - STATE(2581), 1, + STATE(2603), 1, sym_export_clause, - STATE(2772), 1, - aux_sym_object_repeat1, - ACTIONS(2788), 9, + ACTIONS(2776), 9, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -93246,7 +93919,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - STATE(2426), 13, + STATE(2469), 13, sym_variable_declaration, sym_lexical_declaration, sym_class_declaration, @@ -93260,74 +93933,71 @@ static uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_enum_declaration, sym_type_alias_declaration, - [31815] = 28, + [32239] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(91), 1, anon_sym_AT, - ACTIONS(1691), 1, + ACTIONS(1678), 1, anon_sym_LT, - ACTIONS(2306), 1, + ACTIONS(2332), 1, anon_sym_LPAREN, - ACTIONS(2314), 1, + ACTIONS(2340), 1, anon_sym_new, - ACTIONS(2316), 1, + ACTIONS(2342), 1, anon_sym_DASH, - ACTIONS(2318), 1, + ACTIONS(2344), 1, anon_sym_DQUOTE, - ACTIONS(2320), 1, + ACTIONS(2346), 1, anon_sym_SQUOTE, - ACTIONS(2752), 1, + ACTIONS(2806), 1, anon_sym_export, - ACTIONS(2754), 1, + ACTIONS(2808), 1, anon_sym_STAR, - ACTIONS(2760), 1, + ACTIONS(2810), 1, anon_sym_LBRACK, - ACTIONS(2762), 1, + ACTIONS(2812), 1, anon_sym_async, - ACTIONS(2764), 1, + ACTIONS(2814), 1, sym_number, - ACTIONS(2766), 1, + ACTIONS(2816), 1, anon_sym_static, - ACTIONS(2772), 1, + ACTIONS(2822), 1, sym_readonly, - STATE(1877), 1, + STATE(1878), 1, sym_accessibility_modifier, - STATE(1905), 1, + STATE(1890), 1, sym_decorator, - STATE(2020), 1, + STATE(2015), 1, sym_formal_parameters, - STATE(2406), 1, + STATE(2320), 1, sym__call_signature, - STATE(2485), 1, + STATE(2548), 1, aux_sym_export_statement_repeat1, - STATE(2862), 1, + STATE(2918), 1, sym_type_parameters, - ACTIONS(2768), 2, + ACTIONS(2818), 2, anon_sym_get, anon_sym_set, - ACTIONS(2816), 2, - anon_sym_COMMA, - anon_sym_SEMI, - ACTIONS(2818), 2, + ACTIONS(2841), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(2770), 3, + ACTIONS(2820), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(1946), 3, + STATE(1947), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(2154), 6, + STATE(2471), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(2750), 10, + ACTIONS(2804), 10, anon_sym_namespace, anon_sym_type, sym_identifier, @@ -93338,74 +94008,71 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [31921] = 28, + [32341] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(91), 1, anon_sym_AT, - ACTIONS(1691), 1, + ACTIONS(1678), 1, anon_sym_LT, - ACTIONS(2306), 1, + ACTIONS(2332), 1, anon_sym_LPAREN, - ACTIONS(2314), 1, + ACTIONS(2340), 1, anon_sym_new, - ACTIONS(2316), 1, + ACTIONS(2342), 1, anon_sym_DASH, - ACTIONS(2318), 1, + ACTIONS(2344), 1, anon_sym_DQUOTE, - ACTIONS(2320), 1, + ACTIONS(2346), 1, anon_sym_SQUOTE, - ACTIONS(2752), 1, + ACTIONS(2806), 1, anon_sym_export, - ACTIONS(2754), 1, + ACTIONS(2808), 1, anon_sym_STAR, - ACTIONS(2760), 1, + ACTIONS(2810), 1, anon_sym_LBRACK, - ACTIONS(2762), 1, + ACTIONS(2812), 1, anon_sym_async, - ACTIONS(2764), 1, + ACTIONS(2814), 1, sym_number, - ACTIONS(2766), 1, + ACTIONS(2816), 1, anon_sym_static, - ACTIONS(2772), 1, + ACTIONS(2822), 1, sym_readonly, - STATE(1877), 1, + STATE(1878), 1, sym_accessibility_modifier, - STATE(1905), 1, + STATE(1890), 1, sym_decorator, - STATE(2020), 1, + STATE(2015), 1, sym_formal_parameters, - STATE(2406), 1, + STATE(2320), 1, sym__call_signature, - STATE(2485), 1, + STATE(2548), 1, aux_sym_export_statement_repeat1, - STATE(2862), 1, + STATE(2918), 1, sym_type_parameters, - ACTIONS(2338), 2, - anon_sym_COMMA, - anon_sym_SEMI, - ACTIONS(2340), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(2768), 2, + ACTIONS(2818), 2, anon_sym_get, anon_sym_set, - ACTIONS(2770), 3, + ACTIONS(2843), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(2820), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(1946), 3, + STATE(1947), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(2237), 6, + STATE(2471), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(2750), 10, + ACTIONS(2804), 10, anon_sym_namespace, anon_sym_type, sym_identifier, @@ -93416,226 +94083,371 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [32027] = 29, + [32443] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(91), 1, anon_sym_AT, - ACTIONS(1199), 1, - anon_sym_LBRACE, - ACTIONS(2778), 1, + ACTIONS(1678), 1, + anon_sym_LT, + ACTIONS(2332), 1, + anon_sym_LPAREN, + ACTIONS(2340), 1, + anon_sym_new, + ACTIONS(2342), 1, + anon_sym_DASH, + ACTIONS(2344), 1, + anon_sym_DQUOTE, + ACTIONS(2346), 1, + anon_sym_SQUOTE, + ACTIONS(2806), 1, + anon_sym_export, + ACTIONS(2808), 1, anon_sym_STAR, - ACTIONS(2780), 1, - anon_sym_default, - ACTIONS(2782), 1, - anon_sym_EQ, - ACTIONS(2784), 1, - anon_sym_as, - ACTIONS(2786), 1, + ACTIONS(2810), 1, + anon_sym_LBRACK, + ACTIONS(2812), 1, + anon_sym_async, + ACTIONS(2814), 1, + sym_number, + ACTIONS(2816), 1, + anon_sym_static, + ACTIONS(2822), 1, + sym_readonly, + STATE(1878), 1, + sym_accessibility_modifier, + STATE(1890), 1, + sym_decorator, + STATE(2015), 1, + sym_formal_parameters, + STATE(2320), 1, + sym__call_signature, + STATE(2548), 1, + aux_sym_export_statement_repeat1, + STATE(2918), 1, + sym_type_parameters, + ACTIONS(2818), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(2845), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(2820), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(1947), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(2471), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(2804), 10, anon_sym_namespace, - ACTIONS(2790), 1, anon_sym_type, - ACTIONS(2792), 1, - anon_sym_import, - ACTIONS(2794), 1, - anon_sym_var, - ACTIONS(2796), 1, - anon_sym_let, - ACTIONS(2798), 1, - anon_sym_const, - ACTIONS(2800), 1, - anon_sym_class, - ACTIONS(2802), 1, - anon_sym_async, - ACTIONS(2804), 1, - anon_sym_function, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [32545] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(1678), 1, + anon_sym_LT, + ACTIONS(2332), 1, + anon_sym_LPAREN, + ACTIONS(2340), 1, + anon_sym_new, + ACTIONS(2342), 1, + anon_sym_DASH, + ACTIONS(2344), 1, + anon_sym_DQUOTE, + ACTIONS(2346), 1, + anon_sym_SQUOTE, ACTIONS(2806), 1, - anon_sym_abstract, + anon_sym_export, ACTIONS(2808), 1, - anon_sym_declare, + anon_sym_STAR, ACTIONS(2810), 1, - anon_sym_module, + anon_sym_LBRACK, ACTIONS(2812), 1, - anon_sym_interface, + anon_sym_async, ACTIONS(2814), 1, - anon_sym_enum, - STATE(1905), 1, + sym_number, + ACTIONS(2816), 1, + anon_sym_static, + ACTIONS(2822), 1, + sym_readonly, + STATE(1878), 1, + sym_accessibility_modifier, + STATE(1890), 1, sym_decorator, - STATE(2429), 1, - sym__declaration, - STATE(2431), 1, - sym_internal_module, - STATE(2551), 1, + STATE(2015), 1, + sym_formal_parameters, + STATE(2320), 1, + sym__call_signature, + STATE(2548), 1, aux_sym_export_statement_repeat1, - STATE(2581), 1, - sym_export_clause, - ACTIONS(2820), 2, - anon_sym_COMMA, + STATE(2918), 1, + sym_type_parameters, + ACTIONS(2818), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(2847), 2, anon_sym_RBRACE, - ACTIONS(2788), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, anon_sym_PIPE_RBRACE, - STATE(2426), 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, - [32134] = 28, + ACTIONS(2820), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(1947), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(2471), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(2804), 10, + anon_sym_namespace, + anon_sym_type, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [32647] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(91), 1, anon_sym_AT, - ACTIONS(1199), 1, - anon_sym_LBRACE, - ACTIONS(2778), 1, + ACTIONS(1678), 1, + anon_sym_LT, + ACTIONS(2332), 1, + anon_sym_LPAREN, + ACTIONS(2340), 1, + anon_sym_new, + ACTIONS(2342), 1, + anon_sym_DASH, + ACTIONS(2344), 1, + anon_sym_DQUOTE, + ACTIONS(2346), 1, + anon_sym_SQUOTE, + ACTIONS(2806), 1, + anon_sym_export, + ACTIONS(2808), 1, anon_sym_STAR, - ACTIONS(2780), 1, - anon_sym_default, - ACTIONS(2784), 1, - anon_sym_as, - ACTIONS(2786), 1, + ACTIONS(2810), 1, + anon_sym_LBRACK, + ACTIONS(2812), 1, + anon_sym_async, + ACTIONS(2814), 1, + sym_number, + ACTIONS(2816), 1, + anon_sym_static, + ACTIONS(2822), 1, + sym_readonly, + STATE(1878), 1, + sym_accessibility_modifier, + STATE(1890), 1, + sym_decorator, + STATE(2015), 1, + sym_formal_parameters, + STATE(2320), 1, + sym__call_signature, + STATE(2548), 1, + aux_sym_export_statement_repeat1, + STATE(2918), 1, + sym_type_parameters, + ACTIONS(2818), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(2849), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(2820), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(1947), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(2471), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(2804), 10, anon_sym_namespace, - ACTIONS(2790), 1, anon_sym_type, - ACTIONS(2792), 1, - anon_sym_import, - ACTIONS(2794), 1, - anon_sym_var, - ACTIONS(2796), 1, - anon_sym_let, - ACTIONS(2798), 1, - anon_sym_const, - ACTIONS(2800), 1, - anon_sym_class, - ACTIONS(2802), 1, - anon_sym_async, - ACTIONS(2804), 1, - anon_sym_function, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [32749] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(1678), 1, + anon_sym_LT, + ACTIONS(2332), 1, + anon_sym_LPAREN, + ACTIONS(2340), 1, + anon_sym_new, + ACTIONS(2342), 1, + anon_sym_DASH, + ACTIONS(2344), 1, + anon_sym_DQUOTE, + ACTIONS(2346), 1, + anon_sym_SQUOTE, ACTIONS(2806), 1, - anon_sym_abstract, + anon_sym_export, ACTIONS(2808), 1, - anon_sym_declare, + anon_sym_STAR, ACTIONS(2810), 1, - anon_sym_module, + anon_sym_LBRACK, ACTIONS(2812), 1, - anon_sym_interface, + anon_sym_async, ACTIONS(2814), 1, - anon_sym_enum, - ACTIONS(2823), 1, - anon_sym_EQ, - STATE(1905), 1, + sym_number, + ACTIONS(2816), 1, + anon_sym_static, + ACTIONS(2822), 1, + sym_readonly, + STATE(1878), 1, + sym_accessibility_modifier, + STATE(1890), 1, sym_decorator, - STATE(2429), 1, - sym__declaration, - STATE(2431), 1, - sym_internal_module, - STATE(2551), 1, + STATE(2015), 1, + sym_formal_parameters, + STATE(2320), 1, + sym__call_signature, + STATE(2548), 1, aux_sym_export_statement_repeat1, - STATE(2581), 1, - sym_export_clause, - ACTIONS(2788), 9, - sym__automatic_semicolon, - anon_sym_COMMA, + STATE(2918), 1, + sym_type_parameters, + ACTIONS(2818), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(2851), 2, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, anon_sym_PIPE_RBRACE, - STATE(2426), 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, - [32239] = 27, + ACTIONS(2820), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(1947), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(2471), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(2804), 10, + anon_sym_namespace, + anon_sym_type, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [32851] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(91), 1, anon_sym_AT, - ACTIONS(1691), 1, + ACTIONS(1678), 1, anon_sym_LT, - ACTIONS(2306), 1, + ACTIONS(2332), 1, anon_sym_LPAREN, - ACTIONS(2314), 1, + ACTIONS(2340), 1, anon_sym_new, - ACTIONS(2316), 1, + ACTIONS(2342), 1, anon_sym_DASH, - ACTIONS(2318), 1, + ACTIONS(2344), 1, anon_sym_DQUOTE, - ACTIONS(2320), 1, + ACTIONS(2346), 1, anon_sym_SQUOTE, - ACTIONS(2752), 1, + ACTIONS(2806), 1, anon_sym_export, - ACTIONS(2754), 1, + ACTIONS(2808), 1, anon_sym_STAR, - ACTIONS(2760), 1, + ACTIONS(2810), 1, anon_sym_LBRACK, - ACTIONS(2762), 1, + ACTIONS(2812), 1, anon_sym_async, - ACTIONS(2764), 1, + ACTIONS(2814), 1, sym_number, - ACTIONS(2766), 1, + ACTIONS(2816), 1, anon_sym_static, - ACTIONS(2772), 1, + ACTIONS(2822), 1, sym_readonly, - STATE(1877), 1, + STATE(1878), 1, sym_accessibility_modifier, - STATE(1905), 1, + STATE(1890), 1, sym_decorator, - STATE(2020), 1, + STATE(2015), 1, sym_formal_parameters, - STATE(2406), 1, + STATE(2320), 1, sym__call_signature, - STATE(2485), 1, + STATE(2548), 1, aux_sym_export_statement_repeat1, - STATE(2862), 1, + STATE(2918), 1, sym_type_parameters, - ACTIONS(2768), 2, + ACTIONS(2818), 2, anon_sym_get, anon_sym_set, - ACTIONS(2825), 2, + ACTIONS(2853), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(2770), 3, + ACTIONS(2820), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(1946), 3, + STATE(1947), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(2327), 6, + STATE(2471), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(2750), 10, + ACTIONS(2804), 10, anon_sym_namespace, anon_sym_type, sym_identifier, @@ -93646,71 +94458,71 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [32341] = 27, + [32953] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(91), 1, anon_sym_AT, - ACTIONS(1691), 1, + ACTIONS(1678), 1, anon_sym_LT, - ACTIONS(2306), 1, + ACTIONS(2332), 1, anon_sym_LPAREN, - ACTIONS(2314), 1, + ACTIONS(2340), 1, anon_sym_new, - ACTIONS(2316), 1, + ACTIONS(2342), 1, anon_sym_DASH, - ACTIONS(2318), 1, + ACTIONS(2344), 1, anon_sym_DQUOTE, - ACTIONS(2320), 1, + ACTIONS(2346), 1, anon_sym_SQUOTE, - ACTIONS(2752), 1, + ACTIONS(2806), 1, anon_sym_export, - ACTIONS(2754), 1, + ACTIONS(2808), 1, anon_sym_STAR, - ACTIONS(2760), 1, + ACTIONS(2810), 1, anon_sym_LBRACK, - ACTIONS(2762), 1, + ACTIONS(2812), 1, anon_sym_async, - ACTIONS(2764), 1, + ACTIONS(2814), 1, sym_number, - ACTIONS(2766), 1, + ACTIONS(2816), 1, anon_sym_static, - ACTIONS(2772), 1, + ACTIONS(2822), 1, sym_readonly, - STATE(1877), 1, + STATE(1878), 1, sym_accessibility_modifier, - STATE(1905), 1, + STATE(1890), 1, sym_decorator, - STATE(2020), 1, + STATE(2015), 1, sym_formal_parameters, - STATE(2406), 1, + STATE(2320), 1, sym__call_signature, - STATE(2485), 1, + STATE(2548), 1, aux_sym_export_statement_repeat1, - STATE(2862), 1, + STATE(2918), 1, sym_type_parameters, - ACTIONS(2768), 2, + ACTIONS(2818), 2, anon_sym_get, anon_sym_set, - ACTIONS(2827), 2, + ACTIONS(2855), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(2770), 3, + ACTIONS(2820), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(1946), 3, + STATE(1947), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(2327), 6, + STATE(2471), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(2750), 10, + ACTIONS(2804), 10, anon_sym_namespace, anon_sym_type, sym_identifier, @@ -93721,71 +94533,71 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [32443] = 27, + [33055] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(91), 1, anon_sym_AT, - ACTIONS(1691), 1, + ACTIONS(1678), 1, anon_sym_LT, - ACTIONS(2306), 1, + ACTIONS(2332), 1, anon_sym_LPAREN, - ACTIONS(2314), 1, + ACTIONS(2340), 1, anon_sym_new, - ACTIONS(2316), 1, + ACTIONS(2342), 1, anon_sym_DASH, - ACTIONS(2318), 1, + ACTIONS(2344), 1, anon_sym_DQUOTE, - ACTIONS(2320), 1, + ACTIONS(2346), 1, anon_sym_SQUOTE, - ACTIONS(2752), 1, + ACTIONS(2806), 1, anon_sym_export, - ACTIONS(2754), 1, + ACTIONS(2808), 1, anon_sym_STAR, - ACTIONS(2760), 1, + ACTIONS(2810), 1, anon_sym_LBRACK, - ACTIONS(2762), 1, + ACTIONS(2812), 1, anon_sym_async, - ACTIONS(2764), 1, + ACTIONS(2814), 1, sym_number, - ACTIONS(2766), 1, + ACTIONS(2816), 1, anon_sym_static, - ACTIONS(2772), 1, + ACTIONS(2822), 1, sym_readonly, - STATE(1877), 1, + STATE(1878), 1, sym_accessibility_modifier, - STATE(1905), 1, + STATE(1890), 1, sym_decorator, - STATE(2020), 1, + STATE(2015), 1, sym_formal_parameters, - STATE(2406), 1, + STATE(2320), 1, sym__call_signature, - STATE(2485), 1, + STATE(2548), 1, aux_sym_export_statement_repeat1, - STATE(2862), 1, + STATE(2918), 1, sym_type_parameters, - ACTIONS(2768), 2, + ACTIONS(2818), 2, anon_sym_get, anon_sym_set, - ACTIONS(2829), 2, + ACTIONS(2857), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(2770), 3, + ACTIONS(2820), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(1946), 3, + STATE(1947), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(2327), 6, + STATE(2471), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(2750), 10, + ACTIONS(2804), 10, anon_sym_namespace, anon_sym_type, sym_identifier, @@ -93796,71 +94608,71 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [32545] = 27, + [33157] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(91), 1, anon_sym_AT, - ACTIONS(1691), 1, + ACTIONS(1678), 1, anon_sym_LT, - ACTIONS(2306), 1, + ACTIONS(2332), 1, anon_sym_LPAREN, - ACTIONS(2314), 1, + ACTIONS(2340), 1, anon_sym_new, - ACTIONS(2316), 1, + ACTIONS(2342), 1, anon_sym_DASH, - ACTIONS(2318), 1, + ACTIONS(2344), 1, anon_sym_DQUOTE, - ACTIONS(2320), 1, + ACTIONS(2346), 1, anon_sym_SQUOTE, - ACTIONS(2752), 1, + ACTIONS(2806), 1, anon_sym_export, - ACTIONS(2754), 1, + ACTIONS(2808), 1, anon_sym_STAR, - ACTIONS(2760), 1, + ACTIONS(2810), 1, anon_sym_LBRACK, - ACTIONS(2762), 1, + ACTIONS(2812), 1, anon_sym_async, - ACTIONS(2764), 1, + ACTIONS(2814), 1, sym_number, - ACTIONS(2766), 1, + ACTIONS(2816), 1, anon_sym_static, - ACTIONS(2772), 1, + ACTIONS(2822), 1, sym_readonly, - STATE(1877), 1, + STATE(1878), 1, sym_accessibility_modifier, - STATE(1905), 1, + STATE(1890), 1, sym_decorator, - STATE(2020), 1, + STATE(2015), 1, sym_formal_parameters, - STATE(2406), 1, + STATE(2320), 1, sym__call_signature, - STATE(2485), 1, + STATE(2548), 1, aux_sym_export_statement_repeat1, - STATE(2862), 1, + STATE(2918), 1, sym_type_parameters, - ACTIONS(2768), 2, + ACTIONS(2818), 2, anon_sym_get, anon_sym_set, - ACTIONS(2831), 2, + ACTIONS(2859), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(2770), 3, + ACTIONS(2820), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(1946), 3, + STATE(1947), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(2327), 6, + STATE(2471), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(2750), 10, + ACTIONS(2804), 10, anon_sym_namespace, anon_sym_type, sym_identifier, @@ -93871,71 +94683,71 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [32647] = 27, + [33259] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(91), 1, anon_sym_AT, - ACTIONS(1691), 1, + ACTIONS(1678), 1, anon_sym_LT, - ACTIONS(2306), 1, + ACTIONS(2332), 1, anon_sym_LPAREN, - ACTIONS(2314), 1, + ACTIONS(2340), 1, anon_sym_new, - ACTIONS(2316), 1, + ACTIONS(2342), 1, anon_sym_DASH, - ACTIONS(2318), 1, + ACTIONS(2344), 1, anon_sym_DQUOTE, - ACTIONS(2320), 1, + ACTIONS(2346), 1, anon_sym_SQUOTE, - ACTIONS(2752), 1, + ACTIONS(2806), 1, anon_sym_export, - ACTIONS(2754), 1, + ACTIONS(2808), 1, anon_sym_STAR, - ACTIONS(2760), 1, + ACTIONS(2810), 1, anon_sym_LBRACK, - ACTIONS(2762), 1, + ACTIONS(2812), 1, anon_sym_async, - ACTIONS(2764), 1, + ACTIONS(2814), 1, sym_number, - ACTIONS(2766), 1, + ACTIONS(2816), 1, anon_sym_static, - ACTIONS(2772), 1, + ACTIONS(2822), 1, sym_readonly, - STATE(1877), 1, + STATE(1878), 1, sym_accessibility_modifier, - STATE(1905), 1, + STATE(1890), 1, sym_decorator, - STATE(2020), 1, + STATE(2015), 1, sym_formal_parameters, - STATE(2406), 1, + STATE(2320), 1, sym__call_signature, - STATE(2485), 1, + STATE(2548), 1, aux_sym_export_statement_repeat1, - STATE(2862), 1, + STATE(2918), 1, sym_type_parameters, - ACTIONS(2768), 2, + ACTIONS(2818), 2, anon_sym_get, anon_sym_set, - ACTIONS(2833), 2, + ACTIONS(2861), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(2770), 3, + ACTIONS(2820), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(1946), 3, + STATE(1947), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(2327), 6, + STATE(2471), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(2750), 10, + ACTIONS(2804), 10, anon_sym_namespace, anon_sym_type, sym_identifier, @@ -93946,71 +94758,71 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [32749] = 27, + [33361] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(91), 1, anon_sym_AT, - ACTIONS(1691), 1, + ACTIONS(1678), 1, anon_sym_LT, - ACTIONS(2306), 1, + ACTIONS(2332), 1, anon_sym_LPAREN, - ACTIONS(2314), 1, + ACTIONS(2340), 1, anon_sym_new, - ACTIONS(2316), 1, + ACTIONS(2342), 1, anon_sym_DASH, - ACTIONS(2318), 1, + ACTIONS(2344), 1, anon_sym_DQUOTE, - ACTIONS(2320), 1, + ACTIONS(2346), 1, anon_sym_SQUOTE, - ACTIONS(2752), 1, + ACTIONS(2806), 1, anon_sym_export, - ACTIONS(2754), 1, + ACTIONS(2808), 1, anon_sym_STAR, - ACTIONS(2760), 1, + ACTIONS(2810), 1, anon_sym_LBRACK, - ACTIONS(2762), 1, + ACTIONS(2812), 1, anon_sym_async, - ACTIONS(2764), 1, + ACTIONS(2814), 1, sym_number, - ACTIONS(2766), 1, + ACTIONS(2816), 1, anon_sym_static, - ACTIONS(2772), 1, + ACTIONS(2822), 1, sym_readonly, - STATE(1877), 1, + STATE(1878), 1, sym_accessibility_modifier, - STATE(1905), 1, + STATE(1890), 1, sym_decorator, - STATE(2020), 1, + STATE(2015), 1, sym_formal_parameters, - STATE(2406), 1, + STATE(2320), 1, sym__call_signature, - STATE(2485), 1, + STATE(2548), 1, aux_sym_export_statement_repeat1, - STATE(2862), 1, + STATE(2918), 1, sym_type_parameters, - ACTIONS(2768), 2, + ACTIONS(2818), 2, anon_sym_get, anon_sym_set, - ACTIONS(2835), 2, + ACTIONS(2863), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(2770), 3, + ACTIONS(2820), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(1946), 3, + STATE(1947), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(2327), 6, + STATE(2471), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(2750), 10, + ACTIONS(2804), 10, anon_sym_namespace, anon_sym_type, sym_identifier, @@ -94021,71 +94833,71 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [32851] = 27, + [33463] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(91), 1, anon_sym_AT, - ACTIONS(1691), 1, + ACTIONS(1678), 1, anon_sym_LT, - ACTIONS(2306), 1, + ACTIONS(2332), 1, anon_sym_LPAREN, - ACTIONS(2314), 1, + ACTIONS(2340), 1, anon_sym_new, - ACTIONS(2316), 1, + ACTIONS(2342), 1, anon_sym_DASH, - ACTIONS(2318), 1, + ACTIONS(2344), 1, anon_sym_DQUOTE, - ACTIONS(2320), 1, + ACTIONS(2346), 1, anon_sym_SQUOTE, - ACTIONS(2752), 1, + ACTIONS(2806), 1, anon_sym_export, - ACTIONS(2754), 1, + ACTIONS(2808), 1, anon_sym_STAR, - ACTIONS(2760), 1, + ACTIONS(2810), 1, anon_sym_LBRACK, - ACTIONS(2762), 1, + ACTIONS(2812), 1, anon_sym_async, - ACTIONS(2764), 1, + ACTIONS(2814), 1, sym_number, - ACTIONS(2766), 1, + ACTIONS(2816), 1, anon_sym_static, - ACTIONS(2772), 1, + ACTIONS(2822), 1, sym_readonly, - STATE(1877), 1, + STATE(1878), 1, sym_accessibility_modifier, - STATE(1905), 1, + STATE(1890), 1, sym_decorator, - STATE(2020), 1, + STATE(2015), 1, sym_formal_parameters, - STATE(2406), 1, + STATE(2320), 1, sym__call_signature, - STATE(2485), 1, + STATE(2548), 1, aux_sym_export_statement_repeat1, - STATE(2862), 1, + STATE(2918), 1, sym_type_parameters, - ACTIONS(2768), 2, + ACTIONS(2818), 2, anon_sym_get, anon_sym_set, - ACTIONS(2837), 2, + ACTIONS(2865), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(2770), 3, + ACTIONS(2820), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(1946), 3, + STATE(1947), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(2327), 6, + STATE(2471), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(2750), 10, + ACTIONS(2804), 10, anon_sym_namespace, anon_sym_type, sym_identifier, @@ -94096,71 +94908,71 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [32953] = 27, + [33565] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(91), 1, anon_sym_AT, - ACTIONS(1691), 1, + ACTIONS(1678), 1, anon_sym_LT, - ACTIONS(2306), 1, + ACTIONS(2332), 1, anon_sym_LPAREN, - ACTIONS(2314), 1, + ACTIONS(2340), 1, anon_sym_new, - ACTIONS(2316), 1, + ACTIONS(2342), 1, anon_sym_DASH, - ACTIONS(2318), 1, + ACTIONS(2344), 1, anon_sym_DQUOTE, - ACTIONS(2320), 1, + ACTIONS(2346), 1, anon_sym_SQUOTE, - ACTIONS(2752), 1, + ACTIONS(2806), 1, anon_sym_export, - ACTIONS(2754), 1, + ACTIONS(2808), 1, anon_sym_STAR, - ACTIONS(2760), 1, + ACTIONS(2810), 1, anon_sym_LBRACK, - ACTIONS(2762), 1, + ACTIONS(2812), 1, anon_sym_async, - ACTIONS(2764), 1, + ACTIONS(2814), 1, sym_number, - ACTIONS(2766), 1, + ACTIONS(2816), 1, anon_sym_static, - ACTIONS(2772), 1, + ACTIONS(2822), 1, sym_readonly, - STATE(1877), 1, + STATE(1878), 1, sym_accessibility_modifier, - STATE(1905), 1, + STATE(1890), 1, sym_decorator, - STATE(2020), 1, + STATE(2015), 1, sym_formal_parameters, - STATE(2406), 1, + STATE(2320), 1, sym__call_signature, - STATE(2485), 1, + STATE(2548), 1, aux_sym_export_statement_repeat1, - STATE(2862), 1, + STATE(2918), 1, sym_type_parameters, - ACTIONS(2768), 2, + ACTIONS(2818), 2, anon_sym_get, anon_sym_set, - ACTIONS(2839), 2, + ACTIONS(2867), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(2770), 3, + ACTIONS(2820), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(1946), 3, + STATE(1947), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(2327), 6, + STATE(2471), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(2750), 10, + ACTIONS(2804), 10, anon_sym_namespace, anon_sym_type, sym_identifier, @@ -94171,71 +94983,71 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [33055] = 27, + [33667] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(91), 1, anon_sym_AT, - ACTIONS(1691), 1, + ACTIONS(1678), 1, anon_sym_LT, - ACTIONS(2306), 1, + ACTIONS(2332), 1, anon_sym_LPAREN, - ACTIONS(2314), 1, + ACTIONS(2340), 1, anon_sym_new, - ACTIONS(2316), 1, + ACTIONS(2342), 1, anon_sym_DASH, - ACTIONS(2318), 1, + ACTIONS(2344), 1, anon_sym_DQUOTE, - ACTIONS(2320), 1, + ACTIONS(2346), 1, anon_sym_SQUOTE, - ACTIONS(2752), 1, + ACTIONS(2806), 1, anon_sym_export, - ACTIONS(2754), 1, + ACTIONS(2808), 1, anon_sym_STAR, - ACTIONS(2760), 1, + ACTIONS(2810), 1, anon_sym_LBRACK, - ACTIONS(2762), 1, + ACTIONS(2812), 1, anon_sym_async, - ACTIONS(2764), 1, + ACTIONS(2814), 1, sym_number, - ACTIONS(2766), 1, + ACTIONS(2816), 1, anon_sym_static, - ACTIONS(2772), 1, + ACTIONS(2822), 1, sym_readonly, - STATE(1877), 1, + STATE(1878), 1, sym_accessibility_modifier, - STATE(1905), 1, + STATE(1890), 1, sym_decorator, - STATE(2020), 1, + STATE(2015), 1, sym_formal_parameters, - STATE(2406), 1, + STATE(2320), 1, sym__call_signature, - STATE(2485), 1, + STATE(2548), 1, aux_sym_export_statement_repeat1, - STATE(2862), 1, + STATE(2918), 1, sym_type_parameters, - ACTIONS(2768), 2, + ACTIONS(2818), 2, anon_sym_get, anon_sym_set, - ACTIONS(2841), 2, + ACTIONS(2869), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(2770), 3, + ACTIONS(2820), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(1946), 3, + STATE(1947), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(2327), 6, + STATE(2471), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(2750), 10, + ACTIONS(2804), 10, anon_sym_namespace, anon_sym_type, sym_identifier, @@ -94246,146 +95058,542 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [33157] = 27, + [33769] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2161), 1, + anon_sym_LPAREN, + ACTIONS(2163), 1, + anon_sym_LT, + ACTIONS(2191), 1, + anon_sym_LBRACK, + ACTIONS(2193), 1, + anon_sym_DOT, + ACTIONS(2195), 1, + anon_sym_QMARK_DOT, + ACTIONS(2871), 1, + anon_sym_EQ, + STATE(1046), 1, + sym_type_arguments, + STATE(1160), 1, + sym_arguments, + ACTIONS(2185), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2189), 24, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + 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_BQUOTE, + anon_sym_implements, + [33838] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1001), 14, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(999), 31, + sym__automatic_semicolon, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_else, + anon_sym_LPAREN, + anon_sym_while, + anon_sym_SEMI, + 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_extends, + anon_sym_PIPE_RBRACE, + [33891] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(2547), 1, + sym_type_arguments, + STATE(1126), 2, + sym_template_string, + sym_arguments, + ACTIONS(2873), 14, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2875), 28, + 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_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_implements, + [33948] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2161), 1, + anon_sym_LPAREN, + ACTIONS(2163), 1, + anon_sym_LT, + ACTIONS(2191), 1, + anon_sym_LBRACK, + ACTIONS(2193), 1, + anon_sym_DOT, + ACTIONS(2195), 1, + anon_sym_QMARK_DOT, + ACTIONS(2877), 1, + anon_sym_EQ, + STATE(1046), 1, + sym_type_arguments, + STATE(1160), 1, + sym_arguments, + ACTIONS(2185), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2189), 24, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + 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_BQUOTE, + anon_sym_implements, + [34017] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(943), 14, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(941), 31, + sym__automatic_semicolon, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_else, + anon_sym_LPAREN, + anon_sym_while, + anon_sym_SEMI, + 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_extends, + anon_sym_PIPE_RBRACE, + [34070] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2191), 1, + anon_sym_LBRACK, + ACTIONS(2193), 1, + anon_sym_DOT, + ACTIONS(2883), 1, + anon_sym_QMARK_DOT, + STATE(2547), 1, + sym_type_arguments, + STATE(1126), 2, + sym_template_string, + sym_arguments, + ACTIONS(2879), 14, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2881), 25, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + 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_BQUOTE, + anon_sym_implements, + [34133] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1505), 3, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(1507), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(911), 12, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(913), 26, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + 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_implements, + [34189] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(911), 1, + anon_sym_EQ, + ACTIONS(2885), 1, + sym__automatic_semicolon, + ACTIONS(909), 14, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(907), 28, + 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_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_implements, + [34245] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(1691), 1, + ACTIONS(2887), 15, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_in, anon_sym_LT, - ACTIONS(2306), 1, - anon_sym_LPAREN, - ACTIONS(2314), 1, - anon_sym_new, - ACTIONS(2316), 1, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2318), 1, - anon_sym_DQUOTE, - ACTIONS(2320), 1, - anon_sym_SQUOTE, - ACTIONS(2752), 1, - anon_sym_export, - ACTIONS(2754), 1, - anon_sym_STAR, - ACTIONS(2760), 1, - anon_sym_LBRACK, - ACTIONS(2762), 1, - anon_sym_async, - ACTIONS(2764), 1, - sym_number, - ACTIONS(2766), 1, - anon_sym_static, - ACTIONS(2772), 1, - sym_readonly, - STATE(1877), 1, - sym_accessibility_modifier, - STATE(1905), 1, - sym_decorator, - STATE(2020), 1, - sym_formal_parameters, - STATE(2406), 1, - sym__call_signature, - STATE(2485), 1, - aux_sym_export_statement_repeat1, - STATE(2862), 1, - sym_type_parameters, - ACTIONS(2768), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(2843), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2889), 29, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(2770), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(1946), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(2327), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(2750), 10, - anon_sym_namespace, - anon_sym_type, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [33259] = 27, + anon_sym_LPAREN, + 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_implements, + [34297] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(91), 1, anon_sym_AT, - ACTIONS(1691), 1, + ACTIONS(1678), 1, anon_sym_LT, - ACTIONS(2306), 1, + ACTIONS(2332), 1, anon_sym_LPAREN, - ACTIONS(2314), 1, + ACTIONS(2340), 1, anon_sym_new, - ACTIONS(2316), 1, + ACTIONS(2342), 1, anon_sym_DASH, - ACTIONS(2318), 1, + ACTIONS(2344), 1, anon_sym_DQUOTE, - ACTIONS(2320), 1, + ACTIONS(2346), 1, anon_sym_SQUOTE, - ACTIONS(2752), 1, + ACTIONS(2806), 1, anon_sym_export, - ACTIONS(2754), 1, + ACTIONS(2808), 1, anon_sym_STAR, - ACTIONS(2760), 1, + ACTIONS(2810), 1, anon_sym_LBRACK, - ACTIONS(2762), 1, + ACTIONS(2812), 1, anon_sym_async, - ACTIONS(2764), 1, + ACTIONS(2814), 1, sym_number, - ACTIONS(2766), 1, + ACTIONS(2816), 1, anon_sym_static, - ACTIONS(2772), 1, + ACTIONS(2822), 1, sym_readonly, - STATE(1877), 1, + STATE(1878), 1, sym_accessibility_modifier, - STATE(1905), 1, + STATE(1890), 1, sym_decorator, - STATE(2020), 1, + STATE(2015), 1, sym_formal_parameters, - STATE(2406), 1, + STATE(2320), 1, sym__call_signature, - STATE(2485), 1, + STATE(2548), 1, aux_sym_export_statement_repeat1, - STATE(2862), 1, + STATE(2918), 1, sym_type_parameters, - ACTIONS(2768), 2, + ACTIONS(2818), 2, anon_sym_get, anon_sym_set, - ACTIONS(2845), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(2770), 3, + ACTIONS(2820), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(1946), 3, + STATE(1947), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(2327), 6, + STATE(2227), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(2750), 10, + ACTIONS(2804), 10, anon_sym_namespace, anon_sym_type, sym_identifier, @@ -94396,221 +95604,168 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [33361] = 27, + [34395] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(1691), 1, + ACTIONS(911), 15, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_in, anon_sym_LT, - ACTIONS(2306), 1, - anon_sym_LPAREN, - ACTIONS(2314), 1, - anon_sym_new, - ACTIONS(2316), 1, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2318), 1, - anon_sym_DQUOTE, - ACTIONS(2320), 1, - anon_sym_SQUOTE, - ACTIONS(2752), 1, - anon_sym_export, - ACTIONS(2754), 1, - anon_sym_STAR, - ACTIONS(2760), 1, - anon_sym_LBRACK, - ACTIONS(2762), 1, - anon_sym_async, - ACTIONS(2764), 1, - sym_number, - ACTIONS(2766), 1, - anon_sym_static, - ACTIONS(2772), 1, - sym_readonly, - STATE(1877), 1, - sym_accessibility_modifier, - STATE(1905), 1, - sym_decorator, - STATE(2020), 1, - sym_formal_parameters, - STATE(2406), 1, - sym__call_signature, - STATE(2485), 1, - aux_sym_export_statement_repeat1, - STATE(2862), 1, - sym_type_parameters, - ACTIONS(2768), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(2847), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(913), 29, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(2770), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(1946), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(2327), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(2750), 10, - anon_sym_namespace, - anon_sym_type, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [33463] = 27, + anon_sym_LPAREN, + 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_implements, + [34447] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(1691), 1, + ACTIONS(2891), 1, + anon_sym_DOT, + STATE(1094), 1, + sym_type_arguments, + ACTIONS(1503), 14, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, anon_sym_LT, - ACTIONS(2306), 1, - anon_sym_LPAREN, - ACTIONS(2314), 1, - anon_sym_new, - ACTIONS(2316), 1, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2318), 1, - anon_sym_DQUOTE, - ACTIONS(2320), 1, - anon_sym_SQUOTE, - ACTIONS(2752), 1, - anon_sym_export, - ACTIONS(2754), 1, - anon_sym_STAR, - ACTIONS(2760), 1, - anon_sym_LBRACK, - ACTIONS(2762), 1, - anon_sym_async, - ACTIONS(2764), 1, - sym_number, - ACTIONS(2766), 1, - anon_sym_static, - ACTIONS(2772), 1, - sym_readonly, - STATE(1877), 1, - sym_accessibility_modifier, - STATE(1905), 1, - sym_decorator, - STATE(2020), 1, - sym_formal_parameters, - STATE(2406), 1, - sym__call_signature, - STATE(2485), 1, - aux_sym_export_statement_repeat1, - STATE(2862), 1, - sym_type_parameters, - ACTIONS(2768), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(2849), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1501), 28, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(2770), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(1946), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(2327), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(2750), 10, - anon_sym_namespace, - anon_sym_type, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [33565] = 27, + anon_sym_LPAREN, + anon_sym_RPAREN, + 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_implements, + anon_sym_extends, + [34503] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(91), 1, anon_sym_AT, - ACTIONS(1691), 1, + ACTIONS(1678), 1, anon_sym_LT, - ACTIONS(2306), 1, + ACTIONS(2332), 1, anon_sym_LPAREN, - ACTIONS(2314), 1, + ACTIONS(2340), 1, anon_sym_new, - ACTIONS(2316), 1, + ACTIONS(2342), 1, anon_sym_DASH, - ACTIONS(2318), 1, + ACTIONS(2344), 1, anon_sym_DQUOTE, - ACTIONS(2320), 1, + ACTIONS(2346), 1, anon_sym_SQUOTE, - ACTIONS(2752), 1, + ACTIONS(2806), 1, anon_sym_export, - ACTIONS(2754), 1, + ACTIONS(2808), 1, anon_sym_STAR, - ACTIONS(2760), 1, + ACTIONS(2810), 1, anon_sym_LBRACK, - ACTIONS(2762), 1, + ACTIONS(2812), 1, anon_sym_async, - ACTIONS(2764), 1, + ACTIONS(2814), 1, sym_number, - ACTIONS(2766), 1, + ACTIONS(2816), 1, anon_sym_static, - ACTIONS(2772), 1, + ACTIONS(2822), 1, sym_readonly, - STATE(1877), 1, + STATE(1878), 1, sym_accessibility_modifier, - STATE(1905), 1, + STATE(1890), 1, sym_decorator, - STATE(2020), 1, + STATE(2015), 1, sym_formal_parameters, - STATE(2406), 1, + STATE(2320), 1, sym__call_signature, - STATE(2485), 1, + STATE(2548), 1, aux_sym_export_statement_repeat1, - STATE(2862), 1, + STATE(2918), 1, sym_type_parameters, - ACTIONS(2768), 2, + ACTIONS(2818), 2, anon_sym_get, anon_sym_set, - ACTIONS(2851), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(2770), 3, + ACTIONS(2820), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(1946), 3, + STATE(1947), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(2327), 6, + STATE(2170), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(2750), 10, + ACTIONS(2804), 10, anon_sym_namespace, anon_sym_type, sym_identifier, @@ -94621,71 +95776,68 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [33667] = 27, + [34601] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(91), 1, anon_sym_AT, - ACTIONS(1691), 1, + ACTIONS(1678), 1, anon_sym_LT, - ACTIONS(2306), 1, + ACTIONS(2332), 1, anon_sym_LPAREN, - ACTIONS(2314), 1, + ACTIONS(2340), 1, anon_sym_new, - ACTIONS(2316), 1, + ACTIONS(2342), 1, anon_sym_DASH, - ACTIONS(2318), 1, + ACTIONS(2344), 1, anon_sym_DQUOTE, - ACTIONS(2320), 1, + ACTIONS(2346), 1, anon_sym_SQUOTE, - ACTIONS(2752), 1, + ACTIONS(2806), 1, anon_sym_export, - ACTIONS(2754), 1, + ACTIONS(2808), 1, anon_sym_STAR, - ACTIONS(2760), 1, + ACTIONS(2810), 1, anon_sym_LBRACK, - ACTIONS(2762), 1, + ACTIONS(2812), 1, anon_sym_async, - ACTIONS(2764), 1, + ACTIONS(2814), 1, sym_number, - ACTIONS(2766), 1, + ACTIONS(2816), 1, anon_sym_static, - ACTIONS(2772), 1, + ACTIONS(2822), 1, sym_readonly, - STATE(1877), 1, + STATE(1878), 1, sym_accessibility_modifier, - STATE(1905), 1, + STATE(1890), 1, sym_decorator, - STATE(2020), 1, + STATE(2015), 1, sym_formal_parameters, - STATE(2406), 1, + STATE(2320), 1, sym__call_signature, - STATE(2485), 1, + STATE(2548), 1, aux_sym_export_statement_repeat1, - STATE(2862), 1, + STATE(2918), 1, sym_type_parameters, - ACTIONS(2768), 2, + ACTIONS(2818), 2, anon_sym_get, anon_sym_set, - ACTIONS(2853), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(2770), 3, + ACTIONS(2820), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(1946), 3, + STATE(1947), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(2327), 6, + STATE(2182), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(2750), 10, + ACTIONS(2804), 10, anon_sym_namespace, anon_sym_type, sym_identifier, @@ -94695,138 +95847,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_number, anon_sym_boolean, anon_sym_string, - anon_sym_symbol, - [33769] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(993), 14, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(991), 31, - sym__automatic_semicolon, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_else, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_SEMI, - 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_extends, - anon_sym_PIPE_RBRACE, - [33822] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2145), 1, - anon_sym_LPAREN, - ACTIONS(2147), 1, - anon_sym_LT, - ACTIONS(2175), 1, - anon_sym_LBRACK, - ACTIONS(2177), 1, - anon_sym_DOT, - ACTIONS(2179), 1, - anon_sym_QMARK_DOT, - ACTIONS(2855), 1, - anon_sym_EQ, - STATE(1088), 1, - sym_type_arguments, - STATE(1157), 1, - sym_arguments, - ACTIONS(2169), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2173), 24, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - 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_BQUOTE, - anon_sym_implements, - [33891] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2145), 1, - anon_sym_LPAREN, - ACTIONS(2147), 1, - anon_sym_LT, - ACTIONS(2175), 1, - anon_sym_LBRACK, - ACTIONS(2177), 1, - anon_sym_DOT, - ACTIONS(2179), 1, - anon_sym_QMARK_DOT, - ACTIONS(2857), 1, - anon_sym_EQ, - STATE(1088), 1, - sym_type_arguments, - STATE(1157), 1, - sym_arguments, - ACTIONS(2169), 13, + anon_sym_symbol, + [34699] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2893), 15, anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -94837,14 +95867,19 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2173), 24, + ACTIONS(2895), 29, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, 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, @@ -94862,22 +95897,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [33960] = 8, + [34751] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2175), 1, - anon_sym_LBRACK, - ACTIONS(2177), 1, - anon_sym_DOT, - ACTIONS(2863), 1, - anon_sym_QMARK_DOT, - STATE(2565), 1, - sym_type_arguments, - STATE(1128), 2, - sym_template_string, - sym_arguments, - ACTIONS(2859), 14, + ACTIONS(2897), 15, anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -94891,15 +95916,19 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2861), 25, + ACTIONS(2724), 29, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, 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, @@ -94917,10 +95946,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [34023] = 3, + [34803] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(997), 14, + STATE(1091), 1, + sym_type_arguments, + ACTIONS(1569), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -94935,18 +95966,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(995), 31, - sym__automatic_semicolon, + ACTIONS(1567), 29, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_else, anon_sym_LPAREN, - anon_sym_while, - anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -94965,18 +95994,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, + anon_sym_implements, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [34076] = 5, + [34857] = 3, ACTIONS(3), 1, sym_comment, - STATE(2565), 1, - sym_type_arguments, - STATE(1128), 2, - sym_template_string, - sym_arguments, - ACTIONS(2865), 14, + ACTIONS(2899), 15, anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -94990,13 +96015,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2867), 28, + ACTIONS(2901), 29, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, @@ -95019,19 +96045,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [34133] = 6, + [34909] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2869), 1, - anon_sym_LT, - ACTIONS(2872), 1, - anon_sym_DOT, - STATE(1050), 1, - sym_type_arguments, - ACTIONS(1672), 13, + ACTIONS(2903), 15, anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -95042,16 +96064,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1670), 28, + ACTIONS(2905), 29, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, 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, @@ -95070,11 +96094,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - anon_sym_extends, - [34191] = 3, + [34961] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(911), 15, + ACTIONS(2907), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -95090,7 +96113,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(913), 29, + ACTIONS(2909), 29, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -95120,68 +96143,68 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [34243] = 26, + [35013] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(91), 1, anon_sym_AT, - ACTIONS(1691), 1, + ACTIONS(1678), 1, anon_sym_LT, - ACTIONS(2306), 1, + ACTIONS(2332), 1, anon_sym_LPAREN, - ACTIONS(2314), 1, + ACTIONS(2340), 1, anon_sym_new, - ACTIONS(2316), 1, + ACTIONS(2342), 1, anon_sym_DASH, - ACTIONS(2318), 1, + ACTIONS(2344), 1, anon_sym_DQUOTE, - ACTIONS(2320), 1, + ACTIONS(2346), 1, anon_sym_SQUOTE, - ACTIONS(2752), 1, + ACTIONS(2806), 1, anon_sym_export, - ACTIONS(2754), 1, + ACTIONS(2808), 1, anon_sym_STAR, - ACTIONS(2760), 1, + ACTIONS(2810), 1, anon_sym_LBRACK, - ACTIONS(2762), 1, + ACTIONS(2812), 1, anon_sym_async, - ACTIONS(2764), 1, + ACTIONS(2814), 1, sym_number, - ACTIONS(2766), 1, + ACTIONS(2816), 1, anon_sym_static, - ACTIONS(2772), 1, + ACTIONS(2822), 1, sym_readonly, - STATE(1877), 1, + STATE(1878), 1, sym_accessibility_modifier, - STATE(1905), 1, + STATE(1890), 1, sym_decorator, - STATE(2020), 1, + STATE(2015), 1, sym_formal_parameters, - STATE(2406), 1, + STATE(2320), 1, sym__call_signature, - STATE(2485), 1, + STATE(2548), 1, aux_sym_export_statement_repeat1, - STATE(2862), 1, + STATE(2918), 1, sym_type_parameters, - ACTIONS(2768), 2, + ACTIONS(2818), 2, anon_sym_get, anon_sym_set, - ACTIONS(2770), 3, + ACTIONS(2820), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(1946), 3, + STATE(1947), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(2204), 6, + STATE(2157), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(2750), 10, + ACTIONS(2804), 10, anon_sym_namespace, anon_sym_type, sym_identifier, @@ -95192,117 +96215,68 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [34341] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2874), 15, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2876), 29, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - 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_implements, - [34393] = 26, + [35111] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(91), 1, anon_sym_AT, - ACTIONS(1691), 1, + ACTIONS(1678), 1, anon_sym_LT, - ACTIONS(2306), 1, + ACTIONS(2332), 1, anon_sym_LPAREN, - ACTIONS(2314), 1, + ACTIONS(2340), 1, anon_sym_new, - ACTIONS(2316), 1, + ACTIONS(2342), 1, anon_sym_DASH, - ACTIONS(2318), 1, + ACTIONS(2344), 1, anon_sym_DQUOTE, - ACTIONS(2320), 1, + ACTIONS(2346), 1, anon_sym_SQUOTE, - ACTIONS(2752), 1, + ACTIONS(2806), 1, anon_sym_export, - ACTIONS(2754), 1, + ACTIONS(2808), 1, anon_sym_STAR, - ACTIONS(2760), 1, + ACTIONS(2810), 1, anon_sym_LBRACK, - ACTIONS(2762), 1, + ACTIONS(2812), 1, anon_sym_async, - ACTIONS(2764), 1, + ACTIONS(2814), 1, sym_number, - ACTIONS(2766), 1, + ACTIONS(2816), 1, anon_sym_static, - ACTIONS(2772), 1, + ACTIONS(2822), 1, sym_readonly, - STATE(1877), 1, + STATE(1878), 1, sym_accessibility_modifier, - STATE(1905), 1, + STATE(1890), 1, sym_decorator, - STATE(2020), 1, + STATE(2015), 1, sym_formal_parameters, - STATE(2406), 1, + STATE(2320), 1, sym__call_signature, - STATE(2485), 1, + STATE(2548), 1, aux_sym_export_statement_repeat1, - STATE(2862), 1, + STATE(2918), 1, sym_type_parameters, - ACTIONS(2768), 2, + ACTIONS(2818), 2, anon_sym_get, anon_sym_set, - ACTIONS(2770), 3, + ACTIONS(2820), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(1946), 3, + STATE(1947), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(2200), 6, + STATE(2471), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(2750), 10, + ACTIONS(2804), 10, anon_sym_namespace, anon_sym_type, sym_identifier, @@ -95313,16 +96287,27 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [34491] = 4, + [35209] = 10, ACTIONS(3), 1, sym_comment, - STATE(1055), 1, + ACTIONS(2161), 1, + anon_sym_LPAREN, + ACTIONS(2163), 1, + anon_sym_LT, + ACTIONS(2191), 1, + anon_sym_LBRACK, + ACTIONS(2193), 1, + anon_sym_DOT, + ACTIONS(2195), 1, + anon_sym_QMARK_DOT, + STATE(1046), 1, sym_type_arguments, - ACTIONS(1519), 14, + STATE(1160), 1, + sym_arguments, + ACTIONS(2185), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -95333,15 +96318,63 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1517), 29, + ACTIONS(2189), 24, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_RPAREN, 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_BQUOTE, + anon_sym_implements, + [35275] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1587), 1, + anon_sym_extends, + ACTIONS(2911), 2, + anon_sym_COMMA, anon_sym_LBRACK, + ACTIONS(2914), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(2907), 12, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2909), 26, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -95362,19 +96395,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - anon_sym_extends, - [34545] = 5, + [35333] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2872), 1, - anon_sym_DOT, - STATE(1050), 1, + ACTIONS(2917), 1, + anon_sym_LT, + STATE(1091), 1, sym_type_arguments, - ACTIONS(1661), 14, + ACTIONS(1714), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -95385,7 +96416,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1659), 28, + ACTIONS(1712), 29, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -95395,6 +96426,7 @@ static 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, @@ -95414,140 +96446,68 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_implements, anon_sym_extends, - [34601] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(1691), 1, - anon_sym_LT, - ACTIONS(2306), 1, - anon_sym_LPAREN, - ACTIONS(2314), 1, - anon_sym_new, - ACTIONS(2316), 1, - anon_sym_DASH, - ACTIONS(2318), 1, - anon_sym_DQUOTE, - ACTIONS(2320), 1, - anon_sym_SQUOTE, - ACTIONS(2752), 1, - anon_sym_export, - ACTIONS(2754), 1, - anon_sym_STAR, - ACTIONS(2760), 1, - anon_sym_LBRACK, - ACTIONS(2762), 1, - anon_sym_async, - ACTIONS(2764), 1, - sym_number, - ACTIONS(2766), 1, - anon_sym_static, - ACTIONS(2772), 1, - sym_readonly, - STATE(1877), 1, - sym_accessibility_modifier, - STATE(1905), 1, - sym_decorator, - STATE(2020), 1, - sym_formal_parameters, - STATE(2406), 1, - sym__call_signature, - STATE(2485), 1, - aux_sym_export_statement_repeat1, - STATE(2862), 1, - sym_type_parameters, - ACTIONS(2768), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(2770), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(1946), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(2327), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(2750), 10, - anon_sym_namespace, - anon_sym_type, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [34699] = 26, + [35389] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(91), 1, anon_sym_AT, - ACTIONS(1691), 1, + ACTIONS(1678), 1, anon_sym_LT, - ACTIONS(2306), 1, + ACTIONS(2332), 1, anon_sym_LPAREN, - ACTIONS(2314), 1, + ACTIONS(2340), 1, anon_sym_new, - ACTIONS(2316), 1, + ACTIONS(2342), 1, anon_sym_DASH, - ACTIONS(2318), 1, + ACTIONS(2344), 1, anon_sym_DQUOTE, - ACTIONS(2320), 1, + ACTIONS(2346), 1, anon_sym_SQUOTE, - ACTIONS(2752), 1, + ACTIONS(2806), 1, anon_sym_export, - ACTIONS(2754), 1, + ACTIONS(2808), 1, anon_sym_STAR, - ACTIONS(2760), 1, + ACTIONS(2810), 1, anon_sym_LBRACK, - ACTIONS(2762), 1, + ACTIONS(2812), 1, anon_sym_async, - ACTIONS(2764), 1, + ACTIONS(2814), 1, sym_number, - ACTIONS(2766), 1, + ACTIONS(2816), 1, anon_sym_static, - ACTIONS(2772), 1, + ACTIONS(2822), 1, sym_readonly, - STATE(1877), 1, + STATE(1878), 1, sym_accessibility_modifier, - STATE(1905), 1, + STATE(1890), 1, sym_decorator, - STATE(2020), 1, + STATE(2015), 1, sym_formal_parameters, - STATE(2406), 1, + STATE(2320), 1, sym__call_signature, - STATE(2485), 1, + STATE(2548), 1, aux_sym_export_statement_repeat1, - STATE(2862), 1, + STATE(2918), 1, sym_type_parameters, - ACTIONS(2768), 2, + ACTIONS(2818), 2, anon_sym_get, anon_sym_set, - ACTIONS(2770), 3, + ACTIONS(2820), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(1946), 3, + STATE(1947), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(2220), 6, + STATE(2223), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(2750), 10, + ACTIONS(2804), 10, anon_sym_namespace, anon_sym_type, sym_identifier, @@ -95558,14 +96518,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [34797] = 5, + [35487] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2878), 1, + ACTIONS(2920), 1, anon_sym_DOT, - STATE(1050), 1, + STATE(1094), 1, sym_type_arguments, - ACTIONS(1585), 14, + ACTIONS(1661), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -95580,7 +96540,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1583), 28, + ACTIONS(1659), 28, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -95609,15 +96569,19 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_implements, anon_sym_extends, - [34853] = 3, + [35543] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2880), 15, + ACTIONS(2920), 1, + anon_sym_DOT, + ACTIONS(2922), 1, + anon_sym_LT, + STATE(1094), 1, + sym_type_arguments, + ACTIONS(1704), 13, anon_sym_STAR, - anon_sym_EQ, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -95628,18 +96592,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2882), 29, + ACTIONS(1702), 28, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, 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, @@ -95658,82 +96620,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [34905] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(1691), 1, - anon_sym_LT, - ACTIONS(2306), 1, - anon_sym_LPAREN, - ACTIONS(2314), 1, - anon_sym_new, - ACTIONS(2316), 1, - anon_sym_DASH, - ACTIONS(2318), 1, - anon_sym_DQUOTE, - ACTIONS(2320), 1, - anon_sym_SQUOTE, - ACTIONS(2752), 1, - anon_sym_export, - ACTIONS(2754), 1, - anon_sym_STAR, - ACTIONS(2760), 1, - anon_sym_LBRACK, - ACTIONS(2762), 1, - anon_sym_async, - ACTIONS(2764), 1, - sym_number, - ACTIONS(2766), 1, - anon_sym_static, - ACTIONS(2772), 1, - sym_readonly, - STATE(1877), 1, - sym_accessibility_modifier, - STATE(1905), 1, - sym_decorator, - STATE(2020), 1, - sym_formal_parameters, - STATE(2406), 1, - sym__call_signature, - STATE(2485), 1, - aux_sym_export_statement_repeat1, - STATE(2862), 1, - sym_type_parameters, - ACTIONS(2768), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(2770), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(1946), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(2178), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(2750), 10, - anon_sym_namespace, - anon_sym_type, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [35003] = 3, + anon_sym_extends, + [35601] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2884), 15, + ACTIONS(2925), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -95749,7 +96640,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2692), 29, + ACTIONS(2927), 29, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -95779,28 +96670,29 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [35055] = 5, + [35653] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2886), 1, - anon_sym_LT, - STATE(1055), 1, - sym_type_arguments, - ACTIONS(1736), 13, + ACTIONS(2933), 1, + anon_sym_AMP, + ACTIONS(2935), 1, + anon_sym_PIPE, + ACTIONS(2937), 1, + anon_sym_extends, + ACTIONS(2929), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1734), 29, + ACTIONS(2931), 28, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -95829,87 +96721,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - anon_sym_extends, - [35111] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(1691), 1, - anon_sym_LT, - ACTIONS(2306), 1, - anon_sym_LPAREN, - ACTIONS(2314), 1, - anon_sym_new, - ACTIONS(2316), 1, - anon_sym_DASH, - ACTIONS(2318), 1, - anon_sym_DQUOTE, - ACTIONS(2320), 1, - anon_sym_SQUOTE, - ACTIONS(2752), 1, - anon_sym_export, - ACTIONS(2754), 1, - anon_sym_STAR, - ACTIONS(2760), 1, - anon_sym_LBRACK, - ACTIONS(2762), 1, - anon_sym_async, - ACTIONS(2764), 1, - sym_number, - ACTIONS(2766), 1, - anon_sym_static, - ACTIONS(2772), 1, - sym_readonly, - STATE(1877), 1, - sym_accessibility_modifier, - STATE(1905), 1, - sym_decorator, - STATE(2020), 1, - sym_formal_parameters, - STATE(2406), 1, - sym__call_signature, - STATE(2485), 1, - aux_sym_export_statement_repeat1, - STATE(2862), 1, - sym_type_parameters, - ACTIONS(2768), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(2770), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(1946), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(2249), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(2750), 10, - anon_sym_namespace, - anon_sym_type, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [35209] = 5, + [35710] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(911), 1, - anon_sym_EQ, - ACTIONS(2889), 1, - sym__automatic_semicolon, - ACTIONS(909), 14, + ACTIONS(1597), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -95924,7 +96739,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(907), 28, + ACTIONS(1595), 29, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -95953,12 +96768,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [35265] = 3, + anon_sym_extends, + [35761] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2891), 15, + ACTIONS(1553), 14, anon_sym_STAR, - anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -95972,14 +96787,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2893), 29, + ACTIONS(1551), 29, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, @@ -96002,75 +96816,106 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [35317] = 3, + anon_sym_extends, + [35812] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(2895), 15, - anon_sym_STAR, - anon_sym_EQ, + ACTIONS(479), 1, + anon_sym_BQUOTE, + ACTIONS(2161), 1, + anon_sym_LPAREN, + ACTIONS(2191), 1, + anon_sym_LBRACK, + ACTIONS(2193), 1, + anon_sym_DOT, + ACTIONS(2883), 1, + anon_sym_QMARK_DOT, + ACTIONS(2941), 1, + anon_sym_as, + ACTIONS(2945), 1, anon_sym_BANG, - anon_sym_in, + ACTIONS(2949), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(2951), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(2953), 1, + anon_sym_AMP_AMP, + ACTIONS(2959), 1, anon_sym_AMP, + ACTIONS(2961), 1, anon_sym_PIPE, + ACTIONS(2965), 1, + anon_sym_STAR_STAR, + ACTIONS(2969), 1, + anon_sym_QMARK_QMARK, + STATE(2547), 1, + sym_type_arguments, + ACTIONS(2955), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(2963), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2897), 29, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - 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, + ACTIONS(2971), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1126), 2, + sym_template_string, + sym_arguments, + ACTIONS(2939), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(2957), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(2947), 4, + anon_sym_in, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2943), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(2967), 5, 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_implements, - [35369] = 10, + [35907] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2145), 1, + ACTIONS(479), 1, + anon_sym_BQUOTE, + ACTIONS(2161), 1, anon_sym_LPAREN, - ACTIONS(2147), 1, - anon_sym_LT, - ACTIONS(2175), 1, + ACTIONS(2191), 1, anon_sym_LBRACK, - ACTIONS(2177), 1, + ACTIONS(2193), 1, anon_sym_DOT, - ACTIONS(2179), 1, + ACTIONS(2883), 1, anon_sym_QMARK_DOT, - STATE(1088), 1, + ACTIONS(2945), 1, + anon_sym_BANG, + ACTIONS(2965), 1, + anon_sym_STAR_STAR, + ACTIONS(2977), 1, + anon_sym_LT, + STATE(2547), 1, sym_type_arguments, - STATE(1157), 1, + ACTIONS(2971), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1126), 2, + sym_template_string, sym_arguments, - ACTIONS(2169), 13, + ACTIONS(2973), 12, anon_sym_STAR, - anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_SLASH, @@ -96082,9 +96927,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2173), 24, + ACTIONS(2975), 18, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, @@ -96096,23 +96940,23 @@ static uint16_t ts_small_parse_table[] = { 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_implements, - [35435] = 3, + [35980] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2899), 15, + ACTIONS(1583), 2, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(1585), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1581), 12, anon_sym_STAR, - anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -96120,22 +96964,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_QMARK, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2901), 29, + ACTIONS(1579), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -96156,33 +96996,30 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [35487] = 5, + [36035] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1501), 3, - anon_sym_COMMA, + ACTIONS(2980), 1, anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(1503), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(911), 12, + ACTIONS(1545), 14, anon_sym_STAR, - anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_LT, + anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(913), 26, + ACTIONS(1543), 28, anon_sym_as, anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, @@ -96207,12 +97044,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [35543] = 3, + anon_sym_extends, + [36088] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2903), 15, + ACTIONS(1523), 14, anon_sym_STAR, - anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -96226,14 +97063,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2905), 29, + ACTIONS(1521), 29, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, @@ -96256,24 +97092,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [35595] = 6, + anon_sym_extends, + [36139] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1551), 1, - anon_sym_extends, - ACTIONS(2907), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(2910), 3, - anon_sym_GT, + ACTIONS(2933), 1, anon_sym_AMP, + ACTIONS(2935), 1, anon_sym_PIPE, - ACTIONS(2903), 12, + ACTIONS(2937), 1, + anon_sym_extends, + ACTIONS(1750), 12, anon_sym_STAR, - anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_LT, + anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, anon_sym_GT_GT, @@ -96281,13 +97115,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2905), 26, + ACTIONS(1748), 28, 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_QMARK_DOT, @@ -96308,13 +97144,34 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [35653] = 3, + [36196] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1187), 14, + ACTIONS(2191), 1, + anon_sym_LBRACK, + ACTIONS(2193), 1, + anon_sym_DOT, + ACTIONS(2195), 1, + anon_sym_QMARK_DOT, + ACTIONS(2238), 1, + anon_sym_COLON, + ACTIONS(2982), 1, + anon_sym_EQ, + ACTIONS(2986), 1, + anon_sym_in, + ACTIONS(2989), 1, + anon_sym_of, + STATE(2366), 1, + sym_type_annotation, + STATE(2628), 1, + sym__initializer, + ACTIONS(2984), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(1037), 13, anon_sym_STAR, anon_sym_BANG, - anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, @@ -96326,18 +97183,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1185), 29, + ACTIONS(1039), 18, 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_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -96354,12 +97202,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_implements, - anon_sym_extends, - [35704] = 3, + [36267] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1519), 14, + ACTIONS(1549), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -96374,7 +97220,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1517), 29, + ACTIONS(1547), 29, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -96404,392 +97250,225 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_implements, anon_sym_extends, - [35755] = 25, + [36318] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(479), 1, - anon_sym_BQUOTE, - ACTIONS(2145), 1, - anon_sym_LPAREN, - ACTIONS(2175), 1, - anon_sym_LBRACK, - ACTIONS(2177), 1, - anon_sym_DOT, - ACTIONS(2863), 1, - anon_sym_QMARK_DOT, - ACTIONS(2915), 1, - anon_sym_as, - ACTIONS(2919), 1, + ACTIONS(1187), 14, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(2923), 1, + anon_sym_in, anon_sym_LT, - ACTIONS(2925), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(2927), 1, - anon_sym_AMP_AMP, - ACTIONS(2933), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(2935), 1, anon_sym_PIPE, - ACTIONS(2939), 1, - anon_sym_STAR_STAR, - ACTIONS(2943), 1, - anon_sym_QMARK_QMARK, - STATE(2565), 1, - sym_type_arguments, - ACTIONS(2929), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(2937), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2945), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1128), 2, - sym_template_string, - sym_arguments, - ACTIONS(2913), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(2931), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(2921), 4, - anon_sym_in, - anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2917), 5, + ACTIONS(1185), 29, + anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(2941), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [35850] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(479), 1, - anon_sym_BQUOTE, - ACTIONS(2145), 1, - anon_sym_LPAREN, - ACTIONS(2175), 1, anon_sym_LBRACK, - ACTIONS(2177), 1, + anon_sym_RBRACK, anon_sym_DOT, - ACTIONS(2863), 1, anon_sym_QMARK_DOT, - ACTIONS(2915), 1, - anon_sym_as, - ACTIONS(2919), 1, - anon_sym_BANG, - ACTIONS(2923), 1, - anon_sym_LT, - ACTIONS(2925), 1, - anon_sym_QMARK, - ACTIONS(2927), 1, anon_sym_AMP_AMP, - ACTIONS(2933), 1, - anon_sym_AMP, - ACTIONS(2935), 1, - anon_sym_PIPE, - ACTIONS(2939), 1, - anon_sym_STAR_STAR, - ACTIONS(2943), 1, - anon_sym_QMARK_QMARK, - STATE(2565), 1, - sym_type_arguments, - ACTIONS(2929), 2, anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(2937), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2945), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1128), 2, - sym_template_string, - sym_arguments, - ACTIONS(2913), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(2931), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(2921), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2941), 5, + 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, - ACTIONS(2947), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - [35945] = 25, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_implements, + anon_sym_extends, + [36369] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(479), 1, anon_sym_BQUOTE, - ACTIONS(2145), 1, + ACTIONS(2161), 1, anon_sym_LPAREN, - ACTIONS(2175), 1, + ACTIONS(2191), 1, anon_sym_LBRACK, - ACTIONS(2177), 1, + ACTIONS(2193), 1, anon_sym_DOT, - ACTIONS(2863), 1, + ACTIONS(2883), 1, anon_sym_QMARK_DOT, - ACTIONS(2915), 1, + ACTIONS(2941), 1, anon_sym_as, - ACTIONS(2919), 1, + ACTIONS(2945), 1, anon_sym_BANG, - ACTIONS(2923), 1, + ACTIONS(2949), 1, anon_sym_LT, - ACTIONS(2925), 1, + ACTIONS(2951), 1, anon_sym_QMARK, - ACTIONS(2927), 1, + ACTIONS(2953), 1, anon_sym_AMP_AMP, - ACTIONS(2933), 1, + ACTIONS(2959), 1, anon_sym_AMP, - ACTIONS(2935), 1, + ACTIONS(2961), 1, anon_sym_PIPE, - ACTIONS(2939), 1, + ACTIONS(2965), 1, anon_sym_STAR_STAR, - ACTIONS(2943), 1, + ACTIONS(2969), 1, anon_sym_QMARK_QMARK, - STATE(2565), 1, + ACTIONS(2991), 1, + anon_sym_COMMA, + STATE(2547), 1, sym_type_arguments, - ACTIONS(2929), 2, + ACTIONS(2955), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(2937), 2, + ACTIONS(2963), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2945), 2, + ACTIONS(2971), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1128), 2, + STATE(1126), 2, sym_template_string, sym_arguments, - ACTIONS(2913), 3, + ACTIONS(2939), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(2931), 3, + ACTIONS(2957), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(2921), 4, + ACTIONS(2947), 4, anon_sym_in, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2941), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(2949), 5, - anon_sym_COMMA, + ACTIONS(2993), 4, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - [36040] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(479), 1, - anon_sym_BQUOTE, - ACTIONS(2145), 1, - anon_sym_LPAREN, - ACTIONS(2175), 1, - anon_sym_LBRACK, - ACTIONS(2177), 1, - anon_sym_DOT, - ACTIONS(2863), 1, - anon_sym_QMARK_DOT, - ACTIONS(2915), 1, - anon_sym_as, - ACTIONS(2919), 1, - anon_sym_BANG, - ACTIONS(2923), 1, - anon_sym_LT, - ACTIONS(2925), 1, - anon_sym_QMARK, - ACTIONS(2927), 1, - anon_sym_AMP_AMP, - ACTIONS(2933), 1, - anon_sym_AMP, - ACTIONS(2935), 1, - anon_sym_PIPE, - ACTIONS(2939), 1, - anon_sym_STAR_STAR, - ACTIONS(2943), 1, - anon_sym_QMARK_QMARK, - STATE(2565), 1, - sym_type_arguments, - ACTIONS(2929), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(2937), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2945), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1128), 2, - sym_template_string, - sym_arguments, - ACTIONS(2913), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(2931), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(2921), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2941), 5, + ACTIONS(2967), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(2951), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - [36135] = 25, + [36466] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(479), 1, anon_sym_BQUOTE, - ACTIONS(2145), 1, + ACTIONS(2161), 1, anon_sym_LPAREN, - ACTIONS(2175), 1, + ACTIONS(2191), 1, anon_sym_LBRACK, - ACTIONS(2177), 1, + ACTIONS(2193), 1, anon_sym_DOT, - ACTIONS(2863), 1, + ACTIONS(2883), 1, anon_sym_QMARK_DOT, - ACTIONS(2915), 1, + ACTIONS(2941), 1, anon_sym_as, - ACTIONS(2919), 1, + ACTIONS(2945), 1, anon_sym_BANG, - ACTIONS(2923), 1, + ACTIONS(2949), 1, anon_sym_LT, - ACTIONS(2925), 1, + ACTIONS(2951), 1, anon_sym_QMARK, - ACTIONS(2927), 1, + ACTIONS(2953), 1, anon_sym_AMP_AMP, - ACTIONS(2933), 1, + ACTIONS(2959), 1, anon_sym_AMP, - ACTIONS(2935), 1, + ACTIONS(2961), 1, anon_sym_PIPE, - ACTIONS(2939), 1, + ACTIONS(2965), 1, anon_sym_STAR_STAR, - ACTIONS(2943), 1, + ACTIONS(2969), 1, anon_sym_QMARK_QMARK, - STATE(2565), 1, + STATE(2547), 1, sym_type_arguments, - ACTIONS(2929), 2, + ACTIONS(2955), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(2937), 2, + ACTIONS(2963), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2945), 2, + ACTIONS(2971), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1128), 2, + STATE(1126), 2, sym_template_string, sym_arguments, - ACTIONS(2913), 3, + ACTIONS(2939), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(2931), 3, + ACTIONS(2957), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(2921), 4, + ACTIONS(2947), 4, anon_sym_in, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2941), 5, + ACTIONS(2967), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(2953), 5, + ACTIONS(2995), 5, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - [36230] = 8, + [36561] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2175), 1, - anon_sym_LBRACK, - ACTIONS(2177), 1, - anon_sym_DOT, - ACTIONS(2179), 1, - anon_sym_QMARK_DOT, - ACTIONS(1525), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(1527), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1097), 11, + ACTIONS(1573), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_LT, + anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1099), 24, + ACTIONS(1571), 29, 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_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -96807,135 +97486,73 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [36291] = 25, + anon_sym_extends, + [36612] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(479), 1, anon_sym_BQUOTE, - ACTIONS(2145), 1, + ACTIONS(2161), 1, anon_sym_LPAREN, - ACTIONS(2175), 1, + ACTIONS(2191), 1, anon_sym_LBRACK, - ACTIONS(2177), 1, + ACTIONS(2193), 1, anon_sym_DOT, - ACTIONS(2863), 1, + ACTIONS(2883), 1, anon_sym_QMARK_DOT, - ACTIONS(2915), 1, - anon_sym_as, - ACTIONS(2919), 1, + ACTIONS(2945), 1, anon_sym_BANG, - ACTIONS(2923), 1, + ACTIONS(2949), 1, anon_sym_LT, - ACTIONS(2925), 1, - anon_sym_QMARK, - ACTIONS(2927), 1, - anon_sym_AMP_AMP, - ACTIONS(2933), 1, - anon_sym_AMP, - ACTIONS(2935), 1, - anon_sym_PIPE, - ACTIONS(2939), 1, + ACTIONS(2965), 1, anon_sym_STAR_STAR, - ACTIONS(2943), 1, - anon_sym_QMARK_QMARK, - STATE(2565), 1, + STATE(2547), 1, sym_type_arguments, - ACTIONS(2929), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(2937), 2, + ACTIONS(2963), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2945), 2, + ACTIONS(2971), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1128), 2, + STATE(1126), 2, sym_template_string, sym_arguments, - ACTIONS(2913), 3, + ACTIONS(2939), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(2931), 3, + ACTIONS(2957), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(2921), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2941), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(2955), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - [36386] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2957), 1, - anon_sym_LBRACE, - ACTIONS(2959), 1, - anon_sym_DOT, - STATE(1224), 1, - sym_statement_block, - ACTIONS(919), 14, - anon_sym_STAR, - anon_sym_BANG, + ACTIONS(2973), 7, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_QMARK, - anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(917), 26, - sym__automatic_semicolon, + ACTIONS(2975), 15, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_else, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_QMARK_DOT, + anon_sym_RPAREN, + 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_BQUOTE, - [36443] = 5, + [36691] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2957), 1, - anon_sym_LBRACE, - STATE(1224), 1, - sym_statement_block, - ACTIONS(919), 14, + ACTIONS(1601), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -96950,16 +97567,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(917), 27, - sym__automatic_semicolon, + ACTIONS(1599), 29, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_else, anon_sym_LPAREN, - anon_sym_while, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -96978,10 +97595,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [36498] = 3, + anon_sym_implements, + anon_sym_extends, + [36742] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(993), 14, + ACTIONS(1519), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -96996,7 +97615,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(991), 29, + ACTIONS(1517), 29, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -97026,10 +97645,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_implements, anon_sym_extends, - [36549] = 3, + [36793] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1463), 14, + ACTIONS(1565), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -97044,7 +97663,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1461), 29, + ACTIONS(1563), 29, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -97074,48 +97693,42 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_implements, anon_sym_extends, - [36600] = 13, + [36844] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2175), 1, + ACTIONS(2191), 1, anon_sym_LBRACK, - ACTIONS(2177), 1, + ACTIONS(2193), 1, anon_sym_DOT, - ACTIONS(2179), 1, + ACTIONS(2195), 1, anon_sym_QMARK_DOT, - ACTIONS(2198), 1, - anon_sym_COLON, - ACTIONS(2961), 1, - anon_sym_EQ, - ACTIONS(2965), 1, - anon_sym_in, - ACTIONS(2968), 1, - anon_sym_of, - STATE(2272), 1, - sym_type_annotation, - STATE(2629), 1, - sym__initializer, - ACTIONS(2963), 3, - sym__automatic_semicolon, + ACTIONS(1525), 2, anon_sym_COMMA, - anon_sym_SEMI, - ACTIONS(1097), 13, + anon_sym_extends, + ACTIONS(1527), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1037), 11, anon_sym_STAR, anon_sym_BANG, + anon_sym_in, anon_sym_LT, - anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1099), 18, + ACTIONS(1039), 24, anon_sym_as, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -97132,48 +97745,44 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [36671] = 13, + anon_sym_implements, + [36905] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2175), 1, + ACTIONS(1547), 1, + anon_sym_extends, + ACTIONS(2191), 1, anon_sym_LBRACK, - ACTIONS(2177), 1, + ACTIONS(2193), 1, anon_sym_DOT, - ACTIONS(2179), 1, + ACTIONS(2195), 1, anon_sym_QMARK_DOT, - ACTIONS(2198), 1, - anon_sym_COLON, - ACTIONS(2970), 1, - anon_sym_EQ, - ACTIONS(2974), 1, - anon_sym_in, - ACTIONS(2977), 1, - anon_sym_of, - STATE(2263), 1, - sym_type_annotation, - STATE(2635), 1, - sym__initializer, - ACTIONS(2972), 3, - sym__automatic_semicolon, + ACTIONS(2997), 1, anon_sym_COMMA, - anon_sym_SEMI, - ACTIONS(1097), 13, + ACTIONS(3000), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1037), 11, anon_sym_STAR, anon_sym_BANG, + anon_sym_in, anon_sym_LT, - anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1099), 18, + ACTIONS(1039), 24, anon_sym_as, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -97190,10 +97799,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [36742] = 3, + anon_sym_implements, + [36968] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1491), 14, + ACTIONS(943), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -97208,7 +97818,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1489), 29, + ACTIONS(941), 29, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -97238,13 +97848,80 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_implements, anon_sym_extends, - [36793] = 4, + [37019] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(2983), 2, + ACTIONS(479), 1, + anon_sym_BQUOTE, + ACTIONS(2161), 1, + anon_sym_LPAREN, + ACTIONS(2191), 1, + anon_sym_LBRACK, + ACTIONS(2193), 1, + anon_sym_DOT, + ACTIONS(2883), 1, + anon_sym_QMARK_DOT, + ACTIONS(2941), 1, + anon_sym_as, + ACTIONS(2945), 1, + anon_sym_BANG, + ACTIONS(2949), 1, + anon_sym_LT, + ACTIONS(2951), 1, + anon_sym_QMARK, + ACTIONS(2953), 1, + anon_sym_AMP_AMP, + ACTIONS(2959), 1, + anon_sym_AMP, + ACTIONS(2961), 1, + anon_sym_PIPE, + ACTIONS(2965), 1, + anon_sym_STAR_STAR, + ACTIONS(2969), 1, + anon_sym_QMARK_QMARK, + STATE(2547), 1, + sym_type_arguments, + ACTIONS(2955), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(2963), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2971), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1126), 2, + sym_template_string, + sym_arguments, + ACTIONS(2939), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(2957), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(2947), 4, + anon_sym_in, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2967), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(3003), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, anon_sym_COLON, - anon_sym_EQ_GT, - ACTIONS(2979), 14, + anon_sym_RBRACK, + [37114] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1561), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -97259,13 +97936,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2981), 27, + ACTIONS(1559), 29, 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, @@ -97287,64 +97965,85 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [36846] = 3, + anon_sym_extends, + [37165] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(1477), 14, - anon_sym_STAR, + ACTIONS(479), 1, + anon_sym_BQUOTE, + ACTIONS(2161), 1, + anon_sym_LPAREN, + ACTIONS(2191), 1, + anon_sym_LBRACK, + ACTIONS(2193), 1, + anon_sym_DOT, + ACTIONS(2883), 1, + anon_sym_QMARK_DOT, + ACTIONS(2941), 1, + anon_sym_as, + ACTIONS(2945), 1, anon_sym_BANG, - anon_sym_in, + ACTIONS(2949), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(2951), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(2953), 1, + anon_sym_AMP_AMP, + ACTIONS(2959), 1, anon_sym_AMP, + ACTIONS(2961), 1, anon_sym_PIPE, + ACTIONS(2965), 1, + anon_sym_STAR_STAR, + ACTIONS(2969), 1, + anon_sym_QMARK_QMARK, + STATE(2547), 1, + sym_type_arguments, + ACTIONS(2955), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(2963), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1475), 29, - 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_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(2971), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1126), 2, + sym_template_string, + sym_arguments, + ACTIONS(2939), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(2957), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(2947), 4, + anon_sym_in, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2967), 5, 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_implements, - anon_sym_extends, - [36897] = 6, + ACTIONS(3005), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + [37260] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2985), 1, - anon_sym_LBRACE, - ACTIONS(2987), 1, - anon_sym_DOT, - STATE(1151), 1, - sym_statement_block, - ACTIONS(919), 14, + ACTIONS(2933), 1, + anon_sym_AMP, + ACTIONS(2935), 1, + anon_sym_PIPE, + ACTIONS(1762), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -97353,14 +98052,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_QMARK, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(917), 26, + ACTIONS(1760), 29, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, @@ -97368,6 +98066,7 @@ static 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, @@ -97386,14 +98085,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [36954] = 5, + anon_sym_extends, + [37315] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2985), 1, - anon_sym_LBRACE, - STATE(1151), 1, - sym_statement_block, - ACTIONS(919), 14, + ACTIONS(2885), 1, + sym__automatic_semicolon, + ACTIONS(909), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -97408,8 +98106,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(917), 27, + ACTIONS(907), 28, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, @@ -97436,10 +98135,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [37009] = 3, + [37368] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1515), 14, + ACTIONS(1721), 1, + anon_sym_DOT, + ACTIONS(1457), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -97454,7 +98155,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1513), 29, + ACTIONS(1455), 28, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -97464,7 +98165,6 @@ static 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, @@ -97484,60 +98184,84 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_implements, anon_sym_extends, - [37060] = 3, + [37421] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(1597), 14, - anon_sym_STAR, + ACTIONS(479), 1, + anon_sym_BQUOTE, + ACTIONS(2161), 1, + anon_sym_LPAREN, + ACTIONS(2191), 1, + anon_sym_LBRACK, + ACTIONS(2193), 1, + anon_sym_DOT, + ACTIONS(2883), 1, + anon_sym_QMARK_DOT, + ACTIONS(2941), 1, + anon_sym_as, + ACTIONS(2945), 1, anon_sym_BANG, - anon_sym_in, + ACTIONS(2949), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(2951), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(2953), 1, + anon_sym_AMP_AMP, + ACTIONS(2959), 1, anon_sym_AMP, + ACTIONS(2961), 1, anon_sym_PIPE, + ACTIONS(2965), 1, + anon_sym_STAR_STAR, + ACTIONS(2969), 1, + anon_sym_QMARK_QMARK, + STATE(2547), 1, + sym_type_arguments, + ACTIONS(2955), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(2963), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1595), 29, - 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_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(2971), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1126), 2, + sym_template_string, + sym_arguments, + ACTIONS(2939), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(2957), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(2947), 4, + anon_sym_in, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2967), 5, 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_implements, - anon_sym_extends, - [37111] = 4, + ACTIONS(3007), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + [37516] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2989), 1, - anon_sym_LBRACK, - ACTIONS(1601), 14, + ACTIONS(2161), 1, + anon_sym_LPAREN, + STATE(1205), 1, + sym_arguments, + ACTIONS(3009), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -97552,14 +98276,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1599), 28, + ACTIONS(3011), 27, 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_QMARK_DOT, @@ -97580,11 +98304,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - anon_sym_extends, - [37164] = 3, + [37571] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1593), 14, + ACTIONS(1507), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -97599,7 +98322,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1591), 29, + ACTIONS(1505), 29, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -97629,10 +98352,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_implements, anon_sym_extends, - [37215] = 3, + [37622] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(997), 14, + ACTIONS(1585), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -97647,7 +98370,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(995), 29, + ACTIONS(1583), 29, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -97677,12 +98400,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_implements, anon_sym_extends, - [37266] = 4, + [37673] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2889), 1, - sym__automatic_semicolon, - ACTIONS(909), 14, + ACTIONS(2161), 1, + anon_sym_LPAREN, + STATE(1207), 1, + sym_arguments, + ACTIONS(3013), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -97697,12 +98422,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(907), 28, + ACTIONS(3015), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COLON, anon_sym_LBRACK, @@ -97726,10 +98450,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [37319] = 3, + [37728] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1503), 14, + ACTIONS(1511), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -97744,7 +98468,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1501), 29, + ACTIONS(1509), 29, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -97774,82 +98498,80 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_implements, anon_sym_extends, - [37370] = 25, + [37779] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(479), 1, anon_sym_BQUOTE, - ACTIONS(2145), 1, + ACTIONS(2161), 1, anon_sym_LPAREN, - ACTIONS(2175), 1, + ACTIONS(2191), 1, anon_sym_LBRACK, - ACTIONS(2177), 1, + ACTIONS(2193), 1, anon_sym_DOT, - ACTIONS(2863), 1, + ACTIONS(2883), 1, anon_sym_QMARK_DOT, - ACTIONS(2915), 1, + ACTIONS(2941), 1, anon_sym_as, - ACTIONS(2919), 1, + ACTIONS(2945), 1, anon_sym_BANG, - ACTIONS(2923), 1, + ACTIONS(2949), 1, anon_sym_LT, - ACTIONS(2925), 1, + ACTIONS(2951), 1, anon_sym_QMARK, - ACTIONS(2927), 1, + ACTIONS(2953), 1, anon_sym_AMP_AMP, - ACTIONS(2933), 1, + ACTIONS(2959), 1, anon_sym_AMP, - ACTIONS(2935), 1, + ACTIONS(2961), 1, anon_sym_PIPE, - ACTIONS(2939), 1, + ACTIONS(2965), 1, anon_sym_STAR_STAR, - ACTIONS(2943), 1, + ACTIONS(2969), 1, anon_sym_QMARK_QMARK, - STATE(2565), 1, + STATE(2547), 1, sym_type_arguments, - ACTIONS(2929), 2, + ACTIONS(2955), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(2937), 2, + ACTIONS(2963), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2945), 2, + ACTIONS(2971), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1128), 2, + STATE(1126), 2, sym_template_string, sym_arguments, - ACTIONS(2913), 3, + ACTIONS(2939), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(2931), 3, + ACTIONS(2957), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(2921), 4, + ACTIONS(2947), 4, anon_sym_in, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2941), 5, + ACTIONS(2967), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(2991), 5, + ACTIONS(3017), 5, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - [37465] = 4, + [37874] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2878), 1, - anon_sym_DOT, - ACTIONS(1585), 14, + ACTIONS(1499), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -97864,7 +98586,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1583), 28, + ACTIONS(1497), 29, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -97874,6 +98596,7 @@ static 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, @@ -97893,10 +98616,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_implements, anon_sym_extends, - [37518] = 3, + [37925] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1585), 14, + ACTIONS(3019), 1, + sym__automatic_semicolon, + ACTIONS(939), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -97911,7 +98636,55 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1583), 29, + ACTIONS(937), 28, + 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_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_implements, + [37978] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3021), 1, + anon_sym_LT, + ACTIONS(947), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(945), 29, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -97938,17 +98711,36 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_implements, - anon_sym_extends, - [37569] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1553), 14, + anon_sym_BQUOTE, + anon_sym_implements, + anon_sym_extends, + [38031] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(479), 1, + anon_sym_BQUOTE, + ACTIONS(2161), 1, + anon_sym_LPAREN, + ACTIONS(2191), 1, + anon_sym_LBRACK, + ACTIONS(2193), 1, + anon_sym_DOT, + ACTIONS(2883), 1, + anon_sym_QMARK_DOT, + ACTIONS(3028), 1, + anon_sym_LT, + STATE(2547), 1, + sym_type_arguments, + ACTIONS(2971), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1126), 2, + sym_template_string, + sym_arguments, + ACTIONS(3024), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -97959,18 +98751,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1551), 29, + ACTIONS(3026), 19, 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_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -97984,87 +98771,86 @@ static 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_implements, - anon_sym_extends, - [37620] = 25, + [38100] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(479), 1, anon_sym_BQUOTE, - ACTIONS(2145), 1, + ACTIONS(2161), 1, anon_sym_LPAREN, - ACTIONS(2175), 1, + ACTIONS(2191), 1, anon_sym_LBRACK, - ACTIONS(2177), 1, + ACTIONS(2193), 1, anon_sym_DOT, - ACTIONS(2863), 1, + ACTIONS(2883), 1, anon_sym_QMARK_DOT, - ACTIONS(2915), 1, + ACTIONS(2941), 1, anon_sym_as, - ACTIONS(2919), 1, + ACTIONS(2945), 1, anon_sym_BANG, - ACTIONS(2923), 1, + ACTIONS(2949), 1, anon_sym_LT, - ACTIONS(2925), 1, + ACTIONS(2951), 1, anon_sym_QMARK, - ACTIONS(2927), 1, + ACTIONS(2953), 1, anon_sym_AMP_AMP, - ACTIONS(2933), 1, + ACTIONS(2959), 1, anon_sym_AMP, - ACTIONS(2935), 1, + ACTIONS(2961), 1, anon_sym_PIPE, - ACTIONS(2939), 1, + ACTIONS(2965), 1, anon_sym_STAR_STAR, - ACTIONS(2943), 1, + ACTIONS(2969), 1, anon_sym_QMARK_QMARK, - STATE(2565), 1, + STATE(2547), 1, sym_type_arguments, - ACTIONS(2929), 2, + ACTIONS(2955), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(2937), 2, + ACTIONS(2963), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2945), 2, + ACTIONS(2971), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1128), 2, + STATE(1126), 2, sym_template_string, sym_arguments, - ACTIONS(2913), 3, + ACTIONS(2939), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(2931), 3, + ACTIONS(2957), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(2921), 4, + ACTIONS(2947), 4, anon_sym_in, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2941), 5, + ACTIONS(2967), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(2993), 5, + ACTIONS(3031), 5, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - [37715] = 4, + [38195] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2989), 1, - anon_sym_LBRACK, - ACTIONS(1539), 14, + ACTIONS(2933), 1, + anon_sym_AMP, + ACTIONS(2935), 1, + anon_sym_PIPE, + ACTIONS(2937), 1, + anon_sym_extends, + ACTIONS(1770), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -98073,13 +98859,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_QMARK, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1537), 28, + ACTIONS(1768), 28, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -98087,6 +98871,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -98107,11 +98892,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - anon_sym_extends, - [37768] = 3, + [38252] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1535), 14, + ACTIONS(1557), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -98126,7 +98910,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1533), 29, + ACTIONS(1555), 29, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -98156,10 +98940,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_implements, anon_sym_extends, - [37819] = 3, + [38303] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1531), 14, + ACTIONS(1577), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -98174,7 +98958,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1529), 29, + ACTIONS(1575), 29, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -98204,10 +98988,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_implements, anon_sym_extends, - [37870] = 3, + [38354] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1527), 14, + ACTIONS(1605), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -98222,7 +99006,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1525), 29, + ACTIONS(1603), 29, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -98252,78 +99036,64 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_implements, anon_sym_extends, - [37921] = 23, + [38405] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(479), 1, - anon_sym_BQUOTE, - ACTIONS(2145), 1, - anon_sym_LPAREN, - ACTIONS(2175), 1, - anon_sym_LBRACK, - ACTIONS(2177), 1, - anon_sym_DOT, - ACTIONS(2863), 1, - anon_sym_QMARK_DOT, - ACTIONS(2919), 1, + ACTIONS(3033), 1, + anon_sym_LBRACE, + STATE(1191), 1, + sym_statement_block, + ACTIONS(919), 14, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(2923), 1, + anon_sym_in, anon_sym_LT, - ACTIONS(2927), 1, - anon_sym_AMP_AMP, - ACTIONS(2933), 1, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(2935), 1, anon_sym_PIPE, - ACTIONS(2939), 1, - anon_sym_STAR_STAR, - ACTIONS(2997), 1, - anon_sym_QMARK, - STATE(2565), 1, - sym_type_arguments, - ACTIONS(2929), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(2937), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2945), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1128), 2, - sym_template_string, - sym_arguments, - ACTIONS(2913), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(2931), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(2921), 4, - anon_sym_in, - anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2941), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(2995), 7, + ACTIONS(917), 27, anon_sym_as, 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_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, - [38012] = 3, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_implements, + [38460] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1471), 14, + ACTIONS(3035), 1, + anon_sym_LBRACE, + STATE(1224), 1, + sym_statement_block, + ACTIONS(919), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -98338,16 +99108,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1469), 29, + ACTIONS(917), 27, + sym__automatic_semicolon, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_else, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_while, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -98366,12 +99136,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_implements, - anon_sym_extends, - [38063] = 3, + [38515] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1523), 14, + ACTIONS(1593), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -98386,7 +99154,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1521), 29, + ACTIONS(1591), 29, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -98416,32 +99184,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_implements, anon_sym_extends, - [38114] = 13, + [38566] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(479), 1, anon_sym_BQUOTE, - ACTIONS(2145), 1, + ACTIONS(2161), 1, anon_sym_LPAREN, - ACTIONS(2175), 1, + ACTIONS(2191), 1, anon_sym_LBRACK, - ACTIONS(2177), 1, + ACTIONS(2193), 1, anon_sym_DOT, - ACTIONS(2863), 1, + ACTIONS(2883), 1, anon_sym_QMARK_DOT, - ACTIONS(2919), 1, + ACTIONS(2945), 1, anon_sym_BANG, - ACTIONS(2999), 1, + ACTIONS(3028), 1, anon_sym_LT, - STATE(2565), 1, + STATE(2547), 1, sym_type_arguments, - ACTIONS(2945), 2, + ACTIONS(2971), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1128), 2, + STATE(1126), 2, sym_template_string, sym_arguments, - ACTIONS(2997), 12, + ACTIONS(3024), 12, anon_sym_STAR, anon_sym_in, anon_sym_GT, @@ -98454,7 +99222,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2995), 19, + ACTIONS(3026), 19, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, @@ -98474,141 +99242,140 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [38185] = 16, + [38637] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(479), 1, - anon_sym_BQUOTE, - ACTIONS(2145), 1, - anon_sym_LPAREN, - ACTIONS(2175), 1, + ACTIONS(1712), 1, + anon_sym_extends, + ACTIONS(2191), 1, anon_sym_LBRACK, - ACTIONS(2177), 1, + ACTIONS(2193), 1, anon_sym_DOT, - ACTIONS(2863), 1, + ACTIONS(2195), 1, anon_sym_QMARK_DOT, - ACTIONS(2919), 1, + ACTIONS(3037), 1, + anon_sym_COMMA, + ACTIONS(3040), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1037), 11, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(2939), 1, - anon_sym_STAR_STAR, - ACTIONS(2999), 1, + anon_sym_in, anon_sym_LT, - STATE(2565), 1, - sym_type_arguments, - ACTIONS(2945), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1128), 2, - sym_template_string, - sym_arguments, - ACTIONS(2913), 3, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(2931), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(2997), 9, - anon_sym_in, - anon_sym_GT, anon_sym_QMARK, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2995), 15, + ACTIONS(1039), 24, anon_sym_as, - anon_sym_COMMA, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_RPAREN, 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, - [38262] = 25, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_implements, + [38700] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(479), 1, anon_sym_BQUOTE, - ACTIONS(2145), 1, + ACTIONS(2161), 1, anon_sym_LPAREN, - ACTIONS(2175), 1, + ACTIONS(2191), 1, anon_sym_LBRACK, - ACTIONS(2177), 1, + ACTIONS(2193), 1, anon_sym_DOT, - ACTIONS(2863), 1, + ACTIONS(2883), 1, anon_sym_QMARK_DOT, - ACTIONS(2915), 1, + ACTIONS(2941), 1, anon_sym_as, - ACTIONS(2919), 1, + ACTIONS(2945), 1, anon_sym_BANG, - ACTIONS(2923), 1, + ACTIONS(2949), 1, anon_sym_LT, - ACTIONS(2925), 1, + ACTIONS(2951), 1, anon_sym_QMARK, - ACTIONS(2927), 1, + ACTIONS(2953), 1, anon_sym_AMP_AMP, - ACTIONS(2933), 1, + ACTIONS(2959), 1, anon_sym_AMP, - ACTIONS(2935), 1, + ACTIONS(2961), 1, anon_sym_PIPE, - ACTIONS(2939), 1, + ACTIONS(2965), 1, anon_sym_STAR_STAR, - ACTIONS(2943), 1, + ACTIONS(2969), 1, anon_sym_QMARK_QMARK, - STATE(2565), 1, + STATE(2547), 1, sym_type_arguments, - ACTIONS(2929), 2, + ACTIONS(2955), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(2937), 2, + ACTIONS(2963), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2945), 2, + ACTIONS(2971), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1128), 2, + STATE(1126), 2, sym_template_string, sym_arguments, - ACTIONS(2913), 3, + ACTIONS(2939), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(2931), 3, + ACTIONS(2957), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(2921), 4, + ACTIONS(2947), 4, anon_sym_in, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2941), 5, + ACTIONS(2967), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(3002), 5, + ACTIONS(3043), 5, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - [38357] = 3, + [38795] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1467), 14, + ACTIONS(3033), 1, + anon_sym_LBRACE, + ACTIONS(3045), 1, + anon_sym_DOT, + STATE(1191), 1, + sym_statement_block, + ACTIONS(919), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -98623,9 +99390,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1465), 29, + ACTIONS(917), 26, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, @@ -98633,7 +99399,6 @@ static 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, @@ -98652,16 +99417,20 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - anon_sym_extends, - [38408] = 4, + [38852] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3004), 1, - anon_sym_LT, - ACTIONS(1091), 13, + ACTIONS(3035), 1, + anon_sym_LBRACE, + ACTIONS(3047), 1, + anon_sym_DOT, + STATE(1224), 1, + sym_statement_block, + ACTIONS(919), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -98672,17 +99441,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1089), 29, + ACTIONS(917), 26, + sym__automatic_semicolon, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_else, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_while, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -98700,16 +99468,34 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_implements, - anon_sym_extends, - [38461] = 3, + [38909] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1507), 14, - anon_sym_STAR, + ACTIONS(479), 1, + anon_sym_BQUOTE, + ACTIONS(2161), 1, + anon_sym_LPAREN, + ACTIONS(2191), 1, + anon_sym_LBRACK, + ACTIONS(2193), 1, + anon_sym_DOT, + ACTIONS(2883), 1, + anon_sym_QMARK_DOT, + ACTIONS(2945), 1, anon_sym_BANG, - anon_sym_in, + ACTIONS(3028), 1, anon_sym_LT, + STATE(2547), 1, + sym_type_arguments, + ACTIONS(2971), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1126), 2, + sym_template_string, + sym_arguments, + ACTIONS(3024), 12, + anon_sym_STAR, + anon_sym_in, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -98720,18 +99506,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1505), 29, + ACTIONS(3026), 19, 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_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -98745,15 +99526,10 @@ static 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_implements, - anon_sym_extends, - [38512] = 3, + [38980] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1557), 14, + ACTIONS(1487), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -98768,7 +99544,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1555), 29, + ACTIONS(1485), 29, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -98798,10 +99574,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_implements, anon_sym_extends, - [38563] = 3, + [39031] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1499), 14, + ACTIONS(2891), 1, + anon_sym_DOT, + ACTIONS(1503), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -98816,7 +99594,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1497), 29, + ACTIONS(1501), 28, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -98826,7 +99604,6 @@ static 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, @@ -98846,82 +99623,80 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_implements, anon_sym_extends, - [38614] = 21, + [39084] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(479), 1, anon_sym_BQUOTE, - ACTIONS(2145), 1, + ACTIONS(2161), 1, anon_sym_LPAREN, - ACTIONS(2175), 1, + ACTIONS(2191), 1, anon_sym_LBRACK, - ACTIONS(2177), 1, + ACTIONS(2193), 1, anon_sym_DOT, - ACTIONS(2863), 1, + ACTIONS(2883), 1, anon_sym_QMARK_DOT, - ACTIONS(2919), 1, + ACTIONS(2941), 1, + anon_sym_as, + ACTIONS(2945), 1, anon_sym_BANG, - ACTIONS(2923), 1, + ACTIONS(2949), 1, anon_sym_LT, - ACTIONS(2927), 1, + ACTIONS(2951), 1, + anon_sym_QMARK, + ACTIONS(2953), 1, anon_sym_AMP_AMP, - ACTIONS(2933), 1, + ACTIONS(2959), 1, anon_sym_AMP, - ACTIONS(2939), 1, + ACTIONS(2961), 1, + anon_sym_PIPE, + ACTIONS(2965), 1, anon_sym_STAR_STAR, - STATE(2565), 1, + ACTIONS(2969), 1, + anon_sym_QMARK_QMARK, + STATE(2547), 1, sym_type_arguments, - ACTIONS(2937), 2, + ACTIONS(2955), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(2963), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2945), 2, + ACTIONS(2971), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2997), 2, - anon_sym_QMARK, - anon_sym_PIPE, - STATE(1128), 2, + STATE(1126), 2, sym_template_string, sym_arguments, - ACTIONS(2913), 3, + ACTIONS(2939), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(2931), 3, + ACTIONS(2957), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(2921), 4, + ACTIONS(2947), 4, anon_sym_in, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2941), 5, + ACTIONS(2967), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(2995), 9, - anon_sym_as, + ACTIONS(3049), 5, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_QMARK_QMARK, - [38701] = 6, + [39179] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3007), 1, - anon_sym_AMP, - ACTIONS(3009), 1, - anon_sym_PIPE, - ACTIONS(3011), 1, - anon_sym_extends, - ACTIONS(1770), 12, + ACTIONS(1503), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -98930,11 +99705,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_QMARK, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1768), 28, + ACTIONS(1501), 29, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -98963,202 +99740,151 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [38758] = 3, + anon_sym_extends, + [39230] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(1581), 14, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1579), 29, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(479), 1, + anon_sym_BQUOTE, + ACTIONS(2161), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, + ACTIONS(2191), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(2193), 1, anon_sym_DOT, + ACTIONS(2883), 1, anon_sym_QMARK_DOT, + ACTIONS(2941), 1, + anon_sym_as, + ACTIONS(2945), 1, + anon_sym_BANG, + ACTIONS(2949), 1, + anon_sym_LT, + ACTIONS(2951), 1, + anon_sym_QMARK, + ACTIONS(2953), 1, anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, + ACTIONS(2959), 1, + anon_sym_AMP, + ACTIONS(2961), 1, + anon_sym_PIPE, + ACTIONS(2965), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(2969), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, + STATE(2547), 1, + sym_type_arguments, + ACTIONS(2955), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(2963), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2971), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_implements, - anon_sym_extends, - [38809] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1511), 14, + STATE(1126), 2, + sym_template_string, + sym_arguments, + ACTIONS(2939), 3, anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, anon_sym_SLASH, - anon_sym_QMARK, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1509), 29, - 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_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(2957), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(2947), 4, + anon_sym_in, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2967), 5, 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_implements, - anon_sym_extends, - [38860] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1565), 14, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1563), 29, - anon_sym_as, - anon_sym_LBRACE, + ACTIONS(3051), 5, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, + [39325] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(479), 1, + anon_sym_BQUOTE, + ACTIONS(2161), 1, + anon_sym_LPAREN, + ACTIONS(2191), 1, + anon_sym_LBRACK, + ACTIONS(2193), 1, anon_sym_DOT, + ACTIONS(2883), 1, anon_sym_QMARK_DOT, + ACTIONS(2941), 1, + anon_sym_as, + ACTIONS(2945), 1, + anon_sym_BANG, + ACTIONS(2949), 1, + anon_sym_LT, + ACTIONS(2951), 1, + anon_sym_QMARK, + ACTIONS(2953), 1, anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, + ACTIONS(2959), 1, + anon_sym_AMP, + ACTIONS(2961), 1, + anon_sym_PIPE, + ACTIONS(2965), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(2969), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, + STATE(2547), 1, + sym_type_arguments, + ACTIONS(2955), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(2963), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2971), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_implements, - anon_sym_extends, - [38911] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1573), 14, + STATE(1126), 2, + sym_template_string, + sym_arguments, + ACTIONS(2939), 3, anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, anon_sym_SLASH, - anon_sym_QMARK, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1571), 29, - 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_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(2957), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(2947), 4, + anon_sym_in, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2967), 5, 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_implements, - anon_sym_extends, - [38962] = 3, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(3053), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + [39420] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1577), 14, + ACTIONS(1483), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -99173,7 +99899,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1575), 29, + ACTIONS(1481), 29, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -99203,10 +99929,80 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_implements, anon_sym_extends, - [39013] = 3, + [39471] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(1569), 14, + ACTIONS(479), 1, + anon_sym_BQUOTE, + ACTIONS(2161), 1, + anon_sym_LPAREN, + ACTIONS(2191), 1, + anon_sym_LBRACK, + ACTIONS(2193), 1, + anon_sym_DOT, + ACTIONS(2883), 1, + anon_sym_QMARK_DOT, + ACTIONS(2941), 1, + anon_sym_as, + ACTIONS(2945), 1, + anon_sym_BANG, + ACTIONS(2949), 1, + anon_sym_LT, + ACTIONS(2951), 1, + anon_sym_QMARK, + ACTIONS(2953), 1, + anon_sym_AMP_AMP, + ACTIONS(2959), 1, + anon_sym_AMP, + ACTIONS(2961), 1, + anon_sym_PIPE, + ACTIONS(2965), 1, + anon_sym_STAR_STAR, + ACTIONS(2969), 1, + anon_sym_QMARK_QMARK, + STATE(2547), 1, + sym_type_arguments, + ACTIONS(2955), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(2963), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2971), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1126), 2, + sym_template_string, + sym_arguments, + ACTIONS(2939), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(2957), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(2947), 4, + anon_sym_in, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2967), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(3055), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + [39566] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1589), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -99221,7 +100017,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1567), 29, + ACTIONS(1587), 29, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -99251,16 +100047,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_implements, anon_sym_extends, - [39064] = 5, + [39617] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1563), 2, + ACTIONS(2980), 1, anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(1565), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1561), 12, + ACTIONS(1539), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -99269,11 +100061,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_QMARK, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1559), 27, + ACTIONS(1537), 28, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -99301,10 +100095,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [39119] = 3, + anon_sym_extends, + [39670] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1549), 14, + ACTIONS(1001), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -99319,7 +100114,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1547), 29, + ACTIONS(999), 29, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -99349,65 +100144,172 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_implements, anon_sym_extends, - [39170] = 6, + [39721] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(3007), 1, - anon_sym_AMP, - ACTIONS(3009), 1, - anon_sym_PIPE, - ACTIONS(3011), 1, - anon_sym_extends, - ACTIONS(1748), 12, - anon_sym_STAR, + ACTIONS(479), 1, + anon_sym_BQUOTE, + ACTIONS(2161), 1, + anon_sym_LPAREN, + ACTIONS(2191), 1, + anon_sym_LBRACK, + ACTIONS(2193), 1, + anon_sym_DOT, + ACTIONS(2883), 1, + anon_sym_QMARK_DOT, + ACTIONS(2941), 1, + anon_sym_as, + ACTIONS(2945), 1, anon_sym_BANG, - anon_sym_in, + ACTIONS(2949), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(2951), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(2953), 1, + anon_sym_AMP_AMP, + ACTIONS(2959), 1, + anon_sym_AMP, + ACTIONS(2961), 1, + anon_sym_PIPE, + ACTIONS(2965), 1, + anon_sym_STAR_STAR, + ACTIONS(2969), 1, + anon_sym_QMARK_QMARK, + STATE(2547), 1, + sym_type_arguments, + ACTIONS(2955), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(2963), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(2971), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1126), 2, + sym_template_string, + sym_arguments, + ACTIONS(2939), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(2957), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(2947), 4, + anon_sym_in, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1746), 28, - anon_sym_as, - anon_sym_LBRACE, + ACTIONS(2967), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(3057), 5, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, + [39816] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(479), 1, + anon_sym_BQUOTE, + ACTIONS(2161), 1, + anon_sym_LPAREN, + ACTIONS(2191), 1, + anon_sym_LBRACK, + ACTIONS(2193), 1, anon_sym_DOT, + ACTIONS(2883), 1, anon_sym_QMARK_DOT, + ACTIONS(2945), 1, + anon_sym_BANG, + ACTIONS(2949), 1, + anon_sym_LT, + ACTIONS(2953), 1, anon_sym_AMP_AMP, + ACTIONS(2959), 1, + anon_sym_AMP, + ACTIONS(2961), 1, + anon_sym_PIPE, + ACTIONS(2965), 1, + anon_sym_STAR_STAR, + ACTIONS(2973), 1, + anon_sym_QMARK, + STATE(2547), 1, + sym_type_arguments, + ACTIONS(2955), 2, anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(2963), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2971), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1126), 2, + sym_template_string, + sym_arguments, + ACTIONS(2939), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(2957), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(2947), 4, + anon_sym_in, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2967), 5, 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_implements, - [39227] = 3, + ACTIONS(2975), 7, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_QMARK_QMARK, + [39907] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1545), 14, - anon_sym_STAR, + ACTIONS(479), 1, + anon_sym_BQUOTE, + ACTIONS(2161), 1, + anon_sym_LPAREN, + ACTIONS(2191), 1, + anon_sym_LBRACK, + ACTIONS(2193), 1, + anon_sym_DOT, + ACTIONS(2883), 1, + anon_sym_QMARK_DOT, + ACTIONS(2945), 1, anon_sym_BANG, - anon_sym_in, + ACTIONS(2977), 1, anon_sym_LT, + STATE(2547), 1, + sym_type_arguments, + ACTIONS(2971), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1126), 2, + sym_template_string, + sym_arguments, + ACTIONS(2973), 12, + anon_sym_STAR, + anon_sym_in, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -99418,18 +100320,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1543), 29, + ACTIONS(2975), 19, 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_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -99443,15 +100340,10 @@ static 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_implements, - anon_sym_extends, - [39278] = 3, + [39978] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1589), 14, + ACTIONS(1535), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -99466,7 +100358,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1587), 29, + ACTIONS(1533), 29, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -99496,13 +100388,34 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_implements, anon_sym_extends, - [39329] = 3, + [40029] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1605), 14, + ACTIONS(2191), 1, + anon_sym_LBRACK, + ACTIONS(2193), 1, + anon_sym_DOT, + ACTIONS(2195), 1, + anon_sym_QMARK_DOT, + ACTIONS(2238), 1, + anon_sym_COLON, + ACTIONS(3059), 1, + anon_sym_EQ, + ACTIONS(3063), 1, + anon_sym_in, + ACTIONS(3066), 1, + anon_sym_of, + STATE(2376), 1, + sym_type_annotation, + STATE(2635), 1, + sym__initializer, + ACTIONS(3061), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(1037), 13, anon_sym_STAR, anon_sym_BANG, - anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, @@ -99514,18 +100427,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1603), 29, + ACTIONS(1039), 18, 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_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -99542,16 +100446,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_implements, - anon_sym_extends, - [39380] = 5, + [40100] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3007), 1, - anon_sym_AMP, - ACTIONS(3009), 1, - anon_sym_PIPE, - ACTIONS(1760), 12, + ACTIONS(1467), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -99560,11 +100458,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_QMARK, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1758), 29, + ACTIONS(1465), 29, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -99594,12 +100494,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_implements, anon_sym_extends, - [39435] = 4, + [40151] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1741), 1, - anon_sym_DOT, - ACTIONS(1413), 14, + ACTIONS(1531), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -99614,7 +100512,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1411), 28, + ACTIONS(1529), 29, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -99624,6 +100522,7 @@ static 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, @@ -99643,107 +100542,106 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_implements, anon_sym_extends, - [39488] = 19, + [40202] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(479), 1, anon_sym_BQUOTE, - ACTIONS(2145), 1, + ACTIONS(2161), 1, anon_sym_LPAREN, - ACTIONS(2175), 1, + ACTIONS(2191), 1, anon_sym_LBRACK, - ACTIONS(2177), 1, + ACTIONS(2193), 1, anon_sym_DOT, - ACTIONS(2863), 1, + ACTIONS(2883), 1, anon_sym_QMARK_DOT, - ACTIONS(2919), 1, + ACTIONS(2941), 1, + anon_sym_as, + ACTIONS(2945), 1, anon_sym_BANG, - ACTIONS(2923), 1, + ACTIONS(2949), 1, anon_sym_LT, - ACTIONS(2939), 1, + ACTIONS(2951), 1, + anon_sym_QMARK, + ACTIONS(2953), 1, + anon_sym_AMP_AMP, + ACTIONS(2959), 1, + anon_sym_AMP, + ACTIONS(2961), 1, + anon_sym_PIPE, + ACTIONS(2965), 1, anon_sym_STAR_STAR, - STATE(2565), 1, + ACTIONS(2969), 1, + anon_sym_QMARK_QMARK, + STATE(2547), 1, sym_type_arguments, - ACTIONS(2937), 2, + ACTIONS(2955), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(2963), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2945), 2, + ACTIONS(2971), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1128), 2, + STATE(1126), 2, sym_template_string, sym_arguments, - ACTIONS(2913), 3, + ACTIONS(2939), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(2931), 3, + ACTIONS(2957), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(2997), 3, - anon_sym_QMARK, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(2921), 4, + ACTIONS(2947), 4, anon_sym_in, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2941), 5, + ACTIONS(2967), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(2995), 10, - anon_sym_as, + ACTIONS(3068), 5, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_QMARK_QMARK, - [39571] = 9, + [40297] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1734), 1, - anon_sym_extends, - ACTIONS(2175), 1, - anon_sym_LBRACK, - ACTIONS(2177), 1, - anon_sym_DOT, - ACTIONS(2179), 1, - anon_sym_QMARK_DOT, - ACTIONS(3013), 1, - anon_sym_COMMA, - ACTIONS(3016), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1097), 11, + ACTIONS(1527), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_LT, + anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1099), 24, + ACTIONS(1525), 29, 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_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -99761,43 +100659,98 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [39634] = 9, + anon_sym_extends, + [40348] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1595), 1, - anon_sym_extends, - ACTIONS(2175), 1, + ACTIONS(479), 1, + anon_sym_BQUOTE, + ACTIONS(2161), 1, + anon_sym_LPAREN, + ACTIONS(2191), 1, anon_sym_LBRACK, - ACTIONS(2177), 1, + ACTIONS(2193), 1, anon_sym_DOT, - ACTIONS(2179), 1, + ACTIONS(2883), 1, anon_sym_QMARK_DOT, - ACTIONS(3019), 1, - anon_sym_COMMA, - ACTIONS(3022), 3, + ACTIONS(2945), 1, + anon_sym_BANG, + ACTIONS(2965), 1, + anon_sym_STAR_STAR, + ACTIONS(2977), 1, + anon_sym_LT, + STATE(2547), 1, + sym_type_arguments, + ACTIONS(2971), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1126), 2, + sym_template_string, + sym_arguments, + ACTIONS(2939), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(2957), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(2973), 9, + anon_sym_in, anon_sym_GT, + anon_sym_QMARK, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1097), 11, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2975), 15, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + 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, + [40425] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1491), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_LT, + anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1099), 24, + ACTIONS(1489), 29, 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_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -99815,149 +100768,147 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [39697] = 17, + anon_sym_extends, + [40476] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(479), 1, anon_sym_BQUOTE, - ACTIONS(2145), 1, + ACTIONS(2161), 1, anon_sym_LPAREN, - ACTIONS(2175), 1, + ACTIONS(2191), 1, anon_sym_LBRACK, - ACTIONS(2177), 1, + ACTIONS(2193), 1, anon_sym_DOT, - ACTIONS(2863), 1, + ACTIONS(2883), 1, anon_sym_QMARK_DOT, - ACTIONS(2919), 1, + ACTIONS(2945), 1, anon_sym_BANG, - ACTIONS(2923), 1, + ACTIONS(2949), 1, anon_sym_LT, - ACTIONS(2939), 1, + ACTIONS(2953), 1, + anon_sym_AMP_AMP, + ACTIONS(2959), 1, + anon_sym_AMP, + ACTIONS(2965), 1, anon_sym_STAR_STAR, - STATE(2565), 1, + STATE(2547), 1, sym_type_arguments, - ACTIONS(2937), 2, + ACTIONS(2963), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2945), 2, + ACTIONS(2971), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1128), 2, + ACTIONS(2973), 2, + anon_sym_QMARK, + anon_sym_PIPE, + STATE(1126), 2, sym_template_string, sym_arguments, - ACTIONS(2913), 3, + ACTIONS(2939), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(2931), 3, + ACTIONS(2957), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(2997), 7, + ACTIONS(2947), 4, anon_sym_in, anon_sym_GT, - anon_sym_QMARK, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2995), 15, + ACTIONS(2967), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(2975), 9, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - 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, - [39776] = 26, + [40563] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(479), 1, anon_sym_BQUOTE, - ACTIONS(2145), 1, + ACTIONS(2161), 1, anon_sym_LPAREN, - ACTIONS(2175), 1, + ACTIONS(2191), 1, anon_sym_LBRACK, - ACTIONS(2177), 1, + ACTIONS(2193), 1, anon_sym_DOT, - ACTIONS(2863), 1, + ACTIONS(2883), 1, anon_sym_QMARK_DOT, - ACTIONS(2915), 1, + ACTIONS(2941), 1, anon_sym_as, - ACTIONS(2919), 1, + ACTIONS(2945), 1, anon_sym_BANG, - ACTIONS(2923), 1, + ACTIONS(2949), 1, anon_sym_LT, - ACTIONS(2925), 1, + ACTIONS(2951), 1, anon_sym_QMARK, - ACTIONS(2927), 1, + ACTIONS(2953), 1, anon_sym_AMP_AMP, - ACTIONS(2933), 1, + ACTIONS(2959), 1, anon_sym_AMP, - ACTIONS(2935), 1, + ACTIONS(2961), 1, anon_sym_PIPE, - ACTIONS(2939), 1, + ACTIONS(2965), 1, anon_sym_STAR_STAR, - ACTIONS(2943), 1, + ACTIONS(2969), 1, anon_sym_QMARK_QMARK, - ACTIONS(3025), 1, - anon_sym_COMMA, - STATE(2565), 1, + STATE(2547), 1, sym_type_arguments, - ACTIONS(2929), 2, + ACTIONS(2955), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(2937), 2, + ACTIONS(2963), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2945), 2, + ACTIONS(2971), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1128), 2, + STATE(1126), 2, sym_template_string, sym_arguments, - ACTIONS(2913), 3, + ACTIONS(2939), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(2931), 3, + ACTIONS(2957), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(2921), 4, + ACTIONS(2947), 4, anon_sym_in, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3027), 4, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(2941), 5, + ACTIONS(2967), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [39873] = 6, + ACTIONS(3070), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + [40658] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3007), 1, - anon_sym_AMP, - ACTIONS(3009), 1, - anon_sym_PIPE, - ACTIONS(3011), 1, - anon_sym_extends, - ACTIONS(3029), 12, + ACTIONS(1495), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -99966,11 +100917,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_QMARK, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3031), 28, + ACTIONS(1493), 29, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -99999,36 +100952,63 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [39930] = 14, + anon_sym_extends, + [40709] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(479), 1, - anon_sym_BQUOTE, - ACTIONS(2145), 1, + ACTIONS(1569), 14, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1567), 29, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(2175), 1, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, - ACTIONS(2177), 1, + anon_sym_RBRACK, anon_sym_DOT, - ACTIONS(2863), 1, anon_sym_QMARK_DOT, - ACTIONS(2919), 1, - anon_sym_BANG, - ACTIONS(2939), 1, + 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, - ACTIONS(2999), 1, - anon_sym_LT, - STATE(2565), 1, - sym_type_arguments, - ACTIONS(2945), 2, + 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, - STATE(1128), 2, - sym_template_string, - sym_arguments, - ACTIONS(2997), 12, + anon_sym_BQUOTE, + anon_sym_implements, + anon_sym_extends, + [40760] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1515), 14, anon_sym_STAR, + anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -100039,101 +101019,107 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2995), 18, + ACTIONS(1513), 29, 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_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, - [40003] = 25, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_implements, + anon_sym_extends, + [40811] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(479), 1, anon_sym_BQUOTE, - ACTIONS(2145), 1, + ACTIONS(2161), 1, anon_sym_LPAREN, - ACTIONS(2175), 1, + ACTIONS(2191), 1, anon_sym_LBRACK, - ACTIONS(2177), 1, + ACTIONS(2193), 1, anon_sym_DOT, - ACTIONS(2863), 1, + ACTIONS(2883), 1, anon_sym_QMARK_DOT, - ACTIONS(2915), 1, - anon_sym_as, - ACTIONS(2919), 1, + ACTIONS(2945), 1, anon_sym_BANG, - ACTIONS(2923), 1, + ACTIONS(2949), 1, anon_sym_LT, - ACTIONS(2925), 1, - anon_sym_QMARK, - ACTIONS(2927), 1, - anon_sym_AMP_AMP, - ACTIONS(2933), 1, - anon_sym_AMP, - ACTIONS(2935), 1, - anon_sym_PIPE, - ACTIONS(2939), 1, + ACTIONS(2965), 1, anon_sym_STAR_STAR, - ACTIONS(2943), 1, - anon_sym_QMARK_QMARK, - STATE(2565), 1, + STATE(2547), 1, sym_type_arguments, - ACTIONS(2929), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(2937), 2, + ACTIONS(2963), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2945), 2, + ACTIONS(2971), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1128), 2, + STATE(1126), 2, sym_template_string, sym_arguments, - ACTIONS(2913), 3, + ACTIONS(2939), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(2931), 3, + ACTIONS(2957), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(2921), 4, + ACTIONS(2973), 3, + anon_sym_QMARK, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(2947), 4, anon_sym_in, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2941), 5, + ACTIONS(2967), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(3033), 5, + ACTIONS(2975), 10, + anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - [40098] = 4, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + [40894] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3035), 1, - sym__automatic_semicolon, - ACTIONS(949), 14, + ACTIONS(3076), 2, + anon_sym_COLON, + anon_sym_EQ_GT, + ACTIONS(3072), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -100148,14 +101134,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(947), 28, + ACTIONS(3074), 27, 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, @@ -100177,51 +101162,107 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [40151] = 13, + [40947] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(479), 1, + ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(2145), 1, + ACTIONS(2173), 1, anon_sym_LPAREN, - ACTIONS(2175), 1, + ACTIONS(2282), 1, anon_sym_LBRACK, - ACTIONS(2177), 1, + ACTIONS(2298), 1, anon_sym_DOT, - ACTIONS(2863), 1, - anon_sym_QMARK_DOT, - ACTIONS(2919), 1, + ACTIONS(2973), 1, + anon_sym_QMARK, + ACTIONS(3080), 1, anon_sym_BANG, - ACTIONS(3041), 1, + ACTIONS(3084), 1, anon_sym_LT, - STATE(2565), 1, + ACTIONS(3086), 1, + anon_sym_QMARK_DOT, + ACTIONS(3088), 1, + anon_sym_AMP_AMP, + ACTIONS(3094), 1, + anon_sym_AMP, + ACTIONS(3096), 1, + anon_sym_PIPE, + ACTIONS(3100), 1, + anon_sym_STAR_STAR, + STATE(2611), 1, sym_type_arguments, - ACTIONS(2945), 2, + ACTIONS(3090), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(3098), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3104), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1128), 2, + STATE(1529), 2, sym_template_string, sym_arguments, - ACTIONS(3037), 12, + ACTIONS(3078), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(3092), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(3082), 4, + anon_sym_in, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3102), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(2975), 6, + sym__automatic_semicolon, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_QMARK_QMARK, + [41037] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2914), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(2911), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LBRACK, + ACTIONS(1587), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(2907), 13, anon_sym_STAR, + anon_sym_EQ, + anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3039), 19, + ACTIONS(2909), 20, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -100235,142 +101276,148 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [40222] = 25, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [41093] = 28, ACTIONS(3), 1, sym_comment, ACTIONS(479), 1, anon_sym_BQUOTE, - ACTIONS(2145), 1, + ACTIONS(2161), 1, anon_sym_LPAREN, - ACTIONS(2175), 1, + ACTIONS(2191), 1, anon_sym_LBRACK, - ACTIONS(2177), 1, + ACTIONS(2193), 1, anon_sym_DOT, - ACTIONS(2863), 1, + ACTIONS(2883), 1, anon_sym_QMARK_DOT, - ACTIONS(2915), 1, + ACTIONS(2941), 1, anon_sym_as, - ACTIONS(2919), 1, + ACTIONS(2945), 1, anon_sym_BANG, - ACTIONS(2923), 1, + ACTIONS(2949), 1, anon_sym_LT, - ACTIONS(2925), 1, + ACTIONS(2951), 1, anon_sym_QMARK, - ACTIONS(2927), 1, + ACTIONS(2953), 1, anon_sym_AMP_AMP, - ACTIONS(2933), 1, + ACTIONS(2959), 1, anon_sym_AMP, - ACTIONS(2935), 1, + ACTIONS(2961), 1, anon_sym_PIPE, - ACTIONS(2939), 1, + ACTIONS(2965), 1, anon_sym_STAR_STAR, - ACTIONS(2943), 1, + ACTIONS(2969), 1, anon_sym_QMARK_QMARK, - STATE(2565), 1, + ACTIONS(2991), 1, + anon_sym_COMMA, + ACTIONS(3106), 1, + anon_sym_RPAREN, + ACTIONS(3108), 1, + anon_sym_COLON, + STATE(2547), 1, sym_type_arguments, - ACTIONS(2929), 2, + STATE(3120), 1, + sym_type_annotation, + ACTIONS(2955), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(2937), 2, + ACTIONS(2963), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2945), 2, + ACTIONS(2971), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1128), 2, + STATE(1126), 2, sym_template_string, sym_arguments, - ACTIONS(2913), 3, + ACTIONS(2939), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(2931), 3, + ACTIONS(2957), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(2921), 4, + ACTIONS(2947), 4, anon_sym_in, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2941), 5, + ACTIONS(2967), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(3044), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - [40317] = 13, + [41193] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(479), 1, + ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(2145), 1, + ACTIONS(2173), 1, anon_sym_LPAREN, - ACTIONS(2175), 1, + ACTIONS(2282), 1, anon_sym_LBRACK, - ACTIONS(2177), 1, + ACTIONS(2298), 1, anon_sym_DOT, - ACTIONS(2863), 1, - anon_sym_QMARK_DOT, - ACTIONS(2919), 1, + ACTIONS(3080), 1, anon_sym_BANG, - ACTIONS(3041), 1, + ACTIONS(3084), 1, anon_sym_LT, - STATE(2565), 1, + ACTIONS(3086), 1, + anon_sym_QMARK_DOT, + ACTIONS(3100), 1, + anon_sym_STAR_STAR, + STATE(2611), 1, sym_type_arguments, - ACTIONS(2945), 2, + ACTIONS(3098), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3104), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1128), 2, + STATE(1529), 2, sym_template_string, sym_arguments, - ACTIONS(3037), 12, - anon_sym_STAR, - anon_sym_in, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(2973), 3, anon_sym_QMARK, - anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(3078), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(3092), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(3082), 4, + anon_sym_in, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3039), 19, + ACTIONS(3102), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(2975), 9, + sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, + 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, - [40388] = 5, + [41275] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2145), 1, - anon_sym_LPAREN, - STATE(1183), 1, - sym_arguments, - ACTIONS(3046), 14, + ACTIONS(963), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -100385,11 +101432,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3048), 27, + ACTIONS(965), 28, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COLON, anon_sym_LBRACK, @@ -100413,14 +101461,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [40443] = 5, + [41325] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2145), 1, - anon_sym_LPAREN, - STATE(1182), 1, - sym_arguments, - ACTIONS(3050), 14, + ACTIONS(1027), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -100435,11 +101479,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3052), 27, + ACTIONS(1029), 28, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COLON, anon_sym_LBRACK, @@ -100463,172 +101508,158 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [40498] = 25, + [41375] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(479), 1, + ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(2145), 1, + ACTIONS(2173), 1, anon_sym_LPAREN, - ACTIONS(2175), 1, + ACTIONS(2282), 1, anon_sym_LBRACK, - ACTIONS(2177), 1, + ACTIONS(2298), 1, anon_sym_DOT, - ACTIONS(2863), 1, - anon_sym_QMARK_DOT, - ACTIONS(2915), 1, - anon_sym_as, - ACTIONS(2919), 1, + ACTIONS(3080), 1, anon_sym_BANG, - ACTIONS(2923), 1, + ACTIONS(3084), 1, anon_sym_LT, - ACTIONS(2925), 1, - anon_sym_QMARK, - ACTIONS(2927), 1, + ACTIONS(3086), 1, + anon_sym_QMARK_DOT, + ACTIONS(3088), 1, anon_sym_AMP_AMP, - ACTIONS(2933), 1, + ACTIONS(3094), 1, anon_sym_AMP, - ACTIONS(2935), 1, - anon_sym_PIPE, - ACTIONS(2939), 1, + ACTIONS(3100), 1, anon_sym_STAR_STAR, - ACTIONS(2943), 1, - anon_sym_QMARK_QMARK, - STATE(2565), 1, + STATE(2611), 1, sym_type_arguments, - ACTIONS(2929), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(2937), 2, + ACTIONS(2973), 2, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(3098), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2945), 2, + ACTIONS(3104), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1128), 2, + STATE(1529), 2, sym_template_string, sym_arguments, - ACTIONS(2913), 3, + ACTIONS(3078), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(2931), 3, + ACTIONS(3092), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(2921), 4, + ACTIONS(3082), 4, anon_sym_in, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2941), 5, + ACTIONS(3102), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(3054), 5, + ACTIONS(2975), 8, + sym__automatic_semicolon, + anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - [40593] = 25, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + [41461] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(479), 1, + ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(2145), 1, + ACTIONS(2173), 1, anon_sym_LPAREN, - ACTIONS(2175), 1, + ACTIONS(2282), 1, anon_sym_LBRACK, - ACTIONS(2177), 1, + ACTIONS(2298), 1, anon_sym_DOT, - ACTIONS(2863), 1, - anon_sym_QMARK_DOT, - ACTIONS(2915), 1, - anon_sym_as, - ACTIONS(2919), 1, + ACTIONS(3080), 1, anon_sym_BANG, - ACTIONS(2923), 1, - anon_sym_LT, - ACTIONS(2925), 1, - anon_sym_QMARK, - ACTIONS(2927), 1, - anon_sym_AMP_AMP, - ACTIONS(2933), 1, - anon_sym_AMP, - ACTIONS(2935), 1, - anon_sym_PIPE, - ACTIONS(2939), 1, + ACTIONS(3086), 1, + anon_sym_QMARK_DOT, + ACTIONS(3100), 1, anon_sym_STAR_STAR, - ACTIONS(2943), 1, - anon_sym_QMARK_QMARK, - STATE(2565), 1, + ACTIONS(3110), 1, + anon_sym_LT, + STATE(2611), 1, sym_type_arguments, - ACTIONS(2929), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(2937), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2945), 2, + ACTIONS(3104), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1128), 2, + STATE(1529), 2, sym_template_string, sym_arguments, - ACTIONS(2913), 3, + ACTIONS(3078), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(2931), 3, + ACTIONS(3092), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(2921), 4, + ACTIONS(2973), 9, anon_sym_in, anon_sym_GT, + anon_sym_QMARK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2941), 5, + ACTIONS(2975), 14, + sym__automatic_semicolon, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + 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, - ACTIONS(3056), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - [40688] = 12, + [41537] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(479), 1, + ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(2145), 1, + ACTIONS(2173), 1, anon_sym_LPAREN, - ACTIONS(2175), 1, + ACTIONS(2282), 1, anon_sym_LBRACK, - ACTIONS(2177), 1, + ACTIONS(2298), 1, anon_sym_DOT, - ACTIONS(2863), 1, + ACTIONS(3080), 1, + anon_sym_BANG, + ACTIONS(3086), 1, anon_sym_QMARK_DOT, - ACTIONS(3041), 1, + ACTIONS(3110), 1, anon_sym_LT, - STATE(2565), 1, + STATE(2611), 1, sym_type_arguments, - ACTIONS(2945), 2, + ACTIONS(3104), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1128), 2, + STATE(1529), 2, sym_template_string, sym_arguments, - ACTIONS(3037), 13, + ACTIONS(2973), 12, anon_sym_STAR, - anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_SLASH, @@ -100640,13 +101671,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3039), 19, + ACTIONS(2975), 18, + sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -100660,150 +101690,148 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [40757] = 25, + [41607] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(479), 1, + ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(2145), 1, + ACTIONS(2173), 1, anon_sym_LPAREN, - ACTIONS(2175), 1, + ACTIONS(2282), 1, anon_sym_LBRACK, - ACTIONS(2177), 1, + ACTIONS(2298), 1, anon_sym_DOT, - ACTIONS(2863), 1, - anon_sym_QMARK_DOT, - ACTIONS(2915), 1, - anon_sym_as, - ACTIONS(2919), 1, + ACTIONS(3080), 1, anon_sym_BANG, - ACTIONS(2923), 1, + ACTIONS(3084), 1, anon_sym_LT, - ACTIONS(2925), 1, - anon_sym_QMARK, - ACTIONS(2927), 1, + ACTIONS(3086), 1, + anon_sym_QMARK_DOT, + ACTIONS(3088), 1, anon_sym_AMP_AMP, - ACTIONS(2933), 1, + ACTIONS(3094), 1, anon_sym_AMP, - ACTIONS(2935), 1, + ACTIONS(3096), 1, anon_sym_PIPE, - ACTIONS(2939), 1, + ACTIONS(3100), 1, anon_sym_STAR_STAR, - ACTIONS(2943), 1, + ACTIONS(3113), 1, + anon_sym_as, + ACTIONS(3115), 1, + anon_sym_QMARK, + ACTIONS(3117), 1, anon_sym_QMARK_QMARK, - STATE(2565), 1, + STATE(2611), 1, sym_type_arguments, - ACTIONS(2929), 2, + ACTIONS(3090), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(2937), 2, + ACTIONS(3098), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2945), 2, + ACTIONS(3104), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1128), 2, + STATE(1529), 2, sym_template_string, sym_arguments, - ACTIONS(2913), 3, + ACTIONS(3078), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(2931), 3, + ACTIONS(3092), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(2921), 4, + ACTIONS(3043), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + ACTIONS(3082), 4, anon_sym_in, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2941), 5, + ACTIONS(3102), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(3058), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - [40852] = 25, + [41701] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(479), 1, + ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(2145), 1, + ACTIONS(2173), 1, anon_sym_LPAREN, - ACTIONS(2175), 1, + ACTIONS(2282), 1, anon_sym_LBRACK, - ACTIONS(2177), 1, + ACTIONS(2298), 1, anon_sym_DOT, - ACTIONS(2863), 1, - anon_sym_QMARK_DOT, - ACTIONS(2915), 1, - anon_sym_as, - ACTIONS(2919), 1, + ACTIONS(3080), 1, anon_sym_BANG, - ACTIONS(2923), 1, + ACTIONS(3084), 1, anon_sym_LT, - ACTIONS(2925), 1, - anon_sym_QMARK, - ACTIONS(2927), 1, + ACTIONS(3086), 1, + anon_sym_QMARK_DOT, + ACTIONS(3088), 1, anon_sym_AMP_AMP, - ACTIONS(2933), 1, + ACTIONS(3094), 1, anon_sym_AMP, - ACTIONS(2935), 1, + ACTIONS(3096), 1, anon_sym_PIPE, - ACTIONS(2939), 1, + ACTIONS(3100), 1, anon_sym_STAR_STAR, - ACTIONS(2943), 1, + ACTIONS(3113), 1, + anon_sym_as, + ACTIONS(3115), 1, + anon_sym_QMARK, + ACTIONS(3117), 1, anon_sym_QMARK_QMARK, - STATE(2565), 1, + STATE(2611), 1, sym_type_arguments, - ACTIONS(2929), 2, + ACTIONS(3090), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(2937), 2, + ACTIONS(3098), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2945), 2, + ACTIONS(3104), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1128), 2, + STATE(1529), 2, sym_template_string, sym_arguments, - ACTIONS(2913), 3, + ACTIONS(3078), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(2931), 3, + ACTIONS(3092), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(2921), 4, + ACTIONS(3055), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + ACTIONS(3082), 4, anon_sym_in, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2941), 5, + ACTIONS(3102), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(3060), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - [40947] = 3, + [41795] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3062), 14, + ACTIONS(985), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -100818,7 +101846,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3064), 28, + ACTIONS(987), 28, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -100847,12 +101875,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [40997] = 3, + [41845] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2880), 15, + ACTIONS(1075), 14, anon_sym_STAR, - anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -100866,16 +101893,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2882), 27, - sym__automatic_semicolon, + ACTIONS(1077), 28, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -100894,29 +101921,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [41047] = 11, + anon_sym_implements, + [41895] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2157), 1, - anon_sym_LPAREN, - ACTIONS(2159), 1, - anon_sym_LT, - ACTIONS(2266), 1, - anon_sym_LBRACK, - ACTIONS(2272), 1, - anon_sym_QMARK_DOT, - ACTIONS(2282), 1, - anon_sym_DOT, - ACTIONS(2857), 1, - anon_sym_EQ, - STATE(1347), 1, - sym_type_arguments, - STATE(1607), 1, - sym_arguments, - ACTIONS(2169), 13, + ACTIONS(1105), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -100927,12 +101940,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2173), 21, - sym__automatic_semicolon, + ACTIONS(1107), 28, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + 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, @@ -100949,84 +101968,59 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [41113] = 28, + anon_sym_implements, + [41945] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(479), 1, - anon_sym_BQUOTE, - ACTIONS(2145), 1, - anon_sym_LPAREN, - ACTIONS(2175), 1, - anon_sym_LBRACK, - ACTIONS(2177), 1, - anon_sym_DOT, - ACTIONS(2863), 1, - anon_sym_QMARK_DOT, - ACTIONS(2915), 1, - anon_sym_as, - ACTIONS(2919), 1, + ACTIONS(1095), 14, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(2923), 1, + anon_sym_in, anon_sym_LT, - ACTIONS(2925), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(2927), 1, - anon_sym_AMP_AMP, - ACTIONS(2933), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(2935), 1, anon_sym_PIPE, - ACTIONS(2939), 1, - anon_sym_STAR_STAR, - ACTIONS(2943), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3025), 1, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1097), 28, + anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, - ACTIONS(3066), 1, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_RPAREN, - ACTIONS(3068), 1, anon_sym_COLON, - STATE(2565), 1, - sym_type_arguments, - STATE(3066), 1, - sym_type_annotation, - ACTIONS(2929), 2, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(2937), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2945), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1128), 2, - sym_template_string, - sym_arguments, - ACTIONS(2913), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(2931), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(2921), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2941), 5, + 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, - [41213] = 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_implements, + [41995] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2903), 15, + ACTIONS(1065), 14, anon_sym_STAR, - anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -101040,16 +102034,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2905), 27, - sym__automatic_semicolon, + ACTIONS(1067), 28, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -101068,87 +102062,80 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [41263] = 27, + anon_sym_implements, + [42045] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(479), 1, + ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(2145), 1, + ACTIONS(2173), 1, anon_sym_LPAREN, - ACTIONS(2175), 1, + ACTIONS(2282), 1, anon_sym_LBRACK, - ACTIONS(2177), 1, + ACTIONS(2298), 1, anon_sym_DOT, - ACTIONS(2418), 1, - anon_sym_COMMA, - ACTIONS(2863), 1, - anon_sym_QMARK_DOT, - ACTIONS(2915), 1, - anon_sym_as, - ACTIONS(2919), 1, + ACTIONS(3080), 1, anon_sym_BANG, - ACTIONS(3076), 1, + ACTIONS(3084), 1, anon_sym_LT, - ACTIONS(3078), 1, - anon_sym_QMARK, - ACTIONS(3080), 1, - anon_sym_AMP_AMP, ACTIONS(3086), 1, - anon_sym_AMP, + anon_sym_QMARK_DOT, ACTIONS(3088), 1, + anon_sym_AMP_AMP, + ACTIONS(3094), 1, + anon_sym_AMP, + ACTIONS(3096), 1, anon_sym_PIPE, - ACTIONS(3092), 1, + ACTIONS(3100), 1, anon_sym_STAR_STAR, - ACTIONS(3096), 1, + ACTIONS(3113), 1, + anon_sym_as, + ACTIONS(3115), 1, + anon_sym_QMARK, + ACTIONS(3117), 1, anon_sym_QMARK_QMARK, - STATE(2523), 1, - aux_sym_extends_clause_repeat1, - STATE(2565), 1, + STATE(2611), 1, sym_type_arguments, - ACTIONS(2945), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3072), 2, - anon_sym_LBRACE, - anon_sym_implements, - ACTIONS(3082), 2, + ACTIONS(3090), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(3090), 2, + ACTIONS(3098), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1128), 2, + ACTIONS(3104), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1529), 2, sym_template_string, sym_arguments, - ACTIONS(3070), 3, + ACTIONS(3078), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(3084), 3, + ACTIONS(3092), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(3074), 4, + ACTIONS(3070), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + ACTIONS(3082), 4, anon_sym_in, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3094), 5, + ACTIONS(3102), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [41361] = 6, + [42139] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2175), 1, - anon_sym_LBRACK, - ACTIONS(2177), 1, - anon_sym_DOT, - ACTIONS(2179), 1, - anon_sym_QMARK_DOT, - ACTIONS(1097), 14, + ACTIONS(3119), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -101163,7 +102150,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1099), 25, + ACTIONS(3121), 28, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -101171,7 +102158,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_RPAREN, 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, @@ -101189,98 +102179,152 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [41417] = 25, + [42189] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(2157), 1, + ACTIONS(2173), 1, anon_sym_LPAREN, - ACTIONS(2266), 1, - anon_sym_LBRACK, ACTIONS(2282), 1, + anon_sym_LBRACK, + ACTIONS(2298), 1, anon_sym_DOT, + ACTIONS(3080), 1, + anon_sym_BANG, + ACTIONS(3084), 1, + anon_sym_LT, + ACTIONS(3086), 1, + anon_sym_QMARK_DOT, + ACTIONS(3088), 1, + anon_sym_AMP_AMP, + ACTIONS(3094), 1, + anon_sym_AMP, + ACTIONS(3096), 1, + anon_sym_PIPE, ACTIONS(3100), 1, + anon_sym_STAR_STAR, + ACTIONS(3113), 1, anon_sym_as, - ACTIONS(3102), 1, + ACTIONS(3115), 1, + anon_sym_QMARK, + ACTIONS(3117), 1, + anon_sym_QMARK_QMARK, + STATE(2611), 1, + sym_type_arguments, + ACTIONS(3090), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(3098), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3104), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1529), 2, + sym_template_string, + sym_arguments, + ACTIONS(3078), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(3092), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(3053), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + ACTIONS(3082), 4, + anon_sym_in, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3102), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [42283] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(2173), 1, + anon_sym_LPAREN, + ACTIONS(2282), 1, + anon_sym_LBRACK, + ACTIONS(2298), 1, + anon_sym_DOT, + ACTIONS(3080), 1, anon_sym_BANG, - ACTIONS(3106), 1, + ACTIONS(3084), 1, anon_sym_LT, - ACTIONS(3108), 1, + ACTIONS(3086), 1, anon_sym_QMARK_DOT, - ACTIONS(3110), 1, - anon_sym_QMARK, - ACTIONS(3112), 1, + ACTIONS(3088), 1, anon_sym_AMP_AMP, - ACTIONS(3118), 1, + ACTIONS(3094), 1, anon_sym_AMP, - ACTIONS(3120), 1, + ACTIONS(3096), 1, anon_sym_PIPE, - ACTIONS(3124), 1, + ACTIONS(3100), 1, anon_sym_STAR_STAR, - ACTIONS(3128), 1, + ACTIONS(3113), 1, + anon_sym_as, + ACTIONS(3115), 1, + anon_sym_QMARK, + ACTIONS(3117), 1, anon_sym_QMARK_QMARK, - STATE(2501), 1, + STATE(2611), 1, sym_type_arguments, - ACTIONS(3114), 2, + ACTIONS(3090), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(3122), 2, + ACTIONS(3098), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3130), 2, + ACTIONS(3104), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1567), 2, + STATE(1529), 2, sym_template_string, sym_arguments, - ACTIONS(3098), 3, + ACTIONS(3078), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(3116), 3, + ACTIONS(3092), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(2991), 4, + ACTIONS(3051), 4, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - ACTIONS(3104), 4, + ACTIONS(3082), 4, anon_sym_in, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3126), 5, + ACTIONS(3102), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [41511] = 11, + [42377] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2157), 1, - anon_sym_LPAREN, - ACTIONS(2159), 1, - anon_sym_LT, - ACTIONS(2266), 1, - anon_sym_LBRACK, - ACTIONS(2272), 1, - anon_sym_QMARK_DOT, - ACTIONS(2282), 1, - anon_sym_DOT, - ACTIONS(2855), 1, - anon_sym_EQ, - STATE(1347), 1, - sym_type_arguments, - STATE(1607), 1, - sym_arguments, - ACTIONS(2169), 13, + ACTIONS(3123), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -101291,12 +102335,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2173), 21, - sym__automatic_semicolon, + ACTIONS(3125), 28, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + 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, @@ -101313,66 +102363,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [41577] = 12, + anon_sym_implements, + [42427] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(2157), 1, - anon_sym_LPAREN, - ACTIONS(2266), 1, - anon_sym_LBRACK, - ACTIONS(2282), 1, - anon_sym_DOT, - ACTIONS(3108), 1, - anon_sym_QMARK_DOT, - ACTIONS(3132), 1, - anon_sym_LT, - STATE(2501), 1, + STATE(2611), 1, sym_type_arguments, - ACTIONS(3130), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1567), 2, + STATE(1529), 2, sym_template_string, sym_arguments, - ACTIONS(3037), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3039), 18, - sym__automatic_semicolon, - anon_sym_as, - 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, - [41645] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1097), 14, + ACTIONS(2873), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -101387,16 +102387,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1099), 28, + ACTIONS(2875), 25, + sym__automatic_semicolon, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -101415,22 +102413,21 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_implements, - [41695] = 8, + [42481] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2266), 1, - anon_sym_LBRACK, ACTIONS(2282), 1, + anon_sym_LBRACK, + ACTIONS(2298), 1, anon_sym_DOT, - ACTIONS(3108), 1, + ACTIONS(3086), 1, anon_sym_QMARK_DOT, - STATE(2501), 1, + STATE(2611), 1, sym_type_arguments, - STATE(1567), 2, + STATE(1529), 2, sym_template_string, sym_arguments, - ACTIONS(2859), 14, + ACTIONS(2879), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -101445,7 +102442,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2861), 22, + ACTIONS(2881), 22, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, @@ -101468,24 +102465,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [41755] = 6, + [42541] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2910), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(2907), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LBRACK, - ACTIONS(1551), 4, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(2903), 13, + ACTIONS(3127), 14, anon_sym_STAR, - anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -101493,13 +102477,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_QMARK, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2905), 20, + ACTIONS(3129), 28, 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_QMARK_DOT, anon_sym_AMP_AMP, @@ -101518,23 +102511,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [41811] = 5, + anon_sym_implements, + [42591] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1503), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1501), 7, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(911), 13, + ACTIONS(3131), 14, anon_sym_STAR, - anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -101542,13 +102524,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_QMARK, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(913), 20, + ACTIONS(3057), 28, 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_QMARK_DOT, anon_sym_AMP_AMP, @@ -101567,10 +102558,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [41865] = 3, + anon_sym_implements, + [42641] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2742), 14, + ACTIONS(3133), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -101585,7 +102577,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2746), 28, + ACTIONS(3135), 28, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -101614,157 +102606,221 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [41915] = 25, + [42691] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(479), 1, anon_sym_BQUOTE, - ACTIONS(2157), 1, + ACTIONS(2161), 1, anon_sym_LPAREN, - ACTIONS(2266), 1, + ACTIONS(2191), 1, anon_sym_LBRACK, - ACTIONS(2282), 1, + ACTIONS(2193), 1, anon_sym_DOT, - ACTIONS(3100), 1, + ACTIONS(2883), 1, + anon_sym_QMARK_DOT, + ACTIONS(2941), 1, anon_sym_as, - ACTIONS(3102), 1, + ACTIONS(2945), 1, anon_sym_BANG, - ACTIONS(3106), 1, + ACTIONS(2949), 1, anon_sym_LT, - ACTIONS(3108), 1, - anon_sym_QMARK_DOT, - ACTIONS(3110), 1, + ACTIONS(2951), 1, anon_sym_QMARK, - ACTIONS(3112), 1, + ACTIONS(2953), 1, anon_sym_AMP_AMP, - ACTIONS(3118), 1, + ACTIONS(2959), 1, anon_sym_AMP, - ACTIONS(3120), 1, + ACTIONS(2961), 1, anon_sym_PIPE, - ACTIONS(3124), 1, + ACTIONS(2965), 1, anon_sym_STAR_STAR, - ACTIONS(3128), 1, + ACTIONS(2969), 1, anon_sym_QMARK_QMARK, - STATE(2501), 1, + ACTIONS(2991), 1, + anon_sym_COMMA, + ACTIONS(3108), 1, + anon_sym_COLON, + ACTIONS(3137), 1, + anon_sym_RPAREN, + STATE(2547), 1, sym_type_arguments, - ACTIONS(3114), 2, + STATE(3111), 1, + sym_type_annotation, + ACTIONS(2955), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(3122), 2, + ACTIONS(2963), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3130), 2, + ACTIONS(2971), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1567), 2, + STATE(1126), 2, sym_template_string, sym_arguments, - ACTIONS(3098), 3, + ACTIONS(2939), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(3116), 3, + ACTIONS(2957), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(3044), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - ACTIONS(3104), 4, + ACTIONS(2947), 4, + anon_sym_in, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2967), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [42791] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3139), 14, + anon_sym_STAR, + anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3126), 5, + ACTIONS(3141), 28, + 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_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, - [42009] = 25, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_implements, + [42841] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(2157), 1, + ACTIONS(2173), 1, anon_sym_LPAREN, - ACTIONS(2266), 1, - anon_sym_LBRACK, ACTIONS(2282), 1, + anon_sym_LBRACK, + ACTIONS(2298), 1, anon_sym_DOT, - ACTIONS(3100), 1, - anon_sym_as, - ACTIONS(3102), 1, + ACTIONS(3080), 1, anon_sym_BANG, - ACTIONS(3106), 1, + ACTIONS(3084), 1, anon_sym_LT, - ACTIONS(3108), 1, + ACTIONS(3086), 1, anon_sym_QMARK_DOT, - ACTIONS(3110), 1, - anon_sym_QMARK, - ACTIONS(3112), 1, + ACTIONS(3088), 1, anon_sym_AMP_AMP, - ACTIONS(3118), 1, + ACTIONS(3094), 1, anon_sym_AMP, - ACTIONS(3120), 1, + ACTIONS(3096), 1, anon_sym_PIPE, - ACTIONS(3124), 1, + ACTIONS(3100), 1, anon_sym_STAR_STAR, - ACTIONS(3128), 1, + ACTIONS(3113), 1, + anon_sym_as, + ACTIONS(3115), 1, + anon_sym_QMARK, + ACTIONS(3117), 1, anon_sym_QMARK_QMARK, - STATE(2501), 1, + STATE(2611), 1, sym_type_arguments, - ACTIONS(3114), 2, + ACTIONS(3090), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(3122), 2, + ACTIONS(3098), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3130), 2, + ACTIONS(3104), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1567), 2, + STATE(1529), 2, sym_template_string, sym_arguments, - ACTIONS(3098), 3, + ACTIONS(3078), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(3116), 3, + ACTIONS(3092), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(3033), 4, + ACTIONS(3068), 4, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - ACTIONS(3104), 4, + ACTIONS(3082), 4, anon_sym_in, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3126), 5, + ACTIONS(3102), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [42103] = 5, + [42935] = 12, ACTIONS(3), 1, sym_comment, - STATE(2501), 1, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(2173), 1, + anon_sym_LPAREN, + ACTIONS(2282), 1, + anon_sym_LBRACK, + ACTIONS(2298), 1, + anon_sym_DOT, + ACTIONS(3086), 1, + anon_sym_QMARK_DOT, + ACTIONS(3143), 1, + anon_sym_LT, + STATE(2611), 1, sym_type_arguments, - STATE(1567), 2, + ACTIONS(3104), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1529), 2, sym_template_string, sym_arguments, - ACTIONS(2865), 14, + ACTIONS(3024), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -101775,16 +102831,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2867), 25, + ACTIONS(3026), 18, sym__automatic_semicolon, 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, @@ -101798,13 +102850,10 @@ static 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, - [42157] = 3, + [43003] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3135), 14, + ACTIONS(3146), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -101819,7 +102868,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3137), 28, + ACTIONS(3148), 28, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -101848,141 +102897,100 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [42207] = 14, + [43053] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(2157), 1, + ACTIONS(2173), 1, anon_sym_LPAREN, - ACTIONS(2266), 1, - anon_sym_LBRACK, ACTIONS(2282), 1, - anon_sym_DOT, - ACTIONS(3102), 1, - anon_sym_BANG, - ACTIONS(3108), 1, - anon_sym_QMARK_DOT, - ACTIONS(3124), 1, - anon_sym_STAR_STAR, - ACTIONS(3139), 1, - anon_sym_LT, - STATE(2501), 1, - sym_type_arguments, - ACTIONS(3130), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1567), 2, - sym_template_string, - sym_arguments, - ACTIONS(2997), 12, - anon_sym_STAR, - anon_sym_in, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2995), 17, - sym__automatic_semicolon, - anon_sym_as, - 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_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - [42279] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(2157), 1, - anon_sym_LPAREN, - ACTIONS(2266), 1, anon_sym_LBRACK, - ACTIONS(2282), 1, + ACTIONS(2298), 1, anon_sym_DOT, - ACTIONS(3100), 1, - anon_sym_as, - ACTIONS(3102), 1, + ACTIONS(3080), 1, anon_sym_BANG, - ACTIONS(3106), 1, + ACTIONS(3084), 1, anon_sym_LT, - ACTIONS(3108), 1, + ACTIONS(3086), 1, anon_sym_QMARK_DOT, - ACTIONS(3110), 1, - anon_sym_QMARK, - ACTIONS(3112), 1, + ACTIONS(3088), 1, anon_sym_AMP_AMP, - ACTIONS(3118), 1, + ACTIONS(3094), 1, anon_sym_AMP, - ACTIONS(3120), 1, + ACTIONS(3096), 1, anon_sym_PIPE, - ACTIONS(3124), 1, + ACTIONS(3100), 1, anon_sym_STAR_STAR, - ACTIONS(3128), 1, + ACTIONS(3113), 1, + anon_sym_as, + ACTIONS(3115), 1, + anon_sym_QMARK, + ACTIONS(3117), 1, anon_sym_QMARK_QMARK, - STATE(2501), 1, + ACTIONS(3150), 1, + anon_sym_COMMA, + ACTIONS(3153), 1, + anon_sym_RBRACE, + STATE(2611), 1, sym_type_arguments, - ACTIONS(3114), 2, + ACTIONS(3068), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(3090), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(3122), 2, + ACTIONS(3098), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3130), 2, + ACTIONS(3104), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1567), 2, + STATE(1529), 2, sym_template_string, sym_arguments, - ACTIONS(3098), 3, + ACTIONS(3078), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(3116), 3, + ACTIONS(3092), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(3056), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - ACTIONS(3104), 4, + ACTIONS(3082), 4, anon_sym_in, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3126), 5, + ACTIONS(3102), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [42373] = 3, + [43151] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(3142), 14, + ACTIONS(2173), 1, + anon_sym_LPAREN, + ACTIONS(2175), 1, + anon_sym_LT, + ACTIONS(2282), 1, + anon_sym_LBRACK, + ACTIONS(2288), 1, + anon_sym_QMARK_DOT, + ACTIONS(2298), 1, + anon_sym_DOT, + ACTIONS(2871), 1, + anon_sym_EQ, + STATE(1319), 1, + sym_type_arguments, + STATE(1548), 1, + sym_arguments, + ACTIONS(2185), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -101993,18 +103001,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3144), 28, + ACTIONS(2189), 21, + sym__automatic_semicolon, 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_QMARK_DOT, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -102021,12 +103023,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_implements, - [42423] = 3, + [43217] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3146), 14, + ACTIONS(2887), 15, anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -102040,16 +103042,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3148), 28, + ACTIONS(2889), 27, + sym__automatic_semicolon, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_of, + anon_sym_SEMI, anon_sym_COLON, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -102068,54 +103070,111 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_implements, - [42473] = 17, + [43267] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(2157), 1, + ACTIONS(2173), 1, anon_sym_LPAREN, - ACTIONS(2266), 1, - anon_sym_LBRACK, ACTIONS(2282), 1, + anon_sym_LBRACK, + ACTIONS(2298), 1, anon_sym_DOT, - ACTIONS(3102), 1, + ACTIONS(3080), 1, anon_sym_BANG, - ACTIONS(3106), 1, + ACTIONS(3084), 1, anon_sym_LT, - ACTIONS(3108), 1, + ACTIONS(3086), 1, anon_sym_QMARK_DOT, - ACTIONS(3124), 1, + ACTIONS(3088), 1, + anon_sym_AMP_AMP, + ACTIONS(3094), 1, + anon_sym_AMP, + ACTIONS(3096), 1, + anon_sym_PIPE, + ACTIONS(3100), 1, anon_sym_STAR_STAR, - STATE(2501), 1, + ACTIONS(3113), 1, + anon_sym_as, + ACTIONS(3115), 1, + anon_sym_QMARK, + ACTIONS(3117), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3153), 1, + anon_sym_RBRACE, + ACTIONS(3155), 1, + anon_sym_COMMA, + STATE(2611), 1, sym_type_arguments, - ACTIONS(3122), 2, + ACTIONS(2995), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(3090), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(3098), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3130), 2, + ACTIONS(3104), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1567), 2, + STATE(1529), 2, sym_template_string, sym_arguments, - ACTIONS(3098), 3, + ACTIONS(3078), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(3116), 3, + ACTIONS(3092), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(2997), 7, + ACTIONS(3082), 4, + anon_sym_in, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3102), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [43365] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2173), 1, + anon_sym_LPAREN, + ACTIONS(2175), 1, + anon_sym_LT, + ACTIONS(2282), 1, + anon_sym_LBRACK, + ACTIONS(2288), 1, + anon_sym_QMARK_DOT, + ACTIONS(2298), 1, + anon_sym_DOT, + ACTIONS(2877), 1, + anon_sym_EQ, + STATE(1319), 1, + sym_type_arguments, + STATE(1548), 1, + sym_arguments, + ACTIONS(2185), 13, + anon_sym_STAR, + anon_sym_BANG, anon_sym_in, anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, + anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2995), 14, + ACTIONS(2189), 21, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, @@ -102123,164 +103182,235 @@ static uint16_t ts_small_parse_table[] = { 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, - [42551] = 21, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [43431] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(2157), 1, + ACTIONS(2173), 1, anon_sym_LPAREN, - ACTIONS(2266), 1, - anon_sym_LBRACK, ACTIONS(2282), 1, + anon_sym_LBRACK, + ACTIONS(2298), 1, anon_sym_DOT, - ACTIONS(3102), 1, + ACTIONS(3080), 1, anon_sym_BANG, - ACTIONS(3106), 1, + ACTIONS(3084), 1, anon_sym_LT, - ACTIONS(3108), 1, + ACTIONS(3086), 1, anon_sym_QMARK_DOT, - ACTIONS(3112), 1, + ACTIONS(3088), 1, anon_sym_AMP_AMP, - ACTIONS(3118), 1, + ACTIONS(3094), 1, anon_sym_AMP, - ACTIONS(3124), 1, + ACTIONS(3096), 1, + anon_sym_PIPE, + ACTIONS(3100), 1, anon_sym_STAR_STAR, - STATE(2501), 1, - sym_type_arguments, - ACTIONS(2997), 2, + ACTIONS(3113), 1, + anon_sym_as, + ACTIONS(3115), 1, anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(3122), 2, + ACTIONS(3117), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3158), 1, + anon_sym_COMMA, + ACTIONS(3161), 1, + anon_sym_RBRACE, + STATE(2611), 1, + sym_type_arguments, + ACTIONS(3043), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(3090), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(3098), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3130), 2, + ACTIONS(3104), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1567), 2, + STATE(1529), 2, sym_template_string, sym_arguments, - ACTIONS(3098), 3, + ACTIONS(3078), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(3116), 3, + ACTIONS(3092), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(3104), 4, + ACTIONS(3082), 4, anon_sym_in, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3126), 5, + ACTIONS(3102), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(2995), 8, + [43529] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2899), 15, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2901), 27, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_of, anon_sym_SEMI, + 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, - [42637] = 16, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [43579] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(2157), 1, + ACTIONS(2173), 1, anon_sym_LPAREN, - ACTIONS(2266), 1, - anon_sym_LBRACK, ACTIONS(2282), 1, + anon_sym_LBRACK, + ACTIONS(2298), 1, anon_sym_DOT, - ACTIONS(3102), 1, + ACTIONS(3080), 1, anon_sym_BANG, - ACTIONS(3108), 1, + ACTIONS(3084), 1, + anon_sym_LT, + ACTIONS(3086), 1, anon_sym_QMARK_DOT, - ACTIONS(3124), 1, + ACTIONS(3088), 1, + anon_sym_AMP_AMP, + ACTIONS(3094), 1, + anon_sym_AMP, + ACTIONS(3096), 1, + anon_sym_PIPE, + ACTIONS(3100), 1, anon_sym_STAR_STAR, - ACTIONS(3139), 1, - anon_sym_LT, - STATE(2501), 1, + ACTIONS(3113), 1, + anon_sym_as, + ACTIONS(3115), 1, + anon_sym_QMARK, + ACTIONS(3117), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3163), 1, + anon_sym_COMMA, + ACTIONS(3166), 1, + anon_sym_RBRACE, + STATE(2611), 1, sym_type_arguments, - ACTIONS(3130), 2, + ACTIONS(3055), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(3090), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(3098), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3104), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1567), 2, + STATE(1529), 2, sym_template_string, sym_arguments, - ACTIONS(3098), 3, + ACTIONS(3078), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(3116), 3, + ACTIONS(3092), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(2997), 9, + ACTIONS(3082), 4, anon_sym_in, anon_sym_GT, - anon_sym_QMARK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2995), 14, - sym__automatic_semicolon, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, + ACTIONS(3102), 5, 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, - [42713] = 13, + [43677] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(2157), 1, + ACTIONS(2173), 1, anon_sym_LPAREN, - ACTIONS(2266), 1, - anon_sym_LBRACK, ACTIONS(2282), 1, + anon_sym_LBRACK, + ACTIONS(2298), 1, anon_sym_DOT, - ACTIONS(3102), 1, + ACTIONS(3080), 1, anon_sym_BANG, - ACTIONS(3108), 1, + ACTIONS(3086), 1, anon_sym_QMARK_DOT, - ACTIONS(3139), 1, + ACTIONS(3143), 1, anon_sym_LT, - STATE(2501), 1, + STATE(2611), 1, sym_type_arguments, - ACTIONS(3130), 2, + ACTIONS(3104), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1567), 2, + STATE(1529), 2, sym_template_string, sym_arguments, - ACTIONS(2997), 12, + ACTIONS(3024), 12, anon_sym_STAR, anon_sym_in, anon_sym_GT, @@ -102293,7 +103423,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2995), 18, + ACTIONS(3026), 18, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, @@ -102312,422 +103442,255 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [42783] = 23, + [43747] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(2157), 1, - anon_sym_LPAREN, - ACTIONS(2266), 1, - anon_sym_LBRACK, - ACTIONS(2282), 1, - anon_sym_DOT, - ACTIONS(2997), 1, - anon_sym_QMARK, - ACTIONS(3102), 1, + ACTIONS(3168), 14, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(3106), 1, + anon_sym_in, anon_sym_LT, - ACTIONS(3108), 1, - anon_sym_QMARK_DOT, - ACTIONS(3112), 1, - anon_sym_AMP_AMP, - ACTIONS(3118), 1, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(3120), 1, anon_sym_PIPE, - ACTIONS(3124), 1, - anon_sym_STAR_STAR, - STATE(2501), 1, - sym_type_arguments, - ACTIONS(3114), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(3122), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3130), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1567), 2, - sym_template_string, - sym_arguments, - ACTIONS(3098), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3116), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(3104), 4, - anon_sym_in, - anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3126), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(2995), 6, - sym__automatic_semicolon, + ACTIONS(3170), 28, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_QMARK_QMARK, - [42873] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(2157), 1, anon_sym_LPAREN, - ACTIONS(2266), 1, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, - ACTIONS(2282), 1, + anon_sym_RBRACK, anon_sym_DOT, - ACTIONS(3100), 1, - anon_sym_as, - ACTIONS(3102), 1, - anon_sym_BANG, - ACTIONS(3106), 1, - anon_sym_LT, - ACTIONS(3108), 1, anon_sym_QMARK_DOT, - ACTIONS(3110), 1, - anon_sym_QMARK, - ACTIONS(3112), 1, anon_sym_AMP_AMP, - ACTIONS(3118), 1, - anon_sym_AMP, - ACTIONS(3120), 1, - anon_sym_PIPE, - ACTIONS(3124), 1, - anon_sym_STAR_STAR, - ACTIONS(3128), 1, - anon_sym_QMARK_QMARK, - STATE(2501), 1, - sym_type_arguments, - ACTIONS(3114), 2, anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(3122), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3130), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1567), 2, - sym_template_string, - sym_arguments, - ACTIONS(3098), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3116), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(2993), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - ACTIONS(3104), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3126), 5, + 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, - [42967] = 25, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_implements, + [43797] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(2157), 1, - anon_sym_LPAREN, - ACTIONS(2266), 1, - anon_sym_LBRACK, - ACTIONS(2282), 1, - anon_sym_DOT, - ACTIONS(3100), 1, - anon_sym_as, - ACTIONS(3102), 1, + ACTIONS(3172), 14, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(3106), 1, + anon_sym_in, anon_sym_LT, - ACTIONS(3108), 1, - anon_sym_QMARK_DOT, - ACTIONS(3110), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(3112), 1, - anon_sym_AMP_AMP, - ACTIONS(3118), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(3120), 1, anon_sym_PIPE, - ACTIONS(3124), 1, - anon_sym_STAR_STAR, - ACTIONS(3128), 1, - anon_sym_QMARK_QMARK, - STATE(2501), 1, - sym_type_arguments, - ACTIONS(3114), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(3122), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3130), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1567), 2, - sym_template_string, - sym_arguments, - ACTIONS(3098), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3116), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3174), 28, + 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_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, - ACTIONS(3002), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - ACTIONS(3104), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3126), 5, + 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, - [43061] = 25, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_implements, + [43847] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(2157), 1, + ACTIONS(2173), 1, anon_sym_LPAREN, - ACTIONS(2266), 1, - anon_sym_LBRACK, ACTIONS(2282), 1, + anon_sym_LBRACK, + ACTIONS(2298), 1, anon_sym_DOT, - ACTIONS(3100), 1, - anon_sym_as, - ACTIONS(3102), 1, + ACTIONS(3080), 1, anon_sym_BANG, - ACTIONS(3106), 1, - anon_sym_LT, - ACTIONS(3108), 1, + ACTIONS(3086), 1, anon_sym_QMARK_DOT, - ACTIONS(3110), 1, - anon_sym_QMARK, - ACTIONS(3112), 1, - anon_sym_AMP_AMP, - ACTIONS(3118), 1, - anon_sym_AMP, - ACTIONS(3120), 1, - anon_sym_PIPE, - ACTIONS(3124), 1, - anon_sym_STAR_STAR, - ACTIONS(3128), 1, - anon_sym_QMARK_QMARK, - STATE(2501), 1, + ACTIONS(3143), 1, + anon_sym_LT, + STATE(2611), 1, sym_type_arguments, - ACTIONS(3114), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(3122), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3130), 2, + ACTIONS(3104), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1567), 2, + STATE(1529), 2, sym_template_string, sym_arguments, - ACTIONS(3098), 3, + ACTIONS(3024), 12, anon_sym_STAR, + anon_sym_in, + anon_sym_GT, anon_sym_SLASH, + anon_sym_QMARK, anon_sym_GT_GT, - ACTIONS(3116), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(2955), 4, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3026), 18, sym__automatic_semicolon, + anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - ACTIONS(3104), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3126), 5, + 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, - [43155] = 25, + [43917] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(2157), 1, - anon_sym_LPAREN, - ACTIONS(2266), 1, - anon_sym_LBRACK, - ACTIONS(2282), 1, - anon_sym_DOT, - ACTIONS(3100), 1, - anon_sym_as, - ACTIONS(3102), 1, + ACTIONS(2758), 14, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(3106), 1, + anon_sym_in, anon_sym_LT, - ACTIONS(3108), 1, - anon_sym_QMARK_DOT, - ACTIONS(3110), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(3112), 1, - anon_sym_AMP_AMP, - ACTIONS(3118), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(3120), 1, anon_sym_PIPE, - ACTIONS(3124), 1, - anon_sym_STAR_STAR, - ACTIONS(3128), 1, - anon_sym_QMARK_QMARK, - STATE(2501), 1, - sym_type_arguments, - ACTIONS(3114), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(3122), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3130), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1567), 2, - sym_template_string, - sym_arguments, - ACTIONS(3098), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3116), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2762), 28, + 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_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, - ACTIONS(2917), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - ACTIONS(3104), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3126), 5, + 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, - [43249] = 25, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_implements, + [43967] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(2157), 1, - anon_sym_LPAREN, - ACTIONS(2266), 1, - anon_sym_LBRACK, - ACTIONS(2282), 1, - anon_sym_DOT, - ACTIONS(3100), 1, - anon_sym_as, - ACTIONS(3102), 1, + ACTIONS(2893), 15, + anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, - ACTIONS(3106), 1, + anon_sym_in, anon_sym_LT, - ACTIONS(3108), 1, - anon_sym_QMARK_DOT, - ACTIONS(3110), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(3112), 1, - anon_sym_AMP_AMP, - ACTIONS(3118), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(3120), 1, anon_sym_PIPE, - ACTIONS(3124), 1, - anon_sym_STAR_STAR, - ACTIONS(3128), 1, - anon_sym_QMARK_QMARK, - STATE(2501), 1, - sym_type_arguments, - ACTIONS(3114), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(3122), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3130), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1567), 2, - sym_template_string, - sym_arguments, - ACTIONS(3098), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3116), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(2947), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2895), 27, sym__automatic_semicolon, + anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_of, anon_sym_SEMI, - ACTIONS(3104), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3126), 5, + 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, - [43343] = 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [44017] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3150), 14, + ACTIONS(1037), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -102742,7 +103705,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3152), 28, + ACTIONS(1039), 28, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -102771,81 +103734,80 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [43393] = 25, + [44067] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(2157), 1, + ACTIONS(2173), 1, anon_sym_LPAREN, - ACTIONS(2266), 1, - anon_sym_LBRACK, ACTIONS(2282), 1, + anon_sym_LBRACK, + ACTIONS(2298), 1, anon_sym_DOT, - ACTIONS(3100), 1, - anon_sym_as, - ACTIONS(3102), 1, + ACTIONS(3080), 1, anon_sym_BANG, - ACTIONS(3106), 1, + ACTIONS(3084), 1, anon_sym_LT, - ACTIONS(3108), 1, + ACTIONS(3086), 1, anon_sym_QMARK_DOT, - ACTIONS(3110), 1, - anon_sym_QMARK, - ACTIONS(3112), 1, + ACTIONS(3088), 1, anon_sym_AMP_AMP, - ACTIONS(3118), 1, + ACTIONS(3094), 1, anon_sym_AMP, - ACTIONS(3120), 1, + ACTIONS(3096), 1, anon_sym_PIPE, - ACTIONS(3124), 1, + ACTIONS(3100), 1, anon_sym_STAR_STAR, - ACTIONS(3128), 1, + ACTIONS(3113), 1, + anon_sym_as, + ACTIONS(3115), 1, + anon_sym_QMARK, + ACTIONS(3117), 1, anon_sym_QMARK_QMARK, - STATE(2501), 1, + STATE(2611), 1, sym_type_arguments, - ACTIONS(3114), 2, + ACTIONS(3090), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(3122), 2, + ACTIONS(3098), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3130), 2, + ACTIONS(3104), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1567), 2, + STATE(1529), 2, sym_template_string, sym_arguments, - ACTIONS(3098), 3, + ACTIONS(3078), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(3116), 3, + ACTIONS(3092), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(3054), 4, + ACTIONS(3057), 4, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - ACTIONS(3104), 4, + ACTIONS(3082), 4, anon_sym_in, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3126), 5, + ACTIONS(3102), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [43487] = 3, + [44161] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2874), 15, + ACTIONS(1009), 14, anon_sym_STAR, - anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -102859,16 +103821,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2876), 27, - sym__automatic_semicolon, + ACTIONS(1007), 28, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -102887,10 +103849,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [43537] = 3, + anon_sym_implements, + [44211] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3154), 14, + ACTIONS(973), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -102905,7 +103868,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3054), 28, + ACTIONS(975), 28, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -102934,10 +103897,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [43587] = 3, + [44261] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3156), 14, + ACTIONS(1055), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -102952,7 +103915,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3158), 28, + ACTIONS(1057), 28, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -102981,175 +103944,61 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [43637] = 25, + [44311] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(479), 1, - anon_sym_BQUOTE, - ACTIONS(2145), 1, - anon_sym_LPAREN, - ACTIONS(2175), 1, - anon_sym_LBRACK, - ACTIONS(2177), 1, - anon_sym_DOT, - ACTIONS(2863), 1, - anon_sym_QMARK_DOT, - ACTIONS(2915), 1, - anon_sym_as, - ACTIONS(2919), 1, + ACTIONS(1045), 14, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(2923), 1, + anon_sym_in, anon_sym_LT, - ACTIONS(2925), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(2927), 1, - anon_sym_AMP_AMP, - ACTIONS(2933), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(2935), 1, anon_sym_PIPE, - ACTIONS(2939), 1, - anon_sym_STAR_STAR, - ACTIONS(2943), 1, - anon_sym_QMARK_QMARK, - STATE(2565), 1, - sym_type_arguments, - ACTIONS(2929), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(2937), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2945), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1128), 2, - sym_template_string, - sym_arguments, - ACTIONS(2913), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(2931), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(2921), 4, - anon_sym_in, - anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3160), 4, + ACTIONS(1047), 28, + anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - ACTIONS(2941), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [43731] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(479), 1, - anon_sym_BQUOTE, - ACTIONS(2145), 1, anon_sym_LPAREN, - ACTIONS(2175), 1, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, - ACTIONS(2177), 1, + anon_sym_RBRACK, anon_sym_DOT, - ACTIONS(2863), 1, anon_sym_QMARK_DOT, - ACTIONS(2915), 1, - anon_sym_as, - ACTIONS(2919), 1, - anon_sym_BANG, - ACTIONS(2923), 1, - anon_sym_LT, - ACTIONS(2925), 1, - anon_sym_QMARK, - ACTIONS(2927), 1, anon_sym_AMP_AMP, - ACTIONS(2933), 1, - anon_sym_AMP, - ACTIONS(2935), 1, - anon_sym_PIPE, - ACTIONS(2939), 1, - anon_sym_STAR_STAR, - ACTIONS(2943), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3025), 1, - anon_sym_COMMA, - ACTIONS(3068), 1, - anon_sym_COLON, - ACTIONS(3162), 1, - anon_sym_RPAREN, - STATE(2565), 1, - sym_type_arguments, - STATE(3015), 1, - sym_type_annotation, - ACTIONS(2929), 2, anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(2937), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2945), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1128), 2, - sym_template_string, - sym_arguments, - ACTIONS(2913), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(2931), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(2921), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2941), 5, + 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, - [43831] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(2157), 1, - anon_sym_LPAREN, - ACTIONS(2266), 1, - anon_sym_LBRACK, - ACTIONS(2282), 1, - anon_sym_DOT, - ACTIONS(3102), 1, - anon_sym_BANG, - ACTIONS(3108), 1, - anon_sym_QMARK_DOT, - ACTIONS(3132), 1, - anon_sym_LT, - STATE(2501), 1, - sym_type_arguments, - ACTIONS(3130), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1567), 2, - sym_template_string, - sym_arguments, - ACTIONS(3037), 12, + anon_sym_BQUOTE, + anon_sym_implements, + [44361] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(953), 14, anon_sym_STAR, + anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -103160,12 +104009,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3039), 18, - sym__automatic_semicolon, + ACTIONS(955), 28, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + 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, @@ -103179,10 +104034,20 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [43901] = 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_implements, + [44411] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1077), 14, + ACTIONS(2191), 1, + anon_sym_LBRACK, + ACTIONS(2193), 1, + anon_sym_DOT, + ACTIONS(2195), 1, + anon_sym_QMARK_DOT, + ACTIONS(1037), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -103197,7 +104062,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1075), 28, + ACTIONS(1039), 25, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -103205,10 +104070,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_RPAREN, 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, @@ -103226,83 +104088,84 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [43951] = 28, + [44467] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(573), 1, + ACTIONS(715), 1, anon_sym_BQUOTE, - ACTIONS(2161), 1, + ACTIONS(2177), 1, anon_sym_LPAREN, - ACTIONS(2379), 1, + ACTIONS(2314), 1, anon_sym_LBRACK, - ACTIONS(2395), 1, + ACTIONS(2451), 1, anon_sym_COMMA, - ACTIONS(2410), 1, + ACTIONS(2470), 1, anon_sym_DOT, - ACTIONS(3072), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(3166), 1, + ACTIONS(3178), 1, anon_sym_as, - ACTIONS(3168), 1, + ACTIONS(3180), 1, anon_sym_LBRACE, - ACTIONS(3170), 1, + ACTIONS(3182), 1, anon_sym_BANG, - ACTIONS(3174), 1, + ACTIONS(3186), 1, anon_sym_LT, - ACTIONS(3176), 1, + ACTIONS(3188), 1, anon_sym_QMARK_DOT, - ACTIONS(3178), 1, + ACTIONS(3190), 1, anon_sym_QMARK, - ACTIONS(3180), 1, + ACTIONS(3192), 1, anon_sym_AMP_AMP, - ACTIONS(3186), 1, + ACTIONS(3198), 1, anon_sym_AMP, - ACTIONS(3188), 1, + ACTIONS(3200), 1, anon_sym_PIPE, - ACTIONS(3192), 1, + ACTIONS(3204), 1, anon_sym_STAR_STAR, - ACTIONS(3196), 1, + ACTIONS(3208), 1, anon_sym_QMARK_QMARK, - STATE(2564), 1, - aux_sym_extends_clause_repeat1, - STATE(2574), 1, + ACTIONS(3212), 1, + anon_sym_LBRACE_PIPE, + STATE(2592), 1, sym_type_arguments, - ACTIONS(3182), 2, + STATE(2605), 1, + aux_sym_extends_clause_repeat1, + ACTIONS(3194), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(3190), 2, + ACTIONS(3202), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3198), 2, + ACTIONS(3210), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1643), 2, + STATE(1669), 2, sym_template_string, sym_arguments, - ACTIONS(3164), 3, + ACTIONS(3176), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(3184), 3, + ACTIONS(3196), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(3172), 4, + ACTIONS(3184), 4, anon_sym_in, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3194), 5, + ACTIONS(3206), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [44051] = 3, + [44567] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3200), 14, + ACTIONS(2903), 15, anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -103316,16 +104179,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3202), 28, + ACTIONS(2905), 27, + sym__automatic_semicolon, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_of, + anon_sym_SEMI, anon_sym_COLON, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -103344,11 +104207,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_implements, - [44101] = 3, + [44617] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1083), 14, + ACTIONS(3214), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -103363,7 +104225,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1081), 28, + ACTIONS(3216), 28, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -103392,10 +104254,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [44151] = 3, + [44667] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1091), 14, + ACTIONS(3218), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -103410,7 +104272,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1089), 28, + ACTIONS(3220), 28, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -103439,10 +104301,68 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [44201] = 3, + [44717] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(3204), 14, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(2173), 1, + anon_sym_LPAREN, + ACTIONS(2282), 1, + anon_sym_LBRACK, + ACTIONS(2298), 1, + anon_sym_DOT, + ACTIONS(3080), 1, + anon_sym_BANG, + ACTIONS(3086), 1, + anon_sym_QMARK_DOT, + ACTIONS(3100), 1, + anon_sym_STAR_STAR, + ACTIONS(3110), 1, + anon_sym_LT, + STATE(2611), 1, + sym_type_arguments, + ACTIONS(3104), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1529), 2, + sym_template_string, + sym_arguments, + ACTIONS(2973), 12, + anon_sym_STAR, + anon_sym_in, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2975), 17, + sym__automatic_semicolon, + anon_sym_as, + 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_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + [44789] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3222), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -103457,7 +104377,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3206), 28, + ACTIONS(3224), 28, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -103486,73 +104406,57 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [44251] = 19, + [44839] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(2157), 1, - anon_sym_LPAREN, - ACTIONS(2266), 1, - anon_sym_LBRACK, - ACTIONS(2282), 1, - anon_sym_DOT, - ACTIONS(3102), 1, + ACTIONS(3226), 14, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(3106), 1, + anon_sym_in, anon_sym_LT, - ACTIONS(3108), 1, - anon_sym_QMARK_DOT, - ACTIONS(3124), 1, - anon_sym_STAR_STAR, - STATE(2501), 1, - sym_type_arguments, - ACTIONS(3122), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3130), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1567), 2, - sym_template_string, - sym_arguments, - ACTIONS(2997), 3, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, + anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3098), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3116), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(3104), 4, - anon_sym_in, - anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3126), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(2995), 9, - sym__automatic_semicolon, + ACTIONS(3228), 28, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + 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, - [44333] = 3, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_implements, + [44889] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3208), 14, + ACTIONS(3230), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -103567,7 +104471,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3210), 28, + ACTIONS(3232), 28, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -103596,83 +104500,58 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [44383] = 27, + [44939] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(2157), 1, - anon_sym_LPAREN, - ACTIONS(2266), 1, - anon_sym_LBRACK, - ACTIONS(2282), 1, - anon_sym_DOT, - ACTIONS(3100), 1, - anon_sym_as, - ACTIONS(3102), 1, + ACTIONS(3234), 14, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(3106), 1, + anon_sym_in, anon_sym_LT, - ACTIONS(3108), 1, - anon_sym_QMARK_DOT, - ACTIONS(3110), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(3112), 1, - anon_sym_AMP_AMP, - ACTIONS(3118), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(3120), 1, anon_sym_PIPE, - ACTIONS(3124), 1, - anon_sym_STAR_STAR, - ACTIONS(3128), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3212), 1, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3236), 28, + anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, - ACTIONS(3215), 1, anon_sym_RBRACE, - STATE(2501), 1, - sym_type_arguments, - ACTIONS(3056), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(3114), 2, + anon_sym_LPAREN, + anon_sym_RPAREN, + 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_CARET, - ACTIONS(3122), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3130), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1567), 2, - sym_template_string, - sym_arguments, - ACTIONS(3098), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3116), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(3104), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3126), 5, + 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, - [44481] = 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_implements, + [44989] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2891), 15, + ACTIONS(947), 14, anon_sym_STAR, - anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -103686,15 +104565,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2893), 27, + ACTIONS(945), 28, sym__automatic_semicolon, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_else, anon_sym_LPAREN, - anon_sym_of, + anon_sym_while, anon_sym_SEMI, - anon_sym_COLON, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -103714,128 +104594,79 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [44531] = 27, + [45039] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(2157), 1, + ACTIONS(2173), 1, anon_sym_LPAREN, - ACTIONS(2266), 1, - anon_sym_LBRACK, ACTIONS(2282), 1, + anon_sym_LBRACK, + ACTIONS(2298), 1, anon_sym_DOT, - ACTIONS(3100), 1, - anon_sym_as, - ACTIONS(3102), 1, + ACTIONS(3080), 1, anon_sym_BANG, - ACTIONS(3106), 1, + ACTIONS(3084), 1, anon_sym_LT, - ACTIONS(3108), 1, + ACTIONS(3086), 1, anon_sym_QMARK_DOT, - ACTIONS(3110), 1, - anon_sym_QMARK, - ACTIONS(3112), 1, + ACTIONS(3088), 1, anon_sym_AMP_AMP, - ACTIONS(3118), 1, + ACTIONS(3094), 1, anon_sym_AMP, - ACTIONS(3120), 1, + ACTIONS(3096), 1, anon_sym_PIPE, - ACTIONS(3124), 1, + ACTIONS(3100), 1, anon_sym_STAR_STAR, - ACTIONS(3128), 1, + ACTIONS(3113), 1, + anon_sym_as, + ACTIONS(3115), 1, + anon_sym_QMARK, + ACTIONS(3117), 1, anon_sym_QMARK_QMARK, - ACTIONS(3215), 1, - anon_sym_RBRACE, - ACTIONS(3217), 1, - anon_sym_COMMA, - STATE(2501), 1, + STATE(2611), 1, sym_type_arguments, - ACTIONS(3044), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(3114), 2, + ACTIONS(3090), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(3122), 2, + ACTIONS(3098), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3130), 2, + ACTIONS(3104), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1567), 2, + STATE(1529), 2, sym_template_string, sym_arguments, - ACTIONS(3098), 3, + ACTIONS(3078), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(3116), 3, + ACTIONS(3092), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(3104), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3126), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [44629] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3220), 14, - anon_sym_STAR, - anon_sym_BANG, + ACTIONS(2943), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + ACTIONS(3082), 4, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3222), 28, - 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_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, + ACTIONS(3102), 5, 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_implements, - [44679] = 3, + [45133] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(949), 14, + ACTIONS(3238), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -103850,7 +104681,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(947), 28, + ACTIONS(3240), 28, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -103879,79 +104710,79 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [44729] = 25, + [45183] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(2157), 1, + ACTIONS(2173), 1, anon_sym_LPAREN, - ACTIONS(2266), 1, - anon_sym_LBRACK, ACTIONS(2282), 1, + anon_sym_LBRACK, + ACTIONS(2298), 1, anon_sym_DOT, - ACTIONS(3100), 1, - anon_sym_as, - ACTIONS(3102), 1, + ACTIONS(3080), 1, anon_sym_BANG, - ACTIONS(3106), 1, + ACTIONS(3084), 1, anon_sym_LT, - ACTIONS(3108), 1, + ACTIONS(3086), 1, anon_sym_QMARK_DOT, - ACTIONS(3110), 1, - anon_sym_QMARK, - ACTIONS(3112), 1, + ACTIONS(3088), 1, anon_sym_AMP_AMP, - ACTIONS(3118), 1, + ACTIONS(3094), 1, anon_sym_AMP, - ACTIONS(3120), 1, + ACTIONS(3096), 1, anon_sym_PIPE, - ACTIONS(3124), 1, + ACTIONS(3100), 1, anon_sym_STAR_STAR, - ACTIONS(3128), 1, + ACTIONS(3113), 1, + anon_sym_as, + ACTIONS(3115), 1, + anon_sym_QMARK, + ACTIONS(3117), 1, anon_sym_QMARK_QMARK, - STATE(2501), 1, + STATE(2611), 1, sym_type_arguments, - ACTIONS(3114), 2, + ACTIONS(3090), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(3122), 2, + ACTIONS(3098), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3130), 2, + ACTIONS(3104), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1567), 2, + STATE(1529), 2, sym_template_string, sym_arguments, - ACTIONS(3098), 3, + ACTIONS(3078), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(3116), 3, + ACTIONS(3092), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(3058), 4, + ACTIONS(2995), 4, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - ACTIONS(3104), 4, + ACTIONS(3082), 4, anon_sym_in, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3126), 5, + ACTIONS(3102), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [44823] = 3, + [45277] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1017), 14, + ACTIONS(3242), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -103966,7 +104797,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1019), 28, + ACTIONS(3244), 28, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -103995,10 +104826,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [44873] = 3, + [45327] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1001), 14, + ACTIONS(3246), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -104013,7 +104844,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(999), 28, + ACTIONS(3248), 28, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -104042,83 +104873,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [44923] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(2157), 1, - anon_sym_LPAREN, - ACTIONS(2266), 1, - anon_sym_LBRACK, - ACTIONS(2282), 1, - anon_sym_DOT, - ACTIONS(3100), 1, - anon_sym_as, - ACTIONS(3102), 1, - anon_sym_BANG, - ACTIONS(3106), 1, - anon_sym_LT, - ACTIONS(3108), 1, - anon_sym_QMARK_DOT, - ACTIONS(3110), 1, - anon_sym_QMARK, - ACTIONS(3112), 1, - anon_sym_AMP_AMP, - ACTIONS(3118), 1, - anon_sym_AMP, - ACTIONS(3120), 1, - anon_sym_PIPE, - ACTIONS(3124), 1, - anon_sym_STAR_STAR, - ACTIONS(3128), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3224), 1, - anon_sym_COMMA, - ACTIONS(3227), 1, - anon_sym_RBRACE, - STATE(2501), 1, - sym_type_arguments, - ACTIONS(2993), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(3114), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(3122), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3130), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1567), 2, - sym_template_string, - sym_arguments, - ACTIONS(3098), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3116), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(3104), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3126), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [45021] = 3, + [45377] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2895), 15, + ACTIONS(3250), 14, anon_sym_STAR, - anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -104132,16 +104891,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2897), 27, - sym__automatic_semicolon, + ACTIONS(2943), 28, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -104160,10 +104919,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [45071] = 3, + anon_sym_implements, + [45427] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3229), 14, + ACTIONS(3252), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -104178,7 +104938,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3231), 28, + ACTIONS(3254), 28, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -104207,81 +104967,79 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [45121] = 27, + [45477] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(2157), 1, + ACTIONS(2173), 1, anon_sym_LPAREN, - ACTIONS(2266), 1, - anon_sym_LBRACK, ACTIONS(2282), 1, + anon_sym_LBRACK, + ACTIONS(2298), 1, anon_sym_DOT, - ACTIONS(3100), 1, - anon_sym_as, - ACTIONS(3102), 1, + ACTIONS(3080), 1, anon_sym_BANG, - ACTIONS(3106), 1, + ACTIONS(3084), 1, anon_sym_LT, - ACTIONS(3108), 1, + ACTIONS(3086), 1, anon_sym_QMARK_DOT, - ACTIONS(3110), 1, - anon_sym_QMARK, - ACTIONS(3112), 1, + ACTIONS(3088), 1, anon_sym_AMP_AMP, - ACTIONS(3118), 1, + ACTIONS(3094), 1, anon_sym_AMP, - ACTIONS(3120), 1, + ACTIONS(3096), 1, anon_sym_PIPE, - ACTIONS(3124), 1, + ACTIONS(3100), 1, anon_sym_STAR_STAR, - ACTIONS(3128), 1, + ACTIONS(3113), 1, + anon_sym_as, + ACTIONS(3115), 1, + anon_sym_QMARK, + ACTIONS(3117), 1, anon_sym_QMARK_QMARK, - ACTIONS(3233), 1, - anon_sym_COMMA, - ACTIONS(3236), 1, - anon_sym_RBRACE, - STATE(2501), 1, + STATE(2611), 1, sym_type_arguments, - ACTIONS(3002), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(3114), 2, + ACTIONS(3090), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(3122), 2, + ACTIONS(3098), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3130), 2, + ACTIONS(3104), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1567), 2, + STATE(1529), 2, sym_template_string, sym_arguments, - ACTIONS(3098), 3, + ACTIONS(3078), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(3116), 3, + ACTIONS(3092), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(3104), 4, + ACTIONS(3017), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + ACTIONS(3082), 4, anon_sym_in, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3126), 5, + ACTIONS(3102), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [45219] = 3, + [45571] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1113), 14, + ACTIONS(2929), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -104296,7 +105054,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1111), 28, + ACTIONS(2931), 28, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -104325,104 +105083,151 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [45269] = 3, + [45621] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(3238), 14, - anon_sym_STAR, + ACTIONS(479), 1, + anon_sym_BQUOTE, + ACTIONS(2161), 1, + anon_sym_LPAREN, + ACTIONS(2191), 1, + anon_sym_LBRACK, + ACTIONS(2193), 1, + anon_sym_DOT, + ACTIONS(2883), 1, + anon_sym_QMARK_DOT, + ACTIONS(2941), 1, + anon_sym_as, + ACTIONS(2945), 1, anon_sym_BANG, - anon_sym_in, + ACTIONS(2949), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(2951), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(2953), 1, + anon_sym_AMP_AMP, + ACTIONS(2959), 1, anon_sym_AMP, + ACTIONS(2961), 1, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3240), 28, - anon_sym_as, - anon_sym_LBRACE, + ACTIONS(2965), 1, + anon_sym_STAR_STAR, + ACTIONS(2969), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2991), 1, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(3108), 1, anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, + ACTIONS(3256), 1, + anon_sym_RPAREN, + STATE(2547), 1, + sym_type_arguments, + STATE(3234), 1, + sym_type_annotation, + ACTIONS(2955), 2, anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(2963), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2971), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1126), 2, + sym_template_string, + sym_arguments, + ACTIONS(2939), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(2957), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(2947), 4, + anon_sym_in, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2967), 5, 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_implements, - [45319] = 3, + [45721] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(3242), 14, - anon_sym_STAR, + ACTIONS(479), 1, + anon_sym_BQUOTE, + ACTIONS(2161), 1, + anon_sym_LPAREN, + ACTIONS(2191), 1, + anon_sym_LBRACK, + ACTIONS(2193), 1, + anon_sym_DOT, + ACTIONS(2883), 1, + anon_sym_QMARK_DOT, + ACTIONS(2941), 1, + anon_sym_as, + ACTIONS(2945), 1, anon_sym_BANG, - anon_sym_in, + ACTIONS(2949), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(2951), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(2953), 1, + anon_sym_AMP_AMP, + ACTIONS(2959), 1, anon_sym_AMP, + ACTIONS(2961), 1, anon_sym_PIPE, + ACTIONS(2965), 1, + anon_sym_STAR_STAR, + ACTIONS(2969), 1, + anon_sym_QMARK_QMARK, + STATE(2547), 1, + sym_type_arguments, + ACTIONS(2955), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(2963), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(2971), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1126), 2, + sym_template_string, + sym_arguments, + ACTIONS(2939), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(2957), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(2947), 4, + anon_sym_in, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3244), 28, - anon_sym_as, - anon_sym_LBRACE, + ACTIONS(3258), 4, 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_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, + ACTIONS(2967), 5, 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_implements, - [45369] = 3, + [45815] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3246), 14, + ACTIONS(3072), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -104437,7 +105242,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3248), 28, + ACTIONS(3074), 28, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -104466,57 +105271,81 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [45419] = 3, + [45865] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 14, - anon_sym_STAR, + ACTIONS(479), 1, + anon_sym_BQUOTE, + ACTIONS(2161), 1, + anon_sym_LPAREN, + ACTIONS(2191), 1, + anon_sym_LBRACK, + ACTIONS(2193), 1, + anon_sym_DOT, + ACTIONS(2413), 1, + anon_sym_COMMA, + ACTIONS(2883), 1, + anon_sym_QMARK_DOT, + ACTIONS(2941), 1, + anon_sym_as, + ACTIONS(2945), 1, anon_sym_BANG, - anon_sym_in, + ACTIONS(3264), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(3266), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(3268), 1, + anon_sym_AMP_AMP, + ACTIONS(3274), 1, anon_sym_AMP, + ACTIONS(3276), 1, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3033), 28, - anon_sym_as, + ACTIONS(3280), 1, + anon_sym_STAR_STAR, + ACTIONS(3284), 1, + anon_sym_QMARK_QMARK, + STATE(2520), 1, + aux_sym_extends_clause_repeat1, + STATE(2547), 1, + sym_type_arguments, + ACTIONS(2971), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3212), 2, 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_QMARK_DOT, - anon_sym_AMP_AMP, + anon_sym_implements, + ACTIONS(3270), 2, anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(3278), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1126), 2, + sym_template_string, + sym_arguments, + ACTIONS(3260), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(3272), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(3262), 4, + anon_sym_in, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3282), 5, 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_implements, - [45469] = 3, + [45963] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3029), 14, + ACTIONS(3286), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -104531,7 +105360,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3031), 28, + ACTIONS(3288), 28, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -104560,10 +105389,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [45519] = 3, + [46013] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2979), 14, + ACTIONS(3290), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -104578,7 +105407,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2981), 28, + ACTIONS(3053), 28, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -104607,267 +105436,328 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [45569] = 28, + [46063] = 28, ACTIONS(3), 1, sym_comment, ACTIONS(479), 1, anon_sym_BQUOTE, - ACTIONS(2145), 1, + ACTIONS(2161), 1, anon_sym_LPAREN, - ACTIONS(2175), 1, + ACTIONS(2191), 1, anon_sym_LBRACK, - ACTIONS(2177), 1, + ACTIONS(2193), 1, anon_sym_DOT, - ACTIONS(2863), 1, + ACTIONS(2883), 1, anon_sym_QMARK_DOT, - ACTIONS(2915), 1, + ACTIONS(2941), 1, anon_sym_as, - ACTIONS(2919), 1, + ACTIONS(2945), 1, anon_sym_BANG, - ACTIONS(2923), 1, + ACTIONS(2949), 1, anon_sym_LT, - ACTIONS(2925), 1, + ACTIONS(2951), 1, anon_sym_QMARK, - ACTIONS(2927), 1, + ACTIONS(2953), 1, anon_sym_AMP_AMP, - ACTIONS(2933), 1, + ACTIONS(2959), 1, anon_sym_AMP, - ACTIONS(2935), 1, + ACTIONS(2961), 1, anon_sym_PIPE, - ACTIONS(2939), 1, + ACTIONS(2965), 1, anon_sym_STAR_STAR, - ACTIONS(2943), 1, + ACTIONS(2969), 1, anon_sym_QMARK_QMARK, - ACTIONS(3025), 1, + ACTIONS(2991), 1, anon_sym_COMMA, - ACTIONS(3068), 1, + ACTIONS(3108), 1, anon_sym_COLON, - ACTIONS(3252), 1, + ACTIONS(3292), 1, anon_sym_RPAREN, - STATE(2565), 1, + STATE(2547), 1, sym_type_arguments, - STATE(3068), 1, + STATE(3217), 1, sym_type_annotation, - ACTIONS(2929), 2, + ACTIONS(2955), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(2937), 2, + ACTIONS(2963), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2945), 2, + ACTIONS(2971), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1128), 2, + STATE(1126), 2, sym_template_string, sym_arguments, - ACTIONS(2913), 3, + ACTIONS(2939), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(2931), 3, + ACTIONS(2957), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(2921), 4, + ACTIONS(2947), 4, anon_sym_in, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2941), 5, + ACTIONS(2967), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [45669] = 25, + [46163] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(2157), 1, + ACTIONS(2173), 1, anon_sym_LPAREN, - ACTIONS(2266), 1, - anon_sym_LBRACK, ACTIONS(2282), 1, + anon_sym_LBRACK, + ACTIONS(2298), 1, anon_sym_DOT, - ACTIONS(3100), 1, - anon_sym_as, - ACTIONS(3102), 1, + ACTIONS(3080), 1, anon_sym_BANG, - ACTIONS(3106), 1, + ACTIONS(3084), 1, anon_sym_LT, - ACTIONS(3108), 1, + ACTIONS(3086), 1, anon_sym_QMARK_DOT, - ACTIONS(3110), 1, - anon_sym_QMARK, - ACTIONS(3112), 1, - anon_sym_AMP_AMP, - ACTIONS(3118), 1, - anon_sym_AMP, - ACTIONS(3120), 1, - anon_sym_PIPE, - ACTIONS(3124), 1, + ACTIONS(3100), 1, anon_sym_STAR_STAR, - ACTIONS(3128), 1, - anon_sym_QMARK_QMARK, - STATE(2501), 1, + STATE(2611), 1, sym_type_arguments, - ACTIONS(3114), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(3122), 2, + ACTIONS(3098), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3130), 2, + ACTIONS(3104), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1567), 2, + STATE(1529), 2, sym_template_string, sym_arguments, - ACTIONS(3098), 3, + ACTIONS(3078), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(3116), 3, + ACTIONS(3092), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(2953), 4, + ACTIONS(2973), 7, + anon_sym_in, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2975), 14, sym__automatic_semicolon, + anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - ACTIONS(3104), 4, + 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, + [46241] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2925), 15, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3126), 5, + ACTIONS(2927), 27, + sym__automatic_semicolon, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, + 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, - [45763] = 25, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [46291] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(2157), 1, + ACTIONS(2173), 1, anon_sym_LPAREN, - ACTIONS(2266), 1, - anon_sym_LBRACK, ACTIONS(2282), 1, + anon_sym_LBRACK, + ACTIONS(2298), 1, anon_sym_DOT, - ACTIONS(3100), 1, - anon_sym_as, - ACTIONS(3102), 1, + ACTIONS(3080), 1, anon_sym_BANG, - ACTIONS(3106), 1, + ACTIONS(3084), 1, anon_sym_LT, - ACTIONS(3108), 1, + ACTIONS(3086), 1, anon_sym_QMARK_DOT, - ACTIONS(3110), 1, - anon_sym_QMARK, - ACTIONS(3112), 1, + ACTIONS(3088), 1, anon_sym_AMP_AMP, - ACTIONS(3118), 1, + ACTIONS(3094), 1, anon_sym_AMP, - ACTIONS(3120), 1, + ACTIONS(3096), 1, anon_sym_PIPE, - ACTIONS(3124), 1, + ACTIONS(3100), 1, anon_sym_STAR_STAR, - ACTIONS(3128), 1, + ACTIONS(3113), 1, + anon_sym_as, + ACTIONS(3115), 1, + anon_sym_QMARK, + ACTIONS(3117), 1, anon_sym_QMARK_QMARK, - STATE(2501), 1, + STATE(2611), 1, sym_type_arguments, - ACTIONS(3114), 2, + ACTIONS(3090), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(3122), 2, + ACTIONS(3098), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3130), 2, + ACTIONS(3104), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1567), 2, + STATE(1529), 2, sym_template_string, sym_arguments, - ACTIONS(3098), 3, + ACTIONS(3078), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(3116), 3, + ACTIONS(3092), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(2951), 4, + ACTIONS(3049), 4, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - ACTIONS(3104), 4, + ACTIONS(3082), 4, anon_sym_in, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3126), 5, + ACTIONS(3102), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [45857] = 3, + [46385] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(1091), 14, - anon_sym_STAR, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(2173), 1, + anon_sym_LPAREN, + ACTIONS(2282), 1, + anon_sym_LBRACK, + ACTIONS(2298), 1, + anon_sym_DOT, + ACTIONS(3080), 1, anon_sym_BANG, - anon_sym_in, + ACTIONS(3084), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(3086), 1, + anon_sym_QMARK_DOT, + ACTIONS(3088), 1, + anon_sym_AMP_AMP, + ACTIONS(3094), 1, anon_sym_AMP, + ACTIONS(3096), 1, anon_sym_PIPE, + ACTIONS(3100), 1, + anon_sym_STAR_STAR, + ACTIONS(3113), 1, + anon_sym_as, + ACTIONS(3115), 1, + anon_sym_QMARK, + ACTIONS(3117), 1, + anon_sym_QMARK_QMARK, + STATE(2611), 1, + sym_type_arguments, + ACTIONS(3090), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(3098), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1089), 28, + ACTIONS(3104), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1529), 2, + sym_template_string, + sym_arguments, + ACTIONS(3078), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(3092), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(3003), 4, sym__automatic_semicolon, - anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_else, - anon_sym_LPAREN, - anon_sym_while, 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, + ACTIONS(3082), 4, + anon_sym_in, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3102), 5, 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, - [45907] = 3, + [46479] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(911), 15, + ACTIONS(2907), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -104883,7 +105773,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(913), 27, + ACTIONS(2909), 27, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, @@ -104911,79 +105801,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [45957] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(2157), 1, - anon_sym_LPAREN, - ACTIONS(2266), 1, - anon_sym_LBRACK, - ACTIONS(2282), 1, - anon_sym_DOT, - ACTIONS(3100), 1, - anon_sym_as, - ACTIONS(3102), 1, - anon_sym_BANG, - ACTIONS(3106), 1, - anon_sym_LT, - ACTIONS(3108), 1, - anon_sym_QMARK_DOT, - ACTIONS(3110), 1, - anon_sym_QMARK, - ACTIONS(3112), 1, - anon_sym_AMP_AMP, - ACTIONS(3118), 1, - anon_sym_AMP, - ACTIONS(3120), 1, - anon_sym_PIPE, - ACTIONS(3124), 1, - anon_sym_STAR_STAR, - ACTIONS(3128), 1, - anon_sym_QMARK_QMARK, - STATE(2501), 1, - sym_type_arguments, - ACTIONS(3114), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(3122), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3130), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1567), 2, - sym_template_string, - sym_arguments, - ACTIONS(3098), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3116), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(2949), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - ACTIONS(3104), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3126), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [46051] = 3, + [46529] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3254), 14, + ACTIONS(3294), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -104998,7 +105819,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3256), 28, + ACTIONS(3296), 28, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -105027,11 +105848,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [46101] = 3, + [46579] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3258), 14, + ACTIONS(2897), 15, anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -105045,16 +105867,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2917), 28, + ACTIONS(2724), 27, + sym__automatic_semicolon, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_of, + anon_sym_SEMI, anon_sym_COLON, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -105073,11 +105895,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_implements, - [46151] = 3, + [46629] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3260), 14, + ACTIONS(1085), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -105092,7 +105913,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3262), 28, + ACTIONS(1087), 28, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -105121,104 +105942,151 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [46201] = 3, + [46679] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(1057), 14, - anon_sym_STAR, + ACTIONS(479), 1, + anon_sym_BQUOTE, + ACTIONS(2161), 1, + anon_sym_LPAREN, + ACTIONS(2191), 1, + anon_sym_LBRACK, + ACTIONS(2193), 1, + anon_sym_DOT, + ACTIONS(2883), 1, + anon_sym_QMARK_DOT, + ACTIONS(2941), 1, + anon_sym_as, + ACTIONS(2945), 1, anon_sym_BANG, - anon_sym_in, + ACTIONS(2949), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(2951), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(2953), 1, + anon_sym_AMP_AMP, + ACTIONS(2959), 1, anon_sym_AMP, + ACTIONS(2961), 1, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1059), 28, - anon_sym_as, - anon_sym_LBRACE, + ACTIONS(2965), 1, + anon_sym_STAR_STAR, + ACTIONS(2969), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2991), 1, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(3108), 1, anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, + ACTIONS(3298), 1, + anon_sym_RPAREN, + STATE(2547), 1, + sym_type_arguments, + STATE(3048), 1, + sym_type_annotation, + ACTIONS(2955), 2, anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(2963), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2971), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1126), 2, + sym_template_string, + sym_arguments, + ACTIONS(2939), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(2957), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(2947), 4, + anon_sym_in, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2967), 5, 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_implements, - [46251] = 3, + [46779] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(3264), 14, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3266), 28, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(2173), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, + ACTIONS(2282), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(2298), 1, anon_sym_DOT, + ACTIONS(3080), 1, + anon_sym_BANG, + ACTIONS(3084), 1, + anon_sym_LT, + ACTIONS(3086), 1, anon_sym_QMARK_DOT, + ACTIONS(3088), 1, anon_sym_AMP_AMP, + ACTIONS(3094), 1, + anon_sym_AMP, + ACTIONS(3096), 1, + anon_sym_PIPE, + ACTIONS(3100), 1, + anon_sym_STAR_STAR, + ACTIONS(3113), 1, + anon_sym_as, + ACTIONS(3115), 1, + anon_sym_QMARK, + ACTIONS(3117), 1, + anon_sym_QMARK_QMARK, + STATE(2611), 1, + sym_type_arguments, + ACTIONS(3090), 2, anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(3098), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3104), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1529), 2, + sym_template_string, + sym_arguments, + ACTIONS(3078), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(3092), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(3031), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + ACTIONS(3082), 4, + anon_sym_in, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3102), 5, 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_implements, - [46301] = 3, + [46873] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1087), 14, + ACTIONS(1113), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -105233,7 +106101,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1085), 28, + ACTIONS(1111), 28, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -105262,186 +106130,148 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [46351] = 28, + [46923] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(479), 1, + ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(2145), 1, + ACTIONS(2173), 1, anon_sym_LPAREN, - ACTIONS(2175), 1, + ACTIONS(2282), 1, anon_sym_LBRACK, - ACTIONS(2177), 1, + ACTIONS(2298), 1, anon_sym_DOT, - ACTIONS(2863), 1, - anon_sym_QMARK_DOT, - ACTIONS(2915), 1, - anon_sym_as, - ACTIONS(2919), 1, + ACTIONS(3080), 1, anon_sym_BANG, - ACTIONS(2923), 1, + ACTIONS(3084), 1, anon_sym_LT, - ACTIONS(2925), 1, - anon_sym_QMARK, - ACTIONS(2927), 1, + ACTIONS(3086), 1, + anon_sym_QMARK_DOT, + ACTIONS(3088), 1, anon_sym_AMP_AMP, - ACTIONS(2933), 1, + ACTIONS(3094), 1, anon_sym_AMP, - ACTIONS(2935), 1, + ACTIONS(3096), 1, anon_sym_PIPE, - ACTIONS(2939), 1, + ACTIONS(3100), 1, anon_sym_STAR_STAR, - ACTIONS(2943), 1, + ACTIONS(3113), 1, + anon_sym_as, + ACTIONS(3115), 1, + anon_sym_QMARK, + ACTIONS(3117), 1, anon_sym_QMARK_QMARK, - ACTIONS(3025), 1, - anon_sym_COMMA, - ACTIONS(3068), 1, - anon_sym_COLON, - ACTIONS(3268), 1, - anon_sym_RPAREN, - STATE(2565), 1, + STATE(2611), 1, sym_type_arguments, - STATE(3041), 1, - sym_type_annotation, - ACTIONS(2929), 2, + ACTIONS(3090), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(2937), 2, + ACTIONS(3098), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2945), 2, + ACTIONS(3104), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1128), 2, + STATE(1529), 2, sym_template_string, sym_arguments, - ACTIONS(2913), 3, + ACTIONS(3078), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(2931), 3, + ACTIONS(3092), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(2921), 4, + ACTIONS(3007), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + ACTIONS(3082), 4, anon_sym_in, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2941), 5, + ACTIONS(3102), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [46451] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3270), 14, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2949), 28, - 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_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_implements, - [46501] = 13, + [47017] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(2157), 1, + ACTIONS(2173), 1, anon_sym_LPAREN, - ACTIONS(2266), 1, - anon_sym_LBRACK, ACTIONS(2282), 1, + anon_sym_LBRACK, + ACTIONS(2298), 1, anon_sym_DOT, - ACTIONS(3102), 1, + ACTIONS(3080), 1, anon_sym_BANG, - ACTIONS(3108), 1, - anon_sym_QMARK_DOT, - ACTIONS(3132), 1, + ACTIONS(3084), 1, anon_sym_LT, - STATE(2501), 1, + ACTIONS(3086), 1, + anon_sym_QMARK_DOT, + ACTIONS(3088), 1, + anon_sym_AMP_AMP, + ACTIONS(3094), 1, + anon_sym_AMP, + ACTIONS(3096), 1, + anon_sym_PIPE, + ACTIONS(3100), 1, + anon_sym_STAR_STAR, + ACTIONS(3113), 1, + anon_sym_as, + ACTIONS(3115), 1, + anon_sym_QMARK, + ACTIONS(3117), 1, + anon_sym_QMARK_QMARK, + STATE(2611), 1, sym_type_arguments, - ACTIONS(3130), 2, + ACTIONS(3090), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(3098), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3104), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1567), 2, + STATE(1529), 2, sym_template_string, sym_arguments, - ACTIONS(3037), 12, + ACTIONS(3078), 3, anon_sym_STAR, - anon_sym_in, - anon_sym_GT, anon_sym_SLASH, - anon_sym_QMARK, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3039), 18, + ACTIONS(3092), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(3005), 4, sym__automatic_semicolon, - anon_sym_as, 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, + ACTIONS(3082), 4, + anon_sym_in, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3102), 5, 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, - [46571] = 3, + [47111] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3272), 14, + ACTIONS(997), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -105456,7 +106286,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3274), 28, + ACTIONS(995), 28, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -105485,10 +106315,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [46621] = 3, + [47161] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3276), 14, + ACTIONS(939), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -105503,7 +106333,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2951), 28, + ACTIONS(937), 28, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -105532,10 +106362,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [46671] = 3, + [47211] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3278), 14, + ACTIONS(3300), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -105550,7 +106380,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2953), 28, + ACTIONS(3302), 28, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -105579,10 +106409,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [46721] = 3, + [47261] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3280), 14, + ACTIONS(1005), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -105597,7 +106427,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3282), 28, + ACTIONS(1003), 28, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -105626,10 +106456,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [46771] = 3, + [47311] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3284), 14, + ACTIONS(947), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -105644,7 +106474,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3286), 28, + ACTIONS(945), 28, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -105673,10 +106503,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [46821] = 3, + [47361] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3288), 14, + ACTIONS(3304), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -105691,7 +106521,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3290), 28, + ACTIONS(3005), 28, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -105720,10 +106550,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [46871] = 3, + [47411] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3292), 14, + ACTIONS(3306), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -105738,7 +106568,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3294), 28, + ACTIONS(3007), 28, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -105767,11 +106597,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [46921] = 3, + [47461] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3296), 14, + ACTIONS(911), 15, anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -105785,16 +106616,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3298), 28, + ACTIONS(913), 27, + sym__automatic_semicolon, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_of, + anon_sym_SEMI, anon_sym_COLON, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -105813,13 +106644,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_implements, - [46971] = 3, + [47511] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2884), 15, + ACTIONS(3308), 14, anon_sym_STAR, - anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -105833,16 +106662,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2692), 27, - sym__automatic_semicolon, + ACTIONS(3310), 28, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -105861,12 +106690,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [47021] = 3, + anon_sym_implements, + [47561] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2899), 15, + ACTIONS(3312), 14, anon_sym_STAR, - anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -105880,16 +106709,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2901), 27, - sym__automatic_semicolon, + ACTIONS(3031), 28, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -105908,10 +106737,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [47071] = 3, + anon_sym_implements, + [47611] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3300), 14, + ACTIONS(3314), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -105926,7 +106756,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3302), 28, + ACTIONS(3316), 28, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -105955,10 +106785,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [47121] = 3, + [47661] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3304), 14, + ACTIONS(3318), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -105973,7 +106803,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3306), 28, + ACTIONS(3320), 28, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -106002,10 +106832,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [47171] = 3, + [47711] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(965), 14, + ACTIONS(3322), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -106020,7 +106850,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(967), 28, + ACTIONS(3324), 28, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -106049,11 +106879,23 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [47221] = 3, + [47761] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1067), 14, + ACTIONS(1507), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1505), 7, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(911), 13, anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -106061,22 +106903,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_QMARK, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1069), 28, + ACTIONS(913), 20, 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_QMARK_DOT, anon_sym_AMP_AMP, @@ -106095,11 +106928,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_implements, - [47271] = 3, + [47815] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1105), 14, + ACTIONS(3326), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -106114,7 +106946,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1107), 28, + ACTIONS(3328), 28, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -106143,10 +106975,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [47321] = 3, + [47865] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(941), 14, + ACTIONS(3330), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -106161,7 +106993,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(943), 28, + ACTIONS(3332), 28, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -106190,10 +107022,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [47371] = 3, + [47915] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3308), 14, + ACTIONS(3334), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -106208,7 +107040,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3310), 28, + ACTIONS(3336), 28, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -106237,10 +107069,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [47421] = 3, + [47965] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3312), 14, + ACTIONS(993), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -106255,7 +107087,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3314), 28, + ACTIONS(991), 28, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -106284,10 +107116,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [47471] = 3, + [48015] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3316), 14, + ACTIONS(1009), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -106302,16 +107134,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3318), 28, + ACTIONS(1007), 27, + sym__automatic_semicolon, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_else, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_while, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -106330,58 +107162,165 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_implements, - [47521] = 3, + [48064] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(1027), 14, - anon_sym_STAR, + ACTIONS(715), 1, + anon_sym_BQUOTE, + ACTIONS(2177), 1, + anon_sym_LPAREN, + ACTIONS(2314), 1, + anon_sym_LBRACK, + ACTIONS(2470), 1, + anon_sym_DOT, + ACTIONS(3178), 1, + anon_sym_as, + ACTIONS(3182), 1, anon_sym_BANG, - anon_sym_in, + ACTIONS(3186), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(3188), 1, + anon_sym_QMARK_DOT, + ACTIONS(3190), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(3192), 1, + anon_sym_AMP_AMP, + ACTIONS(3198), 1, anon_sym_AMP, + ACTIONS(3200), 1, anon_sym_PIPE, + ACTIONS(3204), 1, + anon_sym_STAR_STAR, + ACTIONS(3208), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3338), 1, + anon_sym_LBRACE, + STATE(2592), 1, + sym_type_arguments, + ACTIONS(3051), 2, + anon_sym_COMMA, + anon_sym_LBRACE_PIPE, + ACTIONS(3194), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(3202), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(3210), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1669), 2, + sym_template_string, + sym_arguments, + ACTIONS(3176), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(3196), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(3184), 4, + anon_sym_in, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1029), 28, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(3206), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [48159] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(2173), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, + ACTIONS(2282), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(2298), 1, anon_sym_DOT, + ACTIONS(3080), 1, + anon_sym_BANG, + ACTIONS(3084), 1, + anon_sym_LT, + ACTIONS(3086), 1, anon_sym_QMARK_DOT, + ACTIONS(3088), 1, anon_sym_AMP_AMP, + ACTIONS(3094), 1, + anon_sym_AMP, + ACTIONS(3096), 1, + anon_sym_PIPE, + ACTIONS(3100), 1, + anon_sym_STAR_STAR, + ACTIONS(3113), 1, + anon_sym_as, + ACTIONS(3115), 1, + anon_sym_QMARK, + ACTIONS(3117), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3340), 1, + anon_sym_COMMA, + STATE(2611), 1, + sym_type_arguments, + ACTIONS(3090), 2, anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(3098), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3104), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3342), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(1529), 2, + sym_template_string, + sym_arguments, + ACTIONS(3078), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(3092), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(3082), 4, + anon_sym_in, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3102), 5, 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_implements, - [47571] = 3, + [48254] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(955), 14, + ACTIONS(2191), 1, + anon_sym_LBRACK, + ACTIONS(2193), 1, + anon_sym_DOT, + ACTIONS(2195), 1, + anon_sym_QMARK_DOT, + ACTIONS(2997), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(3000), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1547), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(1037), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -106390,24 +107329,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_QMARK, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(957), 28, + ACTIONS(1039), 18, 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_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -106424,15 +107352,34 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_implements, - [47621] = 3, + [48315] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(975), 14, - anon_sym_STAR, + ACTIONS(479), 1, + anon_sym_BQUOTE, + ACTIONS(2161), 1, + anon_sym_LPAREN, + ACTIONS(2191), 1, + anon_sym_LBRACK, + ACTIONS(2193), 1, + anon_sym_DOT, + ACTIONS(2883), 1, + anon_sym_QMARK_DOT, + ACTIONS(2945), 1, anon_sym_BANG, - anon_sym_in, + ACTIONS(3344), 1, anon_sym_LT, + STATE(2547), 1, + sym_type_arguments, + ACTIONS(2971), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1126), 2, + sym_template_string, + sym_arguments, + ACTIONS(3024), 12, + anon_sym_STAR, + anon_sym_in, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -106443,18 +107390,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(977), 28, + ACTIONS(3026), 17, 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_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -106468,65 +107407,103 @@ static 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_implements, - [47671] = 3, + [48384] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(1047), 14, - anon_sym_STAR, + ACTIONS(479), 1, + anon_sym_BQUOTE, + ACTIONS(2161), 1, + anon_sym_LPAREN, + ACTIONS(2191), 1, + anon_sym_LBRACK, + ACTIONS(2193), 1, + anon_sym_DOT, + ACTIONS(2883), 1, + anon_sym_QMARK_DOT, + ACTIONS(2941), 1, + anon_sym_as, + ACTIONS(2945), 1, anon_sym_BANG, - anon_sym_in, + ACTIONS(3264), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(3266), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(3268), 1, + anon_sym_AMP_AMP, + ACTIONS(3274), 1, anon_sym_AMP, + ACTIONS(3276), 1, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1049), 28, - anon_sym_as, + ACTIONS(3280), 1, + anon_sym_STAR_STAR, + ACTIONS(3284), 1, + anon_sym_QMARK_QMARK, + STATE(2547), 1, + sym_type_arguments, + ACTIONS(2971), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3270), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(3278), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1126), 2, + sym_template_string, + sym_arguments, + ACTIONS(3055), 3, 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_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_implements, + ACTIONS(3260), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(3272), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(3262), 4, + anon_sym_in, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3282), 5, 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_implements, - [47721] = 3, + [48477] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(985), 14, - anon_sym_STAR, + ACTIONS(479), 1, + anon_sym_BQUOTE, + ACTIONS(2161), 1, + anon_sym_LPAREN, + ACTIONS(2191), 1, + anon_sym_LBRACK, + ACTIONS(2193), 1, + anon_sym_DOT, + ACTIONS(2883), 1, + anon_sym_QMARK_DOT, + ACTIONS(2945), 1, anon_sym_BANG, - anon_sym_in, + ACTIONS(3344), 1, anon_sym_LT, + STATE(2547), 1, + sym_type_arguments, + ACTIONS(2971), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1126), 2, + sym_template_string, + sym_arguments, + ACTIONS(3024), 12, + anon_sym_STAR, + anon_sym_in, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -106537,18 +107514,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(987), 28, + ACTIONS(3026), 17, 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_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -106562,155 +107531,197 @@ static 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_implements, - [47771] = 28, + [48546] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(479), 1, anon_sym_BQUOTE, - ACTIONS(2145), 1, + ACTIONS(2161), 1, anon_sym_LPAREN, - ACTIONS(2175), 1, + ACTIONS(2191), 1, anon_sym_LBRACK, - ACTIONS(2177), 1, + ACTIONS(2193), 1, anon_sym_DOT, - ACTIONS(2863), 1, + ACTIONS(2883), 1, anon_sym_QMARK_DOT, - ACTIONS(2915), 1, + ACTIONS(2941), 1, anon_sym_as, - ACTIONS(2919), 1, + ACTIONS(2945), 1, anon_sym_BANG, - ACTIONS(2923), 1, + ACTIONS(3264), 1, anon_sym_LT, - ACTIONS(2925), 1, + ACTIONS(3266), 1, anon_sym_QMARK, - ACTIONS(2927), 1, + ACTIONS(3268), 1, anon_sym_AMP_AMP, - ACTIONS(2933), 1, + ACTIONS(3274), 1, anon_sym_AMP, - ACTIONS(2935), 1, + ACTIONS(3276), 1, anon_sym_PIPE, - ACTIONS(2939), 1, + ACTIONS(3280), 1, anon_sym_STAR_STAR, - ACTIONS(2943), 1, + ACTIONS(3284), 1, anon_sym_QMARK_QMARK, - ACTIONS(3025), 1, - anon_sym_COMMA, - ACTIONS(3068), 1, - anon_sym_COLON, - ACTIONS(3320), 1, - anon_sym_RPAREN, - STATE(2565), 1, + STATE(2547), 1, sym_type_arguments, - STATE(3214), 1, - sym_type_annotation, - ACTIONS(2929), 2, + ACTIONS(2971), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3270), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(2937), 2, + ACTIONS(3278), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2945), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1128), 2, + STATE(1126), 2, sym_template_string, sym_arguments, - ACTIONS(2913), 3, + ACTIONS(3260), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(2931), 3, + ACTIONS(3272), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(2921), 4, + ACTIONS(3347), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + ACTIONS(3262), 4, anon_sym_in, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2941), 5, + ACTIONS(3282), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [47871] = 25, + [48639] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(3349), 1, + sym__automatic_semicolon, + ACTIONS(909), 14, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(907), 26, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_else, + anon_sym_LPAREN, + anon_sym_while, + 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, - ACTIONS(2157), 1, + [48690] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(715), 1, + anon_sym_BQUOTE, + ACTIONS(2177), 1, anon_sym_LPAREN, - ACTIONS(2266), 1, + ACTIONS(2314), 1, anon_sym_LBRACK, - ACTIONS(2282), 1, + ACTIONS(2470), 1, anon_sym_DOT, - ACTIONS(3100), 1, + ACTIONS(3178), 1, anon_sym_as, - ACTIONS(3102), 1, + ACTIONS(3182), 1, anon_sym_BANG, - ACTIONS(3106), 1, + ACTIONS(3186), 1, anon_sym_LT, - ACTIONS(3108), 1, + ACTIONS(3188), 1, anon_sym_QMARK_DOT, - ACTIONS(3110), 1, + ACTIONS(3190), 1, anon_sym_QMARK, - ACTIONS(3112), 1, + ACTIONS(3192), 1, anon_sym_AMP_AMP, - ACTIONS(3118), 1, + ACTIONS(3198), 1, anon_sym_AMP, - ACTIONS(3120), 1, + ACTIONS(3200), 1, anon_sym_PIPE, - ACTIONS(3124), 1, + ACTIONS(3204), 1, anon_sym_STAR_STAR, - ACTIONS(3128), 1, + ACTIONS(3208), 1, anon_sym_QMARK_QMARK, - STATE(2501), 1, + ACTIONS(3351), 1, + anon_sym_LBRACE, + STATE(2592), 1, sym_type_arguments, - ACTIONS(3114), 2, + ACTIONS(3049), 2, + anon_sym_COMMA, + anon_sym_LBRACE_PIPE, + ACTIONS(3194), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(3122), 2, + ACTIONS(3202), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3130), 2, + ACTIONS(3210), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1567), 2, + STATE(1669), 2, sym_template_string, sym_arguments, - ACTIONS(3098), 3, + ACTIONS(3176), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(3116), 3, + ACTIONS(3196), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(3060), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - ACTIONS(3104), 4, + ACTIONS(3184), 4, anon_sym_in, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3126), 5, + ACTIONS(3206), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [47965] = 3, + [48785] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1037), 14, + ACTIONS(3353), 1, + sym__automatic_semicolon, + ACTIONS(939), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -106725,16 +107736,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1039), 28, + ACTIONS(937), 26, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_else, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_while, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -106753,211 +107763,213 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_implements, - [48015] = 19, + [48836] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(479), 1, - anon_sym_BQUOTE, - ACTIONS(2145), 1, - anon_sym_LPAREN, - ACTIONS(2175), 1, - anon_sym_LBRACK, - ACTIONS(2177), 1, - anon_sym_DOT, - ACTIONS(2863), 1, - anon_sym_QMARK_DOT, - ACTIONS(2919), 1, + ACTIONS(939), 14, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(3076), 1, + anon_sym_in, anon_sym_LT, - ACTIONS(3092), 1, - anon_sym_STAR_STAR, - STATE(2565), 1, - sym_type_arguments, - ACTIONS(2945), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3090), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1128), 2, - sym_template_string, - sym_arguments, - ACTIONS(2997), 3, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, + anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3070), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3084), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(3074), 4, - anon_sym_in, - anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3094), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(2995), 8, + ACTIONS(937), 27, + sym__automatic_semicolon, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_else, + anon_sym_LPAREN, + anon_sym_while, + 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_implements, - [48096] = 25, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [48885] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(479), 1, anon_sym_BQUOTE, - ACTIONS(2145), 1, + ACTIONS(1133), 1, + anon_sym_COMMA, + ACTIONS(2161), 1, anon_sym_LPAREN, - ACTIONS(2175), 1, + ACTIONS(2191), 1, anon_sym_LBRACK, - ACTIONS(2177), 1, + ACTIONS(2193), 1, anon_sym_DOT, - ACTIONS(2863), 1, + ACTIONS(2883), 1, anon_sym_QMARK_DOT, - ACTIONS(2915), 1, + ACTIONS(2941), 1, anon_sym_as, - ACTIONS(2919), 1, + ACTIONS(2945), 1, anon_sym_BANG, - ACTIONS(2923), 1, + ACTIONS(2949), 1, anon_sym_LT, - ACTIONS(2925), 1, + ACTIONS(2951), 1, anon_sym_QMARK, - ACTIONS(2927), 1, + ACTIONS(2953), 1, anon_sym_AMP_AMP, - ACTIONS(2933), 1, + ACTIONS(2959), 1, anon_sym_AMP, - ACTIONS(2935), 1, + ACTIONS(2961), 1, anon_sym_PIPE, - ACTIONS(2939), 1, + ACTIONS(2965), 1, anon_sym_STAR_STAR, - ACTIONS(2943), 1, + ACTIONS(2969), 1, anon_sym_QMARK_QMARK, - STATE(2565), 1, + ACTIONS(3355), 1, + anon_sym_RPAREN, + STATE(2547), 1, sym_type_arguments, - ACTIONS(2929), 2, + STATE(2650), 1, + aux_sym_array_repeat1, + ACTIONS(2955), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(2937), 2, + ACTIONS(2963), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2945), 2, + ACTIONS(2971), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1128), 2, + STATE(1126), 2, sym_template_string, sym_arguments, - ACTIONS(2913), 3, + ACTIONS(2939), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(2931), 3, + ACTIONS(2957), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(3322), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - ACTIONS(2921), 4, + ACTIONS(2947), 4, anon_sym_in, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2941), 5, + ACTIONS(2967), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [48189] = 27, + [48982] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(479), 1, anon_sym_BQUOTE, - ACTIONS(1143), 1, + ACTIONS(1133), 1, anon_sym_COMMA, - ACTIONS(2145), 1, + ACTIONS(2161), 1, anon_sym_LPAREN, - ACTIONS(2175), 1, + ACTIONS(2191), 1, anon_sym_LBRACK, - ACTIONS(2177), 1, + ACTIONS(2193), 1, anon_sym_DOT, - ACTIONS(2863), 1, + ACTIONS(2883), 1, anon_sym_QMARK_DOT, - ACTIONS(2915), 1, + ACTIONS(2941), 1, anon_sym_as, - ACTIONS(2919), 1, + ACTIONS(2945), 1, anon_sym_BANG, - ACTIONS(2923), 1, + ACTIONS(2949), 1, anon_sym_LT, - ACTIONS(2925), 1, + ACTIONS(2951), 1, anon_sym_QMARK, - ACTIONS(2927), 1, + ACTIONS(2953), 1, anon_sym_AMP_AMP, - ACTIONS(2933), 1, + ACTIONS(2959), 1, anon_sym_AMP, - ACTIONS(2935), 1, + ACTIONS(2961), 1, anon_sym_PIPE, - ACTIONS(2939), 1, + ACTIONS(2965), 1, anon_sym_STAR_STAR, - ACTIONS(2943), 1, + ACTIONS(2969), 1, anon_sym_QMARK_QMARK, - ACTIONS(3324), 1, + ACTIONS(3357), 1, anon_sym_RBRACK, - STATE(2565), 1, + STATE(2547), 1, sym_type_arguments, - STATE(2675), 1, + STATE(2699), 1, aux_sym_array_repeat1, - ACTIONS(2929), 2, + ACTIONS(2955), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(2937), 2, + ACTIONS(2963), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2945), 2, + ACTIONS(2971), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1128), 2, + STATE(1126), 2, sym_template_string, sym_arguments, - ACTIONS(2913), 3, + ACTIONS(2939), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(2931), 3, + ACTIONS(2957), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(2921), 4, + ACTIONS(2947), 4, anon_sym_in, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2941), 5, + ACTIONS(2967), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [48286] = 3, + [49079] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1113), 14, + ACTIONS(2191), 1, + anon_sym_LBRACK, + ACTIONS(2193), 1, + anon_sym_DOT, + ACTIONS(2195), 1, + anon_sym_QMARK_DOT, + ACTIONS(3037), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(3040), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1712), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(1037), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -106966,24 +107978,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_QMARK, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1111), 27, - sym__automatic_semicolon, + ACTIONS(1039), 18, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_else, anon_sym_LPAREN, - anon_sym_while, - 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, @@ -107000,35 +108001,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [48335] = 13, + [49140] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(573), 1, - anon_sym_BQUOTE, - ACTIONS(2161), 1, - anon_sym_LPAREN, - ACTIONS(2379), 1, - anon_sym_LBRACK, - ACTIONS(2410), 1, - anon_sym_DOT, - ACTIONS(3170), 1, - anon_sym_BANG, - ACTIONS(3176), 1, - anon_sym_QMARK_DOT, - ACTIONS(3326), 1, - anon_sym_LT, - STATE(2574), 1, - sym_type_arguments, - ACTIONS(3198), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1643), 2, - sym_template_string, - sym_arguments, - ACTIONS(3037), 13, + ACTIONS(997), 14, anon_sym_STAR, - anon_sym_LBRACE, + anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -107039,9 +108019,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3039), 16, + ACTIONS(995), 27, + sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_else, + anon_sym_LPAREN, + anon_sym_while, + 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, @@ -107055,36 +108044,21 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_LBRACE_PIPE, - [48404] = 13, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [49189] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(573), 1, - anon_sym_BQUOTE, - ACTIONS(2161), 1, - anon_sym_LPAREN, - ACTIONS(2379), 1, - anon_sym_LBRACK, - ACTIONS(2410), 1, + ACTIONS(3359), 1, anon_sym_DOT, - ACTIONS(3170), 1, - anon_sym_BANG, - ACTIONS(3176), 1, - anon_sym_QMARK_DOT, - ACTIONS(3326), 1, - anon_sym_LT, - STATE(2574), 1, + STATE(1403), 1, sym_type_arguments, - ACTIONS(3198), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1643), 2, - sym_template_string, - sym_arguments, - ACTIONS(3037), 13, + ACTIONS(1503), 14, anon_sym_STAR, - anon_sym_LBRACE, + anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -107095,9 +108069,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3039), 16, + ACTIONS(1501), 25, + sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -107111,238 +108091,245 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_LBRACE_PIPE, - [48473] = 26, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + [49242] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(573), 1, + ACTIONS(479), 1, anon_sym_BQUOTE, ACTIONS(2161), 1, anon_sym_LPAREN, - ACTIONS(2379), 1, + ACTIONS(2191), 1, anon_sym_LBRACK, - ACTIONS(2410), 1, + ACTIONS(2193), 1, anon_sym_DOT, - ACTIONS(3166), 1, + ACTIONS(2883), 1, + anon_sym_QMARK_DOT, + ACTIONS(2941), 1, anon_sym_as, - ACTIONS(3170), 1, + ACTIONS(2945), 1, anon_sym_BANG, - ACTIONS(3174), 1, + ACTIONS(3264), 1, anon_sym_LT, - ACTIONS(3176), 1, - anon_sym_QMARK_DOT, - ACTIONS(3178), 1, + ACTIONS(3266), 1, anon_sym_QMARK, - ACTIONS(3180), 1, + ACTIONS(3268), 1, anon_sym_AMP_AMP, - ACTIONS(3186), 1, + ACTIONS(3274), 1, anon_sym_AMP, - ACTIONS(3188), 1, + ACTIONS(3276), 1, anon_sym_PIPE, - ACTIONS(3192), 1, + ACTIONS(3280), 1, anon_sym_STAR_STAR, - ACTIONS(3196), 1, + ACTIONS(3284), 1, anon_sym_QMARK_QMARK, - ACTIONS(3329), 1, - anon_sym_LBRACE, - STATE(2574), 1, + STATE(2547), 1, sym_type_arguments, - ACTIONS(2991), 2, - anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - ACTIONS(3182), 2, + ACTIONS(2971), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3270), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(3190), 2, + ACTIONS(3278), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3198), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1643), 2, + STATE(1126), 2, sym_template_string, sym_arguments, - ACTIONS(3164), 3, + ACTIONS(3049), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + ACTIONS(3260), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(3184), 3, + ACTIONS(3272), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(3172), 4, + ACTIONS(3262), 4, anon_sym_in, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3194), 5, + ACTIONS(3282), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [48568] = 26, + [49335] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(573), 1, + ACTIONS(479), 1, anon_sym_BQUOTE, + ACTIONS(1133), 1, + anon_sym_COMMA, ACTIONS(2161), 1, anon_sym_LPAREN, - ACTIONS(2379), 1, + ACTIONS(2191), 1, anon_sym_LBRACK, - ACTIONS(2410), 1, + ACTIONS(2193), 1, anon_sym_DOT, - ACTIONS(3166), 1, + ACTIONS(2883), 1, + anon_sym_QMARK_DOT, + ACTIONS(2941), 1, anon_sym_as, - ACTIONS(3170), 1, + ACTIONS(2945), 1, anon_sym_BANG, - ACTIONS(3174), 1, + ACTIONS(2949), 1, anon_sym_LT, - ACTIONS(3176), 1, - anon_sym_QMARK_DOT, - ACTIONS(3178), 1, + ACTIONS(2951), 1, anon_sym_QMARK, - ACTIONS(3180), 1, + ACTIONS(2953), 1, anon_sym_AMP_AMP, - ACTIONS(3186), 1, + ACTIONS(2959), 1, anon_sym_AMP, - ACTIONS(3188), 1, + ACTIONS(2961), 1, anon_sym_PIPE, - ACTIONS(3192), 1, + ACTIONS(2965), 1, anon_sym_STAR_STAR, - ACTIONS(3196), 1, + ACTIONS(2969), 1, anon_sym_QMARK_QMARK, - ACTIONS(3331), 1, - anon_sym_LBRACE, - STATE(2574), 1, + ACTIONS(3361), 1, + anon_sym_RPAREN, + STATE(2547), 1, sym_type_arguments, - ACTIONS(3058), 2, - anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - ACTIONS(3182), 2, + STATE(2619), 1, + aux_sym_array_repeat1, + ACTIONS(2955), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(3190), 2, + ACTIONS(2963), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3198), 2, + ACTIONS(2971), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1643), 2, + STATE(1126), 2, sym_template_string, sym_arguments, - ACTIONS(3164), 3, + ACTIONS(2939), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(3184), 3, + ACTIONS(2957), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(3172), 4, + ACTIONS(2947), 4, anon_sym_in, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3194), 5, + ACTIONS(2967), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [48663] = 27, + [49432] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(479), 1, + ACTIONS(715), 1, anon_sym_BQUOTE, - ACTIONS(1143), 1, - anon_sym_COMMA, - ACTIONS(2145), 1, + ACTIONS(2177), 1, anon_sym_LPAREN, - ACTIONS(2175), 1, + ACTIONS(2314), 1, anon_sym_LBRACK, - ACTIONS(2177), 1, + ACTIONS(2470), 1, anon_sym_DOT, - ACTIONS(2863), 1, - anon_sym_QMARK_DOT, - ACTIONS(2915), 1, + ACTIONS(3178), 1, anon_sym_as, - ACTIONS(2919), 1, + ACTIONS(3182), 1, anon_sym_BANG, - ACTIONS(2923), 1, + ACTIONS(3186), 1, anon_sym_LT, - ACTIONS(2925), 1, + ACTIONS(3188), 1, + anon_sym_QMARK_DOT, + ACTIONS(3190), 1, anon_sym_QMARK, - ACTIONS(2927), 1, + ACTIONS(3192), 1, anon_sym_AMP_AMP, - ACTIONS(2933), 1, + ACTIONS(3198), 1, anon_sym_AMP, - ACTIONS(2935), 1, + ACTIONS(3200), 1, anon_sym_PIPE, - ACTIONS(2939), 1, + ACTIONS(3204), 1, anon_sym_STAR_STAR, - ACTIONS(2943), 1, + ACTIONS(3208), 1, anon_sym_QMARK_QMARK, - ACTIONS(3333), 1, - anon_sym_RBRACK, - STATE(2565), 1, + ACTIONS(3363), 1, + anon_sym_LBRACE, + STATE(2592), 1, sym_type_arguments, - STATE(2605), 1, - aux_sym_array_repeat1, - ACTIONS(2929), 2, + ACTIONS(3194), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(2937), 2, + ACTIONS(3202), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2945), 2, + ACTIONS(3210), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1128), 2, + ACTIONS(3347), 2, + anon_sym_COMMA, + anon_sym_LBRACE_PIPE, + STATE(1669), 2, sym_template_string, sym_arguments, - ACTIONS(2913), 3, + ACTIONS(3176), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(2931), 3, + ACTIONS(3196), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(2921), 4, + ACTIONS(3184), 4, anon_sym_in, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2941), 5, + ACTIONS(3206), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [48760] = 11, + [49527] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(2161), 1, + ACTIONS(715), 1, + anon_sym_BQUOTE, + ACTIONS(2177), 1, anon_sym_LPAREN, - ACTIONS(2163), 1, - anon_sym_LT, - ACTIONS(2379), 1, + ACTIONS(2314), 1, anon_sym_LBRACK, - ACTIONS(2385), 1, - anon_sym_QMARK_DOT, - ACTIONS(2410), 1, + ACTIONS(2470), 1, anon_sym_DOT, - ACTIONS(2857), 1, - anon_sym_EQ, - STATE(1556), 1, + ACTIONS(3182), 1, + anon_sym_BANG, + ACTIONS(3188), 1, + anon_sym_QMARK_DOT, + ACTIONS(3365), 1, + anon_sym_LT, + STATE(2592), 1, sym_type_arguments, - STATE(1648), 1, + ACTIONS(3210), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1669), 2, + sym_template_string, sym_arguments, - ACTIONS(2169), 14, + ACTIONS(3024), 13, anon_sym_STAR, anon_sym_LBRACE, - anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_SLASH, @@ -107354,7 +108341,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2173), 19, + ACTIONS(3026), 16, anon_sym_as, anon_sym_COMMA, anon_sym_AMP_AMP, @@ -107370,32 +108357,18 @@ static 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_LBRACE_PIPE, - [48825] = 11, + [49596] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2161), 1, - anon_sym_LPAREN, - ACTIONS(2163), 1, + ACTIONS(3368), 1, anon_sym_LT, - ACTIONS(2379), 1, - anon_sym_LBRACK, - ACTIONS(2385), 1, - anon_sym_QMARK_DOT, - ACTIONS(2410), 1, + ACTIONS(3371), 1, anon_sym_DOT, - ACTIONS(2855), 1, - anon_sym_EQ, - STATE(1556), 1, + STATE(1403), 1, sym_type_arguments, - STATE(1648), 1, - sym_arguments, - ACTIONS(2169), 14, + ACTIONS(1704), 13, anon_sym_STAR, - anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -107408,9 +108381,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2173), 19, + ACTIONS(1702), 25, + sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -107427,103 +108406,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, - [48890] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(479), 1, - anon_sym_BQUOTE, - ACTIONS(1143), 1, - anon_sym_COMMA, - ACTIONS(2145), 1, - anon_sym_LPAREN, - ACTIONS(2175), 1, - anon_sym_LBRACK, - ACTIONS(2177), 1, - anon_sym_DOT, - ACTIONS(2863), 1, - anon_sym_QMARK_DOT, - ACTIONS(2915), 1, - anon_sym_as, - ACTIONS(2919), 1, - anon_sym_BANG, - ACTIONS(2923), 1, - anon_sym_LT, - ACTIONS(2925), 1, - anon_sym_QMARK, - ACTIONS(2927), 1, - anon_sym_AMP_AMP, - ACTIONS(2933), 1, - anon_sym_AMP, - ACTIONS(2935), 1, - anon_sym_PIPE, - ACTIONS(2939), 1, - anon_sym_STAR_STAR, - ACTIONS(2943), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3335), 1, - anon_sym_RBRACK, - STATE(2565), 1, - sym_type_arguments, - STATE(2681), 1, - aux_sym_array_repeat1, - ACTIONS(2929), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(2937), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2945), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1128), 2, - sym_template_string, - sym_arguments, - ACTIONS(2913), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(2931), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(2921), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2941), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [48987] = 12, + anon_sym_extends, + [49651] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(573), 1, - anon_sym_BQUOTE, - ACTIONS(2161), 1, - anon_sym_LPAREN, - ACTIONS(2379), 1, - anon_sym_LBRACK, - ACTIONS(2410), 1, - anon_sym_DOT, - ACTIONS(3176), 1, - anon_sym_QMARK_DOT, - ACTIONS(3326), 1, + ACTIONS(3373), 1, anon_sym_LT, - STATE(2574), 1, + STATE(1392), 1, sym_type_arguments, - ACTIONS(3198), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1643), 2, - sym_template_string, - sym_arguments, - ACTIONS(3037), 14, + ACTIONS(1714), 13, anon_sym_STAR, - anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -107536,9 +108428,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3039), 16, + ACTIONS(1712), 26, + sym__automatic_semicolon, 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, @@ -107552,138 +108451,87 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_LBRACE_PIPE, - [49054] = 26, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + [49704] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(573), 1, + ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(2161), 1, + ACTIONS(2173), 1, anon_sym_LPAREN, - ACTIONS(2379), 1, + ACTIONS(2282), 1, anon_sym_LBRACK, - ACTIONS(2410), 1, + ACTIONS(2298), 1, anon_sym_DOT, - ACTIONS(3166), 1, - anon_sym_as, - ACTIONS(3170), 1, + ACTIONS(3080), 1, anon_sym_BANG, - ACTIONS(3174), 1, + ACTIONS(3084), 1, anon_sym_LT, - ACTIONS(3176), 1, + ACTIONS(3086), 1, anon_sym_QMARK_DOT, - ACTIONS(3178), 1, - anon_sym_QMARK, - ACTIONS(3180), 1, + ACTIONS(3088), 1, anon_sym_AMP_AMP, - ACTIONS(3186), 1, + ACTIONS(3094), 1, anon_sym_AMP, - ACTIONS(3188), 1, + ACTIONS(3096), 1, anon_sym_PIPE, - ACTIONS(3192), 1, + ACTIONS(3100), 1, anon_sym_STAR_STAR, - ACTIONS(3196), 1, + ACTIONS(3113), 1, + anon_sym_as, + ACTIONS(3115), 1, + anon_sym_QMARK, + ACTIONS(3117), 1, anon_sym_QMARK_QMARK, - ACTIONS(3337), 1, - anon_sym_LBRACE, - STATE(2574), 1, + STATE(2611), 1, sym_type_arguments, - ACTIONS(3182), 2, + ACTIONS(3090), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(3190), 2, + ACTIONS(3098), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3198), 2, + ACTIONS(3104), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3339), 2, - anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - STATE(1643), 2, + STATE(1529), 2, sym_template_string, sym_arguments, - ACTIONS(3164), 3, + ACTIONS(3078), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(3184), 3, + ACTIONS(3092), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(3172), 4, + ACTIONS(3376), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(3082), 4, anon_sym_in, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3194), 5, + ACTIONS(3102), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [49149] = 8, + [49797] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2379), 1, - anon_sym_LBRACK, - ACTIONS(2410), 1, + ACTIONS(3371), 1, anon_sym_DOT, - ACTIONS(3176), 1, - anon_sym_QMARK_DOT, - STATE(2574), 1, - sym_type_arguments, - STATE(1643), 2, - sym_template_string, - sym_arguments, - ACTIONS(2859), 15, - anon_sym_STAR, - anon_sym_LBRACE, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2861), 20, - anon_sym_as, - anon_sym_COMMA, - 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, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, - [49208] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(2574), 1, + STATE(1403), 1, sym_type_arguments, - STATE(1643), 2, - sym_template_string, - sym_arguments, - ACTIONS(2865), 15, + ACTIONS(1661), 14, anon_sym_STAR, - anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -107697,12 +108545,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2867), 23, + ACTIONS(1659), 25, + sym__automatic_semicolon, 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, @@ -107720,219 +108570,217 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, - [49261] = 26, + anon_sym_extends, + [49850] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(573), 1, + ACTIONS(479), 1, anon_sym_BQUOTE, ACTIONS(2161), 1, anon_sym_LPAREN, - ACTIONS(2379), 1, + ACTIONS(2191), 1, anon_sym_LBRACK, - ACTIONS(2410), 1, + ACTIONS(2193), 1, anon_sym_DOT, - ACTIONS(3166), 1, + ACTIONS(2883), 1, + anon_sym_QMARK_DOT, + ACTIONS(2941), 1, anon_sym_as, - ACTIONS(3170), 1, + ACTIONS(2945), 1, anon_sym_BANG, - ACTIONS(3174), 1, + ACTIONS(3264), 1, anon_sym_LT, - ACTIONS(3176), 1, - anon_sym_QMARK_DOT, - ACTIONS(3178), 1, + ACTIONS(3266), 1, anon_sym_QMARK, - ACTIONS(3180), 1, + ACTIONS(3268), 1, anon_sym_AMP_AMP, - ACTIONS(3186), 1, + ACTIONS(3274), 1, anon_sym_AMP, - ACTIONS(3188), 1, + ACTIONS(3276), 1, anon_sym_PIPE, - ACTIONS(3192), 1, + ACTIONS(3280), 1, anon_sym_STAR_STAR, - ACTIONS(3196), 1, + ACTIONS(3284), 1, anon_sym_QMARK_QMARK, - ACTIONS(3341), 1, - anon_sym_LBRACE, - STATE(2574), 1, + STATE(2547), 1, sym_type_arguments, - ACTIONS(3056), 2, - anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - ACTIONS(3182), 2, + ACTIONS(2971), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3270), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(3190), 2, + ACTIONS(3278), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3198), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1643), 2, + STATE(1126), 2, sym_template_string, sym_arguments, - ACTIONS(3164), 3, + ACTIONS(3051), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + ACTIONS(3260), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(3184), 3, + ACTIONS(3272), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(3172), 4, + ACTIONS(3262), 4, anon_sym_in, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3194), 5, + ACTIONS(3282), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [49356] = 26, + [49943] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(573), 1, + ACTIONS(479), 1, anon_sym_BQUOTE, ACTIONS(2161), 1, anon_sym_LPAREN, - ACTIONS(2379), 1, + ACTIONS(2191), 1, anon_sym_LBRACK, - ACTIONS(2410), 1, + ACTIONS(2193), 1, anon_sym_DOT, - ACTIONS(3154), 1, - anon_sym_LBRACE, - ACTIONS(3166), 1, + ACTIONS(2883), 1, + anon_sym_QMARK_DOT, + ACTIONS(2941), 1, anon_sym_as, - ACTIONS(3170), 1, + ACTIONS(2945), 1, anon_sym_BANG, - ACTIONS(3174), 1, + ACTIONS(3264), 1, anon_sym_LT, - ACTIONS(3176), 1, - anon_sym_QMARK_DOT, - ACTIONS(3178), 1, + ACTIONS(3266), 1, anon_sym_QMARK, - ACTIONS(3180), 1, + ACTIONS(3268), 1, anon_sym_AMP_AMP, - ACTIONS(3186), 1, + ACTIONS(3274), 1, anon_sym_AMP, - ACTIONS(3188), 1, + ACTIONS(3276), 1, anon_sym_PIPE, - ACTIONS(3192), 1, + ACTIONS(3280), 1, anon_sym_STAR_STAR, - ACTIONS(3196), 1, + ACTIONS(3284), 1, anon_sym_QMARK_QMARK, - STATE(2574), 1, + STATE(2547), 1, sym_type_arguments, - ACTIONS(3054), 2, - anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - ACTIONS(3182), 2, + ACTIONS(2971), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3270), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(3190), 2, + ACTIONS(3278), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3198), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1643), 2, + STATE(1126), 2, sym_template_string, sym_arguments, - ACTIONS(3164), 3, + ACTIONS(3068), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + ACTIONS(3260), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(3184), 3, + ACTIONS(3272), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(3172), 4, + ACTIONS(3262), 4, anon_sym_in, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3194), 5, + ACTIONS(3282), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [49451] = 27, + [50036] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(479), 1, anon_sym_BQUOTE, - ACTIONS(1143), 1, - anon_sym_COMMA, - ACTIONS(2145), 1, + ACTIONS(2161), 1, anon_sym_LPAREN, - ACTIONS(2175), 1, + ACTIONS(2191), 1, anon_sym_LBRACK, - ACTIONS(2177), 1, + ACTIONS(2193), 1, anon_sym_DOT, - ACTIONS(2863), 1, + ACTIONS(2883), 1, anon_sym_QMARK_DOT, - ACTIONS(2915), 1, + ACTIONS(2941), 1, anon_sym_as, - ACTIONS(2919), 1, + ACTIONS(2945), 1, anon_sym_BANG, - ACTIONS(2923), 1, + ACTIONS(3264), 1, anon_sym_LT, - ACTIONS(2925), 1, + ACTIONS(3266), 1, anon_sym_QMARK, - ACTIONS(2927), 1, + ACTIONS(3268), 1, anon_sym_AMP_AMP, - ACTIONS(2933), 1, + ACTIONS(3274), 1, anon_sym_AMP, - ACTIONS(2935), 1, + ACTIONS(3276), 1, anon_sym_PIPE, - ACTIONS(2939), 1, + ACTIONS(3280), 1, anon_sym_STAR_STAR, - ACTIONS(2943), 1, + ACTIONS(3284), 1, anon_sym_QMARK_QMARK, - ACTIONS(3343), 1, - anon_sym_RPAREN, - STATE(2565), 1, + STATE(2547), 1, sym_type_arguments, - STATE(2634), 1, - aux_sym_array_repeat1, - ACTIONS(2929), 2, + ACTIONS(2971), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3270), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(2937), 2, + ACTIONS(3278), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2945), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1128), 2, + STATE(1126), 2, sym_template_string, sym_arguments, - ACTIONS(2913), 3, + ACTIONS(3070), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + ACTIONS(3260), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(2931), 3, + ACTIONS(3272), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(2921), 4, + ACTIONS(3262), 4, anon_sym_in, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2941), 5, + ACTIONS(3282), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [49548] = 3, + [50129] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1001), 14, + STATE(1392), 1, + sym_type_arguments, + ACTIONS(1569), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -107947,14 +108795,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(999), 27, + ACTIONS(1567), 26, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_else, anon_sym_LPAREN, - anon_sym_while, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -107975,290 +108821,304 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [49597] = 4, + anon_sym_extends, + [50180] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(3345), 1, - sym__automatic_semicolon, - ACTIONS(909), 14, - anon_sym_STAR, + ACTIONS(479), 1, + anon_sym_BQUOTE, + ACTIONS(2161), 1, + anon_sym_LPAREN, + ACTIONS(2191), 1, + anon_sym_LBRACK, + ACTIONS(2193), 1, + anon_sym_DOT, + ACTIONS(2883), 1, + anon_sym_QMARK_DOT, + ACTIONS(2941), 1, + anon_sym_as, + ACTIONS(2945), 1, anon_sym_BANG, - anon_sym_in, + ACTIONS(3264), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(3266), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(3268), 1, + anon_sym_AMP_AMP, + ACTIONS(3274), 1, anon_sym_AMP, + ACTIONS(3276), 1, anon_sym_PIPE, + ACTIONS(3280), 1, + anon_sym_STAR_STAR, + ACTIONS(3284), 1, + anon_sym_QMARK_QMARK, + STATE(2547), 1, + sym_type_arguments, + ACTIONS(2971), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3270), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(3278), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(907), 26, - anon_sym_as, + STATE(1126), 2, + sym_template_string, + sym_arguments, + ACTIONS(3057), 3, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_else, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_implements, + ACTIONS(3260), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(3272), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(3262), 4, + anon_sym_in, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3282), 5, 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, - [49648] = 26, + [50273] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(573), 1, + ACTIONS(479), 1, anon_sym_BQUOTE, ACTIONS(2161), 1, anon_sym_LPAREN, - ACTIONS(2379), 1, + ACTIONS(2191), 1, anon_sym_LBRACK, - ACTIONS(2410), 1, + ACTIONS(2193), 1, anon_sym_DOT, - ACTIONS(3166), 1, + ACTIONS(2883), 1, + anon_sym_QMARK_DOT, + ACTIONS(2941), 1, anon_sym_as, - ACTIONS(3170), 1, + ACTIONS(2945), 1, anon_sym_BANG, - ACTIONS(3174), 1, + ACTIONS(3264), 1, anon_sym_LT, - ACTIONS(3176), 1, - anon_sym_QMARK_DOT, - ACTIONS(3178), 1, + ACTIONS(3266), 1, anon_sym_QMARK, - ACTIONS(3180), 1, + ACTIONS(3268), 1, anon_sym_AMP_AMP, - ACTIONS(3186), 1, + ACTIONS(3274), 1, anon_sym_AMP, - ACTIONS(3188), 1, + ACTIONS(3276), 1, anon_sym_PIPE, - ACTIONS(3192), 1, + ACTIONS(3280), 1, anon_sym_STAR_STAR, - ACTIONS(3196), 1, + ACTIONS(3284), 1, anon_sym_QMARK_QMARK, - ACTIONS(3347), 1, - anon_sym_LBRACE, - STATE(2574), 1, + STATE(2547), 1, sym_type_arguments, - ACTIONS(3060), 2, - anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - ACTIONS(3182), 2, + ACTIONS(2971), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3270), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(3190), 2, + ACTIONS(3278), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3198), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1643), 2, + STATE(1126), 2, sym_template_string, sym_arguments, - ACTIONS(3164), 3, + ACTIONS(3043), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + ACTIONS(3260), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(3184), 3, + ACTIONS(3272), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(3172), 4, + ACTIONS(3262), 4, anon_sym_in, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3194), 5, + ACTIONS(3282), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [49743] = 26, + [50366] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(573), 1, + ACTIONS(479), 1, anon_sym_BQUOTE, ACTIONS(2161), 1, anon_sym_LPAREN, - ACTIONS(2379), 1, + ACTIONS(2191), 1, anon_sym_LBRACK, - ACTIONS(2410), 1, + ACTIONS(2193), 1, anon_sym_DOT, - ACTIONS(3166), 1, - anon_sym_as, - ACTIONS(3170), 1, - anon_sym_BANG, - ACTIONS(3174), 1, - anon_sym_LT, - ACTIONS(3176), 1, + ACTIONS(2883), 1, anon_sym_QMARK_DOT, - ACTIONS(3178), 1, + ACTIONS(2945), 1, + anon_sym_BANG, + ACTIONS(2973), 1, anon_sym_QMARK, - ACTIONS(3180), 1, + ACTIONS(3264), 1, + anon_sym_LT, + ACTIONS(3268), 1, anon_sym_AMP_AMP, - ACTIONS(3186), 1, + ACTIONS(3274), 1, anon_sym_AMP, - ACTIONS(3188), 1, + ACTIONS(3276), 1, anon_sym_PIPE, - ACTIONS(3192), 1, + ACTIONS(3280), 1, anon_sym_STAR_STAR, - ACTIONS(3196), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3349), 1, - anon_sym_LBRACE, - STATE(2574), 1, + STATE(2547), 1, sym_type_arguments, - ACTIONS(3044), 2, - anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - ACTIONS(3182), 2, + ACTIONS(2971), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3270), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(3190), 2, + ACTIONS(3278), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3198), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1643), 2, + STATE(1126), 2, sym_template_string, sym_arguments, - ACTIONS(3164), 3, + ACTIONS(3260), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(3184), 3, + ACTIONS(3272), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(3172), 4, + ACTIONS(3262), 4, anon_sym_in, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3194), 5, + ACTIONS(2975), 5, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_QMARK_QMARK, + anon_sym_implements, + ACTIONS(3282), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [49838] = 26, + [50455] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(573), 1, + ACTIONS(479), 1, anon_sym_BQUOTE, ACTIONS(2161), 1, anon_sym_LPAREN, - ACTIONS(2379), 1, + ACTIONS(2191), 1, anon_sym_LBRACK, - ACTIONS(2410), 1, + ACTIONS(2193), 1, anon_sym_DOT, - ACTIONS(3166), 1, + ACTIONS(2883), 1, + anon_sym_QMARK_DOT, + ACTIONS(2941), 1, anon_sym_as, - ACTIONS(3170), 1, + ACTIONS(2945), 1, anon_sym_BANG, - ACTIONS(3174), 1, + ACTIONS(3264), 1, anon_sym_LT, - ACTIONS(3176), 1, - anon_sym_QMARK_DOT, - ACTIONS(3178), 1, + ACTIONS(3266), 1, anon_sym_QMARK, - ACTIONS(3180), 1, + ACTIONS(3268), 1, anon_sym_AMP_AMP, - ACTIONS(3186), 1, + ACTIONS(3274), 1, anon_sym_AMP, - ACTIONS(3188), 1, + ACTIONS(3276), 1, anon_sym_PIPE, - ACTIONS(3192), 1, + ACTIONS(3280), 1, anon_sym_STAR_STAR, - ACTIONS(3196), 1, + ACTIONS(3284), 1, anon_sym_QMARK_QMARK, - ACTIONS(3250), 1, - anon_sym_LBRACE, - STATE(2574), 1, + STATE(2547), 1, sym_type_arguments, - ACTIONS(3033), 2, - anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - ACTIONS(3182), 2, + ACTIONS(2971), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3270), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(3190), 2, + ACTIONS(3278), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3198), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1643), 2, + STATE(1126), 2, sym_template_string, sym_arguments, - ACTIONS(3164), 3, + ACTIONS(2995), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + ACTIONS(3260), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(3184), 3, + ACTIONS(3272), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(3172), 4, + ACTIONS(3262), 4, anon_sym_in, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3194), 5, + ACTIONS(3282), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [49933] = 14, + [50548] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(573), 1, + ACTIONS(479), 1, anon_sym_BQUOTE, ACTIONS(2161), 1, anon_sym_LPAREN, - ACTIONS(2379), 1, + ACTIONS(2191), 1, anon_sym_LBRACK, - ACTIONS(2410), 1, + ACTIONS(2193), 1, anon_sym_DOT, - ACTIONS(3170), 1, - anon_sym_BANG, - ACTIONS(3176), 1, + ACTIONS(2883), 1, anon_sym_QMARK_DOT, - ACTIONS(3192), 1, - anon_sym_STAR_STAR, - ACTIONS(3351), 1, + ACTIONS(2945), 1, + anon_sym_BANG, + ACTIONS(3378), 1, anon_sym_LT, - STATE(2574), 1, + STATE(2547), 1, sym_type_arguments, - ACTIONS(3198), 2, + ACTIONS(2971), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1643), 2, + STATE(1126), 2, sym_template_string, sym_arguments, - ACTIONS(2997), 13, + ACTIONS(2973), 12, anon_sym_STAR, - anon_sym_LBRACE, anon_sym_in, anon_sym_GT, anon_sym_SLASH, @@ -108270,8 +109130,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2995), 15, + ACTIONS(2975), 17, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -108279,62 +109140,132 @@ static uint16_t ts_small_parse_table[] = { 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_LBRACE_PIPE, - [50004] = 17, + anon_sym_implements, + [50617] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(573), 1, + ACTIONS(479), 1, anon_sym_BQUOTE, ACTIONS(2161), 1, anon_sym_LPAREN, - ACTIONS(2379), 1, + ACTIONS(2191), 1, anon_sym_LBRACK, - ACTIONS(2410), 1, + ACTIONS(2193), 1, anon_sym_DOT, - ACTIONS(3170), 1, + ACTIONS(2883), 1, + anon_sym_QMARK_DOT, + ACTIONS(2941), 1, + anon_sym_as, + ACTIONS(2945), 1, anon_sym_BANG, - ACTIONS(3174), 1, + ACTIONS(2949), 1, anon_sym_LT, - ACTIONS(3176), 1, - anon_sym_QMARK_DOT, - ACTIONS(3192), 1, + ACTIONS(2951), 1, + anon_sym_QMARK, + ACTIONS(2953), 1, + anon_sym_AMP_AMP, + ACTIONS(2959), 1, + anon_sym_AMP, + ACTIONS(2961), 1, + anon_sym_PIPE, + ACTIONS(2965), 1, anon_sym_STAR_STAR, - STATE(2574), 1, + ACTIONS(2969), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3381), 1, + anon_sym_COMMA, + ACTIONS(3383), 1, + anon_sym_RBRACK, + STATE(2547), 1, sym_type_arguments, - ACTIONS(3190), 2, + STATE(2699), 1, + aux_sym_array_repeat1, + ACTIONS(2955), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(2963), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3198), 2, + ACTIONS(2971), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1643), 2, + STATE(1126), 2, sym_template_string, sym_arguments, - ACTIONS(3164), 3, + ACTIONS(2939), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(3184), 3, + ACTIONS(2957), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(2997), 8, - anon_sym_LBRACE, + ACTIONS(2947), 4, + anon_sym_in, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2967), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [50714] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(479), 1, + anon_sym_BQUOTE, + ACTIONS(2161), 1, + anon_sym_LPAREN, + ACTIONS(2191), 1, + anon_sym_LBRACK, + ACTIONS(2193), 1, + anon_sym_DOT, + ACTIONS(2883), 1, + anon_sym_QMARK_DOT, + ACTIONS(2945), 1, + anon_sym_BANG, + ACTIONS(3280), 1, + anon_sym_STAR_STAR, + ACTIONS(3378), 1, + anon_sym_LT, + STATE(2547), 1, + sym_type_arguments, + ACTIONS(2971), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1126), 2, + sym_template_string, + sym_arguments, + ACTIONS(3260), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(3272), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(2973), 9, anon_sym_in, anon_sym_GT, anon_sym_QMARK, anon_sym_AMP, anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2995), 12, + ACTIONS(2975), 13, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -108345,220 +109276,376 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_LBRACE_PIPE, - [50081] = 19, + anon_sym_implements, + [50789] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(573), 1, + ACTIONS(479), 1, anon_sym_BQUOTE, ACTIONS(2161), 1, anon_sym_LPAREN, - ACTIONS(2379), 1, + ACTIONS(2191), 1, anon_sym_LBRACK, - ACTIONS(2410), 1, + ACTIONS(2193), 1, anon_sym_DOT, - ACTIONS(3170), 1, + ACTIONS(2883), 1, + anon_sym_QMARK_DOT, + ACTIONS(2945), 1, anon_sym_BANG, - ACTIONS(3174), 1, + ACTIONS(3264), 1, anon_sym_LT, - ACTIONS(3176), 1, - anon_sym_QMARK_DOT, - ACTIONS(3192), 1, + ACTIONS(3268), 1, + anon_sym_AMP_AMP, + ACTIONS(3274), 1, + anon_sym_AMP, + ACTIONS(3280), 1, anon_sym_STAR_STAR, - STATE(2574), 1, + STATE(2547), 1, sym_type_arguments, - ACTIONS(3190), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3198), 2, + ACTIONS(2971), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1643), 2, + ACTIONS(2973), 2, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(3278), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1126), 2, sym_template_string, sym_arguments, - ACTIONS(3164), 3, + ACTIONS(3260), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(3184), 3, + ACTIONS(3272), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(2997), 4, + ACTIONS(3262), 4, + anon_sym_in, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3282), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(2975), 7, + anon_sym_as, anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + anon_sym_implements, + [50874] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(479), 1, + anon_sym_BQUOTE, + ACTIONS(2161), 1, + anon_sym_LPAREN, + ACTIONS(2191), 1, + anon_sym_LBRACK, + ACTIONS(2193), 1, + anon_sym_DOT, + ACTIONS(2883), 1, + anon_sym_QMARK_DOT, + ACTIONS(2945), 1, + anon_sym_BANG, + ACTIONS(3264), 1, + anon_sym_LT, + ACTIONS(3280), 1, + anon_sym_STAR_STAR, + STATE(2547), 1, + sym_type_arguments, + ACTIONS(2971), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3278), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1126), 2, + sym_template_string, + sym_arguments, + ACTIONS(2973), 3, anon_sym_QMARK, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3172), 4, + ACTIONS(3260), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(3272), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(3262), 4, anon_sym_in, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3194), 5, + ACTIONS(3282), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(2995), 7, + ACTIONS(2975), 8, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_CARET, anon_sym_QMARK_QMARK, - anon_sym_LBRACE_PIPE, - [50162] = 21, + anon_sym_implements, + [50955] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(573), 1, + ACTIONS(479), 1, anon_sym_BQUOTE, ACTIONS(2161), 1, anon_sym_LPAREN, - ACTIONS(2379), 1, + ACTIONS(2191), 1, anon_sym_LBRACK, - ACTIONS(2410), 1, + ACTIONS(2193), 1, anon_sym_DOT, - ACTIONS(3170), 1, + ACTIONS(2883), 1, + anon_sym_QMARK_DOT, + ACTIONS(2941), 1, + anon_sym_as, + ACTIONS(2945), 1, anon_sym_BANG, - ACTIONS(3174), 1, + ACTIONS(3264), 1, anon_sym_LT, - ACTIONS(3176), 1, - anon_sym_QMARK_DOT, - ACTIONS(3180), 1, + ACTIONS(3266), 1, + anon_sym_QMARK, + ACTIONS(3268), 1, anon_sym_AMP_AMP, - ACTIONS(3186), 1, + ACTIONS(3274), 1, anon_sym_AMP, - ACTIONS(3192), 1, + ACTIONS(3276), 1, + anon_sym_PIPE, + ACTIONS(3280), 1, anon_sym_STAR_STAR, - STATE(2574), 1, + ACTIONS(3284), 1, + anon_sym_QMARK_QMARK, + STATE(2547), 1, sym_type_arguments, - ACTIONS(3190), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3198), 2, + ACTIONS(2971), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1643), 2, + ACTIONS(3270), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(3278), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1126), 2, sym_template_string, sym_arguments, - ACTIONS(2997), 3, + ACTIONS(2943), 3, anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(3164), 3, + anon_sym_COMMA, + anon_sym_implements, + ACTIONS(3260), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(3184), 3, + ACTIONS(3272), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(3172), 4, + ACTIONS(3262), 4, anon_sym_in, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3194), 5, + ACTIONS(3282), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(2995), 6, + [51048] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(915), 1, + sym__automatic_semicolon, + ACTIONS(907), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(911), 15, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(913), 23, 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_LBRACE_PIPE, - [50247] = 16, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [51101] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(573), 1, + ACTIONS(479), 1, anon_sym_BQUOTE, ACTIONS(2161), 1, anon_sym_LPAREN, - ACTIONS(2379), 1, + ACTIONS(2191), 1, anon_sym_LBRACK, - ACTIONS(2410), 1, + ACTIONS(2193), 1, anon_sym_DOT, - ACTIONS(3170), 1, - anon_sym_BANG, - ACTIONS(3176), 1, + ACTIONS(2883), 1, anon_sym_QMARK_DOT, - ACTIONS(3192), 1, + ACTIONS(2945), 1, + anon_sym_BANG, + ACTIONS(3280), 1, anon_sym_STAR_STAR, - ACTIONS(3351), 1, + ACTIONS(3378), 1, anon_sym_LT, - STATE(2574), 1, + STATE(2547), 1, sym_type_arguments, - ACTIONS(3198), 2, + ACTIONS(2971), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1643), 2, + STATE(1126), 2, sym_template_string, sym_arguments, - ACTIONS(3164), 3, + ACTIONS(2973), 12, anon_sym_STAR, + anon_sym_in, + anon_sym_GT, anon_sym_SLASH, + anon_sym_QMARK, anon_sym_GT_GT, - ACTIONS(3184), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2975), 16, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(2997), 10, - anon_sym_LBRACE, + 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_implements, + [51172] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3076), 2, + anon_sym_COLON, + anon_sym_EQ_GT, + ACTIONS(3072), 14, + anon_sym_STAR, + anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, + anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2995), 12, + ACTIONS(3074), 25, + sym__automatic_semicolon, 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_LBRACE_PIPE, - [50322] = 13, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [51223] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(573), 1, - anon_sym_BQUOTE, - ACTIONS(2161), 1, + ACTIONS(2177), 1, anon_sym_LPAREN, - ACTIONS(2379), 1, + ACTIONS(2179), 1, + anon_sym_LT, + ACTIONS(2314), 1, anon_sym_LBRACK, - ACTIONS(2410), 1, - anon_sym_DOT, - ACTIONS(3170), 1, - anon_sym_BANG, - ACTIONS(3176), 1, + ACTIONS(2320), 1, anon_sym_QMARK_DOT, - ACTIONS(3351), 1, - anon_sym_LT, - STATE(2574), 1, + ACTIONS(2470), 1, + anon_sym_DOT, + ACTIONS(2877), 1, + anon_sym_EQ, + STATE(1510), 1, sym_type_arguments, - ACTIONS(3198), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1643), 2, - sym_template_string, + STATE(1704), 1, sym_arguments, - ACTIONS(2997), 13, + ACTIONS(2185), 14, anon_sym_STAR, anon_sym_LBRACE, + anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_SLASH, @@ -108570,7 +109657,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2995), 16, + ACTIONS(2189), 19, anon_sym_as, anon_sym_COMMA, anon_sym_AMP_AMP, @@ -108586,352 +109673,345 @@ static 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_LBRACE_PIPE, - [50391] = 25, + [51288] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(479), 1, + ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(2145), 1, + ACTIONS(2173), 1, anon_sym_LPAREN, - ACTIONS(2175), 1, + ACTIONS(2282), 1, anon_sym_LBRACK, - ACTIONS(2177), 1, + ACTIONS(2298), 1, anon_sym_DOT, - ACTIONS(2863), 1, - anon_sym_QMARK_DOT, - ACTIONS(2915), 1, - anon_sym_as, - ACTIONS(2919), 1, + ACTIONS(3080), 1, anon_sym_BANG, - ACTIONS(3076), 1, + ACTIONS(3084), 1, anon_sym_LT, - ACTIONS(3078), 1, - anon_sym_QMARK, - ACTIONS(3080), 1, - anon_sym_AMP_AMP, ACTIONS(3086), 1, - anon_sym_AMP, + anon_sym_QMARK_DOT, ACTIONS(3088), 1, + anon_sym_AMP_AMP, + ACTIONS(3094), 1, + anon_sym_AMP, + ACTIONS(3096), 1, anon_sym_PIPE, - ACTIONS(3092), 1, + ACTIONS(3100), 1, anon_sym_STAR_STAR, - ACTIONS(3096), 1, + ACTIONS(3113), 1, + anon_sym_as, + ACTIONS(3115), 1, + anon_sym_QMARK, + ACTIONS(3117), 1, anon_sym_QMARK_QMARK, - STATE(2565), 1, + ACTIONS(3340), 1, + anon_sym_COMMA, + STATE(2611), 1, sym_type_arguments, - ACTIONS(2945), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3082), 2, + ACTIONS(2993), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(3090), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(3090), 2, + ACTIONS(3098), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1128), 2, + ACTIONS(3104), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1529), 2, sym_template_string, sym_arguments, - ACTIONS(3056), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_implements, - ACTIONS(3070), 3, + ACTIONS(3078), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(3084), 3, + ACTIONS(3092), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(3074), 4, + ACTIONS(3082), 4, anon_sym_in, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3094), 5, + ACTIONS(3102), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [50484] = 25, + [51383] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(479), 1, anon_sym_BQUOTE, - ACTIONS(2145), 1, + ACTIONS(2161), 1, anon_sym_LPAREN, - ACTIONS(2175), 1, + ACTIONS(2191), 1, anon_sym_LBRACK, - ACTIONS(2177), 1, + ACTIONS(2193), 1, anon_sym_DOT, - ACTIONS(2863), 1, + ACTIONS(2883), 1, anon_sym_QMARK_DOT, - ACTIONS(2915), 1, + ACTIONS(2941), 1, anon_sym_as, - ACTIONS(2919), 1, + ACTIONS(2945), 1, anon_sym_BANG, - ACTIONS(3076), 1, + ACTIONS(3264), 1, anon_sym_LT, - ACTIONS(3078), 1, + ACTIONS(3266), 1, anon_sym_QMARK, - ACTIONS(3080), 1, + ACTIONS(3268), 1, anon_sym_AMP_AMP, - ACTIONS(3086), 1, + ACTIONS(3274), 1, anon_sym_AMP, - ACTIONS(3088), 1, + ACTIONS(3276), 1, anon_sym_PIPE, - ACTIONS(3092), 1, + ACTIONS(3280), 1, anon_sym_STAR_STAR, - ACTIONS(3096), 1, + ACTIONS(3284), 1, anon_sym_QMARK_QMARK, - STATE(2565), 1, + STATE(2547), 1, sym_type_arguments, - ACTIONS(2945), 2, + ACTIONS(2971), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3082), 2, + ACTIONS(3270), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(3090), 2, + ACTIONS(3278), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1128), 2, + STATE(1126), 2, sym_template_string, sym_arguments, - ACTIONS(3054), 3, + ACTIONS(3031), 3, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_implements, - ACTIONS(3070), 3, + ACTIONS(3260), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(3084), 3, + ACTIONS(3272), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(3074), 4, + ACTIONS(3262), 4, anon_sym_in, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3094), 5, + ACTIONS(3282), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [50577] = 23, + [51476] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(573), 1, - anon_sym_BQUOTE, - ACTIONS(2161), 1, - anon_sym_LPAREN, - ACTIONS(2379), 1, + ACTIONS(2191), 1, anon_sym_LBRACK, - ACTIONS(2410), 1, + ACTIONS(2193), 1, anon_sym_DOT, - ACTIONS(3170), 1, + ACTIONS(2195), 1, + anon_sym_QMARK_DOT, + ACTIONS(3385), 1, + anon_sym_EQ, + ACTIONS(1037), 14, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(3174), 1, + anon_sym_in, anon_sym_LT, - ACTIONS(3176), 1, - anon_sym_QMARK_DOT, - ACTIONS(3180), 1, - anon_sym_AMP_AMP, - ACTIONS(3186), 1, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(3188), 1, anon_sym_PIPE, - ACTIONS(3192), 1, - anon_sym_STAR_STAR, - STATE(2574), 1, - sym_type_arguments, - ACTIONS(2997), 2, - anon_sym_LBRACE, - anon_sym_QMARK, - ACTIONS(3182), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(3190), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3198), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1643), 2, - sym_template_string, - sym_arguments, - ACTIONS(3164), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3184), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1039), 23, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + 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, - ACTIONS(2995), 4, - anon_sym_as, - anon_sym_COMMA, - anon_sym_QMARK_QMARK, - anon_sym_LBRACE_PIPE, - ACTIONS(3172), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3194), 5, + 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, - [50666] = 26, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [51533] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(573), 1, + ACTIONS(479), 1, anon_sym_BQUOTE, ACTIONS(2161), 1, anon_sym_LPAREN, - ACTIONS(2379), 1, + ACTIONS(2191), 1, anon_sym_LBRACK, - ACTIONS(2410), 1, + ACTIONS(2193), 1, anon_sym_DOT, - ACTIONS(3166), 1, + ACTIONS(2883), 1, + anon_sym_QMARK_DOT, + ACTIONS(2941), 1, anon_sym_as, - ACTIONS(3170), 1, + ACTIONS(2945), 1, anon_sym_BANG, - ACTIONS(3174), 1, + ACTIONS(3264), 1, anon_sym_LT, - ACTIONS(3176), 1, - anon_sym_QMARK_DOT, - ACTIONS(3178), 1, + ACTIONS(3266), 1, anon_sym_QMARK, - ACTIONS(3180), 1, + ACTIONS(3268), 1, anon_sym_AMP_AMP, - ACTIONS(3186), 1, + ACTIONS(3274), 1, anon_sym_AMP, - ACTIONS(3188), 1, + ACTIONS(3276), 1, anon_sym_PIPE, - ACTIONS(3192), 1, + ACTIONS(3280), 1, anon_sym_STAR_STAR, - ACTIONS(3196), 1, + ACTIONS(3284), 1, anon_sym_QMARK_QMARK, - ACTIONS(3354), 1, - anon_sym_LBRACE, - STATE(2574), 1, + STATE(2547), 1, sym_type_arguments, - ACTIONS(2993), 2, - anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - ACTIONS(3182), 2, + ACTIONS(2971), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3270), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(3190), 2, + ACTIONS(3278), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3198), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1643), 2, + STATE(1126), 2, sym_template_string, sym_arguments, - ACTIONS(3164), 3, + ACTIONS(3007), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + ACTIONS(3260), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(3184), 3, + ACTIONS(3272), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(3172), 4, + ACTIONS(3262), 4, anon_sym_in, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3194), 5, + ACTIONS(3282), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [50761] = 27, + [51626] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(479), 1, anon_sym_BQUOTE, - ACTIONS(1143), 1, - anon_sym_COMMA, - ACTIONS(2145), 1, + ACTIONS(2161), 1, anon_sym_LPAREN, - ACTIONS(2175), 1, + ACTIONS(2191), 1, anon_sym_LBRACK, - ACTIONS(2177), 1, + ACTIONS(2193), 1, anon_sym_DOT, - ACTIONS(2863), 1, + ACTIONS(2883), 1, anon_sym_QMARK_DOT, - ACTIONS(2915), 1, + ACTIONS(2941), 1, anon_sym_as, - ACTIONS(2919), 1, + ACTIONS(2945), 1, anon_sym_BANG, - ACTIONS(2923), 1, + ACTIONS(3264), 1, anon_sym_LT, - ACTIONS(2925), 1, + ACTIONS(3266), 1, anon_sym_QMARK, - ACTIONS(2927), 1, + ACTIONS(3268), 1, anon_sym_AMP_AMP, - ACTIONS(2933), 1, + ACTIONS(3274), 1, anon_sym_AMP, - ACTIONS(2935), 1, + ACTIONS(3276), 1, anon_sym_PIPE, - ACTIONS(2939), 1, + ACTIONS(3280), 1, anon_sym_STAR_STAR, - ACTIONS(2943), 1, + ACTIONS(3284), 1, anon_sym_QMARK_QMARK, - ACTIONS(3356), 1, - anon_sym_RBRACK, - STATE(2565), 1, + STATE(2547), 1, sym_type_arguments, - STATE(2681), 1, - aux_sym_array_repeat1, - ACTIONS(2929), 2, + ACTIONS(2971), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3270), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(2937), 2, + ACTIONS(3278), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2945), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1128), 2, + STATE(1126), 2, sym_template_string, sym_arguments, - ACTIONS(2913), 3, + ACTIONS(3005), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + ACTIONS(3260), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(2931), 3, + ACTIONS(3272), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(2921), 4, + ACTIONS(3262), 4, anon_sym_in, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2941), 5, + ACTIONS(3282), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [50858] = 3, + [51719] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1087), 14, + ACTIONS(2191), 1, + anon_sym_LBRACK, + ACTIONS(2193), 1, + anon_sym_DOT, + ACTIONS(2195), 1, + anon_sym_QMARK_DOT, + ACTIONS(3387), 1, + anon_sym_EQ, + ACTIONS(1037), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -108946,18 +110026,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1085), 27, - sym__automatic_semicolon, + ACTIONS(1039), 23, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_else, anon_sym_LPAREN, - anon_sym_while, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -108974,19 +110050,19 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [50907] = 6, + [51776] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1551), 1, + ACTIONS(1587), 1, anon_sym_extends, - ACTIONS(2907), 2, + ACTIONS(2911), 2, anon_sym_COMMA, anon_sym_LBRACK, - ACTIONS(2910), 3, + ACTIONS(2914), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(2903), 12, + ACTIONS(2907), 12, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -108999,7 +110075,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2905), 23, + ACTIONS(2909), 23, sym__automatic_semicolon, anon_sym_as, anon_sym_RBRACE, @@ -109023,14 +110099,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [50962] = 5, + [51831] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1501), 3, + ACTIONS(1505), 3, anon_sym_COMMA, anon_sym_LBRACK, anon_sym_extends, - ACTIONS(1503), 3, + ACTIONS(1507), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, @@ -109071,146 +110147,384 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [51015] = 25, + [51884] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(479), 1, - anon_sym_BQUOTE, - ACTIONS(2145), 1, + ACTIONS(1113), 14, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1111), 27, + sym__automatic_semicolon, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_else, anon_sym_LPAREN, - ACTIONS(2175), 1, + anon_sym_while, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(2177), 1, anon_sym_DOT, - ACTIONS(2863), 1, anon_sym_QMARK_DOT, - ACTIONS(2915), 1, + 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, + [51933] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3393), 1, + sym_regex_flags, + ACTIONS(3389), 16, + anon_sym_STAR, anon_sym_as, - ACTIONS(2919), 1, anon_sym_BANG, - ACTIONS(2923), 1, + anon_sym_in, anon_sym_LT, - ACTIONS(2925), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(2927), 1, - anon_sym_AMP_AMP, - ACTIONS(2933), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(2935), 1, anon_sym_PIPE, - ACTIONS(2939), 1, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_instanceof, + ACTIONS(3391), 24, + 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_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, - ACTIONS(2943), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - STATE(2565), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [51984] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2177), 1, + anon_sym_LPAREN, + ACTIONS(2179), 1, + anon_sym_LT, + ACTIONS(2314), 1, + anon_sym_LBRACK, + ACTIONS(2320), 1, + anon_sym_QMARK_DOT, + ACTIONS(2470), 1, + anon_sym_DOT, + ACTIONS(2871), 1, + anon_sym_EQ, + STATE(1510), 1, sym_type_arguments, - ACTIONS(2929), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(2937), 2, + STATE(1704), 1, + sym_arguments, + ACTIONS(2185), 14, + anon_sym_STAR, + anon_sym_LBRACE, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2945), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2189), 19, + anon_sym_as, + anon_sym_COMMA, + 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, - STATE(1128), 2, + anon_sym_BQUOTE, + anon_sym_LBRACE_PIPE, + [52049] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(715), 1, + anon_sym_BQUOTE, + ACTIONS(2177), 1, + anon_sym_LPAREN, + ACTIONS(2314), 1, + anon_sym_LBRACK, + ACTIONS(2470), 1, + anon_sym_DOT, + ACTIONS(3188), 1, + anon_sym_QMARK_DOT, + ACTIONS(3365), 1, + anon_sym_LT, + STATE(2592), 1, + sym_type_arguments, + ACTIONS(3210), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1669), 2, sym_template_string, sym_arguments, - ACTIONS(2913), 3, + ACTIONS(3024), 14, anon_sym_STAR, + anon_sym_LBRACE, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, anon_sym_SLASH, + anon_sym_QMARK, anon_sym_GT_GT, - ACTIONS(2931), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3026), 16, + anon_sym_as, + anon_sym_COMMA, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(3358), 3, + 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_LBRACE_PIPE, + [52116] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2314), 1, + anon_sym_LBRACK, + ACTIONS(2470), 1, + anon_sym_DOT, + ACTIONS(3188), 1, + anon_sym_QMARK_DOT, + STATE(2592), 1, + sym_type_arguments, + STATE(1669), 2, + sym_template_string, + sym_arguments, + ACTIONS(2879), 15, + anon_sym_STAR, + anon_sym_LBRACE, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2881), 20, + anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - ACTIONS(2921), 4, + 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, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_LBRACE_PIPE, + [52175] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2173), 1, + anon_sym_LPAREN, + ACTIONS(2175), 1, + anon_sym_LT, + ACTIONS(2282), 1, + anon_sym_LBRACK, + ACTIONS(2288), 1, + anon_sym_QMARK_DOT, + ACTIONS(2298), 1, + anon_sym_DOT, + STATE(1319), 1, + sym_type_arguments, + STATE(1548), 1, + sym_arguments, + ACTIONS(2185), 13, + anon_sym_STAR, + anon_sym_BANG, anon_sym_in, anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2941), 5, + ACTIONS(2189), 21, + sym__automatic_semicolon, + anon_sym_as, + 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, - [51108] = 25, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [52238] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(479), 1, anon_sym_BQUOTE, - ACTIONS(2145), 1, + ACTIONS(2161), 1, anon_sym_LPAREN, - ACTIONS(2175), 1, + ACTIONS(2191), 1, anon_sym_LBRACK, - ACTIONS(2177), 1, + ACTIONS(2193), 1, anon_sym_DOT, - ACTIONS(2863), 1, + ACTIONS(2883), 1, anon_sym_QMARK_DOT, - ACTIONS(2915), 1, + ACTIONS(2941), 1, anon_sym_as, - ACTIONS(2919), 1, + ACTIONS(2945), 1, anon_sym_BANG, - ACTIONS(3076), 1, + ACTIONS(2949), 1, anon_sym_LT, - ACTIONS(3078), 1, + ACTIONS(2951), 1, anon_sym_QMARK, - ACTIONS(3080), 1, + ACTIONS(2953), 1, anon_sym_AMP_AMP, - ACTIONS(3086), 1, + ACTIONS(2959), 1, anon_sym_AMP, - ACTIONS(3088), 1, + ACTIONS(2961), 1, anon_sym_PIPE, - ACTIONS(3092), 1, + ACTIONS(2965), 1, anon_sym_STAR_STAR, - ACTIONS(3096), 1, + ACTIONS(2969), 1, anon_sym_QMARK_QMARK, - STATE(2565), 1, + STATE(2547), 1, sym_type_arguments, - ACTIONS(2945), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3082), 2, + ACTIONS(2955), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(3090), 2, + ACTIONS(2963), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1128), 2, + ACTIONS(2971), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1126), 2, sym_template_string, sym_arguments, - ACTIONS(3060), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_implements, - ACTIONS(3070), 3, + ACTIONS(2939), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(3084), 3, + ACTIONS(2957), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(3074), 4, + ACTIONS(3376), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + ACTIONS(2947), 4, anon_sym_in, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3094), 5, + ACTIONS(2967), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [51201] = 3, + [52331] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1083), 14, + ACTIONS(993), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -109225,7 +110539,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1081), 27, + ACTIONS(991), 27, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, @@ -109253,702 +110567,497 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [51250] = 27, + [52380] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(479), 1, anon_sym_BQUOTE, - ACTIONS(1143), 1, + ACTIONS(1133), 1, anon_sym_COMMA, - ACTIONS(2145), 1, + ACTIONS(2161), 1, anon_sym_LPAREN, - ACTIONS(2175), 1, + ACTIONS(2191), 1, anon_sym_LBRACK, - ACTIONS(2177), 1, + ACTIONS(2193), 1, anon_sym_DOT, - ACTIONS(2863), 1, + ACTIONS(2883), 1, anon_sym_QMARK_DOT, - ACTIONS(2915), 1, + ACTIONS(2941), 1, anon_sym_as, - ACTIONS(2919), 1, + ACTIONS(2945), 1, anon_sym_BANG, - ACTIONS(2923), 1, + ACTIONS(2949), 1, anon_sym_LT, - ACTIONS(2925), 1, + ACTIONS(2951), 1, anon_sym_QMARK, - ACTIONS(2927), 1, + ACTIONS(2953), 1, anon_sym_AMP_AMP, - ACTIONS(2933), 1, + ACTIONS(2959), 1, anon_sym_AMP, - ACTIONS(2935), 1, + ACTIONS(2961), 1, anon_sym_PIPE, - ACTIONS(2939), 1, + ACTIONS(2965), 1, anon_sym_STAR_STAR, - ACTIONS(2943), 1, + ACTIONS(2969), 1, anon_sym_QMARK_QMARK, - ACTIONS(3360), 1, - anon_sym_RPAREN, - STATE(2565), 1, + ACTIONS(3395), 1, + anon_sym_RBRACK, + STATE(2547), 1, sym_type_arguments, - STATE(2707), 1, + STATE(2672), 1, aux_sym_array_repeat1, - ACTIONS(2929), 2, + ACTIONS(2955), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(2937), 2, + ACTIONS(2963), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2945), 2, + ACTIONS(2971), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1128), 2, + STATE(1126), 2, sym_template_string, sym_arguments, - ACTIONS(2913), 3, + ACTIONS(2939), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(2931), 3, + ACTIONS(2957), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(2921), 4, + ACTIONS(2947), 4, anon_sym_in, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2941), 5, + ACTIONS(2967), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [51347] = 26, + [52477] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(573), 1, + ACTIONS(715), 1, anon_sym_BQUOTE, - ACTIONS(2161), 1, + ACTIONS(2177), 1, anon_sym_LPAREN, - ACTIONS(2379), 1, + ACTIONS(2314), 1, anon_sym_LBRACK, - ACTIONS(2410), 1, + ACTIONS(2470), 1, anon_sym_DOT, - ACTIONS(3166), 1, + ACTIONS(3131), 1, + anon_sym_LBRACE, + ACTIONS(3178), 1, anon_sym_as, - ACTIONS(3170), 1, + ACTIONS(3182), 1, anon_sym_BANG, - ACTIONS(3174), 1, + ACTIONS(3186), 1, anon_sym_LT, - ACTIONS(3176), 1, + ACTIONS(3188), 1, anon_sym_QMARK_DOT, - ACTIONS(3178), 1, + ACTIONS(3190), 1, anon_sym_QMARK, - ACTIONS(3180), 1, + ACTIONS(3192), 1, anon_sym_AMP_AMP, - ACTIONS(3186), 1, + ACTIONS(3198), 1, anon_sym_AMP, - ACTIONS(3188), 1, + ACTIONS(3200), 1, anon_sym_PIPE, - ACTIONS(3192), 1, + ACTIONS(3204), 1, anon_sym_STAR_STAR, - ACTIONS(3196), 1, + ACTIONS(3208), 1, anon_sym_QMARK_QMARK, - ACTIONS(3362), 1, - anon_sym_LBRACE, - STATE(2574), 1, + STATE(2592), 1, sym_type_arguments, - ACTIONS(3002), 2, + ACTIONS(3057), 2, anon_sym_COMMA, anon_sym_LBRACE_PIPE, - ACTIONS(3182), 2, + ACTIONS(3194), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(3190), 2, + ACTIONS(3202), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3198), 2, + ACTIONS(3210), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1643), 2, + STATE(1669), 2, sym_template_string, sym_arguments, - ACTIONS(3164), 3, + ACTIONS(3176), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(3184), 3, + ACTIONS(3196), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(3172), 4, + ACTIONS(3184), 4, anon_sym_in, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3194), 5, + ACTIONS(3206), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [51442] = 26, + [52572] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(573), 1, + ACTIONS(479), 1, anon_sym_BQUOTE, + ACTIONS(1133), 1, + anon_sym_COMMA, ACTIONS(2161), 1, anon_sym_LPAREN, - ACTIONS(2379), 1, + ACTIONS(2191), 1, anon_sym_LBRACK, - ACTIONS(2410), 1, + ACTIONS(2193), 1, anon_sym_DOT, - ACTIONS(3166), 1, + ACTIONS(2883), 1, + anon_sym_QMARK_DOT, + ACTIONS(2941), 1, anon_sym_as, - ACTIONS(3170), 1, + ACTIONS(2945), 1, anon_sym_BANG, - ACTIONS(3174), 1, + ACTIONS(2949), 1, anon_sym_LT, - ACTIONS(3176), 1, - anon_sym_QMARK_DOT, - ACTIONS(3178), 1, + ACTIONS(2951), 1, anon_sym_QMARK, - ACTIONS(3180), 1, + ACTIONS(2953), 1, anon_sym_AMP_AMP, - ACTIONS(3186), 1, + ACTIONS(2959), 1, anon_sym_AMP, - ACTIONS(3188), 1, + ACTIONS(2961), 1, anon_sym_PIPE, - ACTIONS(3192), 1, + ACTIONS(2965), 1, anon_sym_STAR_STAR, - ACTIONS(3196), 1, + ACTIONS(2969), 1, anon_sym_QMARK_QMARK, - ACTIONS(3258), 1, - anon_sym_LBRACE, - STATE(2574), 1, + ACTIONS(3397), 1, + anon_sym_RBRACK, + STATE(2547), 1, sym_type_arguments, - ACTIONS(2917), 2, - anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - ACTIONS(3182), 2, + STATE(2655), 1, + aux_sym_array_repeat1, + ACTIONS(2955), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(3190), 2, + ACTIONS(2963), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3198), 2, + ACTIONS(2971), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1643), 2, + STATE(1126), 2, sym_template_string, sym_arguments, - ACTIONS(3164), 3, + ACTIONS(2939), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(3184), 3, + ACTIONS(2957), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(3172), 4, + ACTIONS(2947), 4, anon_sym_in, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3194), 5, + ACTIONS(2967), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [51537] = 25, + [52669] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(479), 1, - anon_sym_BQUOTE, - ACTIONS(2145), 1, - anon_sym_LPAREN, - ACTIONS(2175), 1, - anon_sym_LBRACK, - ACTIONS(2177), 1, - anon_sym_DOT, - ACTIONS(2863), 1, - anon_sym_QMARK_DOT, - ACTIONS(2915), 1, - anon_sym_as, - ACTIONS(2919), 1, + ACTIONS(1005), 14, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(3076), 1, + anon_sym_in, anon_sym_LT, - ACTIONS(3078), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(3080), 1, - anon_sym_AMP_AMP, - ACTIONS(3086), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(3088), 1, anon_sym_PIPE, - ACTIONS(3092), 1, - anon_sym_STAR_STAR, - ACTIONS(3096), 1, - anon_sym_QMARK_QMARK, - STATE(2565), 1, - sym_type_arguments, - ACTIONS(2945), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3082), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(3090), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1128), 2, - sym_template_string, - sym_arguments, - ACTIONS(3044), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_implements, - ACTIONS(3070), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3084), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(3074), 4, - anon_sym_in, - anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3094), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [51630] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(479), 1, - anon_sym_BQUOTE, - ACTIONS(2145), 1, - anon_sym_LPAREN, - ACTIONS(2175), 1, - anon_sym_LBRACK, - ACTIONS(2177), 1, - anon_sym_DOT, - ACTIONS(2863), 1, - anon_sym_QMARK_DOT, - ACTIONS(2915), 1, + ACTIONS(1003), 27, + sym__automatic_semicolon, anon_sym_as, - ACTIONS(2919), 1, - anon_sym_BANG, - ACTIONS(3076), 1, - anon_sym_LT, - ACTIONS(3078), 1, - anon_sym_QMARK, - ACTIONS(3080), 1, - anon_sym_AMP_AMP, - ACTIONS(3086), 1, - anon_sym_AMP, - ACTIONS(3088), 1, - anon_sym_PIPE, - ACTIONS(3092), 1, - anon_sym_STAR_STAR, - ACTIONS(3096), 1, - anon_sym_QMARK_QMARK, - STATE(2565), 1, - sym_type_arguments, - ACTIONS(2945), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3082), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(3090), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1128), 2, - sym_template_string, - sym_arguments, - ACTIONS(3033), 3, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_implements, - ACTIONS(3070), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3084), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(3074), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3094), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [51723] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(573), 1, - anon_sym_BQUOTE, - ACTIONS(2161), 1, + anon_sym_RBRACE, + anon_sym_else, anon_sym_LPAREN, - ACTIONS(2379), 1, + anon_sym_while, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(2410), 1, anon_sym_DOT, - ACTIONS(3166), 1, - anon_sym_as, - ACTIONS(3170), 1, - anon_sym_BANG, - ACTIONS(3174), 1, - anon_sym_LT, - ACTIONS(3176), 1, anon_sym_QMARK_DOT, - ACTIONS(3178), 1, - anon_sym_QMARK, - ACTIONS(3180), 1, anon_sym_AMP_AMP, - ACTIONS(3186), 1, - anon_sym_AMP, - ACTIONS(3188), 1, - anon_sym_PIPE, - ACTIONS(3192), 1, - anon_sym_STAR_STAR, - ACTIONS(3196), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3364), 1, - anon_sym_LBRACE, - STATE(2574), 1, - sym_type_arguments, - ACTIONS(2947), 2, - anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - ACTIONS(3182), 2, anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(3190), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3198), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1643), 2, - sym_template_string, - sym_arguments, - ACTIONS(3164), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3184), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(3172), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3194), 5, + 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, - [51818] = 27, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [52718] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(479), 1, anon_sym_BQUOTE, - ACTIONS(2145), 1, + ACTIONS(2161), 1, anon_sym_LPAREN, - ACTIONS(2175), 1, + ACTIONS(2191), 1, anon_sym_LBRACK, - ACTIONS(2177), 1, + ACTIONS(2193), 1, anon_sym_DOT, - ACTIONS(2863), 1, + ACTIONS(2883), 1, anon_sym_QMARK_DOT, - ACTIONS(2915), 1, + ACTIONS(2941), 1, anon_sym_as, - ACTIONS(2919), 1, + ACTIONS(2945), 1, anon_sym_BANG, - ACTIONS(2923), 1, + ACTIONS(2949), 1, anon_sym_LT, - ACTIONS(2925), 1, + ACTIONS(2951), 1, anon_sym_QMARK, - ACTIONS(2927), 1, + ACTIONS(2953), 1, anon_sym_AMP_AMP, - ACTIONS(2933), 1, + ACTIONS(2959), 1, anon_sym_AMP, - ACTIONS(2935), 1, + ACTIONS(2961), 1, anon_sym_PIPE, - ACTIONS(2939), 1, + ACTIONS(2965), 1, anon_sym_STAR_STAR, - ACTIONS(2943), 1, + ACTIONS(2969), 1, anon_sym_QMARK_QMARK, - ACTIONS(3366), 1, - anon_sym_COMMA, - ACTIONS(3368), 1, - anon_sym_RBRACK, - STATE(2565), 1, + STATE(2547), 1, sym_type_arguments, - STATE(2681), 1, - aux_sym_array_repeat1, - ACTIONS(2929), 2, + ACTIONS(2955), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(2937), 2, + ACTIONS(2963), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2945), 2, + ACTIONS(2971), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1128), 2, + STATE(1126), 2, sym_template_string, sym_arguments, - ACTIONS(2913), 3, + ACTIONS(2939), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(2931), 3, + ACTIONS(2957), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(2921), 4, + ACTIONS(3399), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + ACTIONS(2947), 4, anon_sym_in, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2941), 5, + ACTIONS(2967), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [51915] = 25, + [52811] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(715), 1, anon_sym_BQUOTE, - ACTIONS(2157), 1, + ACTIONS(2177), 1, anon_sym_LPAREN, - ACTIONS(2266), 1, + ACTIONS(2314), 1, anon_sym_LBRACK, - ACTIONS(2282), 1, + ACTIONS(2470), 1, anon_sym_DOT, - ACTIONS(3100), 1, + ACTIONS(3178), 1, anon_sym_as, - ACTIONS(3102), 1, + ACTIONS(3182), 1, anon_sym_BANG, - ACTIONS(3106), 1, + ACTIONS(3186), 1, anon_sym_LT, - ACTIONS(3108), 1, + ACTIONS(3188), 1, anon_sym_QMARK_DOT, - ACTIONS(3110), 1, + ACTIONS(3190), 1, anon_sym_QMARK, - ACTIONS(3112), 1, + ACTIONS(3192), 1, anon_sym_AMP_AMP, - ACTIONS(3118), 1, + ACTIONS(3198), 1, anon_sym_AMP, - ACTIONS(3120), 1, + ACTIONS(3200), 1, anon_sym_PIPE, - ACTIONS(3124), 1, + ACTIONS(3204), 1, anon_sym_STAR_STAR, - ACTIONS(3128), 1, + ACTIONS(3208), 1, anon_sym_QMARK_QMARK, - STATE(2501), 1, + ACTIONS(3401), 1, + anon_sym_LBRACE, + STATE(2592), 1, sym_type_arguments, - ACTIONS(3114), 2, + ACTIONS(2995), 2, + anon_sym_COMMA, + anon_sym_LBRACE_PIPE, + ACTIONS(3194), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(3122), 2, + ACTIONS(3202), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3130), 2, + ACTIONS(3210), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1567), 2, + STATE(1669), 2, sym_template_string, sym_arguments, - ACTIONS(3098), 3, + ACTIONS(3176), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(3116), 3, + ACTIONS(3196), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(3358), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - ACTIONS(3104), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3126), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [52008] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2983), 2, - anon_sym_COLON, - anon_sym_EQ_GT, - ACTIONS(2979), 14, - anon_sym_STAR, - anon_sym_BANG, + ACTIONS(3184), 4, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2981), 25, - sym__automatic_semicolon, - 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, + ACTIONS(3206), 5, 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, - [52059] = 26, + [52906] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(573), 1, + ACTIONS(715), 1, anon_sym_BQUOTE, - ACTIONS(2161), 1, + ACTIONS(2177), 1, anon_sym_LPAREN, - ACTIONS(2379), 1, + ACTIONS(2314), 1, anon_sym_LBRACK, - ACTIONS(2410), 1, + ACTIONS(2470), 1, anon_sym_DOT, - ACTIONS(3166), 1, + ACTIONS(3178), 1, anon_sym_as, - ACTIONS(3170), 1, + ACTIONS(3182), 1, anon_sym_BANG, - ACTIONS(3174), 1, + ACTIONS(3186), 1, anon_sym_LT, - ACTIONS(3176), 1, + ACTIONS(3188), 1, anon_sym_QMARK_DOT, - ACTIONS(3178), 1, + ACTIONS(3190), 1, anon_sym_QMARK, - ACTIONS(3180), 1, + ACTIONS(3192), 1, anon_sym_AMP_AMP, - ACTIONS(3186), 1, + ACTIONS(3198), 1, anon_sym_AMP, - ACTIONS(3188), 1, + ACTIONS(3200), 1, anon_sym_PIPE, - ACTIONS(3192), 1, + ACTIONS(3204), 1, anon_sym_STAR_STAR, - ACTIONS(3196), 1, + ACTIONS(3208), 1, anon_sym_QMARK_QMARK, - ACTIONS(3270), 1, + ACTIONS(3250), 1, anon_sym_LBRACE, - STATE(2574), 1, + STATE(2592), 1, sym_type_arguments, - ACTIONS(2949), 2, + ACTIONS(2943), 2, anon_sym_COMMA, anon_sym_LBRACE_PIPE, - ACTIONS(3182), 2, + ACTIONS(3194), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(3190), 2, + ACTIONS(3202), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3198), 2, + ACTIONS(3210), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1643), 2, + STATE(1669), 2, sym_template_string, sym_arguments, - ACTIONS(3164), 3, + ACTIONS(3176), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(3184), 3, + ACTIONS(3196), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(3172), 4, + ACTIONS(3184), 4, anon_sym_in, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3194), 5, + ACTIONS(3206), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [52154] = 14, + [53001] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(479), 1, + ACTIONS(715), 1, anon_sym_BQUOTE, - ACTIONS(2145), 1, + ACTIONS(2177), 1, anon_sym_LPAREN, - ACTIONS(2175), 1, + ACTIONS(2314), 1, anon_sym_LBRACK, - ACTIONS(2177), 1, + ACTIONS(2470), 1, anon_sym_DOT, - ACTIONS(2863), 1, - anon_sym_QMARK_DOT, - ACTIONS(2919), 1, + ACTIONS(3182), 1, anon_sym_BANG, - ACTIONS(3092), 1, + ACTIONS(3188), 1, + anon_sym_QMARK_DOT, + ACTIONS(3204), 1, anon_sym_STAR_STAR, - ACTIONS(3370), 1, + ACTIONS(3403), 1, anon_sym_LT, - STATE(2565), 1, + STATE(2592), 1, sym_type_arguments, - ACTIONS(2945), 2, + ACTIONS(3210), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1128), 2, + STATE(1669), 2, sym_template_string, sym_arguments, - ACTIONS(2997), 12, + ACTIONS(2973), 13, anon_sym_STAR, + anon_sym_LBRACE, anon_sym_in, anon_sym_GT, anon_sym_SLASH, @@ -109960,9 +111069,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2995), 16, + ACTIONS(2975), 15, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -109976,717 +111084,715 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_implements, - [52225] = 27, + anon_sym_LBRACE_PIPE, + [53072] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(479), 1, anon_sym_BQUOTE, - ACTIONS(1143), 1, + ACTIONS(1133), 1, anon_sym_COMMA, - ACTIONS(2145), 1, + ACTIONS(2161), 1, anon_sym_LPAREN, - ACTIONS(2175), 1, + ACTIONS(2191), 1, anon_sym_LBRACK, - ACTIONS(2177), 1, + ACTIONS(2193), 1, anon_sym_DOT, - ACTIONS(2863), 1, + ACTIONS(2883), 1, anon_sym_QMARK_DOT, - ACTIONS(2915), 1, + ACTIONS(2941), 1, anon_sym_as, - ACTIONS(2919), 1, + ACTIONS(2945), 1, anon_sym_BANG, - ACTIONS(2923), 1, + ACTIONS(2949), 1, anon_sym_LT, - ACTIONS(2925), 1, + ACTIONS(2951), 1, anon_sym_QMARK, - ACTIONS(2927), 1, + ACTIONS(2953), 1, anon_sym_AMP_AMP, - ACTIONS(2933), 1, + ACTIONS(2959), 1, anon_sym_AMP, - ACTIONS(2935), 1, + ACTIONS(2961), 1, anon_sym_PIPE, - ACTIONS(2939), 1, + ACTIONS(2965), 1, anon_sym_STAR_STAR, - ACTIONS(2943), 1, + ACTIONS(2969), 1, anon_sym_QMARK_QMARK, - ACTIONS(3373), 1, + ACTIONS(3406), 1, anon_sym_RBRACK, - STATE(2565), 1, + STATE(2547), 1, sym_type_arguments, - STATE(2742), 1, + STATE(2672), 1, aux_sym_array_repeat1, - ACTIONS(2929), 2, + ACTIONS(2955), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(2937), 2, + ACTIONS(2963), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2945), 2, + ACTIONS(2971), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1128), 2, + STATE(1126), 2, sym_template_string, sym_arguments, - ACTIONS(2913), 3, + ACTIONS(2939), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(2931), 3, + ACTIONS(2957), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(2921), 4, + ACTIONS(2947), 4, anon_sym_in, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2941), 5, + ACTIONS(2967), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [52322] = 17, + [53169] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(479), 1, anon_sym_BQUOTE, - ACTIONS(2145), 1, + ACTIONS(2161), 1, anon_sym_LPAREN, - ACTIONS(2175), 1, + ACTIONS(2191), 1, anon_sym_LBRACK, - ACTIONS(2177), 1, + ACTIONS(2193), 1, anon_sym_DOT, - ACTIONS(2863), 1, + ACTIONS(2883), 1, anon_sym_QMARK_DOT, - ACTIONS(2919), 1, + ACTIONS(2941), 1, + anon_sym_as, + ACTIONS(2945), 1, anon_sym_BANG, - ACTIONS(3076), 1, + ACTIONS(3264), 1, anon_sym_LT, - ACTIONS(3092), 1, + ACTIONS(3266), 1, + anon_sym_QMARK, + ACTIONS(3268), 1, + anon_sym_AMP_AMP, + ACTIONS(3274), 1, + anon_sym_AMP, + ACTIONS(3276), 1, + anon_sym_PIPE, + ACTIONS(3280), 1, anon_sym_STAR_STAR, - STATE(2565), 1, + ACTIONS(3284), 1, + anon_sym_QMARK_QMARK, + STATE(2547), 1, sym_type_arguments, - ACTIONS(2945), 2, + ACTIONS(2971), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3090), 2, + ACTIONS(3270), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(3278), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1128), 2, + STATE(1126), 2, sym_template_string, sym_arguments, - ACTIONS(3070), 3, + ACTIONS(3017), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + ACTIONS(3260), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(3084), 3, + ACTIONS(3272), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(2997), 7, + ACTIONS(3262), 4, anon_sym_in, anon_sym_GT, - anon_sym_QMARK, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2995), 13, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, + ACTIONS(3282), 5, 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_implements, - [52399] = 26, + [53262] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(573), 1, + ACTIONS(715), 1, anon_sym_BQUOTE, - ACTIONS(2161), 1, + ACTIONS(2177), 1, anon_sym_LPAREN, - ACTIONS(2379), 1, + ACTIONS(2314), 1, anon_sym_LBRACK, - ACTIONS(2410), 1, + ACTIONS(2470), 1, anon_sym_DOT, - ACTIONS(3166), 1, - anon_sym_as, - ACTIONS(3170), 1, + ACTIONS(3182), 1, anon_sym_BANG, - ACTIONS(3174), 1, - anon_sym_LT, - ACTIONS(3176), 1, - anon_sym_QMARK_DOT, - ACTIONS(3178), 1, - anon_sym_QMARK, - ACTIONS(3180), 1, - anon_sym_AMP_AMP, ACTIONS(3186), 1, - anon_sym_AMP, + anon_sym_LT, ACTIONS(3188), 1, - anon_sym_PIPE, - ACTIONS(3192), 1, + anon_sym_QMARK_DOT, + ACTIONS(3204), 1, anon_sym_STAR_STAR, - ACTIONS(3196), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3276), 1, - anon_sym_LBRACE, - STATE(2574), 1, + STATE(2592), 1, sym_type_arguments, - ACTIONS(2951), 2, - anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - ACTIONS(3182), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(3190), 2, + ACTIONS(3202), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3198), 2, + ACTIONS(3210), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1643), 2, + STATE(1669), 2, sym_template_string, sym_arguments, - ACTIONS(3164), 3, + ACTIONS(3176), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(3184), 3, + ACTIONS(3196), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(3172), 4, + ACTIONS(2973), 8, + anon_sym_LBRACE, anon_sym_in, anon_sym_GT, + anon_sym_QMARK, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3194), 5, + ACTIONS(2975), 12, + anon_sym_as, + anon_sym_COMMA, + 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, - [52494] = 25, + anon_sym_LBRACE_PIPE, + [53339] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(479), 1, anon_sym_BQUOTE, - ACTIONS(2157), 1, + ACTIONS(2161), 1, anon_sym_LPAREN, - ACTIONS(2266), 1, + ACTIONS(2191), 1, anon_sym_LBRACK, - ACTIONS(2282), 1, + ACTIONS(2193), 1, anon_sym_DOT, - ACTIONS(3100), 1, + ACTIONS(2883), 1, + anon_sym_QMARK_DOT, + ACTIONS(2941), 1, anon_sym_as, - ACTIONS(3102), 1, + ACTIONS(2945), 1, anon_sym_BANG, - ACTIONS(3106), 1, + ACTIONS(3264), 1, anon_sym_LT, - ACTIONS(3108), 1, - anon_sym_QMARK_DOT, - ACTIONS(3110), 1, + ACTIONS(3266), 1, anon_sym_QMARK, - ACTIONS(3112), 1, + ACTIONS(3268), 1, anon_sym_AMP_AMP, - ACTIONS(3118), 1, + ACTIONS(3274), 1, anon_sym_AMP, - ACTIONS(3120), 1, + ACTIONS(3276), 1, anon_sym_PIPE, - ACTIONS(3124), 1, + ACTIONS(3280), 1, anon_sym_STAR_STAR, - ACTIONS(3128), 1, + ACTIONS(3284), 1, anon_sym_QMARK_QMARK, - STATE(2501), 1, + STATE(2547), 1, sym_type_arguments, - ACTIONS(3114), 2, + ACTIONS(2971), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3270), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(3122), 2, + ACTIONS(3278), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3130), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1567), 2, + STATE(1126), 2, sym_template_string, sym_arguments, - ACTIONS(3098), 3, + ACTIONS(3003), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + ACTIONS(3260), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(3116), 3, + ACTIONS(3272), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(3358), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - ACTIONS(3104), 4, + ACTIONS(3262), 4, anon_sym_in, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3126), 5, + ACTIONS(3282), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [52587] = 26, + [53432] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(573), 1, + ACTIONS(479), 1, anon_sym_BQUOTE, ACTIONS(2161), 1, anon_sym_LPAREN, - ACTIONS(2379), 1, + ACTIONS(2191), 1, anon_sym_LBRACK, - ACTIONS(2410), 1, + ACTIONS(2193), 1, anon_sym_DOT, - ACTIONS(3166), 1, + ACTIONS(2883), 1, + anon_sym_QMARK_DOT, + ACTIONS(2941), 1, anon_sym_as, - ACTIONS(3170), 1, + ACTIONS(2945), 1, anon_sym_BANG, - ACTIONS(3174), 1, + ACTIONS(2949), 1, anon_sym_LT, - ACTIONS(3176), 1, - anon_sym_QMARK_DOT, - ACTIONS(3178), 1, + ACTIONS(2951), 1, anon_sym_QMARK, - ACTIONS(3180), 1, + ACTIONS(2953), 1, anon_sym_AMP_AMP, - ACTIONS(3186), 1, + ACTIONS(2959), 1, anon_sym_AMP, - ACTIONS(3188), 1, + ACTIONS(2961), 1, anon_sym_PIPE, - ACTIONS(3192), 1, + ACTIONS(2965), 1, anon_sym_STAR_STAR, - ACTIONS(3196), 1, + ACTIONS(2969), 1, anon_sym_QMARK_QMARK, - ACTIONS(3278), 1, - anon_sym_LBRACE, - STATE(2574), 1, - sym_type_arguments, - ACTIONS(2953), 2, + ACTIONS(3381), 1, anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - ACTIONS(3182), 2, + ACTIONS(3408), 1, + anon_sym_RBRACK, + STATE(2547), 1, + sym_type_arguments, + STATE(2699), 1, + aux_sym_array_repeat1, + ACTIONS(2955), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(3190), 2, + ACTIONS(2963), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3198), 2, + ACTIONS(2971), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1643), 2, + STATE(1126), 2, sym_template_string, sym_arguments, - ACTIONS(3164), 3, + ACTIONS(2939), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(3184), 3, + ACTIONS(2957), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(3172), 4, + ACTIONS(2947), 4, anon_sym_in, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3194), 5, + ACTIONS(2967), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [52682] = 26, + [53529] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(573), 1, + ACTIONS(479), 1, anon_sym_BQUOTE, + ACTIONS(1133), 1, + anon_sym_COMMA, ACTIONS(2161), 1, anon_sym_LPAREN, - ACTIONS(2379), 1, + ACTIONS(2191), 1, anon_sym_LBRACK, - ACTIONS(2410), 1, + ACTIONS(2193), 1, anon_sym_DOT, - ACTIONS(3166), 1, + ACTIONS(2883), 1, + anon_sym_QMARK_DOT, + ACTIONS(2941), 1, anon_sym_as, - ACTIONS(3170), 1, + ACTIONS(2945), 1, anon_sym_BANG, - ACTIONS(3174), 1, + ACTIONS(2949), 1, anon_sym_LT, - ACTIONS(3176), 1, - anon_sym_QMARK_DOT, - ACTIONS(3178), 1, + ACTIONS(2951), 1, anon_sym_QMARK, - ACTIONS(3180), 1, + ACTIONS(2953), 1, anon_sym_AMP_AMP, - ACTIONS(3186), 1, + ACTIONS(2959), 1, anon_sym_AMP, - ACTIONS(3188), 1, + ACTIONS(2961), 1, anon_sym_PIPE, - ACTIONS(3192), 1, + ACTIONS(2965), 1, anon_sym_STAR_STAR, - ACTIONS(3196), 1, + ACTIONS(2969), 1, anon_sym_QMARK_QMARK, - ACTIONS(3375), 1, - anon_sym_LBRACE, - STATE(2574), 1, + ACTIONS(3410), 1, + anon_sym_RBRACK, + STATE(2547), 1, sym_type_arguments, + STATE(2760), 1, + aux_sym_array_repeat1, ACTIONS(2955), 2, - anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - ACTIONS(3182), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(3190), 2, + ACTIONS(2963), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3198), 2, + ACTIONS(2971), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1643), 2, + STATE(1126), 2, sym_template_string, sym_arguments, - ACTIONS(3164), 3, + ACTIONS(2939), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(3184), 3, + ACTIONS(2957), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(3172), 4, + ACTIONS(2947), 4, anon_sym_in, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3194), 5, + ACTIONS(2967), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [52777] = 25, + [53626] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(715), 1, anon_sym_BQUOTE, - ACTIONS(2157), 1, + ACTIONS(2177), 1, anon_sym_LPAREN, - ACTIONS(2266), 1, + ACTIONS(2314), 1, anon_sym_LBRACK, - ACTIONS(2282), 1, + ACTIONS(2470), 1, anon_sym_DOT, - ACTIONS(3100), 1, + ACTIONS(3178), 1, anon_sym_as, - ACTIONS(3102), 1, + ACTIONS(3182), 1, anon_sym_BANG, - ACTIONS(3106), 1, + ACTIONS(3186), 1, anon_sym_LT, - ACTIONS(3108), 1, + ACTIONS(3188), 1, anon_sym_QMARK_DOT, - ACTIONS(3110), 1, + ACTIONS(3190), 1, anon_sym_QMARK, - ACTIONS(3112), 1, + ACTIONS(3192), 1, anon_sym_AMP_AMP, - ACTIONS(3118), 1, + ACTIONS(3198), 1, anon_sym_AMP, - ACTIONS(3120), 1, + ACTIONS(3200), 1, anon_sym_PIPE, - ACTIONS(3124), 1, + ACTIONS(3204), 1, anon_sym_STAR_STAR, - ACTIONS(3128), 1, + ACTIONS(3208), 1, anon_sym_QMARK_QMARK, - STATE(2501), 1, + ACTIONS(3412), 1, + anon_sym_LBRACE, + STATE(2592), 1, sym_type_arguments, - ACTIONS(3114), 2, + ACTIONS(3070), 2, + anon_sym_COMMA, + anon_sym_LBRACE_PIPE, + ACTIONS(3194), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(3122), 2, + ACTIONS(3202), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3130), 2, + ACTIONS(3210), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1567), 2, + STATE(1669), 2, sym_template_string, sym_arguments, - ACTIONS(3098), 3, + ACTIONS(3176), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(3116), 3, + ACTIONS(3196), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(3358), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - ACTIONS(3104), 4, + ACTIONS(3184), 4, anon_sym_in, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3126), 5, + ACTIONS(3206), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [52870] = 25, + [53721] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(479), 1, anon_sym_BQUOTE, - ACTIONS(2157), 1, + ACTIONS(1133), 1, + anon_sym_COMMA, + ACTIONS(2161), 1, anon_sym_LPAREN, - ACTIONS(2266), 1, + ACTIONS(2191), 1, anon_sym_LBRACK, - ACTIONS(2282), 1, + ACTIONS(2193), 1, anon_sym_DOT, - ACTIONS(3100), 1, + ACTIONS(2883), 1, + anon_sym_QMARK_DOT, + ACTIONS(2941), 1, anon_sym_as, - ACTIONS(3102), 1, + ACTIONS(2945), 1, anon_sym_BANG, - ACTIONS(3106), 1, + ACTIONS(2949), 1, anon_sym_LT, - ACTIONS(3108), 1, - anon_sym_QMARK_DOT, - ACTIONS(3110), 1, + ACTIONS(2951), 1, anon_sym_QMARK, - ACTIONS(3112), 1, + ACTIONS(2953), 1, anon_sym_AMP_AMP, - ACTIONS(3118), 1, + ACTIONS(2959), 1, anon_sym_AMP, - ACTIONS(3120), 1, + ACTIONS(2961), 1, anon_sym_PIPE, - ACTIONS(3124), 1, + ACTIONS(2965), 1, anon_sym_STAR_STAR, - ACTIONS(3128), 1, + ACTIONS(2969), 1, anon_sym_QMARK_QMARK, - STATE(2501), 1, + ACTIONS(3414), 1, + anon_sym_RBRACK, + STATE(2547), 1, sym_type_arguments, - ACTIONS(3114), 2, + STATE(2633), 1, + aux_sym_array_repeat1, + ACTIONS(2955), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(3122), 2, + ACTIONS(2963), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3130), 2, + ACTIONS(2971), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1567), 2, + STATE(1126), 2, sym_template_string, sym_arguments, - ACTIONS(3098), 3, + ACTIONS(2939), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(3116), 3, + ACTIONS(2957), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(3358), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - ACTIONS(3104), 4, + ACTIONS(2947), 4, anon_sym_in, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3126), 5, + ACTIONS(2967), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [52963] = 26, + [53818] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(715), 1, anon_sym_BQUOTE, - ACTIONS(2157), 1, + ACTIONS(2177), 1, anon_sym_LPAREN, - ACTIONS(2266), 1, + ACTIONS(2314), 1, anon_sym_LBRACK, - ACTIONS(2282), 1, + ACTIONS(2470), 1, anon_sym_DOT, - ACTIONS(3100), 1, - anon_sym_as, - ACTIONS(3102), 1, + ACTIONS(3182), 1, anon_sym_BANG, - ACTIONS(3106), 1, + ACTIONS(3186), 1, anon_sym_LT, - ACTIONS(3108), 1, + ACTIONS(3188), 1, anon_sym_QMARK_DOT, - ACTIONS(3110), 1, - anon_sym_QMARK, - ACTIONS(3112), 1, - anon_sym_AMP_AMP, - ACTIONS(3118), 1, - anon_sym_AMP, - ACTIONS(3120), 1, - anon_sym_PIPE, - ACTIONS(3124), 1, + ACTIONS(3204), 1, anon_sym_STAR_STAR, - ACTIONS(3128), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3377), 1, - anon_sym_COMMA, - STATE(2501), 1, + STATE(2592), 1, sym_type_arguments, - ACTIONS(3114), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(3122), 2, + ACTIONS(3202), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3130), 2, + ACTIONS(3210), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3379), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(1567), 2, + STATE(1669), 2, sym_template_string, sym_arguments, - ACTIONS(3098), 3, + ACTIONS(3176), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(3116), 3, + ACTIONS(3196), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(3104), 4, + ACTIONS(2973), 4, + anon_sym_LBRACE, + anon_sym_QMARK, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3184), 4, anon_sym_in, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3126), 5, + ACTIONS(3206), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [53058] = 21, + ACTIONS(2975), 7, + anon_sym_as, + anon_sym_COMMA, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + anon_sym_LBRACE_PIPE, + [53899] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(479), 1, + ACTIONS(715), 1, anon_sym_BQUOTE, - ACTIONS(2145), 1, + ACTIONS(2177), 1, anon_sym_LPAREN, - ACTIONS(2175), 1, + ACTIONS(2314), 1, anon_sym_LBRACK, - ACTIONS(2177), 1, + ACTIONS(2470), 1, anon_sym_DOT, - ACTIONS(2863), 1, - anon_sym_QMARK_DOT, - ACTIONS(2919), 1, + ACTIONS(3182), 1, anon_sym_BANG, - ACTIONS(3076), 1, + ACTIONS(3186), 1, anon_sym_LT, - ACTIONS(3080), 1, + ACTIONS(3188), 1, + anon_sym_QMARK_DOT, + ACTIONS(3192), 1, anon_sym_AMP_AMP, - ACTIONS(3086), 1, + ACTIONS(3198), 1, anon_sym_AMP, - ACTIONS(3092), 1, + ACTIONS(3204), 1, anon_sym_STAR_STAR, - STATE(2565), 1, + STATE(2592), 1, sym_type_arguments, - ACTIONS(2945), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(2997), 2, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(3090), 2, + ACTIONS(3202), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1128), 2, + ACTIONS(3210), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1669), 2, sym_template_string, sym_arguments, - ACTIONS(3070), 3, + ACTIONS(2973), 3, + anon_sym_LBRACE, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(3176), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(3084), 3, + ACTIONS(3196), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(3074), 4, + ACTIONS(3184), 4, anon_sym_in, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3094), 5, + ACTIONS(3206), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(2995), 7, + ACTIONS(2975), 6, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_PIPE_PIPE, anon_sym_CARET, anon_sym_QMARK_QMARK, - anon_sym_implements, - [53143] = 16, + anon_sym_LBRACE_PIPE, + [53984] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(479), 1, + ACTIONS(715), 1, anon_sym_BQUOTE, - ACTIONS(2145), 1, + ACTIONS(2177), 1, anon_sym_LPAREN, - ACTIONS(2175), 1, + ACTIONS(2314), 1, anon_sym_LBRACK, - ACTIONS(2177), 1, + ACTIONS(2470), 1, anon_sym_DOT, - ACTIONS(2863), 1, - anon_sym_QMARK_DOT, - ACTIONS(2919), 1, + ACTIONS(3182), 1, anon_sym_BANG, - ACTIONS(3092), 1, + ACTIONS(3188), 1, + anon_sym_QMARK_DOT, + ACTIONS(3204), 1, anon_sym_STAR_STAR, - ACTIONS(3370), 1, + ACTIONS(3403), 1, anon_sym_LT, - STATE(2565), 1, + STATE(2592), 1, sym_type_arguments, - ACTIONS(2945), 2, + ACTIONS(3210), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1128), 2, + STATE(1669), 2, sym_template_string, sym_arguments, - ACTIONS(3070), 3, + ACTIONS(3176), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(3084), 3, + ACTIONS(3196), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(2997), 9, + ACTIONS(2973), 10, + anon_sym_LBRACE, anon_sym_in, anon_sym_GT, anon_sym_QMARK, @@ -110696,522 +111802,661 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2995), 13, + ACTIONS(2975), 12, anon_sym_as, + anon_sym_COMMA, + 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_LBRACE_PIPE, + [54059] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(715), 1, + anon_sym_BQUOTE, + ACTIONS(2177), 1, + anon_sym_LPAREN, + ACTIONS(2314), 1, + anon_sym_LBRACK, + ACTIONS(2470), 1, + anon_sym_DOT, + ACTIONS(3182), 1, + anon_sym_BANG, + ACTIONS(3188), 1, + anon_sym_QMARK_DOT, + ACTIONS(3403), 1, + anon_sym_LT, + STATE(2592), 1, + sym_type_arguments, + ACTIONS(3210), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1669), 2, + sym_template_string, + sym_arguments, + ACTIONS(2973), 13, + anon_sym_STAR, anon_sym_LBRACE, + anon_sym_in, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2975), 16, + anon_sym_as, anon_sym_COMMA, 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_implements, - [53218] = 27, + anon_sym_LBRACE_PIPE, + [54128] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(479), 1, anon_sym_BQUOTE, - ACTIONS(2145), 1, + ACTIONS(1133), 1, + anon_sym_COMMA, + ACTIONS(2161), 1, anon_sym_LPAREN, - ACTIONS(2175), 1, + ACTIONS(2191), 1, anon_sym_LBRACK, - ACTIONS(2177), 1, + ACTIONS(2193), 1, anon_sym_DOT, - ACTIONS(2863), 1, + ACTIONS(2883), 1, anon_sym_QMARK_DOT, - ACTIONS(2915), 1, + ACTIONS(2941), 1, anon_sym_as, - ACTIONS(2919), 1, + ACTIONS(2945), 1, anon_sym_BANG, - ACTIONS(2923), 1, + ACTIONS(2949), 1, anon_sym_LT, - ACTIONS(2925), 1, + ACTIONS(2951), 1, anon_sym_QMARK, - ACTIONS(2927), 1, + ACTIONS(2953), 1, anon_sym_AMP_AMP, - ACTIONS(2933), 1, + ACTIONS(2959), 1, anon_sym_AMP, - ACTIONS(2935), 1, + ACTIONS(2961), 1, anon_sym_PIPE, - ACTIONS(2939), 1, + ACTIONS(2965), 1, anon_sym_STAR_STAR, - ACTIONS(2943), 1, + ACTIONS(2969), 1, anon_sym_QMARK_QMARK, - ACTIONS(3366), 1, - anon_sym_COMMA, - ACTIONS(3381), 1, + ACTIONS(3416), 1, anon_sym_RBRACK, - STATE(2565), 1, + STATE(2547), 1, sym_type_arguments, - STATE(2681), 1, + STATE(2699), 1, aux_sym_array_repeat1, - ACTIONS(2929), 2, + ACTIONS(2955), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(2937), 2, + ACTIONS(2963), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2945), 2, + ACTIONS(2971), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1128), 2, + STATE(1126), 2, sym_template_string, sym_arguments, - ACTIONS(2913), 3, + ACTIONS(2939), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(2931), 3, + ACTIONS(2957), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(2921), 4, + ACTIONS(2947), 4, anon_sym_in, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2941), 5, + ACTIONS(2967), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [53315] = 13, + [54225] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(479), 1, + ACTIONS(715), 1, anon_sym_BQUOTE, - ACTIONS(2145), 1, + ACTIONS(2177), 1, anon_sym_LPAREN, - ACTIONS(2175), 1, + ACTIONS(2314), 1, anon_sym_LBRACK, - ACTIONS(2177), 1, + ACTIONS(2470), 1, anon_sym_DOT, - ACTIONS(2863), 1, - anon_sym_QMARK_DOT, - ACTIONS(2919), 1, + ACTIONS(3182), 1, anon_sym_BANG, - ACTIONS(3370), 1, + ACTIONS(3186), 1, anon_sym_LT, - STATE(2565), 1, + ACTIONS(3188), 1, + anon_sym_QMARK_DOT, + ACTIONS(3192), 1, + anon_sym_AMP_AMP, + ACTIONS(3198), 1, + anon_sym_AMP, + ACTIONS(3200), 1, + anon_sym_PIPE, + ACTIONS(3204), 1, + anon_sym_STAR_STAR, + STATE(2592), 1, sym_type_arguments, - ACTIONS(2945), 2, + ACTIONS(2973), 2, + anon_sym_LBRACE, + anon_sym_QMARK, + ACTIONS(3194), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(3202), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3210), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1128), 2, + STATE(1669), 2, sym_template_string, sym_arguments, - ACTIONS(2997), 12, + ACTIONS(3176), 3, anon_sym_STAR, - anon_sym_in, - anon_sym_GT, anon_sym_SLASH, - anon_sym_QMARK, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2995), 17, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(3196), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(2975), 4, + anon_sym_as, + anon_sym_COMMA, + anon_sym_QMARK_QMARK, + anon_sym_LBRACE_PIPE, + ACTIONS(3184), 4, + anon_sym_in, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3206), 5, 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_implements, - [53384] = 23, + [54314] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(479), 1, + ACTIONS(715), 1, anon_sym_BQUOTE, - ACTIONS(2145), 1, + ACTIONS(2177), 1, anon_sym_LPAREN, - ACTIONS(2175), 1, + ACTIONS(2314), 1, anon_sym_LBRACK, - ACTIONS(2177), 1, + ACTIONS(2470), 1, anon_sym_DOT, - ACTIONS(2863), 1, - anon_sym_QMARK_DOT, - ACTIONS(2919), 1, + ACTIONS(3178), 1, + anon_sym_as, + ACTIONS(3182), 1, anon_sym_BANG, - ACTIONS(2997), 1, - anon_sym_QMARK, - ACTIONS(3076), 1, + ACTIONS(3186), 1, anon_sym_LT, - ACTIONS(3080), 1, + ACTIONS(3188), 1, + anon_sym_QMARK_DOT, + ACTIONS(3190), 1, + anon_sym_QMARK, + ACTIONS(3192), 1, anon_sym_AMP_AMP, - ACTIONS(3086), 1, + ACTIONS(3198), 1, anon_sym_AMP, - ACTIONS(3088), 1, + ACTIONS(3200), 1, anon_sym_PIPE, - ACTIONS(3092), 1, + ACTIONS(3204), 1, anon_sym_STAR_STAR, - STATE(2565), 1, + ACTIONS(3208), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3418), 1, + anon_sym_LBRACE, + STATE(2592), 1, sym_type_arguments, - ACTIONS(2945), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3082), 2, + ACTIONS(3003), 2, + anon_sym_COMMA, + anon_sym_LBRACE_PIPE, + ACTIONS(3194), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(3090), 2, + ACTIONS(3202), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1128), 2, + ACTIONS(3210), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1669), 2, sym_template_string, sym_arguments, - ACTIONS(3070), 3, + ACTIONS(3176), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(3084), 3, + ACTIONS(3196), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(3074), 4, + ACTIONS(3184), 4, anon_sym_in, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2995), 5, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_QMARK_QMARK, - anon_sym_implements, - ACTIONS(3094), 5, + ACTIONS(3206), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [53473] = 4, + [54409] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(3387), 1, - sym_regex_flags, - ACTIONS(3383), 16, - anon_sym_STAR, - anon_sym_as, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - 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_instanceof, - ACTIONS(3385), 24, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(2173), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, + ACTIONS(2282), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(2298), 1, anon_sym_DOT, + ACTIONS(3080), 1, + anon_sym_BANG, + ACTIONS(3084), 1, + anon_sym_LT, + ACTIONS(3086), 1, anon_sym_QMARK_DOT, + ACTIONS(3088), 1, anon_sym_AMP_AMP, + ACTIONS(3094), 1, + anon_sym_AMP, + ACTIONS(3096), 1, + anon_sym_PIPE, + ACTIONS(3100), 1, + anon_sym_STAR_STAR, + ACTIONS(3113), 1, + anon_sym_as, + ACTIONS(3115), 1, + anon_sym_QMARK, + ACTIONS(3117), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3340), 1, + anon_sym_COMMA, + STATE(2611), 1, + sym_type_arguments, + ACTIONS(3090), 2, anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(3098), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3104), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3420), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(1529), 2, + sym_template_string, + sym_arguments, + ACTIONS(3078), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(3092), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(3082), 4, + anon_sym_in, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3102), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [53524] = 4, + anon_sym_instanceof, + [54504] = 26, ACTIONS(3), 1, sym_comment, - STATE(1472), 1, - sym_type_arguments, - ACTIONS(1519), 14, - anon_sym_STAR, + ACTIONS(715), 1, + anon_sym_BQUOTE, + ACTIONS(2177), 1, + anon_sym_LPAREN, + ACTIONS(2314), 1, + anon_sym_LBRACK, + ACTIONS(2470), 1, + anon_sym_DOT, + ACTIONS(3178), 1, + anon_sym_as, + ACTIONS(3182), 1, anon_sym_BANG, - anon_sym_in, + ACTIONS(3186), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(3188), 1, + anon_sym_QMARK_DOT, + ACTIONS(3190), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(3192), 1, + anon_sym_AMP_AMP, + ACTIONS(3198), 1, anon_sym_AMP, + ACTIONS(3200), 1, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1517), 26, - sym__automatic_semicolon, - anon_sym_as, + ACTIONS(3204), 1, + anon_sym_STAR_STAR, + ACTIONS(3208), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3422), 1, + anon_sym_LBRACE, + STATE(2592), 1, + sym_type_arguments, + ACTIONS(3068), 2, 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_LBRACE_PIPE, + ACTIONS(3194), 2, anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(3202), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3210), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1669), 2, + sym_template_string, + sym_arguments, + ACTIONS(3176), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(3196), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(3184), 4, + anon_sym_in, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3206), 5, 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_extends, - [53575] = 25, + [54599] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(479), 1, + ACTIONS(715), 1, anon_sym_BQUOTE, - ACTIONS(2145), 1, + ACTIONS(2177), 1, anon_sym_LPAREN, - ACTIONS(2175), 1, + ACTIONS(2314), 1, anon_sym_LBRACK, - ACTIONS(2177), 1, + ACTIONS(2470), 1, anon_sym_DOT, - ACTIONS(2863), 1, - anon_sym_QMARK_DOT, - ACTIONS(2915), 1, + ACTIONS(3178), 1, anon_sym_as, - ACTIONS(2919), 1, + ACTIONS(3182), 1, anon_sym_BANG, - ACTIONS(3076), 1, + ACTIONS(3186), 1, anon_sym_LT, - ACTIONS(3078), 1, + ACTIONS(3188), 1, + anon_sym_QMARK_DOT, + ACTIONS(3190), 1, anon_sym_QMARK, - ACTIONS(3080), 1, + ACTIONS(3192), 1, anon_sym_AMP_AMP, - ACTIONS(3086), 1, + ACTIONS(3198), 1, anon_sym_AMP, - ACTIONS(3088), 1, + ACTIONS(3200), 1, anon_sym_PIPE, - ACTIONS(3092), 1, + ACTIONS(3204), 1, anon_sym_STAR_STAR, - ACTIONS(3096), 1, + ACTIONS(3208), 1, anon_sym_QMARK_QMARK, - STATE(2565), 1, + ACTIONS(3312), 1, + anon_sym_LBRACE, + STATE(2592), 1, sym_type_arguments, - ACTIONS(2945), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3082), 2, + ACTIONS(3031), 2, + anon_sym_COMMA, + anon_sym_LBRACE_PIPE, + ACTIONS(3194), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(3090), 2, + ACTIONS(3202), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1128), 2, + ACTIONS(3210), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1669), 2, sym_template_string, sym_arguments, - ACTIONS(2993), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_implements, - ACTIONS(3070), 3, + ACTIONS(3176), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(3084), 3, + ACTIONS(3196), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(3074), 4, + ACTIONS(3184), 4, anon_sym_in, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3094), 5, + ACTIONS(3206), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [53668] = 5, + [54694] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(3389), 1, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(2173), 1, + anon_sym_LPAREN, + ACTIONS(2282), 1, + anon_sym_LBRACK, + ACTIONS(2298), 1, anon_sym_DOT, - STATE(1465), 1, - sym_type_arguments, - ACTIONS(1661), 14, - anon_sym_STAR, + ACTIONS(3080), 1, anon_sym_BANG, - anon_sym_in, + ACTIONS(3084), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(3086), 1, + anon_sym_QMARK_DOT, + ACTIONS(3088), 1, + anon_sym_AMP_AMP, + ACTIONS(3094), 1, anon_sym_AMP, + ACTIONS(3096), 1, anon_sym_PIPE, + ACTIONS(3100), 1, + anon_sym_STAR_STAR, + ACTIONS(3113), 1, + anon_sym_as, + ACTIONS(3115), 1, + anon_sym_QMARK, + ACTIONS(3117), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3340), 1, + anon_sym_COMMA, + STATE(2611), 1, + sym_type_arguments, + ACTIONS(3090), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(3098), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1659), 25, + ACTIONS(3104), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3424), 2, sym__automatic_semicolon, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + STATE(1529), 2, + sym_template_string, + sym_arguments, + ACTIONS(3078), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(3092), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(3082), 4, + anon_sym_in, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3102), 5, 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_extends, - [53721] = 25, + [54789] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(479), 1, anon_sym_BQUOTE, - ACTIONS(2145), 1, + ACTIONS(1133), 1, + anon_sym_COMMA, + ACTIONS(2161), 1, anon_sym_LPAREN, - ACTIONS(2175), 1, + ACTIONS(2191), 1, anon_sym_LBRACK, - ACTIONS(2177), 1, + ACTIONS(2193), 1, anon_sym_DOT, - ACTIONS(2863), 1, + ACTIONS(2883), 1, anon_sym_QMARK_DOT, - ACTIONS(2915), 1, + ACTIONS(2941), 1, anon_sym_as, - ACTIONS(2919), 1, + ACTIONS(2945), 1, anon_sym_BANG, - ACTIONS(3076), 1, + ACTIONS(2949), 1, anon_sym_LT, - ACTIONS(3078), 1, + ACTIONS(2951), 1, anon_sym_QMARK, - ACTIONS(3080), 1, + ACTIONS(2953), 1, anon_sym_AMP_AMP, - ACTIONS(3086), 1, + ACTIONS(2959), 1, anon_sym_AMP, - ACTIONS(3088), 1, + ACTIONS(2961), 1, anon_sym_PIPE, - ACTIONS(3092), 1, + ACTIONS(2965), 1, anon_sym_STAR_STAR, - ACTIONS(3096), 1, + ACTIONS(2969), 1, anon_sym_QMARK_QMARK, - STATE(2565), 1, + ACTIONS(3426), 1, + anon_sym_RPAREN, + STATE(2547), 1, sym_type_arguments, - ACTIONS(2945), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3082), 2, + STATE(2725), 1, + aux_sym_array_repeat1, + ACTIONS(2955), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(3090), 2, + ACTIONS(2963), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1128), 2, + ACTIONS(2971), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1126), 2, sym_template_string, - sym_arguments, - ACTIONS(3002), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_implements, - ACTIONS(3070), 3, + sym_arguments, + ACTIONS(2939), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(3084), 3, + ACTIONS(2957), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(3074), 4, + ACTIONS(2947), 4, anon_sym_in, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3094), 5, + ACTIONS(2967), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [53814] = 6, + [54886] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3389), 1, + ACTIONS(2191), 1, + anon_sym_LBRACK, + ACTIONS(2193), 1, anon_sym_DOT, - ACTIONS(3391), 1, - anon_sym_LT, - STATE(1465), 1, - sym_type_arguments, - ACTIONS(1672), 13, + ACTIONS(2195), 1, + anon_sym_QMARK_DOT, + ACTIONS(1527), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1525), 6, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(1037), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1670), 25, - sym__automatic_semicolon, + ACTIONS(1039), 18, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -111228,248 +112473,240 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, - [53869] = 25, + [54945] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(479), 1, anon_sym_BQUOTE, - ACTIONS(2145), 1, + ACTIONS(1133), 1, + anon_sym_COMMA, + ACTIONS(2161), 1, anon_sym_LPAREN, - ACTIONS(2175), 1, + ACTIONS(2191), 1, anon_sym_LBRACK, - ACTIONS(2177), 1, + ACTIONS(2193), 1, anon_sym_DOT, - ACTIONS(2863), 1, + ACTIONS(2883), 1, anon_sym_QMARK_DOT, - ACTIONS(2915), 1, + ACTIONS(2941), 1, anon_sym_as, - ACTIONS(2919), 1, + ACTIONS(2945), 1, anon_sym_BANG, - ACTIONS(3076), 1, + ACTIONS(2949), 1, anon_sym_LT, - ACTIONS(3078), 1, + ACTIONS(2951), 1, anon_sym_QMARK, - ACTIONS(3080), 1, + ACTIONS(2953), 1, anon_sym_AMP_AMP, - ACTIONS(3086), 1, + ACTIONS(2959), 1, anon_sym_AMP, - ACTIONS(3088), 1, + ACTIONS(2961), 1, anon_sym_PIPE, - ACTIONS(3092), 1, + ACTIONS(2965), 1, anon_sym_STAR_STAR, - ACTIONS(3096), 1, + ACTIONS(2969), 1, anon_sym_QMARK_QMARK, - STATE(2565), 1, + ACTIONS(3428), 1, + anon_sym_RBRACK, + STATE(2547), 1, sym_type_arguments, - ACTIONS(2945), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3082), 2, + STATE(2699), 1, + aux_sym_array_repeat1, + ACTIONS(2955), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(3090), 2, + ACTIONS(2963), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1128), 2, + ACTIONS(2971), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1126), 2, sym_template_string, sym_arguments, - ACTIONS(2917), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_implements, - ACTIONS(3070), 3, + ACTIONS(2939), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(3084), 3, + ACTIONS(2957), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(3074), 4, + ACTIONS(2947), 4, anon_sym_in, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3094), 5, + ACTIONS(2967), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [53962] = 5, + [55042] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(3394), 1, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(2173), 1, + anon_sym_LPAREN, + ACTIONS(2282), 1, + anon_sym_LBRACK, + ACTIONS(2298), 1, anon_sym_DOT, - STATE(1465), 1, - sym_type_arguments, - ACTIONS(1585), 14, - anon_sym_STAR, + ACTIONS(3080), 1, anon_sym_BANG, - anon_sym_in, + ACTIONS(3084), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(3086), 1, + anon_sym_QMARK_DOT, + ACTIONS(3088), 1, + anon_sym_AMP_AMP, + ACTIONS(3094), 1, anon_sym_AMP, + ACTIONS(3096), 1, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1583), 25, - sym__automatic_semicolon, + ACTIONS(3100), 1, + anon_sym_STAR_STAR, + ACTIONS(3113), 1, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, + ACTIONS(3115), 1, + anon_sym_QMARK, + ACTIONS(3117), 1, + anon_sym_QMARK_QMARK, + STATE(2611), 1, + sym_type_arguments, + ACTIONS(3090), 2, anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(3098), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3104), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1529), 2, + sym_template_string, + sym_arguments, + ACTIONS(3078), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(3092), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(3376), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(3082), 4, + anon_sym_in, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3102), 5, 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_extends, - [54015] = 27, + [55135] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(479), 1, + ACTIONS(715), 1, anon_sym_BQUOTE, - ACTIONS(1143), 1, - anon_sym_COMMA, - ACTIONS(2145), 1, + ACTIONS(2177), 1, anon_sym_LPAREN, - ACTIONS(2175), 1, + ACTIONS(2314), 1, anon_sym_LBRACK, - ACTIONS(2177), 1, + ACTIONS(2470), 1, anon_sym_DOT, - ACTIONS(2863), 1, - anon_sym_QMARK_DOT, - ACTIONS(2915), 1, + ACTIONS(3178), 1, anon_sym_as, - ACTIONS(2919), 1, + ACTIONS(3182), 1, anon_sym_BANG, - ACTIONS(2923), 1, + ACTIONS(3186), 1, anon_sym_LT, - ACTIONS(2925), 1, + ACTIONS(3188), 1, + anon_sym_QMARK_DOT, + ACTIONS(3190), 1, anon_sym_QMARK, - ACTIONS(2927), 1, + ACTIONS(3192), 1, anon_sym_AMP_AMP, - ACTIONS(2933), 1, + ACTIONS(3198), 1, anon_sym_AMP, - ACTIONS(2935), 1, + ACTIONS(3200), 1, anon_sym_PIPE, - ACTIONS(2939), 1, + ACTIONS(3204), 1, anon_sym_STAR_STAR, - ACTIONS(2943), 1, + ACTIONS(3208), 1, anon_sym_QMARK_QMARK, - ACTIONS(3396), 1, - anon_sym_RBRACK, - STATE(2565), 1, + ACTIONS(3290), 1, + anon_sym_LBRACE, + STATE(2592), 1, sym_type_arguments, - STATE(2755), 1, - aux_sym_array_repeat1, - ACTIONS(2929), 2, + ACTIONS(3053), 2, + anon_sym_COMMA, + anon_sym_LBRACE_PIPE, + ACTIONS(3194), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(2937), 2, + ACTIONS(3202), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2945), 2, + ACTIONS(3210), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1128), 2, + STATE(1669), 2, sym_template_string, sym_arguments, - ACTIONS(2913), 3, + ACTIONS(3176), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(2931), 3, + ACTIONS(3196), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(2921), 4, + ACTIONS(3184), 4, anon_sym_in, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2941), 5, + ACTIONS(3206), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [54112] = 4, + [55230] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(3398), 1, - sym__automatic_semicolon, - ACTIONS(949), 14, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(947), 26, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_else, + ACTIONS(479), 1, + anon_sym_BQUOTE, + ACTIONS(2161), 1, anon_sym_LPAREN, - anon_sym_while, - anon_sym_SEMI, + ACTIONS(2191), 1, anon_sym_LBRACK, + ACTIONS(2193), 1, anon_sym_DOT, + ACTIONS(2883), 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, + ACTIONS(3344), 1, + anon_sym_LT, + STATE(2547), 1, + sym_type_arguments, + ACTIONS(2971), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [54163] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(949), 14, + STATE(1126), 2, + sym_template_string, + sym_arguments, + ACTIONS(3024), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -111480,18 +112717,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(947), 27, - sym__automatic_semicolon, + ACTIONS(3026), 17, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_else, - anon_sym_LPAREN, - anon_sym_while, - 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, @@ -111505,384 +112734,313 @@ static 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, - [54212] = 25, + anon_sym_implements, + [55297] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(479), 1, + ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(2145), 1, + ACTIONS(2173), 1, anon_sym_LPAREN, - ACTIONS(2175), 1, + ACTIONS(2282), 1, anon_sym_LBRACK, - ACTIONS(2177), 1, + ACTIONS(2298), 1, anon_sym_DOT, - ACTIONS(2863), 1, - anon_sym_QMARK_DOT, - ACTIONS(2915), 1, - anon_sym_as, - ACTIONS(2919), 1, + ACTIONS(3080), 1, anon_sym_BANG, - ACTIONS(3076), 1, + ACTIONS(3084), 1, anon_sym_LT, - ACTIONS(3078), 1, - anon_sym_QMARK, - ACTIONS(3080), 1, - anon_sym_AMP_AMP, ACTIONS(3086), 1, - anon_sym_AMP, + anon_sym_QMARK_DOT, ACTIONS(3088), 1, + anon_sym_AMP_AMP, + ACTIONS(3094), 1, + anon_sym_AMP, + ACTIONS(3096), 1, anon_sym_PIPE, - ACTIONS(3092), 1, + ACTIONS(3100), 1, anon_sym_STAR_STAR, - ACTIONS(3096), 1, + ACTIONS(3113), 1, + anon_sym_as, + ACTIONS(3115), 1, + anon_sym_QMARK, + ACTIONS(3117), 1, anon_sym_QMARK_QMARK, - STATE(2565), 1, + STATE(2611), 1, sym_type_arguments, - ACTIONS(2945), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3082), 2, + ACTIONS(3090), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(3090), 2, + ACTIONS(3098), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1128), 2, + ACTIONS(3104), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1529), 2, sym_template_string, sym_arguments, - ACTIONS(2947), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_implements, - ACTIONS(3070), 3, + ACTIONS(3078), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(3084), 3, + ACTIONS(3092), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(3074), 4, + ACTIONS(3376), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(3082), 4, anon_sym_in, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3094), 5, + ACTIONS(3102), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [54305] = 25, + [55390] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(479), 1, anon_sym_BQUOTE, - ACTIONS(2145), 1, + ACTIONS(2161), 1, anon_sym_LPAREN, - ACTIONS(2175), 1, + ACTIONS(2191), 1, anon_sym_LBRACK, - ACTIONS(2177), 1, + ACTIONS(2193), 1, anon_sym_DOT, - ACTIONS(2863), 1, + ACTIONS(2883), 1, anon_sym_QMARK_DOT, - ACTIONS(2915), 1, - anon_sym_as, - ACTIONS(2919), 1, + ACTIONS(2945), 1, anon_sym_BANG, - ACTIONS(3076), 1, + ACTIONS(3264), 1, anon_sym_LT, - ACTIONS(3078), 1, - anon_sym_QMARK, - ACTIONS(3080), 1, - anon_sym_AMP_AMP, - ACTIONS(3086), 1, - anon_sym_AMP, - ACTIONS(3088), 1, - anon_sym_PIPE, - ACTIONS(3092), 1, + ACTIONS(3280), 1, anon_sym_STAR_STAR, - ACTIONS(3096), 1, - anon_sym_QMARK_QMARK, - STATE(2565), 1, + STATE(2547), 1, sym_type_arguments, - ACTIONS(2945), 2, + ACTIONS(2971), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3082), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(3090), 2, + ACTIONS(3278), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1128), 2, + STATE(1126), 2, sym_template_string, sym_arguments, - ACTIONS(2949), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_implements, - ACTIONS(3070), 3, + ACTIONS(3260), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(3084), 3, + ACTIONS(3272), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(3074), 4, + ACTIONS(2973), 7, anon_sym_in, anon_sym_GT, + anon_sym_QMARK, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3094), 5, + ACTIONS(2975), 13, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + 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, - [54398] = 25, + anon_sym_implements, + [55467] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(479), 1, + ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(2145), 1, + ACTIONS(2173), 1, anon_sym_LPAREN, - ACTIONS(2175), 1, + ACTIONS(2282), 1, anon_sym_LBRACK, - ACTIONS(2177), 1, + ACTIONS(2298), 1, anon_sym_DOT, - ACTIONS(2863), 1, - anon_sym_QMARK_DOT, - ACTIONS(2915), 1, - anon_sym_as, - ACTIONS(2919), 1, + ACTIONS(3080), 1, anon_sym_BANG, - ACTIONS(3076), 1, + ACTIONS(3084), 1, anon_sym_LT, - ACTIONS(3078), 1, - anon_sym_QMARK, - ACTIONS(3080), 1, - anon_sym_AMP_AMP, ACTIONS(3086), 1, - anon_sym_AMP, + anon_sym_QMARK_DOT, ACTIONS(3088), 1, + anon_sym_AMP_AMP, + ACTIONS(3094), 1, + anon_sym_AMP, + ACTIONS(3096), 1, anon_sym_PIPE, - ACTIONS(3092), 1, + ACTIONS(3100), 1, anon_sym_STAR_STAR, - ACTIONS(3096), 1, + ACTIONS(3113), 1, + anon_sym_as, + ACTIONS(3115), 1, + anon_sym_QMARK, + ACTIONS(3117), 1, anon_sym_QMARK_QMARK, - STATE(2565), 1, + STATE(2611), 1, sym_type_arguments, - ACTIONS(2945), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3082), 2, + ACTIONS(3090), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(3090), 2, + ACTIONS(3098), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1128), 2, + ACTIONS(3104), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1529), 2, sym_template_string, sym_arguments, - ACTIONS(2951), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_implements, - ACTIONS(3070), 3, + ACTIONS(3078), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(3084), 3, + ACTIONS(3092), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(3074), 4, + ACTIONS(3376), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(3082), 4, anon_sym_in, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3094), 5, + ACTIONS(3102), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [54491] = 25, + [55560] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(479), 1, anon_sym_BQUOTE, - ACTIONS(2145), 1, + ACTIONS(2161), 1, anon_sym_LPAREN, - ACTIONS(2175), 1, + ACTIONS(2191), 1, anon_sym_LBRACK, - ACTIONS(2177), 1, + ACTIONS(2193), 1, anon_sym_DOT, - ACTIONS(2863), 1, + ACTIONS(2883), 1, anon_sym_QMARK_DOT, - ACTIONS(2915), 1, + ACTIONS(2941), 1, anon_sym_as, - ACTIONS(2919), 1, + ACTIONS(2945), 1, anon_sym_BANG, - ACTIONS(3076), 1, + ACTIONS(3264), 1, anon_sym_LT, - ACTIONS(3078), 1, + ACTIONS(3266), 1, anon_sym_QMARK, - ACTIONS(3080), 1, + ACTIONS(3268), 1, anon_sym_AMP_AMP, - ACTIONS(3086), 1, + ACTIONS(3274), 1, anon_sym_AMP, - ACTIONS(3088), 1, + ACTIONS(3276), 1, anon_sym_PIPE, - ACTIONS(3092), 1, + ACTIONS(3280), 1, anon_sym_STAR_STAR, - ACTIONS(3096), 1, + ACTIONS(3284), 1, anon_sym_QMARK_QMARK, - STATE(2565), 1, + STATE(2547), 1, sym_type_arguments, - ACTIONS(2945), 2, + ACTIONS(2971), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3082), 2, + ACTIONS(3270), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(3090), 2, + ACTIONS(3278), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1128), 2, + STATE(1126), 2, sym_template_string, sym_arguments, - ACTIONS(2953), 3, + ACTIONS(3053), 3, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_implements, - ACTIONS(3070), 3, + ACTIONS(3260), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(3084), 3, + ACTIONS(3272), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(3074), 4, + ACTIONS(3262), 4, anon_sym_in, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3094), 5, + ACTIONS(3282), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [54584] = 25, + [55653] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(479), 1, + ACTIONS(715), 1, anon_sym_BQUOTE, - ACTIONS(2145), 1, + ACTIONS(2177), 1, anon_sym_LPAREN, - ACTIONS(2175), 1, + ACTIONS(2314), 1, anon_sym_LBRACK, - ACTIONS(2177), 1, + ACTIONS(2470), 1, anon_sym_DOT, - ACTIONS(2863), 1, - anon_sym_QMARK_DOT, - ACTIONS(2915), 1, - anon_sym_as, - ACTIONS(2919), 1, + ACTIONS(3182), 1, anon_sym_BANG, - ACTIONS(3076), 1, + ACTIONS(3188), 1, + anon_sym_QMARK_DOT, + ACTIONS(3365), 1, anon_sym_LT, - ACTIONS(3078), 1, - anon_sym_QMARK, - ACTIONS(3080), 1, - anon_sym_AMP_AMP, - ACTIONS(3086), 1, - anon_sym_AMP, - ACTIONS(3088), 1, - anon_sym_PIPE, - ACTIONS(3092), 1, - anon_sym_STAR_STAR, - ACTIONS(3096), 1, - anon_sym_QMARK_QMARK, - STATE(2565), 1, + STATE(2592), 1, sym_type_arguments, - ACTIONS(2945), 2, + ACTIONS(3210), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3082), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(3090), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1128), 2, + STATE(1669), 2, sym_template_string, sym_arguments, - ACTIONS(2955), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_implements, - ACTIONS(3070), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3084), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(3074), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3094), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [54677] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2175), 1, - anon_sym_LBRACK, - ACTIONS(2177), 1, - anon_sym_DOT, - ACTIONS(2179), 1, - anon_sym_QMARK_DOT, - ACTIONS(1527), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1525), 6, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(1097), 12, + ACTIONS(3024), 13, anon_sym_STAR, - anon_sym_BANG, + anon_sym_LBRACE, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1099), 18, + ACTIONS(3026), 16, anon_sym_as, - anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -111896,397 +113054,433 @@ static 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, - [54736] = 27, + anon_sym_LBRACE_PIPE, + [55722] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(479), 1, + ACTIONS(715), 1, anon_sym_BQUOTE, - ACTIONS(1143), 1, - anon_sym_COMMA, - ACTIONS(2145), 1, + ACTIONS(2177), 1, anon_sym_LPAREN, - ACTIONS(2175), 1, + ACTIONS(2314), 1, anon_sym_LBRACK, - ACTIONS(2177), 1, + ACTIONS(2470), 1, anon_sym_DOT, - ACTIONS(2863), 1, - anon_sym_QMARK_DOT, - ACTIONS(2915), 1, + ACTIONS(3178), 1, anon_sym_as, - ACTIONS(2919), 1, + ACTIONS(3182), 1, anon_sym_BANG, - ACTIONS(2923), 1, + ACTIONS(3186), 1, anon_sym_LT, - ACTIONS(2925), 1, + ACTIONS(3188), 1, + anon_sym_QMARK_DOT, + ACTIONS(3190), 1, anon_sym_QMARK, - ACTIONS(2927), 1, + ACTIONS(3192), 1, anon_sym_AMP_AMP, - ACTIONS(2933), 1, + ACTIONS(3198), 1, anon_sym_AMP, - ACTIONS(2935), 1, + ACTIONS(3200), 1, anon_sym_PIPE, - ACTIONS(2939), 1, + ACTIONS(3204), 1, anon_sym_STAR_STAR, - ACTIONS(2943), 1, + ACTIONS(3208), 1, anon_sym_QMARK_QMARK, - ACTIONS(3400), 1, - anon_sym_RPAREN, - STATE(2565), 1, + ACTIONS(3304), 1, + anon_sym_LBRACE, + STATE(2592), 1, sym_type_arguments, - STATE(2747), 1, - aux_sym_array_repeat1, - ACTIONS(2929), 2, + ACTIONS(3005), 2, + anon_sym_COMMA, + anon_sym_LBRACE_PIPE, + ACTIONS(3194), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(2937), 2, + ACTIONS(3202), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2945), 2, + ACTIONS(3210), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1128), 2, + STATE(1669), 2, sym_template_string, sym_arguments, - ACTIONS(2913), 3, + ACTIONS(3176), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(2931), 3, + ACTIONS(3196), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(2921), 4, + ACTIONS(3184), 4, anon_sym_in, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2941), 5, + ACTIONS(3206), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [54833] = 27, + [55817] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(479), 1, + ACTIONS(715), 1, anon_sym_BQUOTE, - ACTIONS(1143), 1, - anon_sym_COMMA, - ACTIONS(2145), 1, + ACTIONS(2177), 1, anon_sym_LPAREN, - ACTIONS(2175), 1, + ACTIONS(2314), 1, anon_sym_LBRACK, - ACTIONS(2177), 1, + ACTIONS(2470), 1, anon_sym_DOT, - ACTIONS(2863), 1, - anon_sym_QMARK_DOT, - ACTIONS(2915), 1, + ACTIONS(3178), 1, anon_sym_as, - ACTIONS(2919), 1, + ACTIONS(3182), 1, anon_sym_BANG, - ACTIONS(2923), 1, + ACTIONS(3186), 1, anon_sym_LT, - ACTIONS(2925), 1, + ACTIONS(3188), 1, + anon_sym_QMARK_DOT, + ACTIONS(3190), 1, anon_sym_QMARK, - ACTIONS(2927), 1, + ACTIONS(3192), 1, anon_sym_AMP_AMP, - ACTIONS(2933), 1, + ACTIONS(3198), 1, anon_sym_AMP, - ACTIONS(2935), 1, + ACTIONS(3200), 1, anon_sym_PIPE, - ACTIONS(2939), 1, + ACTIONS(3204), 1, anon_sym_STAR_STAR, - ACTIONS(2943), 1, + ACTIONS(3208), 1, anon_sym_QMARK_QMARK, - ACTIONS(3402), 1, - anon_sym_RPAREN, - STATE(2565), 1, + ACTIONS(3430), 1, + anon_sym_LBRACE, + STATE(2592), 1, sym_type_arguments, - STATE(2757), 1, - aux_sym_array_repeat1, - ACTIONS(2929), 2, + ACTIONS(3055), 2, + anon_sym_COMMA, + anon_sym_LBRACE_PIPE, + ACTIONS(3194), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(2937), 2, + ACTIONS(3202), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2945), 2, + ACTIONS(3210), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1128), 2, + STATE(1669), 2, sym_template_string, sym_arguments, - ACTIONS(2913), 3, + ACTIONS(3176), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(2931), 3, + ACTIONS(3196), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(2921), 4, + ACTIONS(3184), 4, anon_sym_in, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2941), 5, + ACTIONS(3206), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [54930] = 26, + [55912] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(715), 1, anon_sym_BQUOTE, - ACTIONS(2157), 1, + ACTIONS(2177), 1, anon_sym_LPAREN, - ACTIONS(2266), 1, + ACTIONS(2314), 1, anon_sym_LBRACK, - ACTIONS(2282), 1, + ACTIONS(2470), 1, anon_sym_DOT, - ACTIONS(3100), 1, + ACTIONS(3178), 1, anon_sym_as, - ACTIONS(3102), 1, + ACTIONS(3182), 1, anon_sym_BANG, - ACTIONS(3106), 1, + ACTIONS(3186), 1, anon_sym_LT, - ACTIONS(3108), 1, + ACTIONS(3188), 1, anon_sym_QMARK_DOT, - ACTIONS(3110), 1, + ACTIONS(3190), 1, anon_sym_QMARK, - ACTIONS(3112), 1, + ACTIONS(3192), 1, anon_sym_AMP_AMP, - ACTIONS(3118), 1, + ACTIONS(3198), 1, anon_sym_AMP, - ACTIONS(3120), 1, + ACTIONS(3200), 1, anon_sym_PIPE, - ACTIONS(3124), 1, + ACTIONS(3204), 1, anon_sym_STAR_STAR, - ACTIONS(3128), 1, + ACTIONS(3208), 1, anon_sym_QMARK_QMARK, - ACTIONS(3377), 1, - anon_sym_COMMA, - STATE(2501), 1, + ACTIONS(3306), 1, + anon_sym_LBRACE, + STATE(2592), 1, sym_type_arguments, - ACTIONS(3027), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(3114), 2, + ACTIONS(3007), 2, + anon_sym_COMMA, + anon_sym_LBRACE_PIPE, + ACTIONS(3194), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(3122), 2, + ACTIONS(3202), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3130), 2, + ACTIONS(3210), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1567), 2, + STATE(1669), 2, sym_template_string, sym_arguments, - ACTIONS(3098), 3, + ACTIONS(3176), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(3116), 3, + ACTIONS(3196), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(3104), 4, + ACTIONS(3184), 4, anon_sym_in, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3126), 5, + ACTIONS(3206), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [55025] = 5, + [56007] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(3404), 1, - anon_sym_LT, - STATE(1472), 1, - sym_type_arguments, - ACTIONS(1736), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1734), 26, - sym__automatic_semicolon, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(715), 1, + anon_sym_BQUOTE, + ACTIONS(2177), 1, anon_sym_LPAREN, - anon_sym_SEMI, + ACTIONS(2314), 1, anon_sym_LBRACK, + ACTIONS(2470), 1, anon_sym_DOT, + ACTIONS(3178), 1, + anon_sym_as, + ACTIONS(3182), 1, + anon_sym_BANG, + ACTIONS(3186), 1, + anon_sym_LT, + ACTIONS(3188), 1, anon_sym_QMARK_DOT, + ACTIONS(3190), 1, + anon_sym_QMARK, + ACTIONS(3192), 1, anon_sym_AMP_AMP, + ACTIONS(3198), 1, + anon_sym_AMP, + ACTIONS(3200), 1, + anon_sym_PIPE, + ACTIONS(3204), 1, + anon_sym_STAR_STAR, + ACTIONS(3208), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3432), 1, + anon_sym_LBRACE, + STATE(2592), 1, + sym_type_arguments, + ACTIONS(3017), 2, + anon_sym_COMMA, + anon_sym_LBRACE_PIPE, + ACTIONS(3194), 2, anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(3202), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3210), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1669), 2, + sym_template_string, + sym_arguments, + ACTIONS(3176), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(3196), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(3184), 4, + anon_sym_in, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3206), 5, 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_extends, - [55078] = 25, + [56102] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(479), 1, + ACTIONS(715), 1, anon_sym_BQUOTE, - ACTIONS(2145), 1, + ACTIONS(2177), 1, anon_sym_LPAREN, - ACTIONS(2175), 1, + ACTIONS(2314), 1, anon_sym_LBRACK, - ACTIONS(2177), 1, + ACTIONS(2470), 1, anon_sym_DOT, - ACTIONS(2863), 1, - anon_sym_QMARK_DOT, - ACTIONS(2915), 1, + ACTIONS(3178), 1, anon_sym_as, - ACTIONS(2919), 1, + ACTIONS(3182), 1, anon_sym_BANG, - ACTIONS(3076), 1, + ACTIONS(3186), 1, anon_sym_LT, - ACTIONS(3078), 1, + ACTIONS(3188), 1, + anon_sym_QMARK_DOT, + ACTIONS(3190), 1, anon_sym_QMARK, - ACTIONS(3080), 1, + ACTIONS(3192), 1, anon_sym_AMP_AMP, - ACTIONS(3086), 1, + ACTIONS(3198), 1, anon_sym_AMP, - ACTIONS(3088), 1, + ACTIONS(3200), 1, anon_sym_PIPE, - ACTIONS(3092), 1, + ACTIONS(3204), 1, anon_sym_STAR_STAR, - ACTIONS(3096), 1, + ACTIONS(3208), 1, anon_sym_QMARK_QMARK, - STATE(2565), 1, + ACTIONS(3434), 1, + anon_sym_LBRACE, + STATE(2592), 1, sym_type_arguments, - ACTIONS(2945), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3082), 2, + ACTIONS(3043), 2, + anon_sym_COMMA, + anon_sym_LBRACE_PIPE, + ACTIONS(3194), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(3090), 2, + ACTIONS(3202), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1128), 2, + ACTIONS(3210), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1669), 2, sym_template_string, sym_arguments, - ACTIONS(3070), 3, + ACTIONS(3176), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(3084), 3, + ACTIONS(3196), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(3339), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_implements, - ACTIONS(3074), 4, + ACTIONS(3184), 4, anon_sym_in, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3094), 5, + ACTIONS(3206), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [55171] = 9, + [56197] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(2175), 1, + ACTIONS(479), 1, + anon_sym_BQUOTE, + ACTIONS(1133), 1, + anon_sym_COMMA, + ACTIONS(2161), 1, + anon_sym_LPAREN, + ACTIONS(2191), 1, anon_sym_LBRACK, - ACTIONS(2177), 1, + ACTIONS(2193), 1, anon_sym_DOT, - ACTIONS(2179), 1, + ACTIONS(2883), 1, anon_sym_QMARK_DOT, - ACTIONS(3013), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(3016), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1734), 4, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(1097), 12, - anon_sym_STAR, + ACTIONS(2941), 1, + anon_sym_as, + ACTIONS(2945), 1, anon_sym_BANG, - anon_sym_in, + ACTIONS(2949), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(2951), 1, anon_sym_QMARK, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1099), 18, - anon_sym_as, - anon_sym_LPAREN, + ACTIONS(2953), 1, anon_sym_AMP_AMP, + ACTIONS(2959), 1, + anon_sym_AMP, + ACTIONS(2961), 1, + anon_sym_PIPE, + ACTIONS(2965), 1, + anon_sym_STAR_STAR, + ACTIONS(2969), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3436), 1, + anon_sym_RPAREN, + STATE(2547), 1, + sym_type_arguments, + STATE(2741), 1, + aux_sym_array_repeat1, + ACTIONS(2955), 2, anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(2963), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2971), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1126), 2, + sym_template_string, + sym_arguments, + ACTIONS(2939), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(2957), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(2947), 4, + anon_sym_in, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2967), 5, 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, - [55232] = 5, + [56294] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(915), 1, - sym__automatic_semicolon, - ACTIONS(907), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(911), 15, + STATE(2592), 1, + sym_type_arguments, + STATE(1669), 2, + sym_template_string, + sym_arguments, + ACTIONS(2873), 15, anon_sym_STAR, - anon_sym_EQ, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -112300,11 +113494,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(913), 23, + ACTIONS(2875), 23, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -112324,70 +113517,79 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [55285] = 9, + anon_sym_LBRACE_PIPE, + [56347] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(2175), 1, + ACTIONS(479), 1, + anon_sym_BQUOTE, + ACTIONS(2161), 1, + anon_sym_LPAREN, + ACTIONS(2191), 1, anon_sym_LBRACK, - ACTIONS(2177), 1, + ACTIONS(2193), 1, anon_sym_DOT, - ACTIONS(2179), 1, + ACTIONS(2883), 1, anon_sym_QMARK_DOT, - ACTIONS(3019), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(3022), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1595), 4, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(1097), 12, - anon_sym_STAR, + ACTIONS(2941), 1, + anon_sym_as, + ACTIONS(2945), 1, anon_sym_BANG, - anon_sym_in, + ACTIONS(2949), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(2951), 1, anon_sym_QMARK, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1099), 18, - anon_sym_as, - anon_sym_LPAREN, + ACTIONS(2953), 1, anon_sym_AMP_AMP, + ACTIONS(2959), 1, + anon_sym_AMP, + ACTIONS(2961), 1, + anon_sym_PIPE, + ACTIONS(2965), 1, + anon_sym_STAR_STAR, + ACTIONS(2969), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2991), 1, + anon_sym_COMMA, + ACTIONS(3438), 1, + anon_sym_RPAREN, + STATE(2547), 1, + sym_type_arguments, + ACTIONS(2955), 2, anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(2963), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2971), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1126), 2, + sym_template_string, + sym_arguments, + ACTIONS(2939), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(2957), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(2947), 4, + anon_sym_in, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2967), 5, 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, - [55346] = 7, + [56441] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2175), 1, - anon_sym_LBRACK, - ACTIONS(2177), 1, - anon_sym_DOT, - ACTIONS(2179), 1, - anon_sym_QMARK_DOT, - ACTIONS(3407), 1, - anon_sym_EQ, - ACTIONS(1097), 14, + ACTIONS(1569), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -112402,14 +113604,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1099), 23, + ACTIONS(1567), 26, + sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, + 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, @@ -112426,22 +113630,21 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [55403] = 7, + anon_sym_extends, + [56489] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2175), 1, - anon_sym_LBRACK, - ACTIONS(2177), 1, + ACTIONS(3440), 1, + anon_sym_LT, + ACTIONS(3443), 1, anon_sym_DOT, - ACTIONS(2179), 1, - anon_sym_QMARK_DOT, - ACTIONS(3409), 1, - anon_sym_EQ, - ACTIONS(1097), 14, + STATE(1624), 1, + sym_type_arguments, + ACTIONS(1704), 14, anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -112452,14 +113655,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1099), 23, + ACTIONS(1702), 23, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_LBRACK, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -112476,34 +113677,20 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [55460] = 13, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + [56543] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(479), 1, - anon_sym_BQUOTE, - ACTIONS(2145), 1, + ACTIONS(2173), 1, anon_sym_LPAREN, - ACTIONS(2175), 1, - anon_sym_LBRACK, - ACTIONS(2177), 1, - anon_sym_DOT, - ACTIONS(2863), 1, - anon_sym_QMARK_DOT, - ACTIONS(2919), 1, - anon_sym_BANG, - ACTIONS(3411), 1, - anon_sym_LT, - STATE(2565), 1, - sym_type_arguments, - ACTIONS(2945), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1128), 2, - sym_template_string, + STATE(1601), 1, sym_arguments, - ACTIONS(3037), 12, + ACTIONS(3013), 14, anon_sym_STAR, + anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -112514,66 +113701,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3039), 17, + ACTIONS(3015), 24, + sym__automatic_semicolon, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, - 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_implements, - [55529] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(479), 1, - anon_sym_BQUOTE, - ACTIONS(2145), 1, - anon_sym_LPAREN, - ACTIONS(2175), 1, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(2177), 1, anon_sym_DOT, - ACTIONS(2863), 1, anon_sym_QMARK_DOT, - ACTIONS(2919), 1, - anon_sym_BANG, - ACTIONS(3411), 1, - anon_sym_LT, - STATE(2565), 1, - sym_type_arguments, - ACTIONS(2945), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1128), 2, - sym_template_string, - sym_arguments, - ACTIONS(3037), 12, - anon_sym_STAR, - anon_sym_in, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3039), 17, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -112587,170 +113723,156 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_implements, - [55598] = 25, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [56595] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(479), 1, anon_sym_BQUOTE, - ACTIONS(2145), 1, + ACTIONS(2161), 1, anon_sym_LPAREN, - ACTIONS(2175), 1, + ACTIONS(2191), 1, anon_sym_LBRACK, - ACTIONS(2177), 1, + ACTIONS(2193), 1, anon_sym_DOT, - ACTIONS(2863), 1, + ACTIONS(2883), 1, anon_sym_QMARK_DOT, - ACTIONS(2915), 1, + ACTIONS(2941), 1, anon_sym_as, - ACTIONS(2919), 1, + ACTIONS(2945), 1, anon_sym_BANG, - ACTIONS(3076), 1, + ACTIONS(2949), 1, anon_sym_LT, - ACTIONS(3078), 1, + ACTIONS(2951), 1, anon_sym_QMARK, - ACTIONS(3080), 1, + ACTIONS(2953), 1, anon_sym_AMP_AMP, - ACTIONS(3086), 1, + ACTIONS(2959), 1, anon_sym_AMP, - ACTIONS(3088), 1, + ACTIONS(2961), 1, anon_sym_PIPE, - ACTIONS(3092), 1, + ACTIONS(2965), 1, anon_sym_STAR_STAR, - ACTIONS(3096), 1, + ACTIONS(2969), 1, anon_sym_QMARK_QMARK, - STATE(2565), 1, + ACTIONS(2991), 1, + anon_sym_COMMA, + ACTIONS(3445), 1, + anon_sym_RBRACK, + STATE(2547), 1, sym_type_arguments, - ACTIONS(2945), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3082), 2, + ACTIONS(2955), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(3090), 2, + ACTIONS(2963), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1128), 2, + ACTIONS(2971), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1126), 2, sym_template_string, sym_arguments, - ACTIONS(2991), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_implements, - ACTIONS(3070), 3, + ACTIONS(2939), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(3084), 3, + ACTIONS(2957), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(3074), 4, + ACTIONS(2947), 4, anon_sym_in, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3094), 5, + ACTIONS(2967), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [55691] = 25, + [56689] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(479), 1, + ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(2145), 1, + ACTIONS(2173), 1, anon_sym_LPAREN, - ACTIONS(2175), 1, + ACTIONS(2282), 1, anon_sym_LBRACK, - ACTIONS(2177), 1, + ACTIONS(2298), 1, anon_sym_DOT, - ACTIONS(2863), 1, + ACTIONS(3080), 1, + anon_sym_BANG, + ACTIONS(3086), 1, anon_sym_QMARK_DOT, - ACTIONS(2915), 1, + ACTIONS(3113), 1, anon_sym_as, - ACTIONS(2919), 1, - anon_sym_BANG, - ACTIONS(3076), 1, + ACTIONS(3451), 1, anon_sym_LT, - ACTIONS(3078), 1, + ACTIONS(3453), 1, anon_sym_QMARK, - ACTIONS(3080), 1, + ACTIONS(3455), 1, anon_sym_AMP_AMP, - ACTIONS(3086), 1, + ACTIONS(3461), 1, anon_sym_AMP, - ACTIONS(3088), 1, + ACTIONS(3463), 1, anon_sym_PIPE, - ACTIONS(3092), 1, + ACTIONS(3467), 1, anon_sym_STAR_STAR, - ACTIONS(3096), 1, + ACTIONS(3471), 1, anon_sym_QMARK_QMARK, - STATE(2565), 1, + STATE(2611), 1, sym_type_arguments, - ACTIONS(2945), 2, + ACTIONS(2995), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(3104), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3082), 2, + ACTIONS(3457), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(3090), 2, + ACTIONS(3465), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1128), 2, + STATE(1529), 2, sym_template_string, sym_arguments, - ACTIONS(3058), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_implements, - ACTIONS(3070), 3, + ACTIONS(3447), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(3084), 3, + ACTIONS(3459), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(3074), 4, + ACTIONS(3449), 4, anon_sym_in, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3094), 5, + ACTIONS(3469), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [55784] = 12, + [56781] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(479), 1, - anon_sym_BQUOTE, - ACTIONS(2145), 1, + ACTIONS(2173), 1, anon_sym_LPAREN, - ACTIONS(2175), 1, - anon_sym_LBRACK, - ACTIONS(2177), 1, - anon_sym_DOT, - ACTIONS(2863), 1, - anon_sym_QMARK_DOT, - ACTIONS(3411), 1, - anon_sym_LT, - STATE(2565), 1, - sym_type_arguments, - ACTIONS(2945), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1128), 2, - sym_template_string, + STATE(1602), 1, sym_arguments, - ACTIONS(3037), 13, + ACTIONS(3009), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -112761,10 +113883,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3039), 17, + ACTIONS(3011), 24, + sym__automatic_semicolon, anon_sym_as, - 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_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -112778,237 +113905,156 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_implements, - [55851] = 27, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [56833] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(479), 1, + ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(1143), 1, - anon_sym_COMMA, - ACTIONS(2145), 1, + ACTIONS(2173), 1, anon_sym_LPAREN, - ACTIONS(2175), 1, + ACTIONS(2282), 1, anon_sym_LBRACK, - ACTIONS(2177), 1, + ACTIONS(2298), 1, anon_sym_DOT, - ACTIONS(2863), 1, + ACTIONS(3080), 1, + anon_sym_BANG, + ACTIONS(3086), 1, anon_sym_QMARK_DOT, - ACTIONS(2915), 1, + ACTIONS(3113), 1, anon_sym_as, - ACTIONS(2919), 1, - anon_sym_BANG, - ACTIONS(2923), 1, + ACTIONS(3451), 1, anon_sym_LT, - ACTIONS(2925), 1, + ACTIONS(3453), 1, anon_sym_QMARK, - ACTIONS(2927), 1, + ACTIONS(3455), 1, anon_sym_AMP_AMP, - ACTIONS(2933), 1, + ACTIONS(3461), 1, anon_sym_AMP, - ACTIONS(2935), 1, + ACTIONS(3463), 1, anon_sym_PIPE, - ACTIONS(2939), 1, + ACTIONS(3467), 1, anon_sym_STAR_STAR, - ACTIONS(2943), 1, + ACTIONS(3471), 1, anon_sym_QMARK_QMARK, - ACTIONS(3414), 1, - anon_sym_RBRACK, - STATE(2565), 1, + STATE(2611), 1, sym_type_arguments, - STATE(2681), 1, - aux_sym_array_repeat1, - ACTIONS(2929), 2, + ACTIONS(2943), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(3104), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3457), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(2937), 2, + ACTIONS(3465), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2945), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1128), 2, + STATE(1529), 2, sym_template_string, sym_arguments, - ACTIONS(2913), 3, + ACTIONS(3447), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(2931), 3, + ACTIONS(3459), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(2921), 4, + ACTIONS(3449), 4, anon_sym_in, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2941), 5, + ACTIONS(3469), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [55948] = 27, + [56925] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(479), 1, anon_sym_BQUOTE, - ACTIONS(1143), 1, - anon_sym_COMMA, - ACTIONS(2145), 1, + ACTIONS(2161), 1, anon_sym_LPAREN, - ACTIONS(2175), 1, + ACTIONS(2191), 1, anon_sym_LBRACK, - ACTIONS(2177), 1, + ACTIONS(2193), 1, anon_sym_DOT, - ACTIONS(2863), 1, + ACTIONS(2883), 1, anon_sym_QMARK_DOT, - ACTIONS(2915), 1, + ACTIONS(2941), 1, anon_sym_as, - ACTIONS(2919), 1, + ACTIONS(2945), 1, anon_sym_BANG, - ACTIONS(2923), 1, + ACTIONS(2949), 1, anon_sym_LT, - ACTIONS(2925), 1, + ACTIONS(2951), 1, anon_sym_QMARK, - ACTIONS(2927), 1, + ACTIONS(2953), 1, anon_sym_AMP_AMP, - ACTIONS(2933), 1, + ACTIONS(2959), 1, anon_sym_AMP, - ACTIONS(2935), 1, + ACTIONS(2961), 1, anon_sym_PIPE, - ACTIONS(2939), 1, + ACTIONS(2965), 1, anon_sym_STAR_STAR, - ACTIONS(2943), 1, + ACTIONS(2969), 1, anon_sym_QMARK_QMARK, - ACTIONS(3416), 1, - anon_sym_RBRACK, - STATE(2565), 1, + STATE(2547), 1, sym_type_arguments, - STATE(2755), 1, - aux_sym_array_repeat1, - ACTIONS(2929), 2, + ACTIONS(2955), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(2937), 2, + ACTIONS(2963), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2945), 2, + ACTIONS(2971), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1128), 2, - sym_template_string, - sym_arguments, - ACTIONS(2913), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(2931), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(2921), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2941), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [56045] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(2157), 1, - anon_sym_LPAREN, - ACTIONS(2266), 1, - anon_sym_LBRACK, - ACTIONS(2282), 1, - anon_sym_DOT, - ACTIONS(3100), 1, - anon_sym_as, - ACTIONS(3102), 1, - anon_sym_BANG, - ACTIONS(3106), 1, - anon_sym_LT, - ACTIONS(3108), 1, - anon_sym_QMARK_DOT, - ACTIONS(3110), 1, - anon_sym_QMARK, - ACTIONS(3112), 1, - anon_sym_AMP_AMP, - ACTIONS(3118), 1, - anon_sym_AMP, - ACTIONS(3120), 1, - anon_sym_PIPE, - ACTIONS(3124), 1, - anon_sym_STAR_STAR, - ACTIONS(3128), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3377), 1, + ACTIONS(3399), 2, anon_sym_COMMA, - STATE(2501), 1, - sym_type_arguments, - ACTIONS(3114), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(3122), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3130), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3418), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(1567), 2, + anon_sym_RBRACK, + STATE(1126), 2, sym_template_string, sym_arguments, - ACTIONS(3098), 3, + ACTIONS(2939), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(3116), 3, + ACTIONS(2957), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(3104), 4, + ACTIONS(2947), 4, anon_sym_in, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3126), 5, + ACTIONS(2967), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [56140] = 10, + [57017] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2157), 1, - anon_sym_LPAREN, - ACTIONS(2159), 1, - anon_sym_LT, - ACTIONS(2266), 1, - anon_sym_LBRACK, - ACTIONS(2272), 1, - anon_sym_QMARK_DOT, - ACTIONS(2282), 1, + ACTIONS(3473), 1, anon_sym_DOT, - STATE(1347), 1, + STATE(1624), 1, sym_type_arguments, - STATE(1607), 1, - sym_arguments, - ACTIONS(2169), 13, + ACTIONS(1503), 15, anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -113019,12 +114065,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2173), 21, - sym__automatic_semicolon, + ACTIONS(1501), 23, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -113041,83 +114087,106 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [56203] = 26, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + [57069] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(479), 1, anon_sym_BQUOTE, - ACTIONS(2157), 1, + ACTIONS(2161), 1, anon_sym_LPAREN, - ACTIONS(2266), 1, + ACTIONS(2191), 1, anon_sym_LBRACK, - ACTIONS(2282), 1, + ACTIONS(2193), 1, anon_sym_DOT, - ACTIONS(3100), 1, + ACTIONS(2883), 1, + anon_sym_QMARK_DOT, + ACTIONS(2941), 1, anon_sym_as, - ACTIONS(3102), 1, + ACTIONS(2945), 1, anon_sym_BANG, - ACTIONS(3106), 1, + ACTIONS(2949), 1, anon_sym_LT, - ACTIONS(3108), 1, - anon_sym_QMARK_DOT, - ACTIONS(3110), 1, + ACTIONS(2951), 1, anon_sym_QMARK, - ACTIONS(3112), 1, + ACTIONS(2953), 1, anon_sym_AMP_AMP, - ACTIONS(3118), 1, + ACTIONS(2959), 1, anon_sym_AMP, - ACTIONS(3120), 1, + ACTIONS(2961), 1, anon_sym_PIPE, - ACTIONS(3124), 1, + ACTIONS(2965), 1, anon_sym_STAR_STAR, - ACTIONS(3128), 1, + ACTIONS(2969), 1, anon_sym_QMARK_QMARK, - ACTIONS(3377), 1, + ACTIONS(2991), 1, anon_sym_COMMA, - STATE(2501), 1, + ACTIONS(3475), 1, + anon_sym_RBRACE, + STATE(2547), 1, sym_type_arguments, - ACTIONS(3114), 2, + ACTIONS(2955), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(3122), 2, + ACTIONS(2963), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3130), 2, + ACTIONS(2971), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3420), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(1567), 2, + STATE(1126), 2, sym_template_string, sym_arguments, - ACTIONS(3098), 3, + ACTIONS(2939), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(3116), 3, + ACTIONS(2957), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(3104), 4, + ACTIONS(2947), 4, anon_sym_in, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3126), 5, + ACTIONS(2967), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [56298] = 3, + [57163] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1077), 14, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(2173), 1, + anon_sym_LPAREN, + ACTIONS(2282), 1, + anon_sym_LBRACK, + ACTIONS(2298), 1, + anon_sym_DOT, + ACTIONS(3080), 1, + anon_sym_BANG, + ACTIONS(3086), 1, + anon_sym_QMARK_DOT, + ACTIONS(3467), 1, + anon_sym_STAR_STAR, + ACTIONS(3477), 1, + anon_sym_LT, + STATE(2611), 1, + sym_type_arguments, + ACTIONS(3104), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1529), 2, + sym_template_string, + sym_arguments, + ACTIONS(2973), 12, anon_sym_STAR, - anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -113128,250 +114197,161 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1075), 27, + ACTIONS(2975), 15, sym__automatic_semicolon, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_else, - anon_sym_LPAREN, - anon_sym_while, 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, - [56347] = 25, + [57233] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(2157), 1, + ACTIONS(2173), 1, anon_sym_LPAREN, - ACTIONS(2266), 1, - anon_sym_LBRACK, ACTIONS(2282), 1, + anon_sym_LBRACK, + ACTIONS(2298), 1, anon_sym_DOT, - ACTIONS(3100), 1, - anon_sym_as, - ACTIONS(3102), 1, + ACTIONS(3080), 1, anon_sym_BANG, - ACTIONS(3108), 1, + ACTIONS(3086), 1, anon_sym_QMARK_DOT, - ACTIONS(3426), 1, + ACTIONS(3451), 1, anon_sym_LT, - ACTIONS(3428), 1, - anon_sym_QMARK, - ACTIONS(3430), 1, - anon_sym_AMP_AMP, - ACTIONS(3436), 1, - anon_sym_AMP, - ACTIONS(3438), 1, - anon_sym_PIPE, - ACTIONS(3442), 1, + ACTIONS(3467), 1, anon_sym_STAR_STAR, - ACTIONS(3446), 1, - anon_sym_QMARK_QMARK, - STATE(2501), 1, + STATE(2611), 1, sym_type_arguments, - ACTIONS(2953), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(3130), 2, + ACTIONS(3104), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3432), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(3440), 2, + ACTIONS(3465), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1567), 2, + STATE(1529), 2, sym_template_string, sym_arguments, - ACTIONS(3422), 3, + ACTIONS(3447), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(3434), 3, + ACTIONS(3459), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(3424), 4, + ACTIONS(2973), 7, anon_sym_in, anon_sym_GT, + anon_sym_QMARK, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3444), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [56439] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(479), 1, - anon_sym_BQUOTE, - ACTIONS(2145), 1, - anon_sym_LPAREN, - ACTIONS(2175), 1, - anon_sym_LBRACK, - ACTIONS(2177), 1, - anon_sym_DOT, - ACTIONS(2863), 1, - anon_sym_QMARK_DOT, - ACTIONS(2915), 1, + ACTIONS(2975), 12, + sym__automatic_semicolon, anon_sym_as, - ACTIONS(2919), 1, - anon_sym_BANG, - ACTIONS(2923), 1, - anon_sym_LT, - ACTIONS(2925), 1, - anon_sym_QMARK, - ACTIONS(2927), 1, + anon_sym_SEMI, anon_sym_AMP_AMP, - ACTIONS(2933), 1, - anon_sym_AMP, - ACTIONS(2935), 1, - anon_sym_PIPE, - ACTIONS(2939), 1, - anon_sym_STAR_STAR, - ACTIONS(2943), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3025), 1, - anon_sym_COMMA, - ACTIONS(3448), 1, - anon_sym_COLON, - STATE(2565), 1, - sym_type_arguments, - ACTIONS(2929), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(2937), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2945), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1128), 2, - sym_template_string, - sym_arguments, - ACTIONS(2913), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(2931), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(2921), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2941), 5, 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, - [56533] = 26, + [57309] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(479), 1, anon_sym_BQUOTE, - ACTIONS(2145), 1, + ACTIONS(2161), 1, anon_sym_LPAREN, - ACTIONS(2175), 1, + ACTIONS(2191), 1, anon_sym_LBRACK, - ACTIONS(2177), 1, + ACTIONS(2193), 1, anon_sym_DOT, - ACTIONS(2863), 1, + ACTIONS(2883), 1, anon_sym_QMARK_DOT, - ACTIONS(2915), 1, + ACTIONS(2941), 1, anon_sym_as, - ACTIONS(2919), 1, + ACTIONS(2945), 1, anon_sym_BANG, - ACTIONS(2923), 1, + ACTIONS(2949), 1, anon_sym_LT, - ACTIONS(2925), 1, + ACTIONS(2951), 1, anon_sym_QMARK, - ACTIONS(2927), 1, + ACTIONS(2953), 1, anon_sym_AMP_AMP, - ACTIONS(2933), 1, + ACTIONS(2959), 1, anon_sym_AMP, - ACTIONS(2935), 1, + ACTIONS(2961), 1, anon_sym_PIPE, - ACTIONS(2939), 1, + ACTIONS(2965), 1, anon_sym_STAR_STAR, - ACTIONS(2943), 1, + ACTIONS(2969), 1, anon_sym_QMARK_QMARK, - ACTIONS(3025), 1, + ACTIONS(2991), 1, anon_sym_COMMA, - ACTIONS(3450), 1, + ACTIONS(3480), 1, anon_sym_RBRACK, - STATE(2565), 1, + STATE(2547), 1, sym_type_arguments, - ACTIONS(2929), 2, + ACTIONS(2955), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(2937), 2, + ACTIONS(2963), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2945), 2, + ACTIONS(2971), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1128), 2, + STATE(1126), 2, sym_template_string, sym_arguments, - ACTIONS(2913), 3, + ACTIONS(2939), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(2931), 3, + ACTIONS(2957), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(2921), 4, + ACTIONS(2947), 4, anon_sym_in, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2941), 5, + ACTIONS(2967), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [56627] = 5, + [57403] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1031), 1, - sym__automatic_semicolon, - ACTIONS(1023), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(1027), 14, + ACTIONS(3482), 1, + anon_sym_LT, + STATE(1629), 1, + sym_type_arguments, + ACTIONS(1714), 14, anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -113382,11 +114362,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1029), 23, + ACTIONS(1712), 24, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -113406,15 +114385,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [56679] = 5, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + [57455] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(989), 1, + ACTIONS(977), 1, sym__automatic_semicolon, - ACTIONS(981), 2, + ACTIONS(969), 2, anon_sym_else, anon_sym_while, - ACTIONS(985), 14, + ACTIONS(973), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -113429,56 +114410,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(987), 23, - 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, - [56731] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3452), 1, - sym_regex_flags, - ACTIONS(3383), 16, - anon_sym_STAR, + ACTIONS(975), 23, anon_sym_as, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - 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_instanceof, - ACTIONS(3385), 23, - sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, @@ -113496,359 +114430,208 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [56781] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2266), 1, - anon_sym_LBRACK, - ACTIONS(2272), 1, - anon_sym_QMARK_DOT, - ACTIONS(2282), 1, - anon_sym_DOT, - ACTIONS(3454), 1, - anon_sym_EQ, - ACTIONS(3456), 1, - anon_sym_in, - ACTIONS(3459), 1, - anon_sym_of, - ACTIONS(1097), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1099), 21, - sym__automatic_semicolon, - anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - 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, - [56841] = 25, + [57507] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(479), 1, anon_sym_BQUOTE, - ACTIONS(2157), 1, + ACTIONS(2161), 1, anon_sym_LPAREN, - ACTIONS(2266), 1, + ACTIONS(2191), 1, anon_sym_LBRACK, - ACTIONS(2282), 1, + ACTIONS(2193), 1, anon_sym_DOT, - ACTIONS(3100), 1, + ACTIONS(2883), 1, + anon_sym_QMARK_DOT, + ACTIONS(2941), 1, anon_sym_as, - ACTIONS(3102), 1, + ACTIONS(2945), 1, anon_sym_BANG, - ACTIONS(3108), 1, - anon_sym_QMARK_DOT, - ACTIONS(3426), 1, + ACTIONS(2949), 1, anon_sym_LT, - ACTIONS(3428), 1, + ACTIONS(2951), 1, anon_sym_QMARK, - ACTIONS(3430), 1, + ACTIONS(2953), 1, anon_sym_AMP_AMP, - ACTIONS(3436), 1, + ACTIONS(2959), 1, anon_sym_AMP, - ACTIONS(3438), 1, + ACTIONS(2961), 1, anon_sym_PIPE, - ACTIONS(3442), 1, + ACTIONS(2965), 1, anon_sym_STAR_STAR, - ACTIONS(3446), 1, + ACTIONS(2969), 1, anon_sym_QMARK_QMARK, - STATE(2501), 1, + ACTIONS(2991), 1, + anon_sym_COMMA, + ACTIONS(3485), 1, + anon_sym_RPAREN, + STATE(2547), 1, sym_type_arguments, - ACTIONS(3130), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3432), 2, + ACTIONS(2955), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(3440), 2, + ACTIONS(2963), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3461), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(1567), 2, + ACTIONS(2971), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1126), 2, sym_template_string, sym_arguments, - ACTIONS(3422), 3, + ACTIONS(2939), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(3434), 3, + ACTIONS(2957), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(3424), 4, + ACTIONS(2947), 4, anon_sym_in, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3444), 5, + ACTIONS(2967), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [56933] = 25, + [57601] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(2157), 1, + ACTIONS(2173), 1, anon_sym_LPAREN, - ACTIONS(2266), 1, - anon_sym_LBRACK, ACTIONS(2282), 1, + anon_sym_LBRACK, + ACTIONS(2298), 1, anon_sym_DOT, - ACTIONS(3100), 1, - anon_sym_as, - ACTIONS(3102), 1, + ACTIONS(3080), 1, anon_sym_BANG, - ACTIONS(3108), 1, + ACTIONS(3086), 1, anon_sym_QMARK_DOT, - ACTIONS(3426), 1, + ACTIONS(3451), 1, anon_sym_LT, - ACTIONS(3428), 1, - anon_sym_QMARK, - ACTIONS(3430), 1, - anon_sym_AMP_AMP, - ACTIONS(3436), 1, - anon_sym_AMP, - ACTIONS(3438), 1, - anon_sym_PIPE, - ACTIONS(3442), 1, + ACTIONS(3467), 1, anon_sym_STAR_STAR, - ACTIONS(3446), 1, - anon_sym_QMARK_QMARK, - STATE(2501), 1, + STATE(2611), 1, sym_type_arguments, - ACTIONS(3056), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(3130), 2, + ACTIONS(3104), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3432), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(3440), 2, + ACTIONS(3465), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1567), 2, + STATE(1529), 2, sym_template_string, sym_arguments, - ACTIONS(3422), 3, + ACTIONS(2973), 3, + anon_sym_QMARK, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3447), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(3434), 3, + ACTIONS(3459), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(3424), 4, + ACTIONS(3449), 4, anon_sym_in, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3444), 5, + ACTIONS(3469), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [57025] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3463), 1, - anon_sym_AMP, - ACTIONS(3465), 1, - anon_sym_PIPE, - ACTIONS(3467), 1, - anon_sym_extends, - ACTIONS(1748), 12, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1746), 25, + ACTIONS(2975), 7, sym__automatic_semicolon, 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, - [57079] = 26, + [57681] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(479), 1, + ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(2145), 1, + ACTIONS(2173), 1, anon_sym_LPAREN, - ACTIONS(2175), 1, + ACTIONS(2282), 1, anon_sym_LBRACK, - ACTIONS(2177), 1, + ACTIONS(2298), 1, anon_sym_DOT, - ACTIONS(2863), 1, - anon_sym_QMARK_DOT, - ACTIONS(2915), 1, - anon_sym_as, - ACTIONS(2919), 1, + ACTIONS(3080), 1, anon_sym_BANG, - ACTIONS(2923), 1, + ACTIONS(3086), 1, + anon_sym_QMARK_DOT, + ACTIONS(3451), 1, anon_sym_LT, - ACTIONS(2925), 1, - anon_sym_QMARK, - ACTIONS(2927), 1, + ACTIONS(3455), 1, anon_sym_AMP_AMP, - ACTIONS(2933), 1, + ACTIONS(3461), 1, anon_sym_AMP, - ACTIONS(2935), 1, - anon_sym_PIPE, - ACTIONS(2939), 1, + ACTIONS(3467), 1, anon_sym_STAR_STAR, - ACTIONS(2943), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3025), 1, - anon_sym_COMMA, - ACTIONS(3469), 1, - anon_sym_RBRACK, - STATE(2565), 1, + STATE(2611), 1, sym_type_arguments, - ACTIONS(2929), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(2937), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2945), 2, + ACTIONS(2973), 2, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(3104), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1128), 2, + ACTIONS(3465), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1529), 2, sym_template_string, sym_arguments, - ACTIONS(2913), 3, + ACTIONS(3447), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(2931), 3, + ACTIONS(3459), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(2921), 4, + ACTIONS(3449), 4, anon_sym_in, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2941), 5, + ACTIONS(3469), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [57173] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1549), 14, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1547), 26, + ACTIONS(2975), 6, sym__automatic_semicolon, 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_extends, - [57221] = 3, + [57765] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1477), 14, + ACTIONS(1721), 1, + anon_sym_DOT, + ACTIONS(1457), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -113863,7 +114646,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1475), 26, + ACTIONS(1455), 25, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, @@ -113871,7 +114654,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -113890,151 +114672,106 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [57269] = 5, + [57815] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1563), 2, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(2173), 1, + anon_sym_LPAREN, + ACTIONS(2282), 1, anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(1565), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1561), 12, - anon_sym_STAR, + ACTIONS(2298), 1, + anon_sym_DOT, + ACTIONS(3080), 1, anon_sym_BANG, - anon_sym_in, + ACTIONS(3086), 1, + anon_sym_QMARK_DOT, + ACTIONS(3467), 1, + anon_sym_STAR_STAR, + ACTIONS(3477), 1, anon_sym_LT, - anon_sym_GT, + STATE(2611), 1, + sym_type_arguments, + ACTIONS(3104), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1529), 2, + sym_template_string, + sym_arguments, + ACTIONS(3447), 3, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_QMARK, anon_sym_GT_GT, + ACTIONS(3459), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(2973), 9, + anon_sym_in, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1559), 24, + ACTIONS(2975), 12, sym__automatic_semicolon, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - 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, - [57321] = 25, + [57889] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(2157), 1, + ACTIONS(2173), 1, anon_sym_LPAREN, - ACTIONS(2266), 1, - anon_sym_LBRACK, ACTIONS(2282), 1, + anon_sym_LBRACK, + ACTIONS(2298), 1, anon_sym_DOT, - ACTIONS(3100), 1, - anon_sym_as, - ACTIONS(3102), 1, + ACTIONS(3080), 1, anon_sym_BANG, - ACTIONS(3108), 1, + ACTIONS(3086), 1, anon_sym_QMARK_DOT, - ACTIONS(3426), 1, + ACTIONS(3477), 1, anon_sym_LT, - ACTIONS(3428), 1, - anon_sym_QMARK, - ACTIONS(3430), 1, - anon_sym_AMP_AMP, - ACTIONS(3436), 1, - anon_sym_AMP, - ACTIONS(3438), 1, - anon_sym_PIPE, - ACTIONS(3442), 1, - anon_sym_STAR_STAR, - ACTIONS(3446), 1, - anon_sym_QMARK_QMARK, - STATE(2501), 1, + STATE(2611), 1, sym_type_arguments, - ACTIONS(3054), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(3130), 2, + ACTIONS(3104), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3432), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(3440), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1567), 2, + STATE(1529), 2, sym_template_string, sym_arguments, - ACTIONS(3422), 3, + ACTIONS(2973), 12, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3434), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(3424), 4, anon_sym_in, anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3444), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [57413] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1551), 1, - anon_sym_extends, - ACTIONS(2907), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(2910), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(2903), 13, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, anon_sym_SLASH, anon_sym_QMARK, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2905), 21, + ACTIONS(2975), 16, + sym__automatic_semicolon, anon_sym_as, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -114048,408 +114785,486 @@ static 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_LBRACE_PIPE, - [57467] = 5, + [57957] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(1501), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(1503), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(911), 13, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_SLASH, - anon_sym_QMARK, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(913), 21, - anon_sym_as, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(2173), 1, anon_sym_LPAREN, + ACTIONS(2282), 1, + anon_sym_LBRACK, + ACTIONS(2298), 1, anon_sym_DOT, + ACTIONS(2973), 1, + anon_sym_QMARK, + ACTIONS(3080), 1, + anon_sym_BANG, + ACTIONS(3086), 1, anon_sym_QMARK_DOT, + ACTIONS(3451), 1, + anon_sym_LT, + ACTIONS(3455), 1, anon_sym_AMP_AMP, + ACTIONS(3461), 1, + anon_sym_AMP, + ACTIONS(3463), 1, + anon_sym_PIPE, + ACTIONS(3467), 1, + anon_sym_STAR_STAR, + STATE(2611), 1, + sym_type_arguments, + ACTIONS(3104), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3457), 2, anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(3465), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1529), 2, + sym_template_string, + sym_arguments, + ACTIONS(3447), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(3459), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(2975), 4, + sym__automatic_semicolon, + anon_sym_as, + anon_sym_SEMI, + anon_sym_QMARK_QMARK, + ACTIONS(3449), 4, + anon_sym_in, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3469), 5, 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_LBRACE_PIPE, - [57519] = 26, + [58045] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(479), 1, + ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(2145), 1, + ACTIONS(2173), 1, anon_sym_LPAREN, - ACTIONS(2175), 1, + ACTIONS(2282), 1, anon_sym_LBRACK, - ACTIONS(2177), 1, + ACTIONS(2298), 1, anon_sym_DOT, - ACTIONS(2863), 1, + ACTIONS(3080), 1, + anon_sym_BANG, + ACTIONS(3086), 1, anon_sym_QMARK_DOT, - ACTIONS(2915), 1, + ACTIONS(3113), 1, anon_sym_as, - ACTIONS(2919), 1, - anon_sym_BANG, - ACTIONS(2923), 1, + ACTIONS(3451), 1, anon_sym_LT, - ACTIONS(2925), 1, + ACTIONS(3453), 1, anon_sym_QMARK, - ACTIONS(2927), 1, + ACTIONS(3455), 1, anon_sym_AMP_AMP, - ACTIONS(2933), 1, + ACTIONS(3461), 1, anon_sym_AMP, - ACTIONS(2935), 1, + ACTIONS(3463), 1, anon_sym_PIPE, - ACTIONS(2939), 1, + ACTIONS(3467), 1, anon_sym_STAR_STAR, - ACTIONS(2943), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3025), 1, - anon_sym_COMMA, ACTIONS(3471), 1, - anon_sym_RBRACK, - STATE(2565), 1, + anon_sym_QMARK_QMARK, + STATE(2611), 1, sym_type_arguments, - ACTIONS(2929), 2, + ACTIONS(3043), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(3104), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3457), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(2937), 2, + ACTIONS(3465), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2945), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1128), 2, + STATE(1529), 2, sym_template_string, sym_arguments, - ACTIONS(2913), 3, + ACTIONS(3447), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(2931), 3, + ACTIONS(3459), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(2921), 4, + ACTIONS(3449), 4, anon_sym_in, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2941), 5, + ACTIONS(3469), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [57613] = 26, + [58137] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(479), 1, anon_sym_BQUOTE, - ACTIONS(2145), 1, + ACTIONS(2161), 1, anon_sym_LPAREN, - ACTIONS(2175), 1, + ACTIONS(2191), 1, anon_sym_LBRACK, - ACTIONS(2177), 1, + ACTIONS(2193), 1, anon_sym_DOT, - ACTIONS(2863), 1, + ACTIONS(2883), 1, anon_sym_QMARK_DOT, - ACTIONS(2915), 1, + ACTIONS(2941), 1, anon_sym_as, - ACTIONS(2919), 1, + ACTIONS(2945), 1, anon_sym_BANG, - ACTIONS(2923), 1, + ACTIONS(2949), 1, anon_sym_LT, - ACTIONS(2925), 1, + ACTIONS(2951), 1, anon_sym_QMARK, - ACTIONS(2927), 1, + ACTIONS(2953), 1, anon_sym_AMP_AMP, - ACTIONS(2933), 1, + ACTIONS(2959), 1, anon_sym_AMP, - ACTIONS(2935), 1, + ACTIONS(2961), 1, anon_sym_PIPE, - ACTIONS(2939), 1, + ACTIONS(2965), 1, anon_sym_STAR_STAR, - ACTIONS(2943), 1, + ACTIONS(2969), 1, anon_sym_QMARK_QMARK, - ACTIONS(3025), 1, + ACTIONS(2991), 1, anon_sym_COMMA, - ACTIONS(3473), 1, - anon_sym_RBRACK, - STATE(2565), 1, + ACTIONS(3487), 1, + anon_sym_RPAREN, + STATE(2547), 1, sym_type_arguments, - ACTIONS(2929), 2, + ACTIONS(2955), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(2937), 2, + ACTIONS(2963), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2945), 2, + ACTIONS(2971), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1128), 2, + STATE(1126), 2, sym_template_string, sym_arguments, - ACTIONS(2913), 3, + ACTIONS(2939), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(2931), 3, + ACTIONS(2957), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(2921), 4, + ACTIONS(2947), 4, anon_sym_in, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2941), 5, + ACTIONS(2967), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [57707] = 26, + [58231] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(479), 1, anon_sym_BQUOTE, - ACTIONS(2145), 1, + ACTIONS(2161), 1, anon_sym_LPAREN, - ACTIONS(2175), 1, + ACTIONS(2191), 1, anon_sym_LBRACK, - ACTIONS(2177), 1, + ACTIONS(2193), 1, anon_sym_DOT, - ACTIONS(2863), 1, + ACTIONS(2883), 1, anon_sym_QMARK_DOT, - ACTIONS(2915), 1, + ACTIONS(2941), 1, anon_sym_as, - ACTIONS(2919), 1, + ACTIONS(2945), 1, anon_sym_BANG, - ACTIONS(2923), 1, + ACTIONS(2949), 1, anon_sym_LT, - ACTIONS(2925), 1, + ACTIONS(2951), 1, anon_sym_QMARK, - ACTIONS(2927), 1, + ACTIONS(2953), 1, anon_sym_AMP_AMP, - ACTIONS(2933), 1, + ACTIONS(2959), 1, anon_sym_AMP, - ACTIONS(2935), 1, + ACTIONS(2961), 1, anon_sym_PIPE, - ACTIONS(2939), 1, + ACTIONS(2965), 1, anon_sym_STAR_STAR, - ACTIONS(2943), 1, + ACTIONS(2969), 1, anon_sym_QMARK_QMARK, - ACTIONS(3025), 1, + ACTIONS(2991), 1, anon_sym_COMMA, - ACTIONS(3475), 1, - anon_sym_RBRACK, - STATE(2565), 1, + ACTIONS(3489), 1, + anon_sym_RPAREN, + STATE(2547), 1, sym_type_arguments, - ACTIONS(2929), 2, + ACTIONS(2955), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(2937), 2, + ACTIONS(2963), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2945), 2, + ACTIONS(2971), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1128), 2, + STATE(1126), 2, sym_template_string, sym_arguments, - ACTIONS(2913), 3, + ACTIONS(2939), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(2931), 3, + ACTIONS(2957), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(2921), 4, + ACTIONS(2947), 4, anon_sym_in, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2941), 5, + ACTIONS(2967), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [57801] = 3, + [58325] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(1569), 14, - anon_sym_STAR, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(2173), 1, + anon_sym_LPAREN, + ACTIONS(2282), 1, + anon_sym_LBRACK, + ACTIONS(2298), 1, + anon_sym_DOT, + ACTIONS(3080), 1, anon_sym_BANG, - anon_sym_in, + ACTIONS(3086), 1, + anon_sym_QMARK_DOT, + ACTIONS(3113), 1, + anon_sym_as, + ACTIONS(3451), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(3453), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(3455), 1, + anon_sym_AMP_AMP, + ACTIONS(3461), 1, anon_sym_AMP, + ACTIONS(3463), 1, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1567), 26, + ACTIONS(3467), 1, + anon_sym_STAR_STAR, + ACTIONS(3471), 1, + anon_sym_QMARK_QMARK, + STATE(2611), 1, + sym_type_arguments, + ACTIONS(3055), 2, sym__automatic_semicolon, - 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, + ACTIONS(3104), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3457), 2, anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(3465), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1529), 2, + sym_template_string, + sym_arguments, + ACTIONS(3447), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(3459), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(3449), 4, + anon_sym_in, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3469), 5, 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_extends, - [57849] = 5, + [58417] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(1109), 1, - sym__automatic_semicolon, - ACTIONS(1101), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(1105), 14, - anon_sym_STAR, + ACTIONS(479), 1, + anon_sym_BQUOTE, + ACTIONS(2161), 1, + anon_sym_LPAREN, + ACTIONS(2191), 1, + anon_sym_LBRACK, + ACTIONS(2193), 1, + anon_sym_DOT, + ACTIONS(2883), 1, + anon_sym_QMARK_DOT, + ACTIONS(2941), 1, + anon_sym_as, + ACTIONS(2945), 1, anon_sym_BANG, - anon_sym_in, + ACTIONS(2949), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(2951), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(2953), 1, + anon_sym_AMP_AMP, + ACTIONS(2959), 1, anon_sym_AMP, + ACTIONS(2961), 1, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1107), 23, - anon_sym_as, + ACTIONS(2965), 1, + anon_sym_STAR_STAR, + ACTIONS(2969), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2991), 1, anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, + ACTIONS(3491), 1, + anon_sym_RBRACK, + STATE(2547), 1, + sym_type_arguments, + ACTIONS(2955), 2, anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(2963), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2971), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1126), 2, + sym_template_string, + sym_arguments, + ACTIONS(2939), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(2957), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(2947), 4, + anon_sym_in, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2967), 5, 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, - [57901] = 3, + [58511] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(1577), 14, - anon_sym_STAR, + ACTIONS(479), 1, + anon_sym_BQUOTE, + ACTIONS(2161), 1, + anon_sym_LPAREN, + ACTIONS(2191), 1, + anon_sym_LBRACK, + ACTIONS(2193), 1, + anon_sym_DOT, + ACTIONS(2883), 1, + anon_sym_QMARK_DOT, + ACTIONS(2941), 1, + anon_sym_as, + ACTIONS(2945), 1, anon_sym_BANG, - anon_sym_in, + ACTIONS(2949), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(2951), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(2953), 1, + anon_sym_AMP_AMP, + ACTIONS(2959), 1, anon_sym_AMP, + ACTIONS(2961), 1, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1575), 26, - sym__automatic_semicolon, - anon_sym_as, + ACTIONS(2965), 1, + anon_sym_STAR_STAR, + ACTIONS(2969), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2991), 1, 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, + ACTIONS(3493), 1, + anon_sym_RBRACK, + STATE(2547), 1, + sym_type_arguments, + ACTIONS(2955), 2, anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(2963), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2971), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1126), 2, + sym_template_string, + sym_arguments, + ACTIONS(2939), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(2957), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(2947), 4, + anon_sym_in, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2967), 5, 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_extends, - [57949] = 5, + [58605] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(945), 1, - sym__automatic_semicolon, - ACTIONS(937), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(941), 14, + ACTIONS(3076), 2, + anon_sym_COLON, + anon_sym_EQ_GT, + ACTIONS(3072), 15, anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -114463,11 +115278,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(943), 23, + ACTIONS(3074), 23, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -114487,16 +115301,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [58001] = 5, + anon_sym_LBRACE_PIPE, + [58655] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(979), 1, - sym__automatic_semicolon, - ACTIONS(971), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(975), 14, + ACTIONS(3443), 1, + anon_sym_DOT, + STATE(1624), 1, + sym_type_arguments, + ACTIONS(1661), 15, anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -114510,13 +115325,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(977), 23, + ACTIONS(1659), 23, 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, @@ -114534,112 +115347,83 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [58053] = 12, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + [58707] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(479), 1, + ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(2145), 1, + ACTIONS(2173), 1, anon_sym_LPAREN, - ACTIONS(2175), 1, + ACTIONS(2282), 1, anon_sym_LBRACK, - ACTIONS(2177), 1, + ACTIONS(2298), 1, anon_sym_DOT, - ACTIONS(2863), 1, + ACTIONS(3080), 1, + anon_sym_BANG, + ACTIONS(3086), 1, anon_sym_QMARK_DOT, - ACTIONS(3477), 1, + ACTIONS(3113), 1, + anon_sym_as, + ACTIONS(3451), 1, anon_sym_LT, - STATE(2565), 1, + ACTIONS(3453), 1, + anon_sym_QMARK, + ACTIONS(3455), 1, + anon_sym_AMP_AMP, + ACTIONS(3461), 1, + anon_sym_AMP, + ACTIONS(3463), 1, + anon_sym_PIPE, + ACTIONS(3467), 1, + anon_sym_STAR_STAR, + ACTIONS(3471), 1, + anon_sym_QMARK_QMARK, + STATE(2611), 1, sym_type_arguments, - ACTIONS(2945), 2, + ACTIONS(3057), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(3104), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1128), 2, + ACTIONS(3457), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(3465), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1529), 2, sym_template_string, sym_arguments, - ACTIONS(3037), 13, + ACTIONS(3447), 3, anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, anon_sym_SLASH, - anon_sym_QMARK, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3039), 16, - anon_sym_as, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(3459), 3, 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, - [58119] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2157), 1, - anon_sym_LPAREN, - STATE(1539), 1, - sym_arguments, - ACTIONS(3050), 14, - anon_sym_STAR, - anon_sym_BANG, + ACTIONS(3449), 4, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3052), 24, - sym__automatic_semicolon, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - 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, + ACTIONS(3469), 5, 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, - [58171] = 3, + [58799] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1573), 14, + ACTIONS(3495), 1, + sym_regex_flags, + ACTIONS(3389), 16, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -114653,9 +115437,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1571), 26, + anon_sym_instanceof, + ACTIONS(3391), 23, sym__automatic_semicolon, - anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, @@ -114675,145 +115459,164 @@ static 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_extends, - [58219] = 25, + [58849] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(479), 1, + ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(2145), 1, + ACTIONS(2173), 1, anon_sym_LPAREN, - ACTIONS(2175), 1, + ACTIONS(2282), 1, anon_sym_LBRACK, - ACTIONS(2177), 1, + ACTIONS(2298), 1, anon_sym_DOT, - ACTIONS(2863), 1, + ACTIONS(3080), 1, + anon_sym_BANG, + ACTIONS(3086), 1, anon_sym_QMARK_DOT, - ACTIONS(2915), 1, + ACTIONS(3113), 1, anon_sym_as, - ACTIONS(2919), 1, - anon_sym_BANG, - ACTIONS(3484), 1, + ACTIONS(3451), 1, anon_sym_LT, - ACTIONS(3486), 1, + ACTIONS(3453), 1, anon_sym_QMARK, - ACTIONS(3488), 1, + ACTIONS(3455), 1, anon_sym_AMP_AMP, - ACTIONS(3494), 1, + ACTIONS(3461), 1, anon_sym_AMP, - ACTIONS(3496), 1, + ACTIONS(3463), 1, anon_sym_PIPE, - ACTIONS(3500), 1, + ACTIONS(3467), 1, anon_sym_STAR_STAR, - ACTIONS(3504), 1, + ACTIONS(3471), 1, anon_sym_QMARK_QMARK, - STATE(2565), 1, + STATE(2611), 1, sym_type_arguments, - ACTIONS(2945), 2, + ACTIONS(3053), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(3104), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3058), 2, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(3490), 2, + ACTIONS(3457), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(3498), 2, + ACTIONS(3465), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1128), 2, + STATE(1529), 2, sym_template_string, sym_arguments, - ACTIONS(3480), 3, + ACTIONS(3447), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(3492), 3, + ACTIONS(3459), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(3482), 4, + ACTIONS(3449), 4, anon_sym_in, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3502), 5, + ACTIONS(3469), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [58311] = 5, + [58941] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(959), 1, - sym__automatic_semicolon, - ACTIONS(951), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(955), 14, - anon_sym_STAR, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(2173), 1, + anon_sym_LPAREN, + ACTIONS(2282), 1, + anon_sym_LBRACK, + ACTIONS(2298), 1, + anon_sym_DOT, + ACTIONS(3080), 1, anon_sym_BANG, - anon_sym_in, + ACTIONS(3086), 1, + anon_sym_QMARK_DOT, + ACTIONS(3113), 1, + anon_sym_as, + ACTIONS(3451), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(3453), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(3455), 1, + anon_sym_AMP_AMP, + ACTIONS(3461), 1, anon_sym_AMP, + ACTIONS(3463), 1, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(957), 23, - anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, + ACTIONS(3467), 1, + anon_sym_STAR_STAR, + ACTIONS(3471), 1, + anon_sym_QMARK_QMARK, + STATE(2611), 1, + sym_type_arguments, + ACTIONS(3051), 2, + sym__automatic_semicolon, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, + ACTIONS(3104), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3457), 2, anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(3465), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1529), 2, + sym_template_string, + sym_arguments, + ACTIONS(3447), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(3459), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(3449), 4, + anon_sym_in, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3469), 5, 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, - [58363] = 4, + [59033] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3004), 1, - anon_sym_LT, - ACTIONS(1091), 13, + ACTIONS(3497), 1, + anon_sym_AMP, + ACTIONS(3499), 1, + anon_sym_PIPE, + ACTIONS(1762), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1089), 26, + ACTIONS(1760), 26, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, @@ -114840,155 +115643,168 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [58413] = 25, + [59085] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(479), 1, anon_sym_BQUOTE, - ACTIONS(2145), 1, + ACTIONS(2161), 1, anon_sym_LPAREN, - ACTIONS(2175), 1, + ACTIONS(2191), 1, anon_sym_LBRACK, - ACTIONS(2177), 1, + ACTIONS(2193), 1, anon_sym_DOT, - ACTIONS(2863), 1, + ACTIONS(2883), 1, anon_sym_QMARK_DOT, - ACTIONS(2915), 1, + ACTIONS(2941), 1, anon_sym_as, - ACTIONS(2919), 1, + ACTIONS(2945), 1, anon_sym_BANG, - ACTIONS(3484), 1, + ACTIONS(2949), 1, anon_sym_LT, - ACTIONS(3486), 1, + ACTIONS(2951), 1, anon_sym_QMARK, - ACTIONS(3488), 1, + ACTIONS(2953), 1, anon_sym_AMP_AMP, - ACTIONS(3494), 1, + ACTIONS(2959), 1, anon_sym_AMP, - ACTIONS(3496), 1, + ACTIONS(2961), 1, anon_sym_PIPE, - ACTIONS(3500), 1, + ACTIONS(2965), 1, anon_sym_STAR_STAR, - ACTIONS(3504), 1, + ACTIONS(2969), 1, anon_sym_QMARK_QMARK, - STATE(2565), 1, - sym_type_arguments, - ACTIONS(2945), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(2991), 2, - anon_sym_COLON, + ACTIONS(2991), 1, + anon_sym_COMMA, + ACTIONS(3501), 1, anon_sym_RBRACK, - ACTIONS(3490), 2, + STATE(2547), 1, + sym_type_arguments, + ACTIONS(2955), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(3498), 2, + ACTIONS(2963), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1128), 2, + ACTIONS(2971), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1126), 2, sym_template_string, sym_arguments, - ACTIONS(3480), 3, + ACTIONS(2939), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(3492), 3, + ACTIONS(2957), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(3482), 4, + ACTIONS(2947), 4, anon_sym_in, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3502), 5, + ACTIONS(2967), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [58505] = 13, + [59179] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(479), 1, anon_sym_BQUOTE, - ACTIONS(2145), 1, + ACTIONS(2161), 1, anon_sym_LPAREN, - ACTIONS(2175), 1, + ACTIONS(2191), 1, anon_sym_LBRACK, - ACTIONS(2177), 1, + ACTIONS(2193), 1, anon_sym_DOT, - ACTIONS(2863), 1, + ACTIONS(2883), 1, anon_sym_QMARK_DOT, - ACTIONS(2919), 1, + ACTIONS(2941), 1, + anon_sym_as, + ACTIONS(2945), 1, anon_sym_BANG, - ACTIONS(3477), 1, + ACTIONS(2949), 1, anon_sym_LT, - STATE(2565), 1, - sym_type_arguments, - ACTIONS(2945), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1128), 2, - sym_template_string, - sym_arguments, - ACTIONS(3037), 12, - anon_sym_STAR, - anon_sym_in, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(2951), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(2953), 1, + anon_sym_AMP_AMP, + ACTIONS(2959), 1, anon_sym_AMP, + ACTIONS(2961), 1, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3039), 16, - anon_sym_as, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_AMP_AMP, + ACTIONS(2965), 1, + anon_sym_STAR_STAR, + ACTIONS(2969), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2991), 1, + anon_sym_COMMA, + ACTIONS(3503), 1, + anon_sym_RPAREN, + STATE(2547), 1, + sym_type_arguments, + ACTIONS(2955), 2, anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(2963), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2971), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1126), 2, + sym_template_string, + sym_arguments, + ACTIONS(2939), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(2957), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(2947), 4, + anon_sym_in, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2967), 5, 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, - [58573] = 13, + [59273] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(479), 1, anon_sym_BQUOTE, - ACTIONS(2145), 1, + ACTIONS(2161), 1, anon_sym_LPAREN, - ACTIONS(2175), 1, + ACTIONS(2191), 1, anon_sym_LBRACK, - ACTIONS(2177), 1, + ACTIONS(2193), 1, anon_sym_DOT, - ACTIONS(2863), 1, + ACTIONS(2883), 1, anon_sym_QMARK_DOT, - ACTIONS(2919), 1, - anon_sym_BANG, - ACTIONS(3477), 1, + ACTIONS(3505), 1, anon_sym_LT, - STATE(2565), 1, + STATE(2547), 1, sym_type_arguments, - ACTIONS(2945), 2, + ACTIONS(2971), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1128), 2, + STATE(1126), 2, sym_template_string, sym_arguments, - ACTIONS(3037), 12, + ACTIONS(3024), 13, anon_sym_STAR, + anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_SLASH, @@ -115000,7 +115816,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3039), 16, + ACTIONS(3026), 16, anon_sym_as, anon_sym_COLON, anon_sym_RBRACK, @@ -115017,151 +115833,149 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [58641] = 5, + [59339] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(1051), 1, - sym__automatic_semicolon, - ACTIONS(1043), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(1047), 14, - anon_sym_STAR, + ACTIONS(479), 1, + anon_sym_BQUOTE, + ACTIONS(2161), 1, + anon_sym_LPAREN, + ACTIONS(2191), 1, + anon_sym_LBRACK, + ACTIONS(2193), 1, + anon_sym_DOT, + ACTIONS(2883), 1, + anon_sym_QMARK_DOT, + ACTIONS(2941), 1, + anon_sym_as, + ACTIONS(2945), 1, anon_sym_BANG, - anon_sym_in, + ACTIONS(2949), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(2951), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(2953), 1, + anon_sym_AMP_AMP, + ACTIONS(2959), 1, anon_sym_AMP, + ACTIONS(2961), 1, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1049), 23, - anon_sym_as, + ACTIONS(2965), 1, + anon_sym_STAR_STAR, + ACTIONS(2969), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2991), 1, anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, + ACTIONS(3508), 1, + anon_sym_COLON, + STATE(2547), 1, + sym_type_arguments, + ACTIONS(2955), 2, 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, + ACTIONS(2963), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2971), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [58693] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2907), 1, - anon_sym_LBRACK, - ACTIONS(1551), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(2910), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(2903), 12, + STATE(1126), 2, + sym_template_string, + sym_arguments, + ACTIONS(2939), 3, anon_sym_STAR, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, anon_sym_SLASH, - anon_sym_QMARK, anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2905), 22, - sym__automatic_semicolon, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(2957), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(2947), 4, + anon_sym_in, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2967), 5, 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, - [58747] = 3, + [59433] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(1545), 14, - anon_sym_STAR, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(2173), 1, + anon_sym_LPAREN, + ACTIONS(2282), 1, + anon_sym_LBRACK, + ACTIONS(2298), 1, + anon_sym_DOT, + ACTIONS(3080), 1, anon_sym_BANG, - anon_sym_in, + ACTIONS(3086), 1, + anon_sym_QMARK_DOT, + ACTIONS(3113), 1, + anon_sym_as, + ACTIONS(3451), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(3453), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(3455), 1, + anon_sym_AMP_AMP, + ACTIONS(3461), 1, anon_sym_AMP, + ACTIONS(3463), 1, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1543), 26, + ACTIONS(3467), 1, + anon_sym_STAR_STAR, + ACTIONS(3471), 1, + anon_sym_QMARK_QMARK, + STATE(2611), 1, + sym_type_arguments, + ACTIONS(3068), 2, sym__automatic_semicolon, - 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, + ACTIONS(3104), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3457), 2, anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(3465), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1529), 2, + sym_template_string, + sym_arguments, + ACTIONS(3447), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(3459), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(3449), 4, + anon_sym_in, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3469), 5, 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_extends, - [58795] = 3, + [59525] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1589), 14, + STATE(1629), 1, + sym_type_arguments, + ACTIONS(1569), 15, anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -115175,13 +115989,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1587), 26, - sym__automatic_semicolon, + ACTIONS(1567), 24, 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, @@ -115202,130 +116013,153 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [58843] = 5, + anon_sym_LBRACE_PIPE, + [59575] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(2157), 1, + ACTIONS(479), 1, + anon_sym_BQUOTE, + ACTIONS(2161), 1, anon_sym_LPAREN, - STATE(1537), 1, - sym_arguments, - ACTIONS(3046), 14, - anon_sym_STAR, + ACTIONS(2191), 1, + anon_sym_LBRACK, + ACTIONS(2193), 1, + anon_sym_DOT, + ACTIONS(2883), 1, + anon_sym_QMARK_DOT, + ACTIONS(2941), 1, + anon_sym_as, + ACTIONS(2945), 1, anon_sym_BANG, - anon_sym_in, + ACTIONS(3514), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(3516), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(3518), 1, + anon_sym_AMP_AMP, + ACTIONS(3524), 1, anon_sym_AMP, + ACTIONS(3526), 1, anon_sym_PIPE, + ACTIONS(3530), 1, + anon_sym_STAR_STAR, + ACTIONS(3534), 1, + anon_sym_QMARK_QMARK, + STATE(2547), 1, + sym_type_arguments, + ACTIONS(2971), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3003), 2, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(3520), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(3528), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3048), 24, - sym__automatic_semicolon, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + STATE(1126), 2, + sym_template_string, + sym_arguments, + ACTIONS(3510), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(3522), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(3512), 4, + anon_sym_in, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3532), 5, 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, - [58895] = 26, + [59667] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(479), 1, anon_sym_BQUOTE, - ACTIONS(2145), 1, + ACTIONS(2161), 1, anon_sym_LPAREN, - ACTIONS(2175), 1, + ACTIONS(2191), 1, anon_sym_LBRACK, - ACTIONS(2177), 1, + ACTIONS(2193), 1, anon_sym_DOT, - ACTIONS(2863), 1, + ACTIONS(2883), 1, anon_sym_QMARK_DOT, - ACTIONS(2915), 1, + ACTIONS(2941), 1, anon_sym_as, - ACTIONS(2919), 1, + ACTIONS(2945), 1, anon_sym_BANG, - ACTIONS(2923), 1, + ACTIONS(3514), 1, anon_sym_LT, - ACTIONS(2925), 1, + ACTIONS(3516), 1, anon_sym_QMARK, - ACTIONS(2927), 1, + ACTIONS(3518), 1, anon_sym_AMP_AMP, - ACTIONS(2933), 1, + ACTIONS(3524), 1, anon_sym_AMP, - ACTIONS(2935), 1, + ACTIONS(3526), 1, anon_sym_PIPE, - ACTIONS(2939), 1, + ACTIONS(3530), 1, anon_sym_STAR_STAR, - ACTIONS(2943), 1, + ACTIONS(3534), 1, anon_sym_QMARK_QMARK, - ACTIONS(3025), 1, - anon_sym_COMMA, - ACTIONS(3506), 1, - anon_sym_RPAREN, - STATE(2565), 1, + STATE(2547), 1, sym_type_arguments, - ACTIONS(2929), 2, + ACTIONS(2971), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3017), 2, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(3520), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(2937), 2, + ACTIONS(3528), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2945), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1128), 2, + STATE(1126), 2, sym_template_string, sym_arguments, - ACTIONS(2913), 3, + ACTIONS(3510), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(2931), 3, + ACTIONS(3522), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(2921), 4, + ACTIONS(3512), 4, anon_sym_in, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2941), 5, + ACTIONS(3532), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [58989] = 5, + [59759] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1071), 1, - sym__automatic_semicolon, - ACTIONS(1063), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(1067), 14, + ACTIONS(2282), 1, + anon_sym_LBRACK, + ACTIONS(2288), 1, + anon_sym_QMARK_DOT, + ACTIONS(2298), 1, + anon_sym_DOT, + ACTIONS(3536), 1, + anon_sym_EQ, + ACTIONS(1037), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -115340,14 +116174,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1069), 23, + ACTIONS(1039), 22, + sym__automatic_semicolon, 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, @@ -115364,129 +116197,153 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [59041] = 25, + [59815] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(2157), 1, + ACTIONS(2173), 1, anon_sym_LPAREN, - ACTIONS(2266), 1, - anon_sym_LBRACK, ACTIONS(2282), 1, + anon_sym_LBRACK, + ACTIONS(2298), 1, anon_sym_DOT, - ACTIONS(3100), 1, - anon_sym_as, - ACTIONS(3102), 1, + ACTIONS(3080), 1, anon_sym_BANG, - ACTIONS(3108), 1, + ACTIONS(3086), 1, anon_sym_QMARK_DOT, - ACTIONS(3426), 1, + ACTIONS(3113), 1, + anon_sym_as, + ACTIONS(3451), 1, anon_sym_LT, - ACTIONS(3428), 1, + ACTIONS(3453), 1, anon_sym_QMARK, - ACTIONS(3430), 1, + ACTIONS(3455), 1, anon_sym_AMP_AMP, - ACTIONS(3436), 1, + ACTIONS(3461), 1, anon_sym_AMP, - ACTIONS(3438), 1, + ACTIONS(3463), 1, anon_sym_PIPE, - ACTIONS(3442), 1, + ACTIONS(3467), 1, anon_sym_STAR_STAR, - ACTIONS(3446), 1, + ACTIONS(3471), 1, anon_sym_QMARK_QMARK, - STATE(2501), 1, + STATE(2611), 1, sym_type_arguments, - ACTIONS(3060), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(3130), 2, + ACTIONS(3104), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3432), 2, + ACTIONS(3457), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(3440), 2, + ACTIONS(3465), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1567), 2, + ACTIONS(3538), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(1529), 2, sym_template_string, sym_arguments, - ACTIONS(3422), 3, + ACTIONS(3447), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(3434), 3, + ACTIONS(3459), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(3424), 4, + ACTIONS(3449), 4, anon_sym_in, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3444), 5, + ACTIONS(3469), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [59133] = 5, + [59907] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(969), 1, - sym__automatic_semicolon, - ACTIONS(961), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(965), 14, - anon_sym_STAR, + ACTIONS(479), 1, + anon_sym_BQUOTE, + ACTIONS(2161), 1, + anon_sym_LPAREN, + ACTIONS(2191), 1, + anon_sym_LBRACK, + ACTIONS(2193), 1, + anon_sym_DOT, + ACTIONS(2883), 1, + anon_sym_QMARK_DOT, + ACTIONS(2941), 1, + anon_sym_as, + ACTIONS(2945), 1, anon_sym_BANG, - anon_sym_in, + ACTIONS(2949), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(2951), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(2953), 1, + anon_sym_AMP_AMP, + ACTIONS(2959), 1, anon_sym_AMP, + ACTIONS(2961), 1, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(967), 23, - anon_sym_as, + ACTIONS(2965), 1, + anon_sym_STAR_STAR, + ACTIONS(2969), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2991), 1, anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, + ACTIONS(3540), 1, + anon_sym_RPAREN, + STATE(2547), 1, + sym_type_arguments, + ACTIONS(2955), 2, anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(2963), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2971), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1126), 2, + sym_template_string, + sym_arguments, + ACTIONS(2939), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(2957), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(2947), 4, + anon_sym_in, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2967), 5, 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, - [59185] = 5, + [60001] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1021), 1, - sym__automatic_semicolon, - ACTIONS(1013), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(1017), 14, + ACTIONS(2282), 1, + anon_sym_LBRACK, + ACTIONS(2288), 1, + anon_sym_QMARK_DOT, + ACTIONS(2298), 1, + anon_sym_DOT, + ACTIONS(3542), 1, + anon_sym_EQ, + ACTIONS(1037), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -115501,14 +116358,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1019), 23, + ACTIONS(1039), 22, + sym__automatic_semicolon, 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, @@ -115525,85 +116381,102 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [59237] = 26, + [60057] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(479), 1, anon_sym_BQUOTE, - ACTIONS(2145), 1, + ACTIONS(2161), 1, anon_sym_LPAREN, - ACTIONS(2175), 1, + ACTIONS(2191), 1, anon_sym_LBRACK, - ACTIONS(2177), 1, + ACTIONS(2193), 1, anon_sym_DOT, - ACTIONS(2863), 1, + ACTIONS(2883), 1, anon_sym_QMARK_DOT, - ACTIONS(2915), 1, + ACTIONS(2941), 1, anon_sym_as, - ACTIONS(2919), 1, + ACTIONS(2945), 1, anon_sym_BANG, - ACTIONS(2923), 1, + ACTIONS(2949), 1, anon_sym_LT, - ACTIONS(2925), 1, + ACTIONS(2951), 1, anon_sym_QMARK, - ACTIONS(2927), 1, + ACTIONS(2953), 1, anon_sym_AMP_AMP, - ACTIONS(2933), 1, + ACTIONS(2959), 1, anon_sym_AMP, - ACTIONS(2935), 1, + ACTIONS(2961), 1, anon_sym_PIPE, - ACTIONS(2939), 1, + ACTIONS(2965), 1, anon_sym_STAR_STAR, - ACTIONS(2943), 1, + ACTIONS(2969), 1, anon_sym_QMARK_QMARK, - ACTIONS(3025), 1, + ACTIONS(2991), 1, anon_sym_COMMA, - ACTIONS(3508), 1, - anon_sym_RBRACE, - STATE(2565), 1, + ACTIONS(3544), 1, + anon_sym_RPAREN, + STATE(2547), 1, sym_type_arguments, - ACTIONS(2929), 2, + ACTIONS(2955), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(2937), 2, + ACTIONS(2963), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2945), 2, + ACTIONS(2971), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1128), 2, + STATE(1126), 2, sym_template_string, sym_arguments, - ACTIONS(2913), 3, + ACTIONS(2939), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(2931), 3, + ACTIONS(2957), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(2921), 4, + ACTIONS(2947), 4, anon_sym_in, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2941), 5, + ACTIONS(2967), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [59331] = 4, + [60151] = 13, ACTIONS(3), 1, sym_comment, - STATE(1601), 1, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(2173), 1, + anon_sym_LPAREN, + ACTIONS(2282), 1, + anon_sym_LBRACK, + ACTIONS(2298), 1, + anon_sym_DOT, + ACTIONS(3080), 1, + anon_sym_BANG, + ACTIONS(3086), 1, + anon_sym_QMARK_DOT, + ACTIONS(3546), 1, + anon_sym_LT, + STATE(2611), 1, sym_type_arguments, - ACTIONS(1519), 15, + ACTIONS(3104), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1529), 2, + sym_template_string, + sym_arguments, + ACTIONS(3024), 12, anon_sym_STAR, - anon_sym_LBRACE, - anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -115614,13 +116487,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1517), 24, + ACTIONS(3026), 16, + sym__automatic_semicolon, anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -115634,119 +116504,87 @@ static 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_extends, - anon_sym_LBRACE_PIPE, - [59381] = 5, + [60219] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(3510), 1, + ACTIONS(479), 1, + anon_sym_BQUOTE, + ACTIONS(2161), 1, + anon_sym_LPAREN, + ACTIONS(2191), 1, + anon_sym_LBRACK, + ACTIONS(2193), 1, anon_sym_DOT, - STATE(1600), 1, - sym_type_arguments, - ACTIONS(1661), 15, - anon_sym_STAR, - anon_sym_LBRACE, + ACTIONS(2883), 1, + anon_sym_QMARK_DOT, + ACTIONS(2941), 1, + anon_sym_as, + ACTIONS(2945), 1, anon_sym_BANG, - anon_sym_in, + ACTIONS(2949), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(2951), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(2953), 1, + anon_sym_AMP_AMP, + ACTIONS(2959), 1, anon_sym_AMP, + ACTIONS(2961), 1, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1659), 23, - anon_sym_as, + ACTIONS(2965), 1, + anon_sym_STAR_STAR, + ACTIONS(2969), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2991), 1, anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, + ACTIONS(3549), 1, + anon_sym_RPAREN, + STATE(2547), 1, + sym_type_arguments, + ACTIONS(2955), 2, 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, + ACTIONS(2963), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2971), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_extends, - anon_sym_LBRACE_PIPE, - [59433] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1041), 1, - sym__automatic_semicolon, - ACTIONS(1033), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(1037), 14, + STATE(1126), 2, + sym_template_string, + sym_arguments, + ACTIONS(2939), 3, anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, anon_sym_SLASH, - anon_sym_QMARK, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1039), 23, - 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, + ACTIONS(2957), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(2947), 4, + anon_sym_in, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2967), 5, 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, - [59485] = 6, + [60313] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3510), 1, - anon_sym_DOT, - ACTIONS(3512), 1, - anon_sym_LT, - STATE(1600), 1, - sym_type_arguments, - ACTIONS(1672), 14, + ACTIONS(1089), 1, + sym__automatic_semicolon, + ACTIONS(1081), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(1085), 14, anon_sym_STAR, - anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -115757,11 +116595,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1670), 23, + ACTIONS(1087), 23, 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, @@ -115779,21 +116619,34 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, - anon_sym_LBRACE_PIPE, - [59539] = 5, + [60365] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(3515), 1, + ACTIONS(479), 1, + anon_sym_BQUOTE, + ACTIONS(2161), 1, + anon_sym_LPAREN, + ACTIONS(2191), 1, + anon_sym_LBRACK, + ACTIONS(2193), 1, anon_sym_DOT, - STATE(1600), 1, + ACTIONS(2883), 1, + anon_sym_QMARK_DOT, + ACTIONS(2945), 1, + anon_sym_BANG, + ACTIONS(3505), 1, + anon_sym_LT, + STATE(2547), 1, sym_type_arguments, - ACTIONS(1585), 15, + ACTIONS(2971), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1126), 2, + sym_template_string, + sym_arguments, + ACTIONS(3024), 12, anon_sym_STAR, - anon_sym_LBRACE, - anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -115804,12 +116657,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1583), 23, + ACTIONS(3026), 16, anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK_DOT, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -115823,15 +116674,14 @@ static 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_extends, - anon_sym_LBRACE_PIPE, - [59591] = 3, + [60433] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1605), 14, + ACTIONS(911), 1, + anon_sym_EQ, + ACTIONS(3349), 1, + sym__automatic_semicolon, + ACTIONS(909), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -115846,8 +116696,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1603), 26, - sym__automatic_semicolon, + ACTIONS(907), 24, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, @@ -115872,37 +116721,48 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, - [59639] = 5, + [60485] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(3463), 1, - anon_sym_AMP, - ACTIONS(3465), 1, - anon_sym_PIPE, - ACTIONS(1760), 12, - anon_sym_STAR, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(2173), 1, + anon_sym_LPAREN, + ACTIONS(2282), 1, + anon_sym_LBRACK, + ACTIONS(2298), 1, + anon_sym_DOT, + ACTIONS(3080), 1, anon_sym_BANG, - anon_sym_in, + ACTIONS(3086), 1, + anon_sym_QMARK_DOT, + ACTIONS(3546), 1, anon_sym_LT, + STATE(2611), 1, + sym_type_arguments, + ACTIONS(3104), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1529), 2, + sym_template_string, + sym_arguments, + ACTIONS(3024), 12, + anon_sym_STAR, + anon_sym_in, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1758), 26, + ACTIONS(3026), 16, sym__automatic_semicolon, 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, @@ -115916,22 +116776,82 @@ static 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_extends, - [59691] = 5, + [60553] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(3517), 1, + ACTIONS(479), 1, + anon_sym_BQUOTE, + ACTIONS(2161), 1, + anon_sym_LPAREN, + ACTIONS(2191), 1, + anon_sym_LBRACK, + ACTIONS(2193), 1, + anon_sym_DOT, + ACTIONS(2883), 1, + anon_sym_QMARK_DOT, + ACTIONS(2941), 1, + anon_sym_as, + ACTIONS(2945), 1, + anon_sym_BANG, + ACTIONS(2949), 1, anon_sym_LT, - STATE(1601), 1, + ACTIONS(2951), 1, + anon_sym_QMARK, + ACTIONS(2953), 1, + anon_sym_AMP_AMP, + ACTIONS(2959), 1, + anon_sym_AMP, + ACTIONS(2961), 1, + anon_sym_PIPE, + ACTIONS(2965), 1, + anon_sym_STAR_STAR, + ACTIONS(2969), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2991), 1, + anon_sym_COMMA, + ACTIONS(3551), 1, + anon_sym_RPAREN, + STATE(2547), 1, sym_type_arguments, - ACTIONS(1736), 14, + ACTIONS(2955), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(2963), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2971), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1126), 2, + sym_template_string, + sym_arguments, + ACTIONS(2939), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(2957), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(2947), 4, + anon_sym_in, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2967), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [60647] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1593), 14, anon_sym_STAR, - anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -115942,10 +116862,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1734), 24, + ACTIONS(1591), 26, + sym__automatic_semicolon, 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, @@ -115966,11 +116889,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - anon_sym_LBRACE_PIPE, - [59743] = 3, + [60695] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1565), 14, + ACTIONS(1605), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -115985,7 +116907,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1563), 26, + ACTIONS(1603), 26, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, @@ -116012,56 +116934,77 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [59791] = 4, + [60743] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(1093), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(1097), 14, - anon_sym_STAR, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(2173), 1, + anon_sym_LPAREN, + ACTIONS(2282), 1, + anon_sym_LBRACK, + ACTIONS(2298), 1, + anon_sym_DOT, + ACTIONS(3080), 1, anon_sym_BANG, - anon_sym_in, + ACTIONS(3086), 1, + anon_sym_QMARK_DOT, + ACTIONS(3113), 1, + anon_sym_as, + ACTIONS(3451), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(3453), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(3455), 1, + anon_sym_AMP_AMP, + ACTIONS(3461), 1, anon_sym_AMP, + ACTIONS(3463), 1, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1099), 24, + ACTIONS(3467), 1, + anon_sym_STAR_STAR, + ACTIONS(3471), 1, + anon_sym_QMARK_QMARK, + STATE(2611), 1, + sym_type_arguments, + ACTIONS(3031), 2, sym__automatic_semicolon, - 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, + ACTIONS(3104), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3457), 2, anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(3465), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1529), 2, + sym_template_string, + sym_arguments, + ACTIONS(3447), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(3459), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(3449), 4, + anon_sym_in, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3469), 5, 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, - [59841] = 3, + [60835] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1511), 14, + ACTIONS(1597), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -116076,7 +117019,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1509), 26, + ACTIONS(1595), 26, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, @@ -116103,10 +117046,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [59889] = 3, + [60883] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1581), 14, + ACTIONS(1033), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(1037), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -116121,11 +117067,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1579), 26, + ACTIONS(1039), 24, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, @@ -116147,62 +117092,150 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, - [59937] = 3, + [60933] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(1491), 14, - anon_sym_STAR, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(2173), 1, + anon_sym_LPAREN, + ACTIONS(2282), 1, + anon_sym_LBRACK, + ACTIONS(2298), 1, + anon_sym_DOT, + ACTIONS(3080), 1, anon_sym_BANG, - anon_sym_in, + ACTIONS(3086), 1, + anon_sym_QMARK_DOT, + ACTIONS(3113), 1, + anon_sym_as, + ACTIONS(3451), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(3453), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(3455), 1, + anon_sym_AMP_AMP, + ACTIONS(3461), 1, anon_sym_AMP, + ACTIONS(3463), 1, anon_sym_PIPE, + ACTIONS(3467), 1, + anon_sym_STAR_STAR, + ACTIONS(3471), 1, + anon_sym_QMARK_QMARK, + STATE(2611), 1, + sym_type_arguments, + ACTIONS(3007), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(3104), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3457), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(3465), 2, anon_sym_PLUS, anon_sym_DASH, + STATE(1529), 2, + sym_template_string, + sym_arguments, + ACTIONS(3447), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(3459), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(3449), 4, + anon_sym_in, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1489), 26, - sym__automatic_semicolon, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(3469), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [61025] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(2173), 1, anon_sym_LPAREN, - anon_sym_SEMI, + ACTIONS(2282), 1, anon_sym_LBRACK, + ACTIONS(2298), 1, anon_sym_DOT, + ACTIONS(3080), 1, + anon_sym_BANG, + ACTIONS(3086), 1, anon_sym_QMARK_DOT, + ACTIONS(3113), 1, + anon_sym_as, + ACTIONS(3451), 1, + anon_sym_LT, + ACTIONS(3453), 1, + anon_sym_QMARK, + ACTIONS(3455), 1, anon_sym_AMP_AMP, + ACTIONS(3461), 1, + anon_sym_AMP, + ACTIONS(3463), 1, + anon_sym_PIPE, + ACTIONS(3467), 1, + anon_sym_STAR_STAR, + ACTIONS(3471), 1, + anon_sym_QMARK_QMARK, + STATE(2611), 1, + sym_type_arguments, + ACTIONS(3005), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(3104), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3457), 2, anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(3465), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1529), 2, + sym_template_string, + sym_arguments, + ACTIONS(3447), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(3459), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(3449), 4, + anon_sym_in, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3469), 5, 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_extends, - [59985] = 6, + [61117] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3463), 1, + ACTIONS(3497), 1, anon_sym_AMP, - ACTIONS(3465), 1, + ACTIONS(3499), 1, anon_sym_PIPE, - ACTIONS(3467), 1, + ACTIONS(3553), 1, anon_sym_extends, - ACTIONS(1770), 12, + ACTIONS(2929), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -116215,7 +117248,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1768), 25, + ACTIONS(2931), 25, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, @@ -116241,14 +117274,34 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [60039] = 3, + [61171] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1499), 14, - anon_sym_STAR, + ACTIONS(479), 1, + anon_sym_BQUOTE, + ACTIONS(2161), 1, + anon_sym_LPAREN, + ACTIONS(2191), 1, + anon_sym_LBRACK, + ACTIONS(2193), 1, + anon_sym_DOT, + ACTIONS(2883), 1, + anon_sym_QMARK_DOT, + ACTIONS(2945), 1, anon_sym_BANG, - anon_sym_in, + ACTIONS(3505), 1, anon_sym_LT, + STATE(2547), 1, + sym_type_arguments, + ACTIONS(2971), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1126), 2, + sym_template_string, + sym_arguments, + ACTIONS(3024), 12, + anon_sym_STAR, + anon_sym_in, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -116259,16 +117312,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1497), 26, - sym__automatic_semicolon, + ACTIONS(3026), 16, 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_COLON, + anon_sym_RBRACK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -116282,14 +117329,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, + [61239] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(479), 1, + anon_sym_BQUOTE, + ACTIONS(2161), 1, + anon_sym_LPAREN, + ACTIONS(2191), 1, + anon_sym_LBRACK, + ACTIONS(2193), 1, + anon_sym_DOT, + ACTIONS(2883), 1, + anon_sym_QMARK_DOT, + ACTIONS(2941), 1, + anon_sym_as, + ACTIONS(2945), 1, + anon_sym_BANG, + ACTIONS(2949), 1, + anon_sym_LT, + ACTIONS(2951), 1, + anon_sym_QMARK, + ACTIONS(2953), 1, + anon_sym_AMP_AMP, + ACTIONS(2959), 1, + anon_sym_AMP, + ACTIONS(2961), 1, + anon_sym_PIPE, + ACTIONS(2965), 1, + anon_sym_STAR_STAR, + ACTIONS(2969), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2991), 1, + anon_sym_COMMA, + ACTIONS(3555), 1, + anon_sym_RBRACK, + STATE(2547), 1, + sym_type_arguments, + ACTIONS(2955), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(2963), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2971), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_extends, - [60087] = 3, + STATE(1126), 2, + sym_template_string, + sym_arguments, + ACTIONS(2939), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(2957), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(2947), 4, + anon_sym_in, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2967), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [61333] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1557), 14, + ACTIONS(1487), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -116304,7 +117415,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1555), 26, + ACTIONS(1485), 26, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, @@ -116331,127 +117442,150 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [60135] = 26, + [61381] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(479), 1, + ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(2145), 1, + ACTIONS(2173), 1, anon_sym_LPAREN, - ACTIONS(2175), 1, + ACTIONS(2282), 1, anon_sym_LBRACK, - ACTIONS(2177), 1, + ACTIONS(2298), 1, anon_sym_DOT, - ACTIONS(2863), 1, + ACTIONS(3080), 1, + anon_sym_BANG, + ACTIONS(3086), 1, anon_sym_QMARK_DOT, - ACTIONS(2915), 1, + ACTIONS(3113), 1, anon_sym_as, - ACTIONS(2919), 1, - anon_sym_BANG, - ACTIONS(2923), 1, + ACTIONS(3451), 1, anon_sym_LT, - ACTIONS(2925), 1, + ACTIONS(3453), 1, anon_sym_QMARK, - ACTIONS(2927), 1, + ACTIONS(3455), 1, anon_sym_AMP_AMP, - ACTIONS(2933), 1, + ACTIONS(3461), 1, anon_sym_AMP, - ACTIONS(2935), 1, + ACTIONS(3463), 1, anon_sym_PIPE, - ACTIONS(2939), 1, + ACTIONS(3467), 1, anon_sym_STAR_STAR, - ACTIONS(2943), 1, + ACTIONS(3471), 1, anon_sym_QMARK_QMARK, - ACTIONS(3025), 1, - anon_sym_COMMA, - ACTIONS(3520), 1, - anon_sym_RBRACK, - STATE(2565), 1, + STATE(2611), 1, sym_type_arguments, - ACTIONS(2929), 2, + ACTIONS(3104), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3457), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(2937), 2, + ACTIONS(3465), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2945), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1128), 2, + ACTIONS(3557), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(1529), 2, sym_template_string, sym_arguments, - ACTIONS(2913), 3, + ACTIONS(3447), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(2931), 3, + ACTIONS(3459), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(2921), 4, + ACTIONS(3449), 4, anon_sym_in, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2941), 5, + ACTIONS(3469), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [60229] = 3, + [61473] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(1507), 14, - anon_sym_STAR, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(2173), 1, + anon_sym_LPAREN, + ACTIONS(2282), 1, + anon_sym_LBRACK, + ACTIONS(2298), 1, + anon_sym_DOT, + ACTIONS(3080), 1, anon_sym_BANG, - anon_sym_in, + ACTIONS(3086), 1, + anon_sym_QMARK_DOT, + ACTIONS(3113), 1, + anon_sym_as, + ACTIONS(3451), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(3453), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(3455), 1, + anon_sym_AMP_AMP, + ACTIONS(3461), 1, anon_sym_AMP, + ACTIONS(3463), 1, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1505), 26, + ACTIONS(3467), 1, + anon_sym_STAR_STAR, + ACTIONS(3471), 1, + anon_sym_QMARK_QMARK, + STATE(2611), 1, + sym_type_arguments, + ACTIONS(3017), 2, sym__automatic_semicolon, - 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, + ACTIONS(3104), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3457), 2, anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(3465), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1529), 2, + sym_template_string, + sym_arguments, + ACTIONS(3447), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(3459), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(3449), 4, + anon_sym_in, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3469), 5, 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_extends, - [60277] = 5, + [61565] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(911), 1, - anon_sym_EQ, - ACTIONS(3345), 1, - sym__automatic_semicolon, - ACTIONS(909), 14, + ACTIONS(3497), 1, + anon_sym_AMP, + ACTIONS(3499), 1, + anon_sym_PIPE, + ACTIONS(3553), 1, + anon_sym_extends, + ACTIONS(1770), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -116460,13 +117594,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_QMARK, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(907), 24, + ACTIONS(1768), 25, + sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, @@ -116491,715 +117624,722 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [60329] = 25, + [61619] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(479), 1, + ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(2145), 1, + ACTIONS(2173), 1, anon_sym_LPAREN, - ACTIONS(2175), 1, + ACTIONS(2282), 1, anon_sym_LBRACK, - ACTIONS(2177), 1, + ACTIONS(2298), 1, anon_sym_DOT, - ACTIONS(2863), 1, + ACTIONS(3080), 1, + anon_sym_BANG, + ACTIONS(3086), 1, anon_sym_QMARK_DOT, - ACTIONS(2915), 1, + ACTIONS(3113), 1, anon_sym_as, - ACTIONS(2919), 1, - anon_sym_BANG, - ACTIONS(3484), 1, + ACTIONS(3451), 1, anon_sym_LT, - ACTIONS(3486), 1, + ACTIONS(3453), 1, anon_sym_QMARK, - ACTIONS(3488), 1, + ACTIONS(3455), 1, anon_sym_AMP_AMP, - ACTIONS(3494), 1, + ACTIONS(3461), 1, anon_sym_AMP, - ACTIONS(3496), 1, + ACTIONS(3463), 1, anon_sym_PIPE, - ACTIONS(3500), 1, + ACTIONS(3467), 1, anon_sym_STAR_STAR, - ACTIONS(3504), 1, + ACTIONS(3471), 1, anon_sym_QMARK_QMARK, - STATE(2565), 1, + STATE(2611), 1, sym_type_arguments, - ACTIONS(2945), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(2955), 2, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(3490), 2, + ACTIONS(3070), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(3104), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3457), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(3498), 2, + ACTIONS(3465), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1128), 2, + STATE(1529), 2, sym_template_string, sym_arguments, - ACTIONS(3480), 3, + ACTIONS(3447), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(3492), 3, + ACTIONS(3459), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(3482), 4, + ACTIONS(3449), 4, anon_sym_in, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3502), 5, + ACTIONS(3469), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [60421] = 26, + [61711] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(479), 1, anon_sym_BQUOTE, - ACTIONS(2145), 1, + ACTIONS(2161), 1, anon_sym_LPAREN, - ACTIONS(2175), 1, + ACTIONS(2191), 1, anon_sym_LBRACK, - ACTIONS(2177), 1, + ACTIONS(2193), 1, anon_sym_DOT, - ACTIONS(2863), 1, + ACTIONS(2883), 1, anon_sym_QMARK_DOT, - ACTIONS(2915), 1, + ACTIONS(2941), 1, anon_sym_as, - ACTIONS(2919), 1, + ACTIONS(2945), 1, anon_sym_BANG, - ACTIONS(2923), 1, + ACTIONS(2949), 1, anon_sym_LT, - ACTIONS(2925), 1, + ACTIONS(2951), 1, anon_sym_QMARK, - ACTIONS(2927), 1, + ACTIONS(2953), 1, anon_sym_AMP_AMP, - ACTIONS(2933), 1, + ACTIONS(2959), 1, anon_sym_AMP, - ACTIONS(2935), 1, + ACTIONS(2961), 1, anon_sym_PIPE, - ACTIONS(2939), 1, + ACTIONS(2965), 1, anon_sym_STAR_STAR, - ACTIONS(2943), 1, + ACTIONS(2969), 1, anon_sym_QMARK_QMARK, - ACTIONS(3025), 1, + ACTIONS(2991), 1, anon_sym_COMMA, - ACTIONS(3522), 1, - anon_sym_RPAREN, - STATE(2565), 1, + ACTIONS(3559), 1, + anon_sym_RBRACK, + STATE(2547), 1, sym_type_arguments, - ACTIONS(2929), 2, + ACTIONS(2955), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(2937), 2, + ACTIONS(2963), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2945), 2, + ACTIONS(2971), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1128), 2, + STATE(1126), 2, sym_template_string, sym_arguments, - ACTIONS(2913), 3, + ACTIONS(2939), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(2931), 3, + ACTIONS(2957), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(2921), 4, + ACTIONS(2947), 4, anon_sym_in, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2941), 5, + ACTIONS(2967), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [60515] = 25, + [61805] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(479), 1, - anon_sym_BQUOTE, - ACTIONS(2145), 1, - anon_sym_LPAREN, - ACTIONS(2175), 1, - anon_sym_LBRACK, - ACTIONS(2177), 1, - anon_sym_DOT, - ACTIONS(2863), 1, - anon_sym_QMARK_DOT, - ACTIONS(2915), 1, - anon_sym_as, - ACTIONS(2919), 1, + ACTIONS(1565), 14, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(3484), 1, + anon_sym_in, anon_sym_LT, - ACTIONS(3486), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(3488), 1, - anon_sym_AMP_AMP, - ACTIONS(3494), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(3496), 1, anon_sym_PIPE, - ACTIONS(3500), 1, - anon_sym_STAR_STAR, - ACTIONS(3504), 1, - anon_sym_QMARK_QMARK, - STATE(2565), 1, - sym_type_arguments, - ACTIONS(2945), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(2953), 2, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(3490), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(3498), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1128), 2, - sym_template_string, - sym_arguments, - ACTIONS(3480), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3492), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1563), 26, + sym__automatic_semicolon, + 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, - ACTIONS(3482), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3502), 5, + 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, - [60607] = 25, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + [61853] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(479), 1, anon_sym_BQUOTE, - ACTIONS(2145), 1, + ACTIONS(2161), 1, anon_sym_LPAREN, - ACTIONS(2175), 1, + ACTIONS(2191), 1, anon_sym_LBRACK, - ACTIONS(2177), 1, + ACTIONS(2193), 1, anon_sym_DOT, - ACTIONS(2863), 1, + ACTIONS(2883), 1, anon_sym_QMARK_DOT, - ACTIONS(2915), 1, + ACTIONS(2941), 1, anon_sym_as, - ACTIONS(2919), 1, + ACTIONS(2945), 1, anon_sym_BANG, - ACTIONS(3484), 1, + ACTIONS(3514), 1, anon_sym_LT, - ACTIONS(3486), 1, + ACTIONS(3516), 1, anon_sym_QMARK, - ACTIONS(3488), 1, + ACTIONS(3518), 1, anon_sym_AMP_AMP, - ACTIONS(3494), 1, + ACTIONS(3524), 1, anon_sym_AMP, - ACTIONS(3496), 1, + ACTIONS(3526), 1, anon_sym_PIPE, - ACTIONS(3500), 1, + ACTIONS(3530), 1, anon_sym_STAR_STAR, - ACTIONS(3504), 1, + ACTIONS(3534), 1, anon_sym_QMARK_QMARK, - STATE(2565), 1, + STATE(2547), 1, sym_type_arguments, - ACTIONS(2945), 2, + ACTIONS(2971), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2951), 2, + ACTIONS(3068), 2, anon_sym_COLON, anon_sym_RBRACK, - ACTIONS(3490), 2, + ACTIONS(3520), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(3498), 2, + ACTIONS(3528), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1128), 2, + STATE(1126), 2, sym_template_string, sym_arguments, - ACTIONS(3480), 3, + ACTIONS(3510), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(3492), 3, + ACTIONS(3522), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(3482), 4, + ACTIONS(3512), 4, anon_sym_in, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3502), 5, + ACTIONS(3532), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [60699] = 26, + [61945] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(479), 1, anon_sym_BQUOTE, - ACTIONS(2145), 1, + ACTIONS(2161), 1, anon_sym_LPAREN, - ACTIONS(2175), 1, + ACTIONS(2191), 1, anon_sym_LBRACK, - ACTIONS(2177), 1, + ACTIONS(2193), 1, anon_sym_DOT, - ACTIONS(2863), 1, + ACTIONS(2883), 1, anon_sym_QMARK_DOT, - ACTIONS(2915), 1, + ACTIONS(2941), 1, anon_sym_as, - ACTIONS(2919), 1, + ACTIONS(2945), 1, anon_sym_BANG, - ACTIONS(2923), 1, + ACTIONS(3514), 1, anon_sym_LT, - ACTIONS(2925), 1, + ACTIONS(3516), 1, anon_sym_QMARK, - ACTIONS(2927), 1, + ACTIONS(3518), 1, anon_sym_AMP_AMP, - ACTIONS(2933), 1, + ACTIONS(3524), 1, anon_sym_AMP, - ACTIONS(2935), 1, + ACTIONS(3526), 1, anon_sym_PIPE, - ACTIONS(2939), 1, + ACTIONS(3530), 1, anon_sym_STAR_STAR, - ACTIONS(2943), 1, + ACTIONS(3534), 1, anon_sym_QMARK_QMARK, - ACTIONS(3025), 1, - anon_sym_COMMA, - ACTIONS(3524), 1, - anon_sym_RPAREN, - STATE(2565), 1, + STATE(2547), 1, sym_type_arguments, - ACTIONS(2929), 2, + ACTIONS(2971), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3057), 2, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(3520), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(2937), 2, + ACTIONS(3528), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2945), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1128), 2, + STATE(1126), 2, sym_template_string, sym_arguments, - ACTIONS(2913), 3, + ACTIONS(3510), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(2931), 3, + ACTIONS(3522), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(2921), 4, + ACTIONS(3512), 4, anon_sym_in, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2941), 5, + ACTIONS(3532), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [60793] = 25, + [62037] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(479), 1, anon_sym_BQUOTE, - ACTIONS(2145), 1, + ACTIONS(2161), 1, anon_sym_LPAREN, - ACTIONS(2175), 1, + ACTIONS(2191), 1, anon_sym_LBRACK, - ACTIONS(2177), 1, + ACTIONS(2193), 1, anon_sym_DOT, - ACTIONS(2863), 1, + ACTIONS(2883), 1, anon_sym_QMARK_DOT, - ACTIONS(2915), 1, + ACTIONS(2941), 1, anon_sym_as, - ACTIONS(2919), 1, + ACTIONS(2945), 1, anon_sym_BANG, - ACTIONS(3484), 1, + ACTIONS(3514), 1, anon_sym_LT, - ACTIONS(3486), 1, + ACTIONS(3516), 1, anon_sym_QMARK, - ACTIONS(3488), 1, + ACTIONS(3518), 1, anon_sym_AMP_AMP, - ACTIONS(3494), 1, + ACTIONS(3524), 1, anon_sym_AMP, - ACTIONS(3496), 1, + ACTIONS(3526), 1, anon_sym_PIPE, - ACTIONS(3500), 1, + ACTIONS(3530), 1, anon_sym_STAR_STAR, - ACTIONS(3504), 1, + ACTIONS(3534), 1, anon_sym_QMARK_QMARK, - STATE(2565), 1, + STATE(2547), 1, sym_type_arguments, - ACTIONS(2945), 2, + ACTIONS(2971), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2949), 2, + ACTIONS(3049), 2, anon_sym_COLON, anon_sym_RBRACK, - ACTIONS(3490), 2, + ACTIONS(3520), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(3498), 2, + ACTIONS(3528), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1128), 2, + STATE(1126), 2, sym_template_string, sym_arguments, - ACTIONS(3480), 3, + ACTIONS(3510), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(3492), 3, + ACTIONS(3522), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(3482), 4, + ACTIONS(3512), 4, anon_sym_in, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3502), 5, + ACTIONS(3532), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [60885] = 26, + [62129] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(479), 1, - anon_sym_BQUOTE, - ACTIONS(2145), 1, - anon_sym_LPAREN, - ACTIONS(2175), 1, - anon_sym_LBRACK, - ACTIONS(2177), 1, - anon_sym_DOT, - ACTIONS(2863), 1, - anon_sym_QMARK_DOT, - ACTIONS(2915), 1, - anon_sym_as, - ACTIONS(2919), 1, + ACTIONS(1483), 14, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(2923), 1, + anon_sym_in, anon_sym_LT, - ACTIONS(2925), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(2927), 1, - anon_sym_AMP_AMP, - ACTIONS(2933), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(2935), 1, anon_sym_PIPE, - ACTIONS(2939), 1, - anon_sym_STAR_STAR, - ACTIONS(2943), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3025), 1, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1481), 26, + sym__automatic_semicolon, + anon_sym_as, anon_sym_COMMA, - ACTIONS(3526), 1, - anon_sym_RPAREN, - STATE(2565), 1, - sym_type_arguments, - ACTIONS(2929), 2, + 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, - ACTIONS(2937), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2945), 2, + 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, - STATE(1128), 2, - sym_template_string, - sym_arguments, - ACTIONS(2913), 3, + anon_sym_BQUOTE, + anon_sym_extends, + [62177] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1573), 14, anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, anon_sym_SLASH, + anon_sym_QMARK, anon_sym_GT_GT, - ACTIONS(2931), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1571), 26, + sym__automatic_semicolon, + 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, - ACTIONS(2921), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2941), 5, + 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, - [60979] = 25, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + [62225] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(479), 1, - anon_sym_BQUOTE, - ACTIONS(2145), 1, - anon_sym_LPAREN, - ACTIONS(2175), 1, - anon_sym_LBRACK, - ACTIONS(2177), 1, - anon_sym_DOT, - ACTIONS(2863), 1, - anon_sym_QMARK_DOT, - ACTIONS(2915), 1, - anon_sym_as, - ACTIONS(2919), 1, + ACTIONS(1499), 14, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(3484), 1, + anon_sym_in, anon_sym_LT, - ACTIONS(3486), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(3488), 1, - anon_sym_AMP_AMP, - ACTIONS(3494), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(3496), 1, anon_sym_PIPE, - ACTIONS(3500), 1, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1497), 26, + sym__automatic_semicolon, + 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, - ACTIONS(3504), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - STATE(2565), 1, - sym_type_arguments, - ACTIONS(2945), 2, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2947), 2, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(3490), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(3498), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1128), 2, - sym_template_string, - sym_arguments, - ACTIONS(3480), 3, + anon_sym_BQUOTE, + anon_sym_extends, + [62273] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1491), 14, anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, anon_sym_SLASH, + anon_sym_QMARK, anon_sym_GT_GT, - ACTIONS(3492), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1489), 26, + sym__automatic_semicolon, + 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, - ACTIONS(3482), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3502), 5, + 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, - [61071] = 26, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + [62321] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(479), 1, - anon_sym_BQUOTE, - ACTIONS(2145), 1, - anon_sym_LPAREN, - ACTIONS(2175), 1, + ACTIONS(1712), 1, + anon_sym_extends, + ACTIONS(2191), 1, anon_sym_LBRACK, - ACTIONS(2177), 1, + ACTIONS(2193), 1, anon_sym_DOT, - ACTIONS(2863), 1, + ACTIONS(2195), 1, anon_sym_QMARK_DOT, - ACTIONS(2915), 1, - anon_sym_as, - ACTIONS(2919), 1, - anon_sym_BANG, - ACTIONS(2923), 1, - anon_sym_LT, - ACTIONS(2925), 1, + ACTIONS(2388), 1, anon_sym_QMARK, - ACTIONS(2927), 1, - anon_sym_AMP_AMP, - ACTIONS(2933), 1, + ACTIONS(3561), 1, + anon_sym_EQ, + ACTIONS(3563), 1, + anon_sym_RPAREN, + ACTIONS(2379), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(3040), 2, anon_sym_AMP, - ACTIONS(2935), 1, anon_sym_PIPE, - ACTIONS(2939), 1, - anon_sym_STAR_STAR, - ACTIONS(2943), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3025), 1, - anon_sym_COMMA, - ACTIONS(3528), 1, - anon_sym_RPAREN, - STATE(2565), 1, - sym_type_arguments, - ACTIONS(2929), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(2937), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2945), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1128), 2, - sym_template_string, - sym_arguments, - ACTIONS(2913), 3, + ACTIONS(1037), 11, anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(2931), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1039), 18, + 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, - ACTIONS(2921), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2941), 5, + 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, - [61165] = 25, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [62387] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(479), 1, + ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(2145), 1, + ACTIONS(2173), 1, anon_sym_LPAREN, - ACTIONS(2175), 1, + ACTIONS(2282), 1, anon_sym_LBRACK, - ACTIONS(2177), 1, + ACTIONS(2298), 1, anon_sym_DOT, - ACTIONS(2863), 1, + ACTIONS(3080), 1, + anon_sym_BANG, + ACTIONS(3086), 1, anon_sym_QMARK_DOT, - ACTIONS(2915), 1, + ACTIONS(3113), 1, anon_sym_as, - ACTIONS(2919), 1, - anon_sym_BANG, - ACTIONS(3484), 1, + ACTIONS(3451), 1, anon_sym_LT, - ACTIONS(3486), 1, + ACTIONS(3453), 1, anon_sym_QMARK, - ACTIONS(3488), 1, + ACTIONS(3455), 1, anon_sym_AMP_AMP, - ACTIONS(3494), 1, + ACTIONS(3461), 1, anon_sym_AMP, - ACTIONS(3496), 1, + ACTIONS(3463), 1, anon_sym_PIPE, - ACTIONS(3500), 1, + ACTIONS(3467), 1, anon_sym_STAR_STAR, - ACTIONS(3504), 1, + ACTIONS(3471), 1, anon_sym_QMARK_QMARK, - STATE(2565), 1, + STATE(2611), 1, sym_type_arguments, - ACTIONS(2917), 2, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(2945), 2, + ACTIONS(3049), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(3104), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3490), 2, + ACTIONS(3457), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(3498), 2, + ACTIONS(3465), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1128), 2, + STATE(1529), 2, sym_template_string, sym_arguments, - ACTIONS(3480), 3, + ACTIONS(3447), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(3492), 3, + ACTIONS(3459), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(3482), 4, + ACTIONS(3449), 4, anon_sym_in, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3502), 5, + ACTIONS(3469), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [61257] = 10, + [62479] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2161), 1, - anon_sym_LPAREN, - ACTIONS(2163), 1, - anon_sym_LT, - ACTIONS(2379), 1, + ACTIONS(2282), 1, anon_sym_LBRACK, - ACTIONS(2385), 1, + ACTIONS(2288), 1, anon_sym_QMARK_DOT, - ACTIONS(2410), 1, + ACTIONS(2298), 1, anon_sym_DOT, - STATE(1556), 1, - sym_type_arguments, - STATE(1648), 1, - sym_arguments, - ACTIONS(2169), 14, + ACTIONS(1525), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(1527), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1037), 11, anon_sym_STAR, - anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, - anon_sym_GT, + anon_sym_LT, anon_sym_SLASH, anon_sym_QMARK, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2173), 19, + ACTIONS(1039), 21, + sym__automatic_semicolon, anon_sym_as, - anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -117216,300 +118356,325 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, - [61319] = 26, + [62537] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(479), 1, - anon_sym_BQUOTE, - ACTIONS(2145), 1, - anon_sym_LPAREN, - ACTIONS(2175), 1, - anon_sym_LBRACK, - ACTIONS(2177), 1, - anon_sym_DOT, - ACTIONS(2863), 1, - anon_sym_QMARK_DOT, - ACTIONS(2915), 1, - anon_sym_as, - ACTIONS(2919), 1, + ACTIONS(1511), 14, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(2923), 1, + anon_sym_in, anon_sym_LT, - ACTIONS(2925), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(2927), 1, - anon_sym_AMP_AMP, - ACTIONS(2933), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(2935), 1, anon_sym_PIPE, - ACTIONS(2939), 1, - anon_sym_STAR_STAR, - ACTIONS(2943), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3025), 1, - anon_sym_COMMA, - ACTIONS(3530), 1, - anon_sym_RPAREN, - STATE(2565), 1, - sym_type_arguments, - ACTIONS(2929), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(2937), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2945), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1128), 2, - sym_template_string, - sym_arguments, - ACTIONS(2913), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(2931), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1509), 26, + sym__automatic_semicolon, + 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, - ACTIONS(2921), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2941), 5, + 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, - [61413] = 25, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + [62585] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(479), 1, anon_sym_BQUOTE, - ACTIONS(2145), 1, + ACTIONS(2161), 1, anon_sym_LPAREN, - ACTIONS(2175), 1, + ACTIONS(2191), 1, anon_sym_LBRACK, - ACTIONS(2177), 1, + ACTIONS(2193), 1, anon_sym_DOT, - ACTIONS(2863), 1, + ACTIONS(2883), 1, anon_sym_QMARK_DOT, - ACTIONS(2915), 1, + ACTIONS(2941), 1, anon_sym_as, - ACTIONS(2919), 1, + ACTIONS(2945), 1, anon_sym_BANG, - ACTIONS(3484), 1, + ACTIONS(3514), 1, anon_sym_LT, - ACTIONS(3486), 1, + ACTIONS(3516), 1, anon_sym_QMARK, - ACTIONS(3488), 1, + ACTIONS(3518), 1, anon_sym_AMP_AMP, - ACTIONS(3494), 1, + ACTIONS(3524), 1, anon_sym_AMP, - ACTIONS(3496), 1, + ACTIONS(3526), 1, anon_sym_PIPE, - ACTIONS(3500), 1, + ACTIONS(3530), 1, anon_sym_STAR_STAR, - ACTIONS(3504), 1, + ACTIONS(3534), 1, anon_sym_QMARK_QMARK, - STATE(2565), 1, + STATE(2547), 1, sym_type_arguments, - ACTIONS(2945), 2, + ACTIONS(2971), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3002), 2, + ACTIONS(2995), 2, anon_sym_COLON, anon_sym_RBRACK, - ACTIONS(3490), 2, + ACTIONS(3520), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(3498), 2, + ACTIONS(3528), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1128), 2, + STATE(1126), 2, sym_template_string, sym_arguments, - ACTIONS(3480), 3, + ACTIONS(3510), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(3492), 3, + ACTIONS(3522), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(3482), 4, + ACTIONS(3512), 4, anon_sym_in, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3502), 5, + ACTIONS(3532), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [61505] = 25, + [62677] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(479), 1, + ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(2145), 1, + ACTIONS(2173), 1, anon_sym_LPAREN, - ACTIONS(2175), 1, + ACTIONS(2282), 1, anon_sym_LBRACK, - ACTIONS(2177), 1, + ACTIONS(2298), 1, anon_sym_DOT, - ACTIONS(2863), 1, + ACTIONS(3080), 1, + anon_sym_BANG, + ACTIONS(3086), 1, anon_sym_QMARK_DOT, - ACTIONS(2915), 1, + ACTIONS(3113), 1, anon_sym_as, - ACTIONS(2919), 1, - anon_sym_BANG, - ACTIONS(3484), 1, + ACTIONS(3451), 1, anon_sym_LT, - ACTIONS(3486), 1, + ACTIONS(3453), 1, anon_sym_QMARK, - ACTIONS(3488), 1, + ACTIONS(3455), 1, anon_sym_AMP_AMP, - ACTIONS(3494), 1, + ACTIONS(3461), 1, anon_sym_AMP, - ACTIONS(3496), 1, + ACTIONS(3463), 1, anon_sym_PIPE, - ACTIONS(3500), 1, + ACTIONS(3467), 1, anon_sym_STAR_STAR, - ACTIONS(3504), 1, + ACTIONS(3471), 1, anon_sym_QMARK_QMARK, - STATE(2565), 1, + STATE(2611), 1, sym_type_arguments, - ACTIONS(2945), 2, + ACTIONS(3104), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2993), 2, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(3490), 2, + ACTIONS(3457), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(3498), 2, + ACTIONS(3465), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1128), 2, + ACTIONS(3567), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(1529), 2, sym_template_string, sym_arguments, - ACTIONS(3480), 3, + ACTIONS(3447), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(3492), 3, + ACTIONS(3459), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(3482), 4, + ACTIONS(3449), 4, + anon_sym_in, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3469), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [62769] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1515), 14, + anon_sym_STAR, + anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3502), 5, + ACTIONS(1513), 26, + sym__automatic_semicolon, + 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, - [61597] = 23, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + [62817] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(479), 1, anon_sym_BQUOTE, - ACTIONS(2145), 1, + ACTIONS(2161), 1, anon_sym_LPAREN, - ACTIONS(2175), 1, + ACTIONS(2191), 1, anon_sym_LBRACK, - ACTIONS(2177), 1, + ACTIONS(2193), 1, anon_sym_DOT, - ACTIONS(2863), 1, + ACTIONS(2883), 1, anon_sym_QMARK_DOT, - ACTIONS(2919), 1, + ACTIONS(2941), 1, + anon_sym_as, + ACTIONS(2945), 1, anon_sym_BANG, - ACTIONS(2997), 1, - anon_sym_QMARK, - ACTIONS(3484), 1, + ACTIONS(3514), 1, anon_sym_LT, - ACTIONS(3488), 1, + ACTIONS(3516), 1, + anon_sym_QMARK, + ACTIONS(3518), 1, anon_sym_AMP_AMP, - ACTIONS(3494), 1, + ACTIONS(3524), 1, anon_sym_AMP, - ACTIONS(3496), 1, + ACTIONS(3526), 1, anon_sym_PIPE, - ACTIONS(3500), 1, + ACTIONS(3530), 1, anon_sym_STAR_STAR, - STATE(2565), 1, + ACTIONS(3534), 1, + anon_sym_QMARK_QMARK, + STATE(2547), 1, sym_type_arguments, - ACTIONS(2945), 2, + ACTIONS(2943), 2, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(2971), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3490), 2, + ACTIONS(3520), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(3498), 2, + ACTIONS(3528), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1128), 2, + STATE(1126), 2, sym_template_string, sym_arguments, - ACTIONS(3480), 3, + ACTIONS(3510), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(3492), 3, + ACTIONS(3522), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(2995), 4, - anon_sym_as, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_QMARK_QMARK, - ACTIONS(3482), 4, + ACTIONS(3512), 4, anon_sym_in, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3502), 5, + ACTIONS(3532), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [61685] = 13, + [62909] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(479), 1, anon_sym_BQUOTE, - ACTIONS(2145), 1, + ACTIONS(2161), 1, anon_sym_LPAREN, - ACTIONS(2175), 1, + ACTIONS(2191), 1, anon_sym_LBRACK, - ACTIONS(2177), 1, + ACTIONS(2193), 1, anon_sym_DOT, - ACTIONS(2863), 1, + ACTIONS(2883), 1, anon_sym_QMARK_DOT, - ACTIONS(2919), 1, + ACTIONS(2945), 1, anon_sym_BANG, - ACTIONS(3532), 1, + ACTIONS(3530), 1, + anon_sym_STAR_STAR, + ACTIONS(3569), 1, anon_sym_LT, - STATE(2565), 1, + STATE(2547), 1, sym_type_arguments, - ACTIONS(2945), 2, + ACTIONS(2971), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1128), 2, + STATE(1126), 2, sym_template_string, sym_arguments, - ACTIONS(2997), 12, + ACTIONS(2973), 12, anon_sym_STAR, anon_sym_in, anon_sym_GT, @@ -117522,7 +118687,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2995), 16, + ACTIONS(2975), 15, anon_sym_as, anon_sym_COLON, anon_sym_RBRACK, @@ -117532,59 +118697,59 @@ static uint16_t ts_small_parse_table[] = { 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, - [61753] = 16, + [62979] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(479), 1, anon_sym_BQUOTE, - ACTIONS(2145), 1, + ACTIONS(2161), 1, anon_sym_LPAREN, - ACTIONS(2175), 1, + ACTIONS(2191), 1, anon_sym_LBRACK, - ACTIONS(2177), 1, + ACTIONS(2193), 1, anon_sym_DOT, - ACTIONS(2863), 1, + ACTIONS(2883), 1, anon_sym_QMARK_DOT, - ACTIONS(2919), 1, + ACTIONS(2945), 1, anon_sym_BANG, - ACTIONS(3500), 1, - anon_sym_STAR_STAR, - ACTIONS(3532), 1, + ACTIONS(3514), 1, anon_sym_LT, - STATE(2565), 1, + ACTIONS(3530), 1, + anon_sym_STAR_STAR, + STATE(2547), 1, sym_type_arguments, - ACTIONS(2945), 2, + ACTIONS(2971), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1128), 2, + ACTIONS(3528), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1126), 2, sym_template_string, sym_arguments, - ACTIONS(3480), 3, + ACTIONS(3510), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(3492), 3, + ACTIONS(3522), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(2997), 9, + ACTIONS(2973), 7, anon_sym_in, anon_sym_GT, anon_sym_QMARK, anon_sym_AMP, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2995), 12, + ACTIONS(2975), 12, anon_sym_as, anon_sym_COLON, anon_sym_RBRACK, @@ -117597,10 +118762,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [61827] = 3, + [63055] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1463), 14, + ACTIONS(1495), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -117615,7 +118780,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1461), 26, + ACTIONS(1493), 26, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, @@ -117642,123 +118807,150 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [61875] = 21, + [63103] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(479), 1, - anon_sym_BQUOTE, - ACTIONS(2145), 1, + ACTIONS(1577), 14, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1575), 26, + sym__automatic_semicolon, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(2175), 1, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(2177), 1, anon_sym_DOT, - ACTIONS(2863), 1, anon_sym_QMARK_DOT, - ACTIONS(2919), 1, - anon_sym_BANG, - ACTIONS(3484), 1, - anon_sym_LT, - ACTIONS(3488), 1, anon_sym_AMP_AMP, - ACTIONS(3494), 1, - anon_sym_AMP, - ACTIONS(3500), 1, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, anon_sym_STAR_STAR, - STATE(2565), 1, - sym_type_arguments, - ACTIONS(2945), 2, + 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, - ACTIONS(2997), 2, + anon_sym_BQUOTE, + anon_sym_extends, + [63151] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1585), 14, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, + anon_sym_GT_GT, + anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3498), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1128), 2, - sym_template_string, - sym_arguments, - ACTIONS(3480), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3492), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1583), 26, + sym__automatic_semicolon, + 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, - ACTIONS(3482), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3502), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(2995), 6, - anon_sym_as, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_PIPE_PIPE, - anon_sym_CARET, anon_sym_QMARK_QMARK, - [61959] = 19, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + [63199] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(479), 1, anon_sym_BQUOTE, - ACTIONS(2145), 1, + ACTIONS(2161), 1, anon_sym_LPAREN, - ACTIONS(2175), 1, + ACTIONS(2191), 1, anon_sym_LBRACK, - ACTIONS(2177), 1, + ACTIONS(2193), 1, anon_sym_DOT, - ACTIONS(2863), 1, + ACTIONS(2883), 1, anon_sym_QMARK_DOT, - ACTIONS(2919), 1, + ACTIONS(2945), 1, anon_sym_BANG, - ACTIONS(3484), 1, + ACTIONS(3514), 1, anon_sym_LT, - ACTIONS(3500), 1, + ACTIONS(3530), 1, anon_sym_STAR_STAR, - STATE(2565), 1, + STATE(2547), 1, sym_type_arguments, - ACTIONS(2945), 2, + ACTIONS(2971), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3498), 2, + ACTIONS(3528), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1128), 2, + STATE(1126), 2, sym_template_string, sym_arguments, - ACTIONS(2997), 3, + ACTIONS(2973), 3, anon_sym_QMARK, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3480), 3, + ACTIONS(3510), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(3492), 3, + ACTIONS(3522), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(3482), 4, + ACTIONS(3512), 4, anon_sym_in, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3502), 5, + ACTIONS(3532), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(2995), 7, + ACTIONS(2975), 7, anon_sym_as, anon_sym_COLON, anon_sym_RBRACK, @@ -117766,69 +118958,73 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_CARET, anon_sym_QMARK_QMARK, - [62039] = 17, + [63279] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(479), 1, anon_sym_BQUOTE, - ACTIONS(2145), 1, + ACTIONS(2161), 1, anon_sym_LPAREN, - ACTIONS(2175), 1, + ACTIONS(2191), 1, anon_sym_LBRACK, - ACTIONS(2177), 1, + ACTIONS(2193), 1, anon_sym_DOT, - ACTIONS(2863), 1, + ACTIONS(2883), 1, anon_sym_QMARK_DOT, - ACTIONS(2919), 1, + ACTIONS(2945), 1, anon_sym_BANG, - ACTIONS(3484), 1, + ACTIONS(3514), 1, anon_sym_LT, - ACTIONS(3500), 1, + ACTIONS(3518), 1, + anon_sym_AMP_AMP, + ACTIONS(3524), 1, + anon_sym_AMP, + ACTIONS(3530), 1, anon_sym_STAR_STAR, - STATE(2565), 1, + STATE(2547), 1, sym_type_arguments, - ACTIONS(2945), 2, + ACTIONS(2971), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3498), 2, + ACTIONS(2973), 2, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(3528), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1128), 2, + STATE(1126), 2, sym_template_string, sym_arguments, - ACTIONS(3480), 3, + ACTIONS(3510), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(3492), 3, + ACTIONS(3522), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(2997), 7, + ACTIONS(3512), 4, anon_sym_in, anon_sym_GT, - anon_sym_QMARK, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2995), 12, + ACTIONS(3532), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(2975), 6, anon_sym_as, anon_sym_COLON, anon_sym_RBRACK, - 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, - [62115] = 3, + [63363] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1515), 14, + ACTIONS(1187), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -117843,7 +119039,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1513), 26, + ACTIONS(1185), 26, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, @@ -117870,36 +119066,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [62163] = 14, + [63411] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(479), 1, - anon_sym_BQUOTE, - ACTIONS(2145), 1, - anon_sym_LPAREN, - ACTIONS(2175), 1, - anon_sym_LBRACK, - ACTIONS(2177), 1, - anon_sym_DOT, - ACTIONS(2863), 1, - anon_sym_QMARK_DOT, - ACTIONS(2919), 1, - anon_sym_BANG, - ACTIONS(3500), 1, - anon_sym_STAR_STAR, - ACTIONS(3532), 1, - anon_sym_LT, - STATE(2565), 1, - sym_type_arguments, - ACTIONS(2945), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1128), 2, - sym_template_string, - sym_arguments, - ACTIONS(2997), 12, + ACTIONS(1549), 14, anon_sym_STAR, + anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -117910,141 +119084,106 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2995), 15, + ACTIONS(1547), 26, + sym__automatic_semicolon, anon_sym_as, - anon_sym_COLON, - anon_sym_RBRACK, + 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, - [62233] = 25, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + [63459] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(479), 1, + ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(2145), 1, + ACTIONS(2173), 1, anon_sym_LPAREN, - ACTIONS(2175), 1, + ACTIONS(2282), 1, anon_sym_LBRACK, - ACTIONS(2177), 1, + ACTIONS(2298), 1, anon_sym_DOT, - ACTIONS(2863), 1, + ACTIONS(3080), 1, + anon_sym_BANG, + ACTIONS(3086), 1, anon_sym_QMARK_DOT, - ACTIONS(2915), 1, + ACTIONS(3113), 1, anon_sym_as, - ACTIONS(2919), 1, - anon_sym_BANG, - ACTIONS(3484), 1, + ACTIONS(3451), 1, anon_sym_LT, - ACTIONS(3486), 1, + ACTIONS(3453), 1, anon_sym_QMARK, - ACTIONS(3488), 1, + ACTIONS(3455), 1, anon_sym_AMP_AMP, - ACTIONS(3494), 1, + ACTIONS(3461), 1, anon_sym_AMP, - ACTIONS(3496), 1, + ACTIONS(3463), 1, anon_sym_PIPE, - ACTIONS(3500), 1, + ACTIONS(3467), 1, anon_sym_STAR_STAR, - ACTIONS(3504), 1, + ACTIONS(3471), 1, anon_sym_QMARK_QMARK, - STATE(2565), 1, + STATE(2611), 1, sym_type_arguments, - ACTIONS(2945), 2, + ACTIONS(3003), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(3104), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3033), 2, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(3490), 2, + ACTIONS(3457), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(3498), 2, + ACTIONS(3465), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1128), 2, + STATE(1529), 2, sym_template_string, sym_arguments, - ACTIONS(3480), 3, + ACTIONS(3447), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(3492), 3, + ACTIONS(3459), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(3482), 4, + ACTIONS(3449), 4, anon_sym_in, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3502), 5, + ACTIONS(3469), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [62325] = 6, + [63551] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1551), 1, - anon_sym_extends, - ACTIONS(2907), 2, - anon_sym_RPAREN, + ACTIONS(3572), 1, anon_sym_LBRACK, - ACTIONS(2910), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(2903), 13, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2905), 22, - anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - 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, - [62379] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1187), 14, + ACTIONS(1545), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -118059,14 +119198,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1185), 26, + ACTIONS(1543), 25, sym__automatic_semicolon, 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, @@ -118086,10 +119224,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [62427] = 3, + [63601] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1597), 14, + ACTIONS(1553), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -118104,7 +119242,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1595), 26, + ACTIONS(1551), 26, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, @@ -118131,59 +119269,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [62475] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1503), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1501), 3, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(911), 13, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(913), 22, - anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - 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, - [62527] = 4, + [63649] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3535), 1, - anon_sym_LBRACK, - ACTIONS(1601), 14, + ACTIONS(1557), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -118198,13 +119287,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1599), 25, + ACTIONS(1555), 26, sym__automatic_semicolon, 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, @@ -118224,10 +119314,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [62577] = 3, + [63697] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1593), 14, + ACTIONS(1527), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -118242,7 +119332,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1591), 26, + ACTIONS(1525), 26, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, @@ -118269,351 +119359,92 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [62625] = 25, + [63745] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(479), 1, anon_sym_BQUOTE, - ACTIONS(2145), 1, + ACTIONS(2161), 1, anon_sym_LPAREN, - ACTIONS(2175), 1, + ACTIONS(2191), 1, anon_sym_LBRACK, - ACTIONS(2177), 1, + ACTIONS(2193), 1, anon_sym_DOT, - ACTIONS(2863), 1, + ACTIONS(2883), 1, anon_sym_QMARK_DOT, - ACTIONS(2915), 1, - anon_sym_as, - ACTIONS(2919), 1, + ACTIONS(2945), 1, anon_sym_BANG, - ACTIONS(3484), 1, - anon_sym_LT, - ACTIONS(3486), 1, - anon_sym_QMARK, - ACTIONS(3488), 1, - anon_sym_AMP_AMP, - ACTIONS(3494), 1, - anon_sym_AMP, - ACTIONS(3496), 1, - anon_sym_PIPE, - ACTIONS(3500), 1, + ACTIONS(3530), 1, anon_sym_STAR_STAR, - ACTIONS(3504), 1, - anon_sym_QMARK_QMARK, - STATE(2565), 1, - sym_type_arguments, - ACTIONS(2945), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3044), 2, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(3490), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(3498), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1128), 2, - sym_template_string, - sym_arguments, - ACTIONS(3480), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3492), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(3482), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3502), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [62717] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(479), 1, - anon_sym_BQUOTE, - ACTIONS(2145), 1, - anon_sym_LPAREN, - ACTIONS(2175), 1, - anon_sym_LBRACK, - ACTIONS(2177), 1, - anon_sym_DOT, - ACTIONS(2863), 1, - anon_sym_QMARK_DOT, - ACTIONS(2915), 1, - anon_sym_as, - ACTIONS(2919), 1, - anon_sym_BANG, - ACTIONS(3484), 1, + ACTIONS(3569), 1, anon_sym_LT, - ACTIONS(3486), 1, - anon_sym_QMARK, - ACTIONS(3488), 1, - anon_sym_AMP_AMP, - ACTIONS(3494), 1, - anon_sym_AMP, - ACTIONS(3496), 1, - anon_sym_PIPE, - ACTIONS(3500), 1, - anon_sym_STAR_STAR, - ACTIONS(3504), 1, - anon_sym_QMARK_QMARK, - STATE(2565), 1, + STATE(2547), 1, sym_type_arguments, - ACTIONS(2945), 2, + ACTIONS(2971), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3060), 2, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(3490), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(3498), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1128), 2, + STATE(1126), 2, sym_template_string, sym_arguments, - ACTIONS(3480), 3, + ACTIONS(3510), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(3492), 3, + ACTIONS(3522), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(3482), 4, + ACTIONS(2973), 9, anon_sym_in, anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3502), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [62809] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(479), 1, - anon_sym_BQUOTE, - ACTIONS(2145), 1, - anon_sym_LPAREN, - ACTIONS(2175), 1, - anon_sym_LBRACK, - ACTIONS(2177), 1, - anon_sym_DOT, - ACTIONS(2863), 1, - anon_sym_QMARK_DOT, - ACTIONS(2915), 1, - anon_sym_as, - ACTIONS(2919), 1, - anon_sym_BANG, - ACTIONS(3484), 1, - anon_sym_LT, - ACTIONS(3486), 1, anon_sym_QMARK, - ACTIONS(3488), 1, - anon_sym_AMP_AMP, - ACTIONS(3494), 1, anon_sym_AMP, - ACTIONS(3496), 1, anon_sym_PIPE, - ACTIONS(3500), 1, - anon_sym_STAR_STAR, - ACTIONS(3504), 1, - anon_sym_QMARK_QMARK, - STATE(2565), 1, - sym_type_arguments, - ACTIONS(2945), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3054), 2, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(3490), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(3498), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1128), 2, - sym_template_string, - sym_arguments, - ACTIONS(3480), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3492), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(3482), 4, - anon_sym_in, - anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3502), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [62901] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(479), 1, - anon_sym_BQUOTE, - ACTIONS(2145), 1, - anon_sym_LPAREN, - ACTIONS(2175), 1, - anon_sym_LBRACK, - ACTIONS(2177), 1, - anon_sym_DOT, - ACTIONS(2863), 1, - anon_sym_QMARK_DOT, - ACTIONS(2915), 1, + ACTIONS(2975), 12, anon_sym_as, - ACTIONS(2919), 1, - anon_sym_BANG, - ACTIONS(3484), 1, - anon_sym_LT, - ACTIONS(3486), 1, - anon_sym_QMARK, - ACTIONS(3488), 1, - anon_sym_AMP_AMP, - ACTIONS(3494), 1, - anon_sym_AMP, - ACTIONS(3496), 1, - anon_sym_PIPE, - ACTIONS(3500), 1, - anon_sym_STAR_STAR, - ACTIONS(3504), 1, - anon_sym_QMARK_QMARK, - STATE(2565), 1, - sym_type_arguments, - ACTIONS(2945), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3056), 2, anon_sym_COLON, anon_sym_RBRACK, - ACTIONS(3490), 2, + anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(3498), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1128), 2, - sym_template_string, - sym_arguments, - ACTIONS(3480), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3492), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(3482), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3502), 5, 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, - [62993] = 25, + [63819] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(479), 1, anon_sym_BQUOTE, - ACTIONS(2145), 1, + ACTIONS(2161), 1, anon_sym_LPAREN, - ACTIONS(2175), 1, + ACTIONS(2191), 1, anon_sym_LBRACK, - ACTIONS(2177), 1, + ACTIONS(2193), 1, anon_sym_DOT, - ACTIONS(2863), 1, + ACTIONS(2883), 1, anon_sym_QMARK_DOT, - ACTIONS(2915), 1, - anon_sym_as, - ACTIONS(2919), 1, + ACTIONS(2945), 1, anon_sym_BANG, - ACTIONS(2923), 1, - anon_sym_LT, - ACTIONS(2925), 1, - anon_sym_QMARK, - ACTIONS(2927), 1, - anon_sym_AMP_AMP, - ACTIONS(2933), 1, - anon_sym_AMP, - ACTIONS(2935), 1, - anon_sym_PIPE, - ACTIONS(2939), 1, - anon_sym_STAR_STAR, - ACTIONS(2943), 1, - anon_sym_QMARK_QMARK, - STATE(2565), 1, - sym_type_arguments, - ACTIONS(2929), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(2937), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2945), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3322), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - STATE(1128), 2, - sym_template_string, - sym_arguments, - ACTIONS(2913), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(2931), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(2921), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2941), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [63085] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1741), 1, - anon_sym_DOT, - ACTIONS(1413), 14, + ACTIONS(3569), 1, + anon_sym_LT, + STATE(2547), 1, + sym_type_arguments, + ACTIONS(2971), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1126), 2, + sym_template_string, + sym_arguments, + ACTIONS(2973), 12, anon_sym_STAR, - anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -118624,15 +119455,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1411), 25, - sym__automatic_semicolon, + ACTIONS(2975), 16, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_QMARK_DOT, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -118646,951 +119472,976 @@ static 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_extends, - [63135] = 25, + [63887] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(479), 1, anon_sym_BQUOTE, - ACTIONS(2157), 1, + ACTIONS(2161), 1, anon_sym_LPAREN, - ACTIONS(2266), 1, + ACTIONS(2191), 1, anon_sym_LBRACK, - ACTIONS(2282), 1, + ACTIONS(2193), 1, anon_sym_DOT, - ACTIONS(3100), 1, - anon_sym_as, - ACTIONS(3102), 1, - anon_sym_BANG, - ACTIONS(3108), 1, + ACTIONS(2883), 1, anon_sym_QMARK_DOT, - ACTIONS(3426), 1, - anon_sym_LT, - ACTIONS(3428), 1, + ACTIONS(2945), 1, + anon_sym_BANG, + ACTIONS(2973), 1, anon_sym_QMARK, - ACTIONS(3430), 1, + ACTIONS(3514), 1, + anon_sym_LT, + ACTIONS(3518), 1, anon_sym_AMP_AMP, - ACTIONS(3436), 1, + ACTIONS(3524), 1, anon_sym_AMP, - ACTIONS(3438), 1, + ACTIONS(3526), 1, anon_sym_PIPE, - ACTIONS(3442), 1, + ACTIONS(3530), 1, anon_sym_STAR_STAR, - ACTIONS(3446), 1, - anon_sym_QMARK_QMARK, - STATE(2501), 1, + STATE(2547), 1, sym_type_arguments, - ACTIONS(2955), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(3130), 2, + ACTIONS(2971), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3432), 2, + ACTIONS(3520), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(3440), 2, + ACTIONS(3528), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1567), 2, + STATE(1126), 2, sym_template_string, sym_arguments, - ACTIONS(3422), 3, + ACTIONS(3510), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(3434), 3, + ACTIONS(3522), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(3424), 4, + ACTIONS(2975), 4, + anon_sym_as, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_QMARK_QMARK, + ACTIONS(3512), 4, anon_sym_in, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3444), 5, + ACTIONS(3532), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [63227] = 25, + [63975] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(479), 1, anon_sym_BQUOTE, - ACTIONS(2157), 1, + ACTIONS(2161), 1, anon_sym_LPAREN, - ACTIONS(2266), 1, + ACTIONS(2191), 1, anon_sym_LBRACK, - ACTIONS(2282), 1, + ACTIONS(2193), 1, anon_sym_DOT, - ACTIONS(3100), 1, + ACTIONS(2883), 1, + anon_sym_QMARK_DOT, + ACTIONS(2941), 1, anon_sym_as, - ACTIONS(3102), 1, + ACTIONS(2945), 1, anon_sym_BANG, - ACTIONS(3108), 1, - anon_sym_QMARK_DOT, - ACTIONS(3426), 1, + ACTIONS(3514), 1, anon_sym_LT, - ACTIONS(3428), 1, + ACTIONS(3516), 1, anon_sym_QMARK, - ACTIONS(3430), 1, + ACTIONS(3518), 1, anon_sym_AMP_AMP, - ACTIONS(3436), 1, + ACTIONS(3524), 1, anon_sym_AMP, - ACTIONS(3438), 1, + ACTIONS(3526), 1, anon_sym_PIPE, - ACTIONS(3442), 1, + ACTIONS(3530), 1, anon_sym_STAR_STAR, - ACTIONS(3446), 1, + ACTIONS(3534), 1, anon_sym_QMARK_QMARK, - STATE(2501), 1, + STATE(2547), 1, sym_type_arguments, - ACTIONS(3130), 2, + ACTIONS(2971), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3432), 2, + ACTIONS(3043), 2, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(3520), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(3440), 2, + ACTIONS(3528), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3537), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(1567), 2, + STATE(1126), 2, sym_template_string, sym_arguments, - ACTIONS(3422), 3, + ACTIONS(3510), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(3434), 3, + ACTIONS(3522), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(3424), 4, + ACTIONS(3512), 4, anon_sym_in, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3444), 5, + ACTIONS(3532), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [63319] = 26, + [64067] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(479), 1, anon_sym_BQUOTE, - ACTIONS(2145), 1, + ACTIONS(2161), 1, anon_sym_LPAREN, - ACTIONS(2175), 1, + ACTIONS(2191), 1, anon_sym_LBRACK, - ACTIONS(2177), 1, + ACTIONS(2193), 1, anon_sym_DOT, - ACTIONS(2863), 1, + ACTIONS(2883), 1, anon_sym_QMARK_DOT, - ACTIONS(2915), 1, + ACTIONS(2941), 1, anon_sym_as, - ACTIONS(2919), 1, + ACTIONS(2945), 1, anon_sym_BANG, - ACTIONS(2923), 1, + ACTIONS(3514), 1, anon_sym_LT, - ACTIONS(2925), 1, + ACTIONS(3516), 1, anon_sym_QMARK, - ACTIONS(2927), 1, + ACTIONS(3518), 1, anon_sym_AMP_AMP, - ACTIONS(2933), 1, + ACTIONS(3524), 1, anon_sym_AMP, - ACTIONS(2935), 1, + ACTIONS(3526), 1, anon_sym_PIPE, - ACTIONS(2939), 1, + ACTIONS(3530), 1, anon_sym_STAR_STAR, - ACTIONS(2943), 1, + ACTIONS(3534), 1, anon_sym_QMARK_QMARK, - ACTIONS(3025), 1, - anon_sym_COMMA, - ACTIONS(3539), 1, - anon_sym_RBRACK, - STATE(2565), 1, + STATE(2547), 1, sym_type_arguments, - ACTIONS(2929), 2, + ACTIONS(2971), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3055), 2, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(3520), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(2937), 2, + ACTIONS(3528), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2945), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1128), 2, + STATE(1126), 2, sym_template_string, sym_arguments, - ACTIONS(2913), 3, + ACTIONS(3510), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(2931), 3, + ACTIONS(3522), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(2921), 4, + ACTIONS(3512), 4, anon_sym_in, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2941), 5, + ACTIONS(3532), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [63413] = 26, + [64159] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(479), 1, anon_sym_BQUOTE, - ACTIONS(2145), 1, + ACTIONS(2161), 1, anon_sym_LPAREN, - ACTIONS(2175), 1, + ACTIONS(2191), 1, anon_sym_LBRACK, - ACTIONS(2177), 1, + ACTIONS(2193), 1, anon_sym_DOT, - ACTIONS(2863), 1, + ACTIONS(2883), 1, anon_sym_QMARK_DOT, - ACTIONS(2915), 1, + ACTIONS(2941), 1, anon_sym_as, - ACTIONS(2919), 1, + ACTIONS(2945), 1, anon_sym_BANG, - ACTIONS(2923), 1, + ACTIONS(3514), 1, anon_sym_LT, - ACTIONS(2925), 1, + ACTIONS(3516), 1, anon_sym_QMARK, - ACTIONS(2927), 1, + ACTIONS(3518), 1, anon_sym_AMP_AMP, - ACTIONS(2933), 1, + ACTIONS(3524), 1, anon_sym_AMP, - ACTIONS(2935), 1, + ACTIONS(3526), 1, anon_sym_PIPE, - ACTIONS(2939), 1, + ACTIONS(3530), 1, anon_sym_STAR_STAR, - ACTIONS(2943), 1, + ACTIONS(3534), 1, anon_sym_QMARK_QMARK, - ACTIONS(3025), 1, - anon_sym_COMMA, - ACTIONS(3541), 1, - anon_sym_RPAREN, - STATE(2565), 1, + STATE(2547), 1, sym_type_arguments, - ACTIONS(2929), 2, + ACTIONS(2971), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3053), 2, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(3520), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(2937), 2, + ACTIONS(3528), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2945), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1128), 2, + STATE(1126), 2, sym_template_string, sym_arguments, - ACTIONS(2913), 3, + ACTIONS(3510), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(2931), 3, + ACTIONS(3522), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(2921), 4, + ACTIONS(3512), 4, anon_sym_in, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2941), 5, + ACTIONS(3532), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [63507] = 12, + [64251] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(479), 1, anon_sym_BQUOTE, - ACTIONS(2157), 1, + ACTIONS(2161), 1, anon_sym_LPAREN, - ACTIONS(2266), 1, + ACTIONS(2191), 1, anon_sym_LBRACK, - ACTIONS(2282), 1, + ACTIONS(2193), 1, anon_sym_DOT, - ACTIONS(3108), 1, + ACTIONS(2883), 1, anon_sym_QMARK_DOT, - ACTIONS(3543), 1, + ACTIONS(2941), 1, + anon_sym_as, + ACTIONS(2945), 1, + anon_sym_BANG, + ACTIONS(3514), 1, anon_sym_LT, - STATE(2501), 1, + ACTIONS(3516), 1, + anon_sym_QMARK, + ACTIONS(3518), 1, + anon_sym_AMP_AMP, + ACTIONS(3524), 1, + anon_sym_AMP, + ACTIONS(3526), 1, + anon_sym_PIPE, + ACTIONS(3530), 1, + anon_sym_STAR_STAR, + ACTIONS(3534), 1, + anon_sym_QMARK_QMARK, + STATE(2547), 1, sym_type_arguments, - ACTIONS(3130), 2, + ACTIONS(2971), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1567), 2, + ACTIONS(3051), 2, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(3520), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(3528), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1126), 2, sym_template_string, sym_arguments, - ACTIONS(3037), 13, + ACTIONS(3510), 3, anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, anon_sym_SLASH, - anon_sym_QMARK, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3039), 16, - sym__automatic_semicolon, - anon_sym_as, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(3522), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(3512), 4, + anon_sym_in, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3532), 5, 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, - [63573] = 26, + [64343] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(479), 1, anon_sym_BQUOTE, - ACTIONS(2145), 1, + ACTIONS(2161), 1, anon_sym_LPAREN, - ACTIONS(2175), 1, + ACTIONS(2191), 1, anon_sym_LBRACK, - ACTIONS(2177), 1, + ACTIONS(2193), 1, anon_sym_DOT, - ACTIONS(2863), 1, + ACTIONS(2883), 1, anon_sym_QMARK_DOT, - ACTIONS(2915), 1, + ACTIONS(2941), 1, anon_sym_as, - ACTIONS(2919), 1, + ACTIONS(2945), 1, anon_sym_BANG, - ACTIONS(2923), 1, + ACTIONS(3514), 1, anon_sym_LT, - ACTIONS(2925), 1, + ACTIONS(3516), 1, anon_sym_QMARK, - ACTIONS(2927), 1, + ACTIONS(3518), 1, anon_sym_AMP_AMP, - ACTIONS(2933), 1, + ACTIONS(3524), 1, anon_sym_AMP, - ACTIONS(2935), 1, + ACTIONS(3526), 1, anon_sym_PIPE, - ACTIONS(2939), 1, + ACTIONS(3530), 1, anon_sym_STAR_STAR, - ACTIONS(2943), 1, + ACTIONS(3534), 1, anon_sym_QMARK_QMARK, - ACTIONS(3025), 1, - anon_sym_COMMA, - ACTIONS(3546), 1, - anon_sym_RBRACK, - STATE(2565), 1, + STATE(2547), 1, sym_type_arguments, - ACTIONS(2929), 2, + ACTIONS(2971), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3031), 2, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(3520), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(2937), 2, + ACTIONS(3528), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2945), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1128), 2, + STATE(1126), 2, sym_template_string, sym_arguments, - ACTIONS(2913), 3, + ACTIONS(3510), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(2931), 3, + ACTIONS(3522), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(2921), 4, + ACTIONS(3512), 4, anon_sym_in, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2941), 5, + ACTIONS(3532), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [63667] = 26, + [64435] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(479), 1, anon_sym_BQUOTE, - ACTIONS(2145), 1, + ACTIONS(2161), 1, anon_sym_LPAREN, - ACTIONS(2175), 1, + ACTIONS(2191), 1, anon_sym_LBRACK, - ACTIONS(2177), 1, + ACTIONS(2193), 1, anon_sym_DOT, - ACTIONS(2863), 1, + ACTIONS(2883), 1, anon_sym_QMARK_DOT, - ACTIONS(2915), 1, + ACTIONS(2941), 1, anon_sym_as, - ACTIONS(2919), 1, + ACTIONS(2945), 1, anon_sym_BANG, - ACTIONS(2923), 1, + ACTIONS(3514), 1, anon_sym_LT, - ACTIONS(2925), 1, + ACTIONS(3516), 1, anon_sym_QMARK, - ACTIONS(2927), 1, + ACTIONS(3518), 1, anon_sym_AMP_AMP, - ACTIONS(2933), 1, + ACTIONS(3524), 1, anon_sym_AMP, - ACTIONS(2935), 1, + ACTIONS(3526), 1, anon_sym_PIPE, - ACTIONS(2939), 1, + ACTIONS(3530), 1, anon_sym_STAR_STAR, - ACTIONS(2943), 1, + ACTIONS(3534), 1, anon_sym_QMARK_QMARK, - ACTIONS(3025), 1, - anon_sym_COMMA, - ACTIONS(3548), 1, - anon_sym_RBRACK, - STATE(2565), 1, + STATE(2547), 1, sym_type_arguments, - ACTIONS(2929), 2, + ACTIONS(2971), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3007), 2, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(3520), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(2937), 2, + ACTIONS(3528), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2945), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1128), 2, + STATE(1126), 2, sym_template_string, sym_arguments, - ACTIONS(2913), 3, + ACTIONS(3510), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(2931), 3, + ACTIONS(3522), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(2921), 4, + ACTIONS(3512), 4, anon_sym_in, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2941), 5, + ACTIONS(3532), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [63761] = 25, + [64527] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(479), 1, anon_sym_BQUOTE, - ACTIONS(2157), 1, + ACTIONS(2161), 1, anon_sym_LPAREN, - ACTIONS(2266), 1, + ACTIONS(2191), 1, anon_sym_LBRACK, - ACTIONS(2282), 1, + ACTIONS(2193), 1, anon_sym_DOT, - ACTIONS(3100), 1, + ACTIONS(2883), 1, + anon_sym_QMARK_DOT, + ACTIONS(2941), 1, anon_sym_as, - ACTIONS(3102), 1, + ACTIONS(2945), 1, anon_sym_BANG, - ACTIONS(3108), 1, - anon_sym_QMARK_DOT, - ACTIONS(3426), 1, + ACTIONS(3514), 1, anon_sym_LT, - ACTIONS(3428), 1, + ACTIONS(3516), 1, anon_sym_QMARK, - ACTIONS(3430), 1, + ACTIONS(3518), 1, anon_sym_AMP_AMP, - ACTIONS(3436), 1, + ACTIONS(3524), 1, anon_sym_AMP, - ACTIONS(3438), 1, + ACTIONS(3526), 1, anon_sym_PIPE, - ACTIONS(3442), 1, + ACTIONS(3530), 1, anon_sym_STAR_STAR, - ACTIONS(3446), 1, + ACTIONS(3534), 1, anon_sym_QMARK_QMARK, - STATE(2501), 1, + STATE(2547), 1, sym_type_arguments, - ACTIONS(3130), 2, + ACTIONS(2971), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3432), 2, + ACTIONS(3005), 2, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(3520), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(3440), 2, + ACTIONS(3528), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3550), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(1567), 2, + STATE(1126), 2, sym_template_string, sym_arguments, - ACTIONS(3422), 3, + ACTIONS(3510), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(3434), 3, + ACTIONS(3522), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(3424), 4, + ACTIONS(3512), 4, anon_sym_in, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3444), 5, + ACTIONS(3532), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [63853] = 25, + [64619] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(479), 1, anon_sym_BQUOTE, - ACTIONS(2157), 1, + ACTIONS(2161), 1, anon_sym_LPAREN, - ACTIONS(2266), 1, + ACTIONS(2191), 1, anon_sym_LBRACK, - ACTIONS(2282), 1, + ACTIONS(2193), 1, anon_sym_DOT, - ACTIONS(3100), 1, + ACTIONS(2883), 1, + anon_sym_QMARK_DOT, + ACTIONS(2941), 1, anon_sym_as, - ACTIONS(3102), 1, + ACTIONS(2945), 1, anon_sym_BANG, - ACTIONS(3108), 1, - anon_sym_QMARK_DOT, - ACTIONS(3426), 1, + ACTIONS(3514), 1, anon_sym_LT, - ACTIONS(3428), 1, + ACTIONS(3516), 1, anon_sym_QMARK, - ACTIONS(3430), 1, + ACTIONS(3518), 1, anon_sym_AMP_AMP, - ACTIONS(3436), 1, + ACTIONS(3524), 1, anon_sym_AMP, - ACTIONS(3438), 1, + ACTIONS(3526), 1, anon_sym_PIPE, - ACTIONS(3442), 1, + ACTIONS(3530), 1, anon_sym_STAR_STAR, - ACTIONS(3446), 1, + ACTIONS(3534), 1, anon_sym_QMARK_QMARK, - STATE(2501), 1, + STATE(2547), 1, sym_type_arguments, - ACTIONS(3044), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(3130), 2, + ACTIONS(2971), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3432), 2, + ACTIONS(3070), 2, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(3520), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(3440), 2, + ACTIONS(3528), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1567), 2, + STATE(1126), 2, sym_template_string, sym_arguments, - ACTIONS(3422), 3, + ACTIONS(3510), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(3434), 3, + ACTIONS(3522), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(3424), 4, + ACTIONS(3512), 4, anon_sym_in, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3444), 5, + ACTIONS(3532), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [63945] = 25, + [64711] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(479), 1, anon_sym_BQUOTE, - ACTIONS(2157), 1, + ACTIONS(2161), 1, anon_sym_LPAREN, - ACTIONS(2266), 1, + ACTIONS(2191), 1, anon_sym_LBRACK, - ACTIONS(2282), 1, + ACTIONS(2193), 1, anon_sym_DOT, - ACTIONS(3100), 1, + ACTIONS(2883), 1, + anon_sym_QMARK_DOT, + ACTIONS(2941), 1, anon_sym_as, - ACTIONS(3102), 1, + ACTIONS(2945), 1, anon_sym_BANG, - ACTIONS(3108), 1, - anon_sym_QMARK_DOT, - ACTIONS(3426), 1, + ACTIONS(2949), 1, anon_sym_LT, - ACTIONS(3428), 1, + ACTIONS(2951), 1, anon_sym_QMARK, - ACTIONS(3430), 1, + ACTIONS(2953), 1, anon_sym_AMP_AMP, - ACTIONS(3436), 1, + ACTIONS(2959), 1, anon_sym_AMP, - ACTIONS(3438), 1, + ACTIONS(2961), 1, anon_sym_PIPE, - ACTIONS(3442), 1, + ACTIONS(2965), 1, anon_sym_STAR_STAR, - ACTIONS(3446), 1, + ACTIONS(2969), 1, anon_sym_QMARK_QMARK, - STATE(2501), 1, + ACTIONS(2991), 1, + anon_sym_COMMA, + ACTIONS(3574), 1, + anon_sym_RBRACK, + STATE(2547), 1, sym_type_arguments, - ACTIONS(3058), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(3130), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3432), 2, + ACTIONS(2955), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(3440), 2, + ACTIONS(2963), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1567), 2, + ACTIONS(2971), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1126), 2, sym_template_string, sym_arguments, - ACTIONS(3422), 3, + ACTIONS(2939), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(3434), 3, + ACTIONS(2957), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(3424), 4, + ACTIONS(2947), 4, anon_sym_in, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3444), 5, + ACTIONS(2967), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [64037] = 25, + [64805] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(2157), 1, - anon_sym_LPAREN, - ACTIONS(2266), 1, - anon_sym_LBRACK, - ACTIONS(2282), 1, - anon_sym_DOT, - ACTIONS(3100), 1, - anon_sym_as, - ACTIONS(3102), 1, + ACTIONS(1531), 14, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(3108), 1, - anon_sym_QMARK_DOT, - ACTIONS(3426), 1, + anon_sym_in, anon_sym_LT, - ACTIONS(3428), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(3430), 1, - anon_sym_AMP_AMP, - ACTIONS(3436), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(3438), 1, anon_sym_PIPE, - ACTIONS(3442), 1, - anon_sym_STAR_STAR, - ACTIONS(3446), 1, - anon_sym_QMARK_QMARK, - STATE(2501), 1, - sym_type_arguments, - ACTIONS(2991), 2, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1529), 26, sym__automatic_semicolon, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, - ACTIONS(3130), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3432), 2, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(3440), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1567), 2, - sym_template_string, - sym_arguments, - ACTIONS(3422), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3434), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(3424), 4, + 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_extends, + [64853] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1583), 2, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(1585), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1581), 12, + anon_sym_STAR, + anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3444), 5, + ACTIONS(1579), 24, + sym__automatic_semicolon, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + 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, - [64129] = 26, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [64905] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(479), 1, - anon_sym_BQUOTE, - ACTIONS(2145), 1, - anon_sym_LPAREN, - ACTIONS(2175), 1, - anon_sym_LBRACK, - ACTIONS(2177), 1, - anon_sym_DOT, - ACTIONS(2863), 1, - anon_sym_QMARK_DOT, - ACTIONS(2915), 1, - anon_sym_as, - ACTIONS(2919), 1, + ACTIONS(1535), 14, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(2923), 1, + anon_sym_in, anon_sym_LT, - ACTIONS(2925), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(2927), 1, - anon_sym_AMP_AMP, - ACTIONS(2933), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(2935), 1, anon_sym_PIPE, - ACTIONS(2939), 1, - anon_sym_STAR_STAR, - ACTIONS(2943), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3025), 1, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1533), 26, + sym__automatic_semicolon, + anon_sym_as, anon_sym_COMMA, - ACTIONS(3552), 1, - anon_sym_RPAREN, - STATE(2565), 1, - sym_type_arguments, - ACTIONS(2929), 2, + 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, - ACTIONS(2937), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2945), 2, + 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, - STATE(1128), 2, - sym_template_string, - sym_arguments, - ACTIONS(2913), 3, + anon_sym_BQUOTE, + anon_sym_extends, + [64953] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3572), 1, + anon_sym_LBRACK, + ACTIONS(1539), 14, anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, anon_sym_SLASH, + anon_sym_QMARK, anon_sym_GT_GT, - ACTIONS(2931), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1537), 25, + sym__automatic_semicolon, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + 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, - ACTIONS(2921), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2941), 5, + 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, - [64223] = 26, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + [65003] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(479), 1, anon_sym_BQUOTE, - ACTIONS(2145), 1, + ACTIONS(2161), 1, anon_sym_LPAREN, - ACTIONS(2175), 1, + ACTIONS(2191), 1, anon_sym_LBRACK, - ACTIONS(2177), 1, + ACTIONS(2193), 1, anon_sym_DOT, - ACTIONS(2863), 1, + ACTIONS(2883), 1, anon_sym_QMARK_DOT, - ACTIONS(2915), 1, + ACTIONS(2941), 1, anon_sym_as, - ACTIONS(2919), 1, + ACTIONS(2945), 1, anon_sym_BANG, - ACTIONS(2923), 1, + ACTIONS(2949), 1, anon_sym_LT, - ACTIONS(2925), 1, + ACTIONS(2951), 1, anon_sym_QMARK, - ACTIONS(2927), 1, + ACTIONS(2953), 1, anon_sym_AMP_AMP, - ACTIONS(2933), 1, + ACTIONS(2959), 1, anon_sym_AMP, - ACTIONS(2935), 1, + ACTIONS(2961), 1, anon_sym_PIPE, - ACTIONS(2939), 1, + ACTIONS(2965), 1, anon_sym_STAR_STAR, - ACTIONS(2943), 1, + ACTIONS(2969), 1, anon_sym_QMARK_QMARK, - ACTIONS(3025), 1, - anon_sym_COMMA, - ACTIONS(3554), 1, - anon_sym_RBRACK, - STATE(2565), 1, + STATE(2547), 1, sym_type_arguments, - ACTIONS(2929), 2, + ACTIONS(2955), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(2937), 2, + ACTIONS(2963), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2945), 2, + ACTIONS(2971), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1128), 2, + ACTIONS(3576), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(1126), 2, sym_template_string, sym_arguments, - ACTIONS(2913), 3, + ACTIONS(2939), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(2931), 3, + ACTIONS(2957), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(2921), 4, + ACTIONS(2947), 4, anon_sym_in, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2941), 5, + ACTIONS(2967), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [64317] = 25, + [65095] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(2157), 1, - anon_sym_LPAREN, - ACTIONS(2266), 1, - anon_sym_LBRACK, - ACTIONS(2282), 1, - anon_sym_DOT, - ACTIONS(3100), 1, - anon_sym_as, - ACTIONS(3102), 1, + ACTIONS(911), 1, + anon_sym_EQ, + ACTIONS(3578), 1, + sym__automatic_semicolon, + ACTIONS(909), 15, + anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, - ACTIONS(3108), 1, - anon_sym_QMARK_DOT, - ACTIONS(3426), 1, + anon_sym_in, anon_sym_LT, - ACTIONS(3428), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(3430), 1, - anon_sym_AMP_AMP, - ACTIONS(3436), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(3438), 1, anon_sym_PIPE, - ACTIONS(3442), 1, - anon_sym_STAR_STAR, - ACTIONS(3446), 1, - anon_sym_QMARK_QMARK, - STATE(2501), 1, - sym_type_arguments, - ACTIONS(3033), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(3130), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3432), 2, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(907), 23, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(3440), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1567), 2, - sym_template_string, - sym_arguments, - ACTIONS(3422), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3434), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(3424), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3444), 5, + 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, - [64409] = 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_LBRACE_PIPE, + [65147] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3463), 1, - anon_sym_AMP, - ACTIONS(3465), 1, - anon_sym_PIPE, - ACTIONS(3467), 1, - anon_sym_extends, - ACTIONS(3029), 12, + ACTIONS(1467), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -119599,11 +120450,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_QMARK, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3031), 25, + ACTIONS(1465), 26, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, @@ -119629,34 +120482,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [64463] = 13, + anon_sym_extends, + [65195] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(2157), 1, - anon_sym_LPAREN, - ACTIONS(2266), 1, - anon_sym_LBRACK, - ACTIONS(2282), 1, - anon_sym_DOT, - ACTIONS(3102), 1, - anon_sym_BANG, - ACTIONS(3108), 1, - anon_sym_QMARK_DOT, - ACTIONS(3543), 1, - anon_sym_LT, - STATE(2501), 1, - sym_type_arguments, - ACTIONS(3130), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1567), 2, - sym_template_string, - sym_arguments, - ACTIONS(3037), 12, + ACTIONS(1523), 14, anon_sym_STAR, + anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -119667,10 +120501,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3039), 16, + ACTIONS(1521), 26, sym__automatic_semicolon, 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, @@ -119684,48 +120524,42 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [64531] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(2157), 1, - anon_sym_LPAREN, - ACTIONS(2266), 1, - anon_sym_LBRACK, - ACTIONS(2282), 1, - anon_sym_DOT, - ACTIONS(3102), 1, - anon_sym_BANG, - ACTIONS(3108), 1, - anon_sym_QMARK_DOT, - ACTIONS(3543), 1, - anon_sym_LT, - STATE(2501), 1, - sym_type_arguments, - ACTIONS(3130), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1567), 2, - sym_template_string, - sym_arguments, - ACTIONS(3037), 12, + anon_sym_BQUOTE, + anon_sym_extends, + [65243] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3497), 1, + anon_sym_AMP, + ACTIONS(3499), 1, + anon_sym_PIPE, + ACTIONS(3553), 1, + anon_sym_extends, + ACTIONS(1750), 12, anon_sym_STAR, + anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3039), 16, + ACTIONS(1748), 25, sym__automatic_semicolon, 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, @@ -119739,476 +120573,373 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [64599] = 25, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [65297] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(479), 1, anon_sym_BQUOTE, - ACTIONS(2145), 1, + ACTIONS(2161), 1, anon_sym_LPAREN, - ACTIONS(2175), 1, + ACTIONS(2191), 1, anon_sym_LBRACK, - ACTIONS(2177), 1, + ACTIONS(2193), 1, anon_sym_DOT, - ACTIONS(2863), 1, + ACTIONS(2883), 1, anon_sym_QMARK_DOT, - ACTIONS(2915), 1, + ACTIONS(2941), 1, anon_sym_as, - ACTIONS(2919), 1, + ACTIONS(2945), 1, anon_sym_BANG, - ACTIONS(2923), 1, + ACTIONS(2949), 1, anon_sym_LT, - ACTIONS(2925), 1, + ACTIONS(2951), 1, anon_sym_QMARK, - ACTIONS(2927), 1, + ACTIONS(2953), 1, anon_sym_AMP_AMP, - ACTIONS(2933), 1, + ACTIONS(2959), 1, anon_sym_AMP, - ACTIONS(2935), 1, + ACTIONS(2961), 1, anon_sym_PIPE, - ACTIONS(2939), 1, + ACTIONS(2965), 1, anon_sym_STAR_STAR, - ACTIONS(2943), 1, + ACTIONS(2969), 1, anon_sym_QMARK_QMARK, - STATE(2565), 1, + ACTIONS(2991), 1, + anon_sym_COMMA, + ACTIONS(3580), 1, + anon_sym_RBRACK, + STATE(2547), 1, sym_type_arguments, - ACTIONS(2929), 2, + ACTIONS(2955), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(2937), 2, + ACTIONS(2963), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2945), 2, + ACTIONS(2971), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3236), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(1128), 2, + STATE(1126), 2, sym_template_string, sym_arguments, - ACTIONS(2913), 3, + ACTIONS(2939), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(2931), 3, + ACTIONS(2957), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(2921), 4, + ACTIONS(2947), 4, anon_sym_in, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2941), 5, + ACTIONS(2967), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [64691] = 25, + [65391] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(479), 1, - anon_sym_BQUOTE, - ACTIONS(2145), 1, + ACTIONS(3582), 1, anon_sym_LPAREN, - ACTIONS(2175), 1, - anon_sym_LBRACK, - ACTIONS(2177), 1, - anon_sym_DOT, - ACTIONS(2863), 1, - anon_sym_QMARK_DOT, - ACTIONS(2915), 1, - anon_sym_as, - ACTIONS(2919), 1, - anon_sym_BANG, - ACTIONS(2923), 1, + ACTIONS(3585), 1, + anon_sym_COLON, + ACTIONS(3587), 2, anon_sym_LT, - ACTIONS(2925), 1, anon_sym_QMARK, - ACTIONS(2927), 1, - anon_sym_AMP_AMP, - ACTIONS(2933), 1, + ACTIONS(2897), 13, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(2935), 1, anon_sym_PIPE, - ACTIONS(2939), 1, - anon_sym_STAR_STAR, - ACTIONS(2943), 1, - anon_sym_QMARK_QMARK, - STATE(2565), 1, - sym_type_arguments, - ACTIONS(2929), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(2937), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2945), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3227), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2724), 23, + sym__automatic_semicolon, + anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, - STATE(1128), 2, - sym_template_string, - sym_arguments, - ACTIONS(2913), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(2931), 3, + 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, - ACTIONS(2921), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2941), 5, + 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, - [64783] = 25, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [65445] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(479), 1, + ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(2145), 1, + ACTIONS(2173), 1, anon_sym_LPAREN, - ACTIONS(2175), 1, + ACTIONS(2282), 1, anon_sym_LBRACK, - ACTIONS(2177), 1, + ACTIONS(2298), 1, anon_sym_DOT, - ACTIONS(2863), 1, + ACTIONS(3086), 1, anon_sym_QMARK_DOT, - ACTIONS(2915), 1, - anon_sym_as, - ACTIONS(2919), 1, - anon_sym_BANG, - ACTIONS(2923), 1, + ACTIONS(3546), 1, anon_sym_LT, - ACTIONS(2925), 1, - anon_sym_QMARK, - ACTIONS(2927), 1, - anon_sym_AMP_AMP, - ACTIONS(2933), 1, - anon_sym_AMP, - ACTIONS(2935), 1, - anon_sym_PIPE, - ACTIONS(2939), 1, - anon_sym_STAR_STAR, - ACTIONS(2943), 1, - anon_sym_QMARK_QMARK, - STATE(2565), 1, + STATE(2611), 1, sym_type_arguments, - ACTIONS(2929), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(2937), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2945), 2, + ACTIONS(3104), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3215), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(1128), 2, + STATE(1529), 2, sym_template_string, sym_arguments, - ACTIONS(2913), 3, + ACTIONS(3024), 13, anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, anon_sym_SLASH, + anon_sym_QMARK, anon_sym_GT_GT, - ACTIONS(2931), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3026), 16, + sym__automatic_semicolon, + anon_sym_as, + 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, - ACTIONS(2921), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2941), 5, + 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, - [64875] = 25, + [65511] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(2157), 1, - anon_sym_LPAREN, - ACTIONS(2266), 1, + ACTIONS(1587), 1, + anon_sym_extends, + ACTIONS(2911), 2, + anon_sym_RPAREN, anon_sym_LBRACK, - ACTIONS(2282), 1, - anon_sym_DOT, - ACTIONS(3100), 1, - anon_sym_as, - ACTIONS(3102), 1, - anon_sym_BANG, - ACTIONS(3108), 1, - anon_sym_QMARK_DOT, - ACTIONS(3426), 1, - anon_sym_LT, - ACTIONS(3428), 1, - anon_sym_QMARK, - ACTIONS(3430), 1, - anon_sym_AMP_AMP, - ACTIONS(3436), 1, + ACTIONS(2914), 2, anon_sym_AMP, - ACTIONS(3438), 1, anon_sym_PIPE, - ACTIONS(3442), 1, - anon_sym_STAR_STAR, - ACTIONS(3446), 1, - anon_sym_QMARK_QMARK, - STATE(2501), 1, - sym_type_arguments, - ACTIONS(2951), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(3130), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3432), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(3440), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1567), 2, - sym_template_string, - sym_arguments, - ACTIONS(3422), 3, + ACTIONS(2907), 13, anon_sym_STAR, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, anon_sym_SLASH, + anon_sym_QMARK, anon_sym_GT_GT, - ACTIONS(3434), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2909), 22, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, + 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, - ACTIONS(3424), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3444), 5, + 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, - [64967] = 25, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [65565] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(2157), 1, - anon_sym_LPAREN, - ACTIONS(2266), 1, + ACTIONS(1507), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1505), 3, + anon_sym_RPAREN, anon_sym_LBRACK, - ACTIONS(2282), 1, - anon_sym_DOT, - ACTIONS(3100), 1, - anon_sym_as, - ACTIONS(3102), 1, + anon_sym_extends, + ACTIONS(911), 13, + anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, - ACTIONS(3108), 1, - anon_sym_QMARK_DOT, - ACTIONS(3426), 1, + anon_sym_in, anon_sym_LT, - ACTIONS(3428), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(3430), 1, - anon_sym_AMP_AMP, - ACTIONS(3436), 1, - anon_sym_AMP, - ACTIONS(3438), 1, - anon_sym_PIPE, - ACTIONS(3442), 1, - anon_sym_STAR_STAR, - ACTIONS(3446), 1, - anon_sym_QMARK_QMARK, - STATE(2501), 1, - sym_type_arguments, - ACTIONS(2949), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(3130), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3432), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(3440), 2, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - STATE(1567), 2, - sym_template_string, - sym_arguments, - ACTIONS(3422), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3434), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(913), 22, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, + 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, - ACTIONS(3424), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3444), 5, + 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, - [65059] = 25, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [65617] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(479), 1, - anon_sym_BQUOTE, - ACTIONS(2145), 1, - anon_sym_LPAREN, - ACTIONS(2175), 1, - anon_sym_LBRACK, - ACTIONS(2177), 1, - anon_sym_DOT, - ACTIONS(2863), 1, - anon_sym_QMARK_DOT, - ACTIONS(2915), 1, - anon_sym_as, - ACTIONS(2919), 1, + ACTIONS(1069), 1, + sym__automatic_semicolon, + ACTIONS(1061), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(1065), 14, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(2923), 1, + anon_sym_in, anon_sym_LT, - ACTIONS(2925), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(2927), 1, - anon_sym_AMP_AMP, - ACTIONS(2933), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(2935), 1, anon_sym_PIPE, - ACTIONS(2939), 1, - anon_sym_STAR_STAR, - ACTIONS(2943), 1, - anon_sym_QMARK_QMARK, - STATE(2565), 1, - sym_type_arguments, - ACTIONS(2929), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(2937), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2945), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3556), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1067), 23, + anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, - STATE(1128), 2, - sym_template_string, - sym_arguments, - ACTIONS(2913), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(2931), 3, + 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, - ACTIONS(2921), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2941), 5, + 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, - [65151] = 14, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [65669] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(2157), 1, - anon_sym_LPAREN, - ACTIONS(2266), 1, + ACTIONS(2911), 1, anon_sym_LBRACK, - ACTIONS(2282), 1, - anon_sym_DOT, - ACTIONS(3102), 1, - anon_sym_BANG, - ACTIONS(3108), 1, - anon_sym_QMARK_DOT, - ACTIONS(3442), 1, - anon_sym_STAR_STAR, - ACTIONS(3558), 1, - anon_sym_LT, - STATE(2501), 1, - sym_type_arguments, - ACTIONS(3130), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1567), 2, - sym_template_string, - sym_arguments, - ACTIONS(2997), 12, + ACTIONS(1587), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(2914), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(2907), 12, anon_sym_STAR, + anon_sym_EQ, + anon_sym_BANG, anon_sym_in, - anon_sym_GT, + anon_sym_LT, anon_sym_SLASH, anon_sym_QMARK, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2995), 15, - sym__automatic_semicolon, + ACTIONS(2909), 22, anon_sym_as, - anon_sym_SEMI, + anon_sym_LPAREN, + 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, - [65221] = 7, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [65723] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2266), 1, - anon_sym_LBRACK, - ACTIONS(2272), 1, - anon_sym_QMARK_DOT, - ACTIONS(2282), 1, - anon_sym_DOT, - ACTIONS(3454), 1, - anon_sym_EQ, - ACTIONS(1097), 14, + ACTIONS(1589), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -120223,13 +120954,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1099), 22, + ACTIONS(1587), 26, sym__automatic_semicolon, 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, @@ -120246,107 +120980,153 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [65277] = 26, + anon_sym_extends, + [65771] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(479), 1, anon_sym_BQUOTE, - ACTIONS(2145), 1, + ACTIONS(2161), 1, anon_sym_LPAREN, - ACTIONS(2175), 1, + ACTIONS(2191), 1, anon_sym_LBRACK, - ACTIONS(2177), 1, + ACTIONS(2193), 1, anon_sym_DOT, - ACTIONS(2863), 1, + ACTIONS(2883), 1, anon_sym_QMARK_DOT, - ACTIONS(2915), 1, + ACTIONS(2941), 1, anon_sym_as, - ACTIONS(2919), 1, + ACTIONS(2945), 1, anon_sym_BANG, - ACTIONS(2923), 1, + ACTIONS(2949), 1, anon_sym_LT, - ACTIONS(2925), 1, + ACTIONS(2951), 1, anon_sym_QMARK, - ACTIONS(2927), 1, + ACTIONS(2953), 1, anon_sym_AMP_AMP, - ACTIONS(2933), 1, + ACTIONS(2959), 1, anon_sym_AMP, - ACTIONS(2935), 1, + ACTIONS(2961), 1, anon_sym_PIPE, - ACTIONS(2939), 1, + ACTIONS(2965), 1, anon_sym_STAR_STAR, - ACTIONS(2943), 1, + ACTIONS(2969), 1, anon_sym_QMARK_QMARK, - ACTIONS(3025), 1, + ACTIONS(2991), 1, anon_sym_COMMA, - ACTIONS(3561), 1, - anon_sym_RPAREN, - STATE(2565), 1, + ACTIONS(3590), 1, + anon_sym_RBRACK, + STATE(2547), 1, sym_type_arguments, - ACTIONS(2929), 2, + ACTIONS(2955), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(2937), 2, + ACTIONS(2963), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2945), 2, + ACTIONS(2971), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1128), 2, + STATE(1126), 2, sym_template_string, sym_arguments, - ACTIONS(2913), 3, + ACTIONS(2939), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(2931), 3, + ACTIONS(2957), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(2921), 4, + ACTIONS(2947), 4, anon_sym_in, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2941), 5, + ACTIONS(2967), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [65371] = 7, + [65865] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2266), 1, + ACTIONS(1587), 1, + anon_sym_extends, + ACTIONS(2911), 2, + anon_sym_COMMA, anon_sym_LBRACK, - ACTIONS(2272), 1, - anon_sym_QMARK_DOT, - ACTIONS(2282), 1, - anon_sym_DOT, - ACTIONS(3563), 1, - anon_sym_EQ, - ACTIONS(1097), 14, + ACTIONS(2914), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(2907), 13, anon_sym_STAR, + anon_sym_EQ, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2909), 21, + 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_LBRACE_PIPE, + [65919] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1505), 3, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(1507), 3, anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(911), 13, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, anon_sym_SLASH, anon_sym_QMARK, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1099), 22, - sym__automatic_semicolon, + ACTIONS(913), 21, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, 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, @@ -120363,159 +121143,65 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [65427] = 26, + anon_sym_LBRACE_PIPE, + [65971] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(479), 1, - anon_sym_BQUOTE, - ACTIONS(2145), 1, - anon_sym_LPAREN, - ACTIONS(2175), 1, - anon_sym_LBRACK, - ACTIONS(2177), 1, - anon_sym_DOT, - ACTIONS(2863), 1, - anon_sym_QMARK_DOT, - ACTIONS(2915), 1, - anon_sym_as, - ACTIONS(2919), 1, + ACTIONS(1503), 14, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(2923), 1, + anon_sym_in, anon_sym_LT, - ACTIONS(2925), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(2927), 1, - anon_sym_AMP_AMP, - ACTIONS(2933), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(2935), 1, anon_sym_PIPE, - ACTIONS(2939), 1, - anon_sym_STAR_STAR, - ACTIONS(2943), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3025), 1, - anon_sym_COMMA, - ACTIONS(3565), 1, - anon_sym_RPAREN, - STATE(2565), 1, - sym_type_arguments, - ACTIONS(2929), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(2937), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2945), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1128), 2, - sym_template_string, - sym_arguments, - ACTIONS(2913), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(2931), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(2921), 4, - anon_sym_in, - anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2941), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [65521] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(479), 1, - anon_sym_BQUOTE, - ACTIONS(2145), 1, + ACTIONS(1501), 26, + sym__automatic_semicolon, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(2175), 1, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(2177), 1, anon_sym_DOT, - ACTIONS(2863), 1, anon_sym_QMARK_DOT, - ACTIONS(2915), 1, - anon_sym_as, - ACTIONS(2919), 1, - anon_sym_BANG, - ACTIONS(2923), 1, - anon_sym_LT, - ACTIONS(2925), 1, - anon_sym_QMARK, - ACTIONS(2927), 1, anon_sym_AMP_AMP, - ACTIONS(2933), 1, - anon_sym_AMP, - ACTIONS(2935), 1, - anon_sym_PIPE, - ACTIONS(2939), 1, - anon_sym_STAR_STAR, - ACTIONS(2943), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3025), 1, - anon_sym_COMMA, - ACTIONS(3567), 1, - anon_sym_RBRACK, - STATE(2565), 1, - sym_type_arguments, - ACTIONS(2929), 2, anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(2937), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2945), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1128), 2, - sym_template_string, - sym_arguments, - ACTIONS(2913), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(2931), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(2921), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2941), 5, + 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, - [65615] = 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + [66019] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3569), 1, - anon_sym_LPAREN, - ACTIONS(3572), 1, - anon_sym_COLON, - ACTIONS(3574), 2, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2884), 13, + ACTIONS(3359), 1, + anon_sym_DOT, + ACTIONS(1503), 14, anon_sym_STAR, - anon_sym_EQ, anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_SLASH, + anon_sym_QMARK, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -120523,13 +121209,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2692), 23, + ACTIONS(1501), 25, sym__automatic_semicolon, 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, @@ -120547,112 +121234,109 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [65669] = 26, + anon_sym_extends, + [66069] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(479), 1, + ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(2145), 1, + ACTIONS(2173), 1, anon_sym_LPAREN, - ACTIONS(2175), 1, + ACTIONS(2282), 1, anon_sym_LBRACK, - ACTIONS(2177), 1, + ACTIONS(2298), 1, anon_sym_DOT, - ACTIONS(2863), 1, + ACTIONS(3080), 1, + anon_sym_BANG, + ACTIONS(3086), 1, anon_sym_QMARK_DOT, - ACTIONS(2915), 1, + ACTIONS(3113), 1, anon_sym_as, - ACTIONS(2919), 1, - anon_sym_BANG, - ACTIONS(2923), 1, + ACTIONS(3451), 1, anon_sym_LT, - ACTIONS(2925), 1, + ACTIONS(3453), 1, anon_sym_QMARK, - ACTIONS(2927), 1, + ACTIONS(3455), 1, anon_sym_AMP_AMP, - ACTIONS(2933), 1, + ACTIONS(3461), 1, anon_sym_AMP, - ACTIONS(2935), 1, + ACTIONS(3463), 1, anon_sym_PIPE, - ACTIONS(2939), 1, + ACTIONS(3467), 1, anon_sym_STAR_STAR, - ACTIONS(2943), 1, + ACTIONS(3471), 1, anon_sym_QMARK_QMARK, - ACTIONS(3025), 1, - anon_sym_COMMA, - ACTIONS(3577), 1, - anon_sym_RBRACK, - STATE(2565), 1, + STATE(2611), 1, sym_type_arguments, - ACTIONS(2929), 2, + ACTIONS(3104), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3457), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(2937), 2, + ACTIONS(3465), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2945), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1128), 2, + ACTIONS(3592), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(1529), 2, sym_template_string, sym_arguments, - ACTIONS(2913), 3, + ACTIONS(3447), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(2931), 3, + ACTIONS(3459), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(2921), 4, + ACTIONS(3449), 4, anon_sym_in, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2941), 5, + ACTIONS(3469), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [65763] = 12, + [66161] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1734), 1, - anon_sym_extends, - ACTIONS(2175), 1, + ACTIONS(2282), 1, anon_sym_LBRACK, - ACTIONS(2177), 1, - anon_sym_DOT, - ACTIONS(2179), 1, + ACTIONS(2288), 1, anon_sym_QMARK_DOT, - ACTIONS(2370), 1, - anon_sym_QMARK, - ACTIONS(3579), 1, + ACTIONS(2298), 1, + anon_sym_DOT, + ACTIONS(3542), 1, anon_sym_EQ, - ACTIONS(3581), 1, - anon_sym_RPAREN, - ACTIONS(2361), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(3016), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1097), 11, + ACTIONS(3594), 1, + anon_sym_in, + ACTIONS(3597), 1, + anon_sym_of, + ACTIONS(1037), 13, anon_sym_STAR, anon_sym_BANG, - anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, + anon_sym_QMARK, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1099), 18, + ACTIONS(1039), 21, + sym__automatic_semicolon, anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -120669,15 +121353,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [65829] = 5, + [66221] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1061), 1, - sym__automatic_semicolon, - ACTIONS(1053), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(1057), 14, + ACTIONS(1507), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -120692,9 +121371,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1059), 23, + ACTIONS(1505), 26, + sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, @@ -120716,266 +121397,286 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [65881] = 25, + anon_sym_extends, + [66269] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(479), 1, anon_sym_BQUOTE, - ACTIONS(2157), 1, + ACTIONS(2161), 1, anon_sym_LPAREN, - ACTIONS(2266), 1, + ACTIONS(2191), 1, anon_sym_LBRACK, - ACTIONS(2282), 1, + ACTIONS(2193), 1, anon_sym_DOT, - ACTIONS(3100), 1, + ACTIONS(2883), 1, + anon_sym_QMARK_DOT, + ACTIONS(2941), 1, anon_sym_as, - ACTIONS(3102), 1, + ACTIONS(2945), 1, anon_sym_BANG, - ACTIONS(3108), 1, - anon_sym_QMARK_DOT, - ACTIONS(3426), 1, + ACTIONS(2949), 1, anon_sym_LT, - ACTIONS(3428), 1, + ACTIONS(2951), 1, anon_sym_QMARK, - ACTIONS(3430), 1, + ACTIONS(2953), 1, anon_sym_AMP_AMP, - ACTIONS(3436), 1, + ACTIONS(2959), 1, anon_sym_AMP, - ACTIONS(3438), 1, + ACTIONS(2961), 1, anon_sym_PIPE, - ACTIONS(3442), 1, + ACTIONS(2965), 1, anon_sym_STAR_STAR, - ACTIONS(3446), 1, + ACTIONS(2969), 1, anon_sym_QMARK_QMARK, - STATE(2501), 1, + STATE(2547), 1, sym_type_arguments, - ACTIONS(3130), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3432), 2, + ACTIONS(2955), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(3440), 2, + ACTIONS(2963), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3585), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(1567), 2, + ACTIONS(2971), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3153), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(1126), 2, sym_template_string, sym_arguments, - ACTIONS(3422), 3, + ACTIONS(2939), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(3434), 3, + ACTIONS(2957), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(3424), 4, + ACTIONS(2947), 4, anon_sym_in, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3444), 5, + ACTIONS(2967), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [65973] = 25, + [66361] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(479), 1, anon_sym_BQUOTE, - ACTIONS(2157), 1, + ACTIONS(2161), 1, anon_sym_LPAREN, - ACTIONS(2266), 1, + ACTIONS(2191), 1, anon_sym_LBRACK, - ACTIONS(2282), 1, + ACTIONS(2193), 1, anon_sym_DOT, - ACTIONS(3100), 1, + ACTIONS(2883), 1, + anon_sym_QMARK_DOT, + ACTIONS(2941), 1, anon_sym_as, - ACTIONS(3102), 1, + ACTIONS(2945), 1, anon_sym_BANG, - ACTIONS(3108), 1, - anon_sym_QMARK_DOT, - ACTIONS(3426), 1, + ACTIONS(2949), 1, anon_sym_LT, - ACTIONS(3428), 1, + ACTIONS(2951), 1, anon_sym_QMARK, - ACTIONS(3430), 1, + ACTIONS(2953), 1, anon_sym_AMP_AMP, - ACTIONS(3436), 1, + ACTIONS(2959), 1, anon_sym_AMP, - ACTIONS(3438), 1, + ACTIONS(2961), 1, anon_sym_PIPE, - ACTIONS(3442), 1, + ACTIONS(2965), 1, anon_sym_STAR_STAR, - ACTIONS(3446), 1, + ACTIONS(2969), 1, anon_sym_QMARK_QMARK, - STATE(2501), 1, + ACTIONS(2991), 1, + anon_sym_COMMA, + ACTIONS(3599), 1, + anon_sym_RBRACK, + STATE(2547), 1, sym_type_arguments, - ACTIONS(2947), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(3130), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3432), 2, + ACTIONS(2955), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(3440), 2, + ACTIONS(2963), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1567), 2, + ACTIONS(2971), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1126), 2, sym_template_string, sym_arguments, - ACTIONS(3422), 3, + ACTIONS(2939), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(3434), 3, + ACTIONS(2957), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(3424), 4, + ACTIONS(2947), 4, anon_sym_in, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3444), 5, + ACTIONS(2967), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [66065] = 16, + [66455] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(479), 1, anon_sym_BQUOTE, - ACTIONS(2157), 1, + ACTIONS(2161), 1, anon_sym_LPAREN, - ACTIONS(2266), 1, + ACTIONS(2191), 1, anon_sym_LBRACK, - ACTIONS(2282), 1, + ACTIONS(2193), 1, anon_sym_DOT, - ACTIONS(3102), 1, - anon_sym_BANG, - ACTIONS(3108), 1, + ACTIONS(2883), 1, anon_sym_QMARK_DOT, - ACTIONS(3442), 1, - anon_sym_STAR_STAR, - ACTIONS(3558), 1, + ACTIONS(2941), 1, + anon_sym_as, + ACTIONS(2945), 1, + anon_sym_BANG, + ACTIONS(2949), 1, anon_sym_LT, - STATE(2501), 1, + ACTIONS(2951), 1, + anon_sym_QMARK, + ACTIONS(2953), 1, + anon_sym_AMP_AMP, + ACTIONS(2959), 1, + anon_sym_AMP, + ACTIONS(2961), 1, + anon_sym_PIPE, + ACTIONS(2965), 1, + anon_sym_STAR_STAR, + ACTIONS(2969), 1, + anon_sym_QMARK_QMARK, + STATE(2547), 1, sym_type_arguments, - ACTIONS(3130), 2, + ACTIONS(2955), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(2963), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2971), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1567), 2, + ACTIONS(3161), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(1126), 2, sym_template_string, sym_arguments, - ACTIONS(3422), 3, + ACTIONS(2939), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(3434), 3, + ACTIONS(2957), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(2997), 9, + ACTIONS(2947), 4, anon_sym_in, anon_sym_GT, - anon_sym_QMARK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2995), 12, - sym__automatic_semicolon, - anon_sym_as, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, + ACTIONS(2967), 5, 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, - [66139] = 17, + [66547] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(479), 1, anon_sym_BQUOTE, - ACTIONS(2157), 1, + ACTIONS(2161), 1, anon_sym_LPAREN, - ACTIONS(2266), 1, + ACTIONS(2191), 1, anon_sym_LBRACK, - ACTIONS(2282), 1, + ACTIONS(2193), 1, anon_sym_DOT, - ACTIONS(3102), 1, - anon_sym_BANG, - ACTIONS(3108), 1, + ACTIONS(2883), 1, anon_sym_QMARK_DOT, - ACTIONS(3426), 1, + ACTIONS(2941), 1, + anon_sym_as, + ACTIONS(2945), 1, + anon_sym_BANG, + ACTIONS(2949), 1, anon_sym_LT, - ACTIONS(3442), 1, + ACTIONS(2951), 1, + anon_sym_QMARK, + ACTIONS(2953), 1, + anon_sym_AMP_AMP, + ACTIONS(2959), 1, + anon_sym_AMP, + ACTIONS(2961), 1, + anon_sym_PIPE, + ACTIONS(2965), 1, anon_sym_STAR_STAR, - STATE(2501), 1, + ACTIONS(2969), 1, + anon_sym_QMARK_QMARK, + STATE(2547), 1, sym_type_arguments, - ACTIONS(3130), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3440), 2, + ACTIONS(2955), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(2963), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1567), 2, + ACTIONS(2971), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3166), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(1126), 2, sym_template_string, sym_arguments, - ACTIONS(3422), 3, + ACTIONS(2939), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(3434), 3, + ACTIONS(2957), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(2997), 7, + ACTIONS(2947), 4, anon_sym_in, anon_sym_GT, - anon_sym_QMARK, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2995), 12, - sym__automatic_semicolon, - anon_sym_as, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, + ACTIONS(2967), 5, 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, - [66215] = 4, + [66639] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2983), 2, - anon_sym_COLON, - anon_sym_EQ_GT, - ACTIONS(2979), 15, + ACTIONS(1099), 1, + sym__automatic_semicolon, + ACTIONS(1091), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(1095), 14, anon_sym_STAR, - anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -120989,10 +121690,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2981), 23, + ACTIONS(1097), 23, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -121012,114 +121714,83 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, - [66265] = 6, + [66691] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(2907), 1, + ACTIONS(479), 1, + anon_sym_BQUOTE, + ACTIONS(2161), 1, + anon_sym_LPAREN, + ACTIONS(2191), 1, anon_sym_LBRACK, - ACTIONS(1551), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(2910), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(2903), 12, - anon_sym_STAR, - anon_sym_EQ, + ACTIONS(2193), 1, + anon_sym_DOT, + ACTIONS(2883), 1, + anon_sym_QMARK_DOT, + ACTIONS(2941), 1, + anon_sym_as, + ACTIONS(2945), 1, anon_sym_BANG, - anon_sym_in, + ACTIONS(2949), 1, anon_sym_LT, - anon_sym_SLASH, + ACTIONS(2951), 1, anon_sym_QMARK, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2905), 22, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + ACTIONS(2953), 1, anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, + ACTIONS(2959), 1, + anon_sym_AMP, + ACTIONS(2961), 1, + anon_sym_PIPE, + ACTIONS(2965), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(2969), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [66319] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(2157), 1, - anon_sym_LPAREN, - ACTIONS(2266), 1, - anon_sym_LBRACK, - ACTIONS(2282), 1, - anon_sym_DOT, - ACTIONS(3102), 1, - anon_sym_BANG, - ACTIONS(3108), 1, - anon_sym_QMARK_DOT, - ACTIONS(3558), 1, - anon_sym_LT, - STATE(2501), 1, + ACTIONS(2991), 1, + anon_sym_COMMA, + ACTIONS(3601), 1, + anon_sym_RBRACK, + STATE(2547), 1, sym_type_arguments, - ACTIONS(3130), 2, + ACTIONS(2955), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(2963), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2971), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1567), 2, + STATE(1126), 2, sym_template_string, sym_arguments, - ACTIONS(2997), 12, + ACTIONS(2939), 3, anon_sym_STAR, - anon_sym_in, - anon_sym_GT, anon_sym_SLASH, - anon_sym_QMARK, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2995), 16, - sym__automatic_semicolon, - anon_sym_as, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(2957), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(2947), 4, + anon_sym_in, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2967), 5, 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, - [66387] = 3, + [66785] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1503), 14, + ACTIONS(957), 1, + sym__automatic_semicolon, + ACTIONS(949), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(953), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -121134,11 +121805,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1501), 26, - sym__automatic_semicolon, + ACTIONS(955), 23, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, @@ -121160,129 +121829,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, - [66435] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1595), 1, - anon_sym_extends, - ACTIONS(2266), 1, - anon_sym_LBRACK, - ACTIONS(2272), 1, - anon_sym_QMARK_DOT, - ACTIONS(2282), 1, - anon_sym_DOT, - ACTIONS(3019), 1, - anon_sym_COMMA, - ACTIONS(3022), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1097), 11, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_SLASH, - anon_sym_QMARK, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1099), 21, - sym__automatic_semicolon, - anon_sym_as, - anon_sym_RBRACE, - anon_sym_LPAREN, - 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, - [66495] = 23, + [66837] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(2157), 1, - anon_sym_LPAREN, - ACTIONS(2266), 1, - anon_sym_LBRACK, - ACTIONS(2282), 1, - anon_sym_DOT, - ACTIONS(2997), 1, - anon_sym_QMARK, - ACTIONS(3102), 1, - anon_sym_BANG, - ACTIONS(3108), 1, - anon_sym_QMARK_DOT, - ACTIONS(3426), 1, - anon_sym_LT, - ACTIONS(3430), 1, - anon_sym_AMP_AMP, - ACTIONS(3436), 1, - anon_sym_AMP, - ACTIONS(3438), 1, - anon_sym_PIPE, - ACTIONS(3442), 1, - anon_sym_STAR_STAR, - STATE(2501), 1, - sym_type_arguments, - ACTIONS(3130), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3432), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(3440), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1567), 2, - sym_template_string, - sym_arguments, - ACTIONS(3422), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3434), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(2995), 4, + ACTIONS(1049), 1, sym__automatic_semicolon, - anon_sym_as, - anon_sym_SEMI, - anon_sym_QMARK_QMARK, - ACTIONS(3424), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3444), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [66583] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3394), 1, - anon_sym_DOT, - ACTIONS(1585), 14, + ACTIONS(1041), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(1045), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -121297,14 +121852,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1583), 25, - sym__automatic_semicolon, + ACTIONS(1047), 23, 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, @@ -121322,42 +121876,41 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, - [66633] = 9, + [66889] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1734), 1, - anon_sym_extends, - ACTIONS(2266), 1, + ACTIONS(2177), 1, + anon_sym_LPAREN, + ACTIONS(2179), 1, + anon_sym_LT, + ACTIONS(2314), 1, anon_sym_LBRACK, - ACTIONS(2272), 1, + ACTIONS(2320), 1, anon_sym_QMARK_DOT, - ACTIONS(2282), 1, + ACTIONS(2470), 1, anon_sym_DOT, - ACTIONS(3013), 1, - anon_sym_COMMA, - ACTIONS(3016), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1097), 11, + STATE(1510), 1, + sym_type_arguments, + STATE(1704), 1, + sym_arguments, + ACTIONS(2185), 14, anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, - anon_sym_LT, + anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1099), 21, - sym__automatic_semicolon, + ACTIONS(2189), 19, anon_sym_as, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_COMMA, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -121374,10 +121927,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [66693] = 3, + anon_sym_LBRACE_PIPE, + [66951] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1585), 14, + ACTIONS(1109), 1, + sym__automatic_semicolon, + ACTIONS(1101), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(1105), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -121392,11 +121951,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1583), 26, - sym__automatic_semicolon, + ACTIONS(1107), 23, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, @@ -121418,78 +121975,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, - [66741] = 25, + [67003] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(2157), 1, - anon_sym_LPAREN, - ACTIONS(2266), 1, - anon_sym_LBRACK, - ACTIONS(2282), 1, - anon_sym_DOT, - ACTIONS(3100), 1, - anon_sym_as, - ACTIONS(3102), 1, - anon_sym_BANG, - ACTIONS(3108), 1, - anon_sym_QMARK_DOT, - ACTIONS(3426), 1, - anon_sym_LT, - ACTIONS(3428), 1, - anon_sym_QMARK, - ACTIONS(3430), 1, - anon_sym_AMP_AMP, - ACTIONS(3436), 1, - anon_sym_AMP, - ACTIONS(3438), 1, - anon_sym_PIPE, - ACTIONS(3442), 1, - anon_sym_STAR_STAR, - ACTIONS(3446), 1, - anon_sym_QMARK_QMARK, - STATE(2501), 1, - sym_type_arguments, - ACTIONS(2993), 2, + ACTIONS(1079), 1, sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(3130), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3432), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(3440), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1567), 2, - sym_template_string, - sym_arguments, - ACTIONS(3422), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3434), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(3424), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3444), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [66833] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1553), 14, + ACTIONS(1071), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(1075), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -121504,11 +121998,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1551), 26, - sym__automatic_semicolon, + ACTIONS(1077), 23, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, @@ -121530,144 +122022,71 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, - [66881] = 19, + [67055] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(2157), 1, - anon_sym_LPAREN, - ACTIONS(2266), 1, - anon_sym_LBRACK, - ACTIONS(2282), 1, - anon_sym_DOT, - ACTIONS(3102), 1, + ACTIONS(989), 1, + sym__automatic_semicolon, + ACTIONS(981), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(985), 14, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(3108), 1, - anon_sym_QMARK_DOT, - ACTIONS(3426), 1, + anon_sym_in, anon_sym_LT, - ACTIONS(3442), 1, - anon_sym_STAR_STAR, - STATE(2501), 1, - sym_type_arguments, - ACTIONS(3130), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3440), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1567), 2, - sym_template_string, - sym_arguments, - ACTIONS(2997), 3, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, + anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3422), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3434), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(3424), 4, - anon_sym_in, - anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3444), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(2995), 7, - sym__automatic_semicolon, + ACTIONS(987), 23, anon_sym_as, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_QMARK_QMARK, - [66961] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(2157), 1, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(2266), 1, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(2282), 1, anon_sym_DOT, - ACTIONS(3100), 1, - anon_sym_as, - ACTIONS(3102), 1, - anon_sym_BANG, - ACTIONS(3108), 1, anon_sym_QMARK_DOT, - ACTIONS(3426), 1, - anon_sym_LT, - ACTIONS(3428), 1, - anon_sym_QMARK, - ACTIONS(3430), 1, anon_sym_AMP_AMP, - ACTIONS(3436), 1, - anon_sym_AMP, - ACTIONS(3438), 1, - anon_sym_PIPE, - ACTIONS(3442), 1, - anon_sym_STAR_STAR, - ACTIONS(3446), 1, - anon_sym_QMARK_QMARK, - STATE(2501), 1, - sym_type_arguments, - ACTIONS(3002), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(3130), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3432), 2, anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(3440), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1567), 2, - sym_template_string, - sym_arguments, - ACTIONS(3422), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3434), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(3424), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3444), 5, + 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, - [67053] = 4, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [67107] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3535), 1, + ACTIONS(2282), 1, anon_sym_LBRACK, - ACTIONS(1539), 14, + ACTIONS(2288), 1, + anon_sym_QMARK_DOT, + ACTIONS(2298), 1, + anon_sym_DOT, + ACTIONS(3536), 1, + anon_sym_EQ, + ACTIONS(3603), 1, + anon_sym_in, + ACTIONS(3606), 1, + anon_sym_of, + ACTIONS(1037), 13, anon_sym_STAR, anon_sym_BANG, - anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, @@ -121679,15 +122098,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1537), 25, + ACTIONS(1039), 21, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, 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, @@ -121704,11 +122120,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, - [67103] = 3, + [67167] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1535), 14, + ACTIONS(1059), 1, + sym__automatic_semicolon, + ACTIONS(1051), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(1055), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -121723,11 +122143,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1533), 26, - sym__automatic_semicolon, + ACTIONS(1057), 23, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, @@ -121749,17 +122167,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, - [67151] = 5, + [67219] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(911), 1, - anon_sym_EQ, - ACTIONS(3587), 1, - sym__automatic_semicolon, - ACTIONS(909), 15, + ACTIONS(1601), 14, anon_sym_STAR, - anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -121773,10 +122185,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(907), 23, + ACTIONS(1599), 26, + sym__automatic_semicolon, 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, @@ -121796,74 +122211,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, - [67203] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(2157), 1, - anon_sym_LPAREN, - ACTIONS(2266), 1, - anon_sym_LBRACK, - ACTIONS(2282), 1, - anon_sym_DOT, - ACTIONS(3102), 1, - anon_sym_BANG, - ACTIONS(3108), 1, - anon_sym_QMARK_DOT, - ACTIONS(3426), 1, - anon_sym_LT, - ACTIONS(3430), 1, - anon_sym_AMP_AMP, - ACTIONS(3436), 1, - anon_sym_AMP, - ACTIONS(3442), 1, - anon_sym_STAR_STAR, - STATE(2501), 1, - sym_type_arguments, - ACTIONS(2997), 2, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(3130), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3440), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1567), 2, - sym_template_string, - sym_arguments, - ACTIONS(3422), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3434), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(3424), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3444), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(2995), 6, - sym__automatic_semicolon, - anon_sym_as, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_QMARK_QMARK, - [67287] = 3, + anon_sym_extends, + [67267] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1531), 14, + ACTIONS(1519), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -121878,7 +122230,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1529), 26, + ACTIONS(1517), 26, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, @@ -121905,10 +122257,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [67335] = 3, + [67315] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1527), 14, + ACTIONS(1031), 1, + sym__automatic_semicolon, + ACTIONS(1023), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(1027), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -121923,11 +122280,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1525), 26, - sym__automatic_semicolon, + ACTIONS(1029), 23, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, @@ -121949,11 +122304,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, - [67383] = 3, + [67367] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1471), 14, + ACTIONS(967), 1, + sym__automatic_semicolon, + ACTIONS(959), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(963), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -121968,11 +122327,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1469), 26, - sym__automatic_semicolon, + ACTIONS(965), 23, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, @@ -121994,15 +122351,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, - [67431] = 3, + [67419] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1523), 14, + ACTIONS(3021), 1, + anon_sym_LT, + ACTIONS(947), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -122013,7 +122370,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1521), 26, + ACTIONS(945), 26, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, @@ -122040,169 +122397,109 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [67479] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(2157), 1, - anon_sym_LPAREN, - ACTIONS(2266), 1, - anon_sym_LBRACK, - ACTIONS(2282), 1, - anon_sym_DOT, - ACTIONS(3100), 1, - anon_sym_as, - ACTIONS(3102), 1, - anon_sym_BANG, - ACTIONS(3108), 1, - anon_sym_QMARK_DOT, - ACTIONS(3426), 1, - anon_sym_LT, - ACTIONS(3428), 1, - anon_sym_QMARK, - ACTIONS(3430), 1, - anon_sym_AMP_AMP, - ACTIONS(3436), 1, - anon_sym_AMP, - ACTIONS(3438), 1, - anon_sym_PIPE, - ACTIONS(3442), 1, - anon_sym_STAR_STAR, - ACTIONS(3446), 1, - anon_sym_QMARK_QMARK, - STATE(2501), 1, - sym_type_arguments, - ACTIONS(2917), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(3130), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3432), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(3440), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1567), 2, - sym_template_string, - sym_arguments, - ACTIONS(3422), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3434), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(3424), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3444), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [67571] = 26, + [67469] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(479), 1, anon_sym_BQUOTE, - ACTIONS(2145), 1, + ACTIONS(2161), 1, anon_sym_LPAREN, - ACTIONS(2175), 1, + ACTIONS(2191), 1, anon_sym_LBRACK, - ACTIONS(2177), 1, + ACTIONS(2193), 1, anon_sym_DOT, - ACTIONS(2863), 1, + ACTIONS(2883), 1, anon_sym_QMARK_DOT, - ACTIONS(2915), 1, + ACTIONS(2941), 1, anon_sym_as, - ACTIONS(2919), 1, + ACTIONS(2945), 1, anon_sym_BANG, - ACTIONS(2923), 1, + ACTIONS(2949), 1, anon_sym_LT, - ACTIONS(2925), 1, + ACTIONS(2951), 1, anon_sym_QMARK, - ACTIONS(2927), 1, + ACTIONS(2953), 1, anon_sym_AMP_AMP, - ACTIONS(2933), 1, + ACTIONS(2959), 1, anon_sym_AMP, - ACTIONS(2935), 1, + ACTIONS(2961), 1, anon_sym_PIPE, - ACTIONS(2939), 1, + ACTIONS(2965), 1, anon_sym_STAR_STAR, - ACTIONS(2943), 1, + ACTIONS(2969), 1, anon_sym_QMARK_QMARK, - ACTIONS(3025), 1, + ACTIONS(2991), 1, anon_sym_COMMA, - ACTIONS(3589), 1, + ACTIONS(3608), 1, anon_sym_RBRACK, - STATE(2565), 1, + STATE(2547), 1, sym_type_arguments, - ACTIONS(2929), 2, + ACTIONS(2955), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(2937), 2, + ACTIONS(2963), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2945), 2, + ACTIONS(2971), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1128), 2, + STATE(1126), 2, sym_template_string, sym_arguments, - ACTIONS(2913), 3, + ACTIONS(2939), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(2931), 3, + ACTIONS(2957), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(2921), 4, + ACTIONS(2947), 4, anon_sym_in, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2941), 5, + ACTIONS(2967), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [67665] = 3, + [67563] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1519), 14, + ACTIONS(1712), 1, + anon_sym_extends, + ACTIONS(2282), 1, + anon_sym_LBRACK, + ACTIONS(2288), 1, + anon_sym_QMARK_DOT, + ACTIONS(2298), 1, + anon_sym_DOT, + ACTIONS(3037), 1, + anon_sym_COMMA, + ACTIONS(3040), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1037), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_LT, - anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1517), 26, + ACTIONS(1039), 21, sym__automatic_semicolon, 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, @@ -122219,40 +122516,39 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, - [67713] = 9, + [67623] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2266), 1, + ACTIONS(1547), 1, + anon_sym_extends, + ACTIONS(2282), 1, anon_sym_LBRACK, - ACTIONS(2272), 1, + ACTIONS(2288), 1, anon_sym_QMARK_DOT, - ACTIONS(2282), 1, + ACTIONS(2298), 1, anon_sym_DOT, - ACTIONS(3563), 1, - anon_sym_EQ, - ACTIONS(3591), 1, - anon_sym_in, - ACTIONS(3594), 1, - anon_sym_of, - ACTIONS(1097), 13, + ACTIONS(2997), 1, + anon_sym_COMMA, + ACTIONS(3000), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1037), 11, anon_sym_STAR, anon_sym_BANG, + anon_sym_in, anon_sym_LT, - anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1099), 21, + ACTIONS(1039), 21, sym__automatic_semicolon, anon_sym_as, - anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -122271,24 +122567,21 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [67773] = 8, + [67683] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2266), 1, + ACTIONS(2911), 1, anon_sym_LBRACK, - ACTIONS(2272), 1, - anon_sym_QMARK_DOT, - ACTIONS(2282), 1, - anon_sym_DOT, - ACTIONS(1525), 2, + ACTIONS(1587), 2, anon_sym_COMMA, anon_sym_extends, - ACTIONS(1527), 3, + ACTIONS(2914), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1097), 11, + ACTIONS(2907), 12, anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -122299,12 +122592,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1099), 21, + ACTIONS(2909), 22, sym__automatic_semicolon, anon_sym_as, - anon_sym_RBRACE, 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, @@ -122321,10 +122615,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [67831] = 3, + [67737] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1467), 14, + ACTIONS(1561), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -122339,7 +122633,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1465), 26, + ACTIONS(1559), 26, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, @@ -122366,101 +122660,79 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [67879] = 3, + [67785] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(3312), 14, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3314), 25, - sym__automatic_semicolon, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(479), 1, + anon_sym_BQUOTE, + ACTIONS(2161), 1, anon_sym_LPAREN, - anon_sym_SEMI, + ACTIONS(2191), 1, anon_sym_LBRACK, + ACTIONS(2193), 1, anon_sym_DOT, + ACTIONS(2883), 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, - [67926] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1503), 15, - anon_sym_STAR, - anon_sym_LBRACE, + ACTIONS(2941), 1, + anon_sym_as, + ACTIONS(2945), 1, anon_sym_BANG, - anon_sym_in, + ACTIONS(2949), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(2951), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(2953), 1, + anon_sym_AMP_AMP, + ACTIONS(2959), 1, anon_sym_AMP, + ACTIONS(2961), 1, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1501), 24, - anon_sym_as, + ACTIONS(2965), 1, + anon_sym_STAR_STAR, + ACTIONS(2969), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2991), 1, anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, + ACTIONS(3610), 1, + anon_sym_RPAREN, + STATE(2547), 1, + sym_type_arguments, + ACTIONS(2955), 2, anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(2963), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2971), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1126), 2, + sym_template_string, + sym_arguments, + ACTIONS(2939), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(2957), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(2947), 4, + anon_sym_in, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2967), 5, 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_extends, - anon_sym_LBRACE_PIPE, - [67973] = 3, + [67879] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2884), 16, + ACTIONS(3300), 14, anon_sym_STAR, - anon_sym_EQ, - anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -122474,10 +122746,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2692), 23, + ACTIONS(3302), 25, + sym__automatic_semicolon, 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, @@ -122497,12 +122772,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, - [68020] = 3, + [67926] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3308), 14, + ACTIONS(1601), 15, anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -122516,13 +122791,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3310), 25, - sym__automatic_semicolon, + ACTIONS(1599), 24, 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, @@ -122542,56 +122814,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [68067] = 3, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + [67973] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(911), 16, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LBRACE, + ACTIONS(479), 1, + anon_sym_BQUOTE, + ACTIONS(2161), 1, + anon_sym_LPAREN, + ACTIONS(2191), 1, + anon_sym_LBRACK, + ACTIONS(2193), 1, + anon_sym_DOT, + ACTIONS(2883), 1, + anon_sym_QMARK_DOT, + ACTIONS(2941), 1, + anon_sym_as, + ACTIONS(2945), 1, anon_sym_BANG, - anon_sym_in, + ACTIONS(3514), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(3516), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(3518), 1, + anon_sym_AMP_AMP, + ACTIONS(3524), 1, anon_sym_AMP, + ACTIONS(3526), 1, anon_sym_PIPE, + ACTIONS(3530), 1, + anon_sym_STAR_STAR, + ACTIONS(3534), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3612), 1, + anon_sym_COLON, + STATE(2547), 1, + sym_type_arguments, + ACTIONS(2971), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3520), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(3528), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(913), 23, - anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + STATE(1126), 2, + sym_template_string, + sym_arguments, + ACTIONS(3510), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(3522), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(3512), 4, + anon_sym_in, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3532), 5, 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_LBRACE_PIPE, - [68114] = 4, + [68064] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3596), 1, - sym__automatic_semicolon, - ACTIONS(949), 15, + ACTIONS(1535), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -122607,7 +122901,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(947), 23, + ACTIONS(1533), 24, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -122630,14 +122924,75 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, + anon_sym_extends, anon_sym_LBRACE_PIPE, - [68163] = 3, + [68111] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2880), 16, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(2342), 1, + anon_sym_DASH, + ACTIONS(2344), 1, + anon_sym_DQUOTE, + ACTIONS(2346), 1, + anon_sym_SQUOTE, + ACTIONS(2810), 1, + anon_sym_LBRACK, + ACTIONS(3614), 1, + anon_sym_STAR, + ACTIONS(3616), 1, + anon_sym_RBRACE, + ACTIONS(3618), 1, + anon_sym_async, + ACTIONS(3620), 1, + sym_number, + ACTIONS(3622), 1, + anon_sym_static, + ACTIONS(3624), 1, + anon_sym_abstract, + ACTIONS(3628), 1, + sym_readonly, + STATE(1850), 1, + sym_method_definition, + STATE(1870), 1, + sym_accessibility_modifier, + ACTIONS(3626), 2, + anon_sym_get, + anon_sym_set, + STATE(1573), 2, + sym_decorator, + aux_sym_class_body_repeat1, + ACTIONS(2820), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(1936), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(2730), 4, + sym_public_field_definition, + sym_method_signature, + sym_abstract_method_signature, + sym_index_signature, + ACTIONS(2804), 11, + anon_sym_export, + anon_sym_namespace, + anon_sym_type, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [68194] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3286), 14, anon_sym_STAR, - anon_sym_EQ, - anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -122651,10 +123006,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2882), 23, + ACTIONS(3288), 25, + sym__automatic_semicolon, 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, @@ -122674,14 +123032,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, - [68210] = 3, + [68241] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2874), 16, + ACTIONS(3393), 1, + sym_regex_flags, + ACTIONS(3389), 17, anon_sym_STAR, - anon_sym_EQ, - anon_sym_LBRACE, + anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -122695,8 +123053,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2876), 23, - anon_sym_as, + anon_sym_instanceof, + anon_sym_implements, + ACTIONS(3391), 21, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -122714,17 +123074,14 @@ static 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_LBRACE_PIPE, - [68257] = 3, + [68290] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1593), 15, + ACTIONS(3290), 14, anon_sym_STAR, - anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -122738,10 +123095,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1591), 24, + ACTIONS(3053), 25, + sym__automatic_semicolon, 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, @@ -122761,22 +123121,30 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, - anon_sym_LBRACE_PIPE, - [68304] = 4, + [68337] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3598), 1, + ACTIONS(2191), 1, anon_sym_LBRACK, - ACTIONS(1601), 15, + ACTIONS(2193), 1, + anon_sym_DOT, + ACTIONS(2195), 1, + anon_sym_QMARK_DOT, + ACTIONS(3630), 1, + anon_sym_EQ, + ACTIONS(3636), 1, + anon_sym_QMARK, + ACTIONS(3633), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(1037), 13, anon_sym_STAR, - anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, - anon_sym_QMARK, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -122784,12 +123152,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1599), 23, + ACTIONS(1039), 18, 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, @@ -122806,20 +123171,30 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, - anon_sym_LBRACE_PIPE, - [68353] = 3, + [68396] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1597), 15, + ACTIONS(2191), 1, + anon_sym_LBRACK, + ACTIONS(2193), 1, + anon_sym_DOT, + ACTIONS(2195), 1, + anon_sym_QMARK_DOT, + ACTIONS(3639), 1, + anon_sym_EQ, + ACTIONS(3645), 1, + anon_sym_QMARK, + ACTIONS(3642), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(1037), 13, anon_sym_STAR, - anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, - anon_sym_QMARK, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -122827,13 +123202,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1595), 24, + ACTIONS(1039), 18, anon_sym_as, - anon_sym_COMMA, 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, @@ -122850,12 +123221,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, - anon_sym_LBRACE_PIPE, - [68400] = 3, + [68455] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1187), 15, + ACTIONS(3648), 1, + anon_sym_LBRACK, + ACTIONS(1539), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -122871,11 +123242,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1185), 24, + ACTIONS(1537), 23, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -122896,150 +123266,30 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_LBRACE_PIPE, - [68447] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(479), 1, - anon_sym_BQUOTE, - ACTIONS(2145), 1, - anon_sym_LPAREN, - ACTIONS(2175), 1, - anon_sym_LBRACK, - ACTIONS(2177), 1, - anon_sym_DOT, - ACTIONS(2863), 1, - anon_sym_QMARK_DOT, - ACTIONS(2915), 1, - anon_sym_as, - ACTIONS(2919), 1, - anon_sym_BANG, - ACTIONS(3484), 1, - anon_sym_LT, - ACTIONS(3486), 1, - anon_sym_QMARK, - ACTIONS(3488), 1, - anon_sym_AMP_AMP, - ACTIONS(3494), 1, - anon_sym_AMP, - ACTIONS(3496), 1, - anon_sym_PIPE, - ACTIONS(3500), 1, - anon_sym_STAR_STAR, - ACTIONS(3504), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3600), 1, - anon_sym_COLON, - STATE(2565), 1, - sym_type_arguments, - ACTIONS(2945), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3490), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(3498), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1128), 2, - sym_template_string, - sym_arguments, - ACTIONS(3480), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3492), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(3482), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3502), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [68538] = 25, + [68504] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(479), 1, - anon_sym_BQUOTE, - ACTIONS(2145), 1, - anon_sym_LPAREN, - ACTIONS(2175), 1, + ACTIONS(2191), 1, anon_sym_LBRACK, - ACTIONS(2177), 1, + ACTIONS(2193), 1, anon_sym_DOT, - ACTIONS(2863), 1, + ACTIONS(2195), 1, anon_sym_QMARK_DOT, - ACTIONS(2915), 1, - anon_sym_as, - ACTIONS(2919), 1, - anon_sym_BANG, - ACTIONS(3484), 1, - anon_sym_LT, - ACTIONS(3486), 1, + ACTIONS(2388), 1, anon_sym_QMARK, - ACTIONS(3488), 1, - anon_sym_AMP_AMP, - ACTIONS(3494), 1, - anon_sym_AMP, - ACTIONS(3496), 1, - anon_sym_PIPE, - ACTIONS(3500), 1, - anon_sym_STAR_STAR, - ACTIONS(3504), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3602), 1, + ACTIONS(3561), 1, + anon_sym_EQ, + ACTIONS(2379), 3, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_COLON, - STATE(2565), 1, - sym_type_arguments, - ACTIONS(2945), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3490), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(3498), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1128), 2, - sym_template_string, - sym_arguments, - ACTIONS(3480), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3492), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(3482), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3502), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [68629] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1515), 15, + ACTIONS(1037), 13, anon_sym_STAR, - anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, - anon_sym_QMARK, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -123047,13 +123297,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1513), 24, + ACTIONS(1039), 18, anon_sym_as, - anon_sym_COMMA, 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, @@ -123070,12 +123316,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, - anon_sym_LBRACE_PIPE, - [68676] = 3, + [68563] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2903), 16, + ACTIONS(911), 16, anon_sym_STAR, anon_sym_EQ, anon_sym_LBRACE, @@ -123092,7 +123336,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2905), 23, + ACTIONS(913), 23, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -123116,11 +123360,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_LBRACE_PIPE, - [68723] = 3, + [68610] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3220), 14, + ACTIONS(1507), 15, anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -123134,13 +123379,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3222), 25, - sym__automatic_semicolon, + ACTIONS(1505), 24, 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, @@ -123160,57 +123402,121 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [68770] = 21, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + [68657] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(91), 1, anon_sym_AT, - ACTIONS(2316), 1, + ACTIONS(2342), 1, anon_sym_DASH, - ACTIONS(2318), 1, + ACTIONS(2344), 1, anon_sym_DQUOTE, - ACTIONS(2320), 1, + ACTIONS(2346), 1, anon_sym_SQUOTE, - ACTIONS(2760), 1, + ACTIONS(2810), 1, anon_sym_LBRACK, - ACTIONS(3604), 1, + ACTIONS(3614), 1, anon_sym_STAR, - ACTIONS(3606), 1, - anon_sym_RBRACE, - ACTIONS(3608), 1, + ACTIONS(3618), 1, anon_sym_async, - ACTIONS(3610), 1, + ACTIONS(3620), 1, sym_number, - ACTIONS(3612), 1, + ACTIONS(3622), 1, anon_sym_static, - ACTIONS(3614), 1, + ACTIONS(3624), 1, anon_sym_abstract, + ACTIONS(3628), 1, + sym_readonly, + ACTIONS(3650), 1, + anon_sym_RBRACE, + STATE(1850), 1, + sym_method_definition, + STATE(1870), 1, + sym_accessibility_modifier, + ACTIONS(3626), 2, + anon_sym_get, + anon_sym_set, + STATE(1492), 2, + sym_decorator, + aux_sym_class_body_repeat1, + ACTIONS(2820), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(1936), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(2730), 4, + sym_public_field_definition, + sym_method_signature, + sym_abstract_method_signature, + sym_index_signature, + ACTIONS(2804), 11, + anon_sym_export, + anon_sym_namespace, + anon_sym_type, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [68740] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(2342), 1, + anon_sym_DASH, + ACTIONS(2344), 1, + anon_sym_DQUOTE, + ACTIONS(2346), 1, + anon_sym_SQUOTE, + ACTIONS(2810), 1, + anon_sym_LBRACK, + ACTIONS(3614), 1, + anon_sym_STAR, ACTIONS(3618), 1, + anon_sym_async, + ACTIONS(3620), 1, + sym_number, + ACTIONS(3622), 1, + anon_sym_static, + ACTIONS(3624), 1, + anon_sym_abstract, + ACTIONS(3628), 1, sym_readonly, - STATE(1843), 1, + ACTIONS(3652), 1, + anon_sym_RBRACE, + STATE(1850), 1, sym_method_definition, - STATE(1872), 1, + STATE(1870), 1, sym_accessibility_modifier, - ACTIONS(3616), 2, + ACTIONS(3626), 2, anon_sym_get, anon_sym_set, - STATE(1589), 2, + STATE(1588), 2, sym_decorator, aux_sym_class_body_repeat1, - ACTIONS(2770), 3, + ACTIONS(2820), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(1932), 3, + STATE(1936), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(2640), 4, + STATE(2730), 4, sym_public_field_definition, sym_method_signature, sym_abstract_method_signature, sym_index_signature, - ACTIONS(2750), 11, + ACTIONS(2804), 11, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -123222,30 +123528,25 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [68853] = 9, + [68823] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2175), 1, + ACTIONS(2191), 1, anon_sym_LBRACK, - ACTIONS(2177), 1, + ACTIONS(2193), 1, anon_sym_DOT, - ACTIONS(2179), 1, + ACTIONS(2195), 1, anon_sym_QMARK_DOT, - ACTIONS(3620), 1, + ACTIONS(3654), 1, anon_sym_EQ, - ACTIONS(3626), 1, - anon_sym_QMARK, - ACTIONS(3623), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(1097), 13, + ACTIONS(1037), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, + anon_sym_QMARK, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -123253,8 +123554,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1099), 18, + ACTIONS(1039), 21, anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -123272,57 +123575,59 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [68912] = 21, + anon_sym_implements, + [68878] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(2316), 1, - anon_sym_DASH, - ACTIONS(2318), 1, + ACTIONS(109), 1, + anon_sym_STAR, + ACTIONS(113), 1, + anon_sym_COMMA, + ACTIONS(123), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(845), 1, anon_sym_DQUOTE, - ACTIONS(2320), 1, + ACTIONS(847), 1, anon_sym_SQUOTE, - ACTIONS(2760), 1, + ACTIONS(1728), 1, + anon_sym_LBRACE, + ACTIONS(3658), 1, + anon_sym_RBRACE, + ACTIONS(3660), 1, anon_sym_LBRACK, - ACTIONS(3604), 1, - anon_sym_STAR, - ACTIONS(3608), 1, + ACTIONS(3662), 1, anon_sym_async, - ACTIONS(3610), 1, + ACTIONS(3664), 1, sym_number, - ACTIONS(3612), 1, + ACTIONS(3666), 1, anon_sym_static, - ACTIONS(3614), 1, - anon_sym_abstract, - ACTIONS(3618), 1, + ACTIONS(3672), 1, sym_readonly, - ACTIONS(3629), 1, - anon_sym_RBRACE, - STATE(1843), 1, - sym_method_definition, - STATE(1872), 1, + STATE(1883), 1, sym_accessibility_modifier, - ACTIONS(3616), 2, + STATE(2706), 1, + aux_sym_object_repeat1, + STATE(3037), 1, + sym_object, + STATE(3038), 1, + sym_array, + ACTIONS(3668), 2, anon_sym_get, anon_sym_set, - STATE(1490), 2, - sym_decorator, - aux_sym_class_body_repeat1, - ACTIONS(2770), 3, + ACTIONS(3670), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(1932), 3, + STATE(2084), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(2640), 4, - sym_public_field_definition, - sym_method_signature, - sym_abstract_method_signature, - sym_index_signature, - ACTIONS(2750), 11, + STATE(2710), 4, + sym_assignment_pattern, + sym_spread_element, + sym_method_definition, + sym_pair, + ACTIONS(3656), 11, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -123334,10 +123639,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [68995] = 3, + [68963] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3304), 14, + ACTIONS(2191), 1, + anon_sym_LBRACK, + ACTIONS(2193), 1, + anon_sym_DOT, + ACTIONS(2195), 1, + anon_sym_QMARK_DOT, + ACTIONS(3674), 1, + anon_sym_EQ, + ACTIONS(1037), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -123352,16 +123665,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3306), 25, - sym__automatic_semicolon, + ACTIONS(1039), 21, 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, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -123378,76 +123686,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [69042] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(479), 1, - anon_sym_BQUOTE, - ACTIONS(2145), 1, - anon_sym_LPAREN, - ACTIONS(2175), 1, - anon_sym_LBRACK, - ACTIONS(2177), 1, - anon_sym_DOT, - ACTIONS(2863), 1, - anon_sym_QMARK_DOT, - ACTIONS(2915), 1, - anon_sym_as, - ACTIONS(2919), 1, - anon_sym_BANG, - ACTIONS(3484), 1, - anon_sym_LT, - ACTIONS(3486), 1, - anon_sym_QMARK, - ACTIONS(3488), 1, - anon_sym_AMP_AMP, - ACTIONS(3494), 1, - anon_sym_AMP, - ACTIONS(3496), 1, - anon_sym_PIPE, - ACTIONS(3500), 1, - anon_sym_STAR_STAR, - ACTIONS(3504), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3631), 1, - anon_sym_COLON, - STATE(2565), 1, - sym_type_arguments, - ACTIONS(2945), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3490), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(3498), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1128), 2, - sym_template_string, - sym_arguments, - ACTIONS(3480), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3492), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(3482), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3502), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [69133] = 3, + anon_sym_implements, + [69018] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3300), 14, + ACTIONS(3294), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -123462,7 +123705,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3302), 25, + ACTIONS(3296), 25, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, @@ -123488,55 +123731,79 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [69180] = 3, + [69065] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(3254), 14, - anon_sym_STAR, + ACTIONS(479), 1, + anon_sym_BQUOTE, + ACTIONS(2161), 1, + anon_sym_LPAREN, + ACTIONS(2191), 1, + anon_sym_LBRACK, + ACTIONS(2193), 1, + anon_sym_DOT, + ACTIONS(2883), 1, + anon_sym_QMARK_DOT, + ACTIONS(2941), 1, + anon_sym_as, + ACTIONS(2945), 1, anon_sym_BANG, - anon_sym_in, + ACTIONS(3514), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(3516), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(3518), 1, + anon_sym_AMP_AMP, + ACTIONS(3524), 1, anon_sym_AMP, + ACTIONS(3526), 1, anon_sym_PIPE, + ACTIONS(3530), 1, + anon_sym_STAR_STAR, + ACTIONS(3534), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3676), 1, + anon_sym_RBRACK, + STATE(2547), 1, + sym_type_arguments, + ACTIONS(2971), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3520), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(3528), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3256), 25, - sym__automatic_semicolon, - 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, + STATE(1126), 2, + sym_template_string, + sym_arguments, + ACTIONS(3510), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(3522), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(3512), 4, + anon_sym_in, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3532), 5, 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, - [69227] = 3, + [69156] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3258), 14, + ACTIONS(2897), 16, anon_sym_STAR, + anon_sym_EQ, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -123550,13 +123817,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2917), 25, - sym__automatic_semicolon, + ACTIONS(2724), 23, 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, @@ -123576,17 +123840,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [69274] = 6, + anon_sym_LBRACE_PIPE, + [69203] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2266), 1, - anon_sym_LBRACK, - ACTIONS(2272), 1, - anon_sym_QMARK_DOT, - ACTIONS(2282), 1, - anon_sym_DOT, - ACTIONS(1097), 14, + ACTIONS(3678), 1, + sym__automatic_semicolon, + ACTIONS(939), 15, anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -123600,13 +123862,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1099), 22, - sym__automatic_semicolon, + ACTIONS(937), 23, 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, @@ -123623,10 +123885,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [69327] = 3, + anon_sym_LBRACE_PIPE, + [69252] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3316), 14, + ACTIONS(1085), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -123641,7 +123904,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3318), 25, + ACTIONS(1087), 25, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, @@ -123667,11 +123930,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [69374] = 3, + [69299] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3272), 14, + ACTIONS(2177), 1, + anon_sym_LPAREN, + STATE(1679), 1, + sym_arguments, + ACTIONS(3013), 15, anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -123685,13 +123953,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3274), 25, - sym__automatic_semicolon, + ACTIONS(3015), 22, 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, @@ -123711,30 +123975,19 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [69421] = 9, + anon_sym_LBRACE_PIPE, + [69350] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2175), 1, - anon_sym_LBRACK, - ACTIONS(2177), 1, - anon_sym_DOT, - ACTIONS(2179), 1, - anon_sym_QMARK_DOT, - ACTIONS(2370), 1, - anon_sym_QMARK, - ACTIONS(3579), 1, - anon_sym_EQ, - ACTIONS(2361), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(1097), 13, + ACTIONS(1569), 15, anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, + anon_sym_QMARK, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -123742,9 +123995,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1099), 18, + ACTIONS(1567), 24, anon_sym_as, + anon_sym_COMMA, 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, @@ -123761,133 +124018,33 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [69480] = 25, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + [69397] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(479), 1, - anon_sym_BQUOTE, - ACTIONS(2145), 1, - anon_sym_LPAREN, - ACTIONS(2175), 1, + ACTIONS(2191), 1, anon_sym_LBRACK, - ACTIONS(2177), 1, + ACTIONS(2193), 1, anon_sym_DOT, - ACTIONS(2863), 1, + ACTIONS(2195), 1, anon_sym_QMARK_DOT, - ACTIONS(2915), 1, - anon_sym_as, - ACTIONS(2919), 1, - anon_sym_BANG, - ACTIONS(3484), 1, - anon_sym_LT, - ACTIONS(3486), 1, + ACTIONS(3639), 1, + anon_sym_EQ, + ACTIONS(3645), 1, anon_sym_QMARK, - ACTIONS(3488), 1, - anon_sym_AMP_AMP, - ACTIONS(3494), 1, - anon_sym_AMP, - ACTIONS(3496), 1, - anon_sym_PIPE, - ACTIONS(3500), 1, - anon_sym_STAR_STAR, - ACTIONS(3504), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3633), 1, - anon_sym_RBRACK, - STATE(2565), 1, - sym_type_arguments, - ACTIONS(2945), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3490), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(3498), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1128), 2, - sym_template_string, - sym_arguments, - ACTIONS(3480), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3492), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(3482), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3502), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [69571] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2266), 1, - anon_sym_LBRACK, - ACTIONS(2272), 1, - anon_sym_QMARK_DOT, - ACTIONS(2282), 1, - anon_sym_DOT, - ACTIONS(1734), 2, + ACTIONS(3680), 1, + anon_sym_COLON, + ACTIONS(3642), 2, anon_sym_COMMA, - anon_sym_extends, - ACTIONS(3016), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1097), 11, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_SLASH, - anon_sym_QMARK, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1099), 20, - sym__automatic_semicolon, - anon_sym_as, - anon_sym_LPAREN, - 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, - [69628] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1553), 15, + anon_sym_RPAREN, + ACTIONS(1037), 13, anon_sym_STAR, - anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, - anon_sym_QMARK, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -123895,13 +124052,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1551), 24, + ACTIONS(1039), 18, anon_sym_as, - anon_sym_COMMA, 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, @@ -123918,22 +124071,31 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, - anon_sym_LBRACE_PIPE, - [69675] = 4, + [69458] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(3515), 1, + ACTIONS(2191), 1, + anon_sym_LBRACK, + ACTIONS(2193), 1, anon_sym_DOT, - ACTIONS(1585), 15, + ACTIONS(2195), 1, + anon_sym_QMARK_DOT, + ACTIONS(3630), 1, + anon_sym_EQ, + ACTIONS(3636), 1, + anon_sym_QMARK, + ACTIONS(3682), 1, + anon_sym_COLON, + ACTIONS(3633), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(1037), 13, anon_sym_STAR, - anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, - anon_sym_QMARK, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -123941,12 +124103,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1583), 23, + ACTIONS(1039), 18, anon_sym_as, - anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -123963,42 +124122,41 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, - anon_sym_LBRACE_PIPE, - [69724] = 9, + [69519] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1595), 1, - anon_sym_extends, - ACTIONS(2175), 1, + ACTIONS(2191), 1, anon_sym_LBRACK, - ACTIONS(2177), 1, + ACTIONS(2193), 1, anon_sym_DOT, - ACTIONS(2179), 1, + ACTIONS(2195), 1, anon_sym_QMARK_DOT, - ACTIONS(3019), 1, + ACTIONS(2388), 1, + anon_sym_QMARK, + ACTIONS(2684), 1, + anon_sym_COLON, + ACTIONS(3561), 1, + anon_sym_EQ, + ACTIONS(2379), 2, + anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(3022), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1097), 12, + ACTIONS(1037), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, - anon_sym_QMARK, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1099), 20, + ACTIONS(1039), 18, anon_sym_as, - anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -124015,10 +124173,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [69783] = 3, + [69580] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1027), 14, + ACTIONS(3072), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -124033,7 +124191,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1029), 25, + ACTIONS(3074), 25, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, @@ -124059,11 +124217,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [69830] = 3, + [69627] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(955), 14, + ACTIONS(3684), 1, + sym_regex_flags, + ACTIONS(3389), 17, anon_sym_STAR, + anon_sym_as, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -124077,13 +124239,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(957), 25, - sym__automatic_semicolon, - anon_sym_as, + anon_sym_instanceof, + ACTIONS(3391), 21, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -124099,15 +124258,16 @@ static 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, - [69877] = 3, + anon_sym_LBRACE_PIPE, + [69676] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1585), 15, + ACTIONS(2925), 16, anon_sym_STAR, + anon_sym_EQ, anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, @@ -124122,7 +124282,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1583), 24, + ACTIONS(2927), 23, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -124145,12 +124305,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, anon_sym_LBRACE_PIPE, - [69924] = 3, + [69723] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3260), 14, + ACTIONS(2758), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -124165,7 +124324,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3262), 25, + ACTIONS(2762), 25, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, @@ -124191,11 +124350,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [69971] = 3, + [69770] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(975), 14, + ACTIONS(2177), 1, + anon_sym_LPAREN, + STATE(1678), 1, + sym_arguments, + ACTIONS(3009), 15, anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -124209,13 +124373,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(977), 25, - sym__automatic_semicolon, + ACTIONS(3011), 22, 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, @@ -124235,11 +124395,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [70018] = 3, + anon_sym_LBRACE_PIPE, + [69821] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3296), 14, + ACTIONS(1589), 15, anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -124253,13 +124415,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3298), 25, - sym__automatic_semicolon, + ACTIONS(1587), 24, 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, @@ -124279,135 +124438,53 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [70065] = 21, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + [69868] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(2316), 1, - anon_sym_DASH, - ACTIONS(2318), 1, - anon_sym_DQUOTE, - ACTIONS(2320), 1, - anon_sym_SQUOTE, - ACTIONS(2760), 1, - anon_sym_LBRACK, - ACTIONS(3604), 1, + ACTIONS(3123), 14, anon_sym_STAR, - ACTIONS(3608), 1, - anon_sym_async, - ACTIONS(3610), 1, - sym_number, - ACTIONS(3612), 1, - anon_sym_static, - ACTIONS(3614), 1, - anon_sym_abstract, - ACTIONS(3618), 1, - sym_readonly, - ACTIONS(3635), 1, - anon_sym_RBRACE, - STATE(1843), 1, - sym_method_definition, - STATE(1872), 1, - sym_accessibility_modifier, - ACTIONS(3616), 2, - anon_sym_get, - anon_sym_set, - STATE(1589), 2, - sym_decorator, - aux_sym_class_body_repeat1, - ACTIONS(2770), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(1932), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(2640), 4, - sym_public_field_definition, - sym_method_signature, - sym_abstract_method_signature, - sym_index_signature, - ACTIONS(2750), 11, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [70148] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(479), 1, - anon_sym_BQUOTE, - ACTIONS(2145), 1, - anon_sym_LPAREN, - ACTIONS(2175), 1, - anon_sym_LBRACK, - ACTIONS(2177), 1, - anon_sym_DOT, - ACTIONS(2863), 1, - anon_sym_QMARK_DOT, - ACTIONS(2915), 1, - anon_sym_as, - ACTIONS(2919), 1, anon_sym_BANG, - ACTIONS(3484), 1, + anon_sym_in, anon_sym_LT, - ACTIONS(3486), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(3488), 1, - anon_sym_AMP_AMP, - ACTIONS(3494), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(3496), 1, anon_sym_PIPE, - ACTIONS(3500), 1, - anon_sym_STAR_STAR, - ACTIONS(3504), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3637), 1, - anon_sym_RBRACK, - STATE(2565), 1, - sym_type_arguments, - ACTIONS(2945), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3490), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(3498), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1128), 2, - sym_template_string, - sym_arguments, - ACTIONS(3480), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3492), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3125), 25, + sym__automatic_semicolon, + 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, - ACTIONS(3482), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3502), 5, + 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, - [70239] = 22, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [69915] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(109), 1, @@ -124420,45 +124497,45 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(847), 1, anon_sym_SQUOTE, - ACTIONS(1722), 1, + ACTIONS(1728), 1, anon_sym_LBRACE, - ACTIONS(3641), 1, - anon_sym_RBRACE, - ACTIONS(3643), 1, + ACTIONS(3660), 1, anon_sym_LBRACK, - ACTIONS(3645), 1, - anon_sym_async, - ACTIONS(3647), 1, + ACTIONS(3664), 1, sym_number, - ACTIONS(3649), 1, + ACTIONS(3688), 1, + anon_sym_RBRACE, + ACTIONS(3690), 1, + anon_sym_async, + ACTIONS(3692), 1, anon_sym_static, - ACTIONS(3655), 1, + ACTIONS(3698), 1, sym_readonly, - STATE(1875), 1, + STATE(1883), 1, sym_accessibility_modifier, - STATE(2669), 1, + STATE(2753), 1, aux_sym_object_repeat1, - STATE(3086), 1, - sym_array, - STATE(3204), 1, + STATE(3037), 1, sym_object, - ACTIONS(3651), 2, + STATE(3038), 1, + sym_array, + ACTIONS(3694), 2, anon_sym_get, anon_sym_set, - ACTIONS(3653), 3, + ACTIONS(3696), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(2109), 3, + STATE(2084), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(2628), 4, + STATE(2785), 4, sym_assignment_pattern, sym_spread_element, sym_method_definition, sym_pair, - ACTIONS(3639), 11, + ACTIONS(3686), 11, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -124470,11 +124547,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [70324] = 3, + [70000] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2979), 14, + ACTIONS(1503), 15, anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -124488,13 +124566,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2981), 25, - sym__automatic_semicolon, + ACTIONS(1501), 24, 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, @@ -124514,10 +124589,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [70371] = 3, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + [70047] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(985), 14, + ACTIONS(2929), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -124532,7 +124609,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(987), 25, + ACTIONS(2931), 25, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, @@ -124558,10 +124635,54 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [70418] = 3, + [70094] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2903), 16, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2905), 23, + anon_sym_as, + anon_sym_COMMA, + 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_LBRACE_PIPE, + [70141] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1097), 14, + ACTIONS(3133), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -124576,7 +124697,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1099), 25, + ACTIONS(3135), 25, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, @@ -124602,12 +124723,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [70465] = 4, + [70188] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3598), 1, - anon_sym_LBRACK, - ACTIONS(1539), 15, + ACTIONS(3473), 1, + anon_sym_DOT, + ACTIONS(1503), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -124623,11 +124744,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1537), 23, + ACTIONS(1501), 23, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_DOT, + anon_sym_LBRACK, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -124647,11 +124768,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_LBRACE_PIPE, - [70514] = 3, + [70237] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3156), 14, + ACTIONS(1515), 15, anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -124665,13 +124787,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3158), 25, - sym__automatic_semicolon, + ACTIONS(1513), 24, 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, @@ -124691,10 +124810,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [70561] = 3, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + [70284] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1535), 15, + ACTIONS(1565), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -124710,7 +124831,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1533), 24, + ACTIONS(1563), 24, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -124735,10 +124856,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_LBRACE_PIPE, - [70608] = 3, + [70331] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1531), 15, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(2342), 1, + anon_sym_DASH, + ACTIONS(2344), 1, + anon_sym_DQUOTE, + ACTIONS(2346), 1, + anon_sym_SQUOTE, + ACTIONS(2810), 1, + anon_sym_LBRACK, + ACTIONS(3614), 1, + anon_sym_STAR, + ACTIONS(3618), 1, + anon_sym_async, + ACTIONS(3620), 1, + sym_number, + ACTIONS(3622), 1, + anon_sym_static, + ACTIONS(3624), 1, + anon_sym_abstract, + ACTIONS(3628), 1, + sym_readonly, + ACTIONS(3700), 1, + anon_sym_RBRACE, + STATE(1850), 1, + sym_method_definition, + STATE(1870), 1, + sym_accessibility_modifier, + ACTIONS(3626), 2, + anon_sym_get, + anon_sym_set, + STATE(1562), 2, + sym_decorator, + aux_sym_class_body_repeat1, + ACTIONS(2820), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(1936), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(2730), 4, + sym_public_field_definition, + sym_method_signature, + sym_abstract_method_signature, + sym_index_signature, + ACTIONS(2804), 11, + anon_sym_export, + anon_sym_namespace, + anon_sym_type, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [70414] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3702), 1, + anon_sym_AMP, + ACTIONS(3704), 1, + anon_sym_PIPE, + ACTIONS(3706), 1, + anon_sym_extends, + ACTIONS(2929), 13, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -124748,13 +124937,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_QMARK, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1529), 24, + ACTIONS(2931), 23, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -124777,14 +124964,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, anon_sym_LBRACE_PIPE, - [70655] = 3, + [70467] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1527), 15, + ACTIONS(2282), 1, + anon_sym_LBRACK, + ACTIONS(2288), 1, + anon_sym_QMARK_DOT, + ACTIONS(2298), 1, + anon_sym_DOT, + ACTIONS(1037), 14, anon_sym_STAR, - anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -124798,13 +124989,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1525), 24, + ACTIONS(1039), 22, + sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -124821,96 +125012,105 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, - anon_sym_LBRACE_PIPE, - [70702] = 21, + [70520] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(2316), 1, - anon_sym_DASH, - ACTIONS(2318), 1, - anon_sym_DQUOTE, - ACTIONS(2320), 1, - anon_sym_SQUOTE, - ACTIONS(2760), 1, + ACTIONS(479), 1, + anon_sym_BQUOTE, + ACTIONS(2161), 1, + anon_sym_LPAREN, + ACTIONS(2191), 1, anon_sym_LBRACK, - ACTIONS(3604), 1, + ACTIONS(2193), 1, + anon_sym_DOT, + ACTIONS(2883), 1, + anon_sym_QMARK_DOT, + ACTIONS(2941), 1, + anon_sym_as, + ACTIONS(2945), 1, + anon_sym_BANG, + ACTIONS(3514), 1, + anon_sym_LT, + ACTIONS(3516), 1, + anon_sym_QMARK, + ACTIONS(3518), 1, + anon_sym_AMP_AMP, + ACTIONS(3524), 1, + anon_sym_AMP, + ACTIONS(3526), 1, + anon_sym_PIPE, + ACTIONS(3530), 1, + anon_sym_STAR_STAR, + ACTIONS(3534), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3708), 1, + anon_sym_RBRACK, + STATE(2547), 1, + sym_type_arguments, + ACTIONS(2971), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3520), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(3528), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1126), 2, + sym_template_string, + sym_arguments, + ACTIONS(3510), 3, anon_sym_STAR, - ACTIONS(3608), 1, - anon_sym_async, - ACTIONS(3610), 1, - sym_number, - ACTIONS(3612), 1, - anon_sym_static, - ACTIONS(3614), 1, - anon_sym_abstract, - ACTIONS(3618), 1, - sym_readonly, - ACTIONS(3657), 1, - anon_sym_RBRACE, - STATE(1843), 1, - sym_method_definition, - STATE(1872), 1, - sym_accessibility_modifier, - ACTIONS(3616), 2, - anon_sym_get, - anon_sym_set, - STATE(1513), 2, - sym_decorator, - aux_sym_class_body_repeat1, - ACTIONS(2770), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(1932), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(2640), 4, - sym_public_field_definition, - sym_method_signature, - sym_abstract_method_signature, - sym_index_signature, - ACTIONS(2750), 11, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [70785] = 3, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(3522), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(3512), 4, + anon_sym_in, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3532), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [70611] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1523), 15, + ACTIONS(2191), 1, + anon_sym_LBRACK, + ACTIONS(2193), 1, + anon_sym_DOT, + ACTIONS(2195), 1, + anon_sym_QMARK_DOT, + ACTIONS(1547), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(3000), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1037), 11, anon_sym_STAR, - anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, - anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1521), 24, + ACTIONS(1039), 20, anon_sym_as, - anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -124927,36 +125127,39 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, - anon_sym_LBRACE_PIPE, - [70832] = 3, + [70668] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3154), 14, + ACTIONS(2191), 1, + anon_sym_LBRACK, + ACTIONS(2193), 1, + anon_sym_DOT, + ACTIONS(2195), 1, + anon_sym_QMARK_DOT, + ACTIONS(1712), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(3040), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1037), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_LT, - anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3054), 25, - sym__automatic_semicolon, + ACTIONS(1039), 20, 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_COLON, + anon_sym_RBRACK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -124973,10 +125176,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [70879] = 3, + [70725] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1057), 14, + ACTIONS(3146), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -124991,7 +125194,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1059), 25, + ACTIONS(3148), 25, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, @@ -125017,10 +125220,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [70926] = 3, + [70772] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1519), 15, + ACTIONS(1553), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -125036,7 +125239,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1517), 24, + ACTIONS(1551), 24, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -125061,10 +125264,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_LBRACE_PIPE, - [70973] = 3, + [70819] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3029), 14, + ACTIONS(3139), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -125079,7 +125282,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3031), 25, + ACTIONS(3141), 25, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, @@ -125105,10 +125308,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [71020] = 3, + [70866] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3292), 14, + ACTIONS(3250), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -125123,7 +125326,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3294), 25, + ACTIONS(2943), 25, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, @@ -125149,70 +125352,76 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [71067] = 7, + [70913] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(2175), 1, + ACTIONS(479), 1, + anon_sym_BQUOTE, + ACTIONS(2161), 1, + anon_sym_LPAREN, + ACTIONS(2191), 1, anon_sym_LBRACK, - ACTIONS(2177), 1, + ACTIONS(2193), 1, anon_sym_DOT, - ACTIONS(2179), 1, + ACTIONS(2883), 1, anon_sym_QMARK_DOT, - ACTIONS(3659), 1, - anon_sym_EQ, - ACTIONS(1097), 14, - anon_sym_STAR, + ACTIONS(2941), 1, + anon_sym_as, + ACTIONS(2945), 1, anon_sym_BANG, - anon_sym_in, + ACTIONS(3514), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(3516), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(3518), 1, + anon_sym_AMP_AMP, + ACTIONS(3524), 1, anon_sym_AMP, + ACTIONS(3526), 1, anon_sym_PIPE, + ACTIONS(3530), 1, + anon_sym_STAR_STAR, + ACTIONS(3534), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3710), 1, + anon_sym_COLON, + STATE(2547), 1, + sym_type_arguments, + ACTIONS(2971), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3520), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(3528), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1099), 21, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + STATE(1126), 2, + sym_template_string, + sym_arguments, + ACTIONS(3510), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(3522), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(3512), 4, + anon_sym_in, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3532), 5, 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_implements, - [71122] = 8, + [71004] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2175), 1, - anon_sym_LBRACK, - ACTIONS(2177), 1, - anon_sym_DOT, - ACTIONS(2179), 1, - anon_sym_QMARK_DOT, - ACTIONS(1525), 2, - anon_sym_RPAREN, - anon_sym_extends, - ACTIONS(1527), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1097), 12, + ACTIONS(3168), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -125221,15 +125430,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_QMARK, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1099), 20, + ACTIONS(3170), 25, + sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_COLON, + 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, @@ -125246,39 +125462,34 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [71179] = 8, + [71051] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2266), 1, - anon_sym_LBRACK, - ACTIONS(2272), 1, - anon_sym_QMARK_DOT, - ACTIONS(2282), 1, - anon_sym_DOT, - ACTIONS(1595), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(3022), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1097), 11, + ACTIONS(3119), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_LT, + anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1099), 20, + ACTIONS(3121), 25, sym__automatic_semicolon, 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, @@ -125295,10 +125506,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [71236] = 3, + [71098] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(965), 14, + ACTIONS(3246), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -125313,7 +125524,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(967), 25, + ACTIONS(3248), 25, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, @@ -125339,11 +125550,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [71283] = 3, + [71145] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1067), 14, + ACTIONS(3648), 1, + anon_sym_LBRACK, + ACTIONS(1545), 15, anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -125357,14 +125571,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1069), 25, - sym__automatic_semicolon, + ACTIONS(1543), 23, 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, @@ -125383,37 +125593,107 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [71330] = 7, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + [71194] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(2175), 1, + ACTIONS(479), 1, + anon_sym_BQUOTE, + ACTIONS(2161), 1, + anon_sym_LPAREN, + ACTIONS(2191), 1, anon_sym_LBRACK, - ACTIONS(2177), 1, + ACTIONS(2193), 1, anon_sym_DOT, - ACTIONS(2179), 1, + ACTIONS(2883), 1, anon_sym_QMARK_DOT, - ACTIONS(3661), 1, - anon_sym_EQ, - ACTIONS(1097), 14, + ACTIONS(2941), 1, + anon_sym_as, + ACTIONS(2945), 1, + anon_sym_BANG, + ACTIONS(3514), 1, + anon_sym_LT, + ACTIONS(3516), 1, + anon_sym_QMARK, + ACTIONS(3518), 1, + anon_sym_AMP_AMP, + ACTIONS(3524), 1, + anon_sym_AMP, + ACTIONS(3526), 1, + anon_sym_PIPE, + ACTIONS(3530), 1, + anon_sym_STAR_STAR, + ACTIONS(3534), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3712), 1, + anon_sym_COLON, + STATE(2547), 1, + sym_type_arguments, + ACTIONS(2971), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3520), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(3528), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1126), 2, + sym_template_string, + sym_arguments, + ACTIONS(3510), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(3522), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(3512), 4, + anon_sym_in, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3532), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [71285] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2282), 1, + anon_sym_LBRACK, + ACTIONS(2288), 1, + anon_sym_QMARK_DOT, + ACTIONS(2298), 1, + anon_sym_DOT, + ACTIONS(1547), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(3000), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1037), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_LT, - anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1099), 21, + ACTIONS(1039), 20, + sym__automatic_semicolon, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -125430,12 +125710,20 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_implements, - [71385] = 3, + [71342] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3288), 14, + ACTIONS(2314), 1, + anon_sym_LBRACK, + ACTIONS(2320), 1, + anon_sym_QMARK_DOT, + ACTIONS(2470), 1, + anon_sym_DOT, + ACTIONS(3714), 1, + anon_sym_EQ, + ACTIONS(1037), 15, anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -125449,16 +125737,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3290), 25, - sym__automatic_semicolon, + ACTIONS(1039), 20, 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, @@ -125475,10 +125757,19 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [71432] = 3, + anon_sym_LBRACE_PIPE, + [71397] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1105), 14, + ACTIONS(2282), 1, + anon_sym_LBRACK, + ACTIONS(2288), 1, + anon_sym_QMARK_DOT, + ACTIONS(2298), 1, + anon_sym_DOT, + ACTIONS(3716), 1, + anon_sym_EQ, + ACTIONS(1037), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -125493,16 +125784,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1107), 25, + ACTIONS(1039), 21, sym__automatic_semicolon, 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, @@ -125519,10 +125806,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [71479] = 3, + [71452] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3284), 14, + ACTIONS(3238), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -125537,7 +125824,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3286), 25, + ACTIONS(3240), 25, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, @@ -125563,11 +125850,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [71526] = 3, + [71499] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3280), 14, + ACTIONS(1549), 15, anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -125581,13 +125869,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3282), 25, - sym__automatic_semicolon, + ACTIONS(1547), 24, 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, @@ -125607,7 +125892,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [71573] = 22, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + [71546] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(109), 1, @@ -125620,45 +125907,45 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(847), 1, anon_sym_SQUOTE, - ACTIONS(1722), 1, + ACTIONS(1728), 1, anon_sym_LBRACE, - ACTIONS(3643), 1, + ACTIONS(3660), 1, anon_sym_LBRACK, - ACTIONS(3647), 1, + ACTIONS(3664), 1, sym_number, - ACTIONS(3665), 1, + ACTIONS(3720), 1, anon_sym_RBRACE, - ACTIONS(3667), 1, + ACTIONS(3722), 1, anon_sym_async, - ACTIONS(3669), 1, + ACTIONS(3724), 1, anon_sym_static, - ACTIONS(3675), 1, + ACTIONS(3730), 1, sym_readonly, - STATE(1875), 1, + STATE(1883), 1, sym_accessibility_modifier, - STATE(2718), 1, + STATE(2673), 1, aux_sym_object_repeat1, - STATE(3086), 1, - sym_array, - STATE(3204), 1, + STATE(3037), 1, sym_object, - ACTIONS(3671), 2, + STATE(3038), 1, + sym_array, + ACTIONS(3726), 2, anon_sym_get, anon_sym_set, - ACTIONS(3673), 3, + ACTIONS(3728), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(2109), 3, + STATE(2084), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(2716), 4, + STATE(2671), 4, sym_assignment_pattern, sym_spread_element, sym_method_definition, sym_pair, - ACTIONS(3663), 11, + ACTIONS(3718), 11, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -125670,11 +125957,20 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [71658] = 3, + [71631] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1047), 14, + ACTIONS(2314), 1, + anon_sym_LBRACK, + ACTIONS(2320), 1, + anon_sym_QMARK_DOT, + ACTIONS(2470), 1, + anon_sym_DOT, + ACTIONS(3732), 1, + anon_sym_EQ, + ACTIONS(1037), 15, anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -125688,16 +125984,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1049), 25, - sym__automatic_semicolon, + ACTIONS(1039), 20, 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, @@ -125714,11 +126004,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [71705] = 3, + anon_sym_LBRACE_PIPE, + [71686] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3278), 14, + ACTIONS(1187), 15, anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -125732,13 +126024,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2953), 25, - sym__automatic_semicolon, + ACTIONS(1185), 24, 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, @@ -125758,39 +126047,35 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [71752] = 8, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + [71733] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2175), 1, - anon_sym_LBRACK, - ACTIONS(2177), 1, - anon_sym_DOT, - ACTIONS(2179), 1, - anon_sym_QMARK_DOT, - ACTIONS(1734), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(3016), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1097), 11, + ACTIONS(2887), 16, anon_sym_STAR, + anon_sym_EQ, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, + anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1099), 20, + ACTIONS(2889), 23, anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -125807,11 +126092,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [71809] = 3, + anon_sym_LBRACE_PIPE, + [71780] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3276), 14, + ACTIONS(2899), 16, anon_sym_STAR, + anon_sym_EQ, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -125825,13 +126113,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2951), 25, - sym__automatic_semicolon, + ACTIONS(2901), 23, 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, @@ -125851,39 +126136,34 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [71856] = 8, + anon_sym_LBRACE_PIPE, + [71827] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2175), 1, - anon_sym_LBRACK, - ACTIONS(2177), 1, - anon_sym_DOT, - ACTIONS(2179), 1, - anon_sym_QMARK_DOT, - ACTIONS(1595), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(3022), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1097), 11, + ACTIONS(2893), 16, anon_sym_STAR, + anon_sym_EQ, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, + anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1099), 20, + ACTIONS(2895), 23, anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -125900,13 +126180,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [71913] = 3, + anon_sym_LBRACE_PIPE, + [71874] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2891), 16, + ACTIONS(3234), 14, anon_sym_STAR, - anon_sym_EQ, - anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -125920,10 +126199,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2893), 23, + ACTIONS(3236), 25, + sym__automatic_semicolon, 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, @@ -125943,19 +126225,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, - [71960] = 6, + [71921] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3677), 1, - anon_sym_AMP, - ACTIONS(3679), 1, - anon_sym_PIPE, - ACTIONS(3681), 1, - anon_sym_extends, - ACTIONS(3029), 13, + ACTIONS(3230), 14, anon_sym_STAR, - anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -125963,14 +126237,19 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_QMARK, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3031), 23, + ACTIONS(3232), 25, + sym__automatic_semicolon, 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, @@ -125978,41 +126257,95 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, + 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, + [71968] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(479), 1, + anon_sym_BQUOTE, + ACTIONS(2161), 1, + anon_sym_LPAREN, + ACTIONS(2191), 1, + anon_sym_LBRACK, + ACTIONS(2193), 1, + anon_sym_DOT, + ACTIONS(2883), 1, + anon_sym_QMARK_DOT, + ACTIONS(2941), 1, + anon_sym_as, + ACTIONS(2945), 1, + anon_sym_BANG, + ACTIONS(3514), 1, + anon_sym_LT, + ACTIONS(3516), 1, + anon_sym_QMARK, + ACTIONS(3518), 1, + anon_sym_AMP_AMP, + ACTIONS(3524), 1, + anon_sym_AMP, + ACTIONS(3526), 1, + anon_sym_PIPE, + ACTIONS(3530), 1, + anon_sym_STAR_STAR, + ACTIONS(3534), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3734), 1, + anon_sym_COLON, + STATE(2547), 1, + sym_type_arguments, + ACTIONS(2971), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3520), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(3528), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1126), 2, + sym_template_string, + sym_arguments, + ACTIONS(3510), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(3522), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(3512), 4, + anon_sym_in, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3532), 5, 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_LBRACE_PIPE, - [72013] = 9, + [72059] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2266), 1, - anon_sym_LBRACK, - ACTIONS(2272), 1, - anon_sym_QMARK_DOT, - ACTIONS(2282), 1, - anon_sym_DOT, - ACTIONS(3683), 1, - anon_sym_LPAREN, - ACTIONS(3686), 1, - anon_sym_COLON, - ACTIONS(3688), 2, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(1097), 12, + ACTIONS(3226), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_SLASH, + anon_sym_QMARK, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -126020,11 +126353,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1099), 20, + ACTIONS(3228), 25, sym__automatic_semicolon, 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, @@ -126041,18 +126379,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [72072] = 7, + [72106] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2266), 1, - anon_sym_LBRACK, - ACTIONS(2272), 1, - anon_sym_QMARK_DOT, - ACTIONS(2282), 1, - anon_sym_DOT, - ACTIONS(3691), 1, - anon_sym_EQ, - ACTIONS(1097), 14, + ACTIONS(3222), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -126067,12 +126397,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1099), 21, + ACTIONS(3224), 25, sym__automatic_semicolon, 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, @@ -126089,10 +126423,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [72127] = 3, + [72153] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(941), 14, + ACTIONS(2191), 1, + anon_sym_LBRACK, + ACTIONS(2193), 1, + anon_sym_DOT, + ACTIONS(2195), 1, + anon_sym_QMARK_DOT, + ACTIONS(1525), 2, + anon_sym_RPAREN, + anon_sym_extends, + ACTIONS(1527), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1037), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -126101,22 +126447,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_QMARK, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(943), 25, - sym__automatic_semicolon, + ACTIONS(1039), 20, 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_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -126133,10 +126472,72 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [72174] = 3, + [72210] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1037), 14, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(2342), 1, + anon_sym_DASH, + ACTIONS(2344), 1, + anon_sym_DQUOTE, + ACTIONS(2346), 1, + anon_sym_SQUOTE, + ACTIONS(2810), 1, + anon_sym_LBRACK, + ACTIONS(3614), 1, + anon_sym_STAR, + ACTIONS(3618), 1, + anon_sym_async, + ACTIONS(3620), 1, + sym_number, + ACTIONS(3622), 1, + anon_sym_static, + ACTIONS(3624), 1, + anon_sym_abstract, + ACTIONS(3628), 1, + sym_readonly, + ACTIONS(3736), 1, + anon_sym_RBRACE, + STATE(1850), 1, + sym_method_definition, + STATE(1870), 1, + sym_accessibility_modifier, + ACTIONS(3626), 2, + anon_sym_get, + anon_sym_set, + STATE(1558), 2, + sym_decorator, + aux_sym_class_body_repeat1, + ACTIONS(2820), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(1936), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(2730), 4, + sym_public_field_definition, + sym_method_signature, + sym_abstract_method_signature, + sym_index_signature, + ACTIONS(2804), 11, + anon_sym_export, + anon_sym_namespace, + anon_sym_type, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [72293] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3218), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -126151,7 +126552,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1039), 25, + ACTIONS(3220), 25, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, @@ -126177,10 +126578,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [72221] = 3, + [72340] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3270), 14, + ACTIONS(3214), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -126195,7 +126596,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2949), 25, + ACTIONS(3216), 25, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, @@ -126221,10 +126622,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [72268] = 3, + [72387] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3062), 14, + ACTIONS(2282), 1, + anon_sym_LBRACK, + ACTIONS(2288), 1, + anon_sym_QMARK_DOT, + ACTIONS(2298), 1, + anon_sym_DOT, + ACTIONS(3738), 1, + anon_sym_EQ, + ACTIONS(1037), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -126239,16 +126648,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3064), 25, + ACTIONS(1039), 21, sym__automatic_semicolon, 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, @@ -126265,11 +126670,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [72315] = 3, + [72442] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(2342), 1, + anon_sym_DASH, + ACTIONS(2344), 1, + anon_sym_DQUOTE, + ACTIONS(2346), 1, + anon_sym_SQUOTE, + ACTIONS(2810), 1, + anon_sym_LBRACK, + ACTIONS(3614), 1, + anon_sym_STAR, + ACTIONS(3618), 1, + anon_sym_async, + ACTIONS(3620), 1, + sym_number, + ACTIONS(3622), 1, + anon_sym_static, + ACTIONS(3624), 1, + anon_sym_abstract, + ACTIONS(3628), 1, + sym_readonly, + ACTIONS(3740), 1, + anon_sym_RBRACE, + STATE(1850), 1, + sym_method_definition, + STATE(1870), 1, + sym_accessibility_modifier, + ACTIONS(3626), 2, + anon_sym_get, + anon_sym_set, + STATE(1588), 2, + sym_decorator, + aux_sym_class_body_repeat1, + ACTIONS(2820), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(1936), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(2730), 4, + sym_public_field_definition, + sym_method_signature, + sym_abstract_method_signature, + sym_index_signature, + ACTIONS(2804), 11, + anon_sym_export, + anon_sym_namespace, + anon_sym_type, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [72525] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1017), 14, + ACTIONS(1593), 15, anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -126283,13 +126751,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1019), 25, - sym__automatic_semicolon, + ACTIONS(1591), 24, 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, @@ -126309,14 +126774,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [72362] = 5, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + [72572] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2161), 1, - anon_sym_LPAREN, - STATE(1691), 1, - sym_arguments, - ACTIONS(3046), 15, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(2342), 1, + anon_sym_DASH, + ACTIONS(2344), 1, + anon_sym_DQUOTE, + ACTIONS(2346), 1, + anon_sym_SQUOTE, + ACTIONS(2810), 1, + anon_sym_LBRACK, + ACTIONS(3614), 1, + anon_sym_STAR, + ACTIONS(3618), 1, + anon_sym_async, + ACTIONS(3620), 1, + sym_number, + ACTIONS(3622), 1, + anon_sym_static, + ACTIONS(3624), 1, + anon_sym_abstract, + ACTIONS(3628), 1, + sym_readonly, + ACTIONS(3742), 1, + anon_sym_RBRACE, + STATE(1850), 1, + sym_method_definition, + STATE(1870), 1, + sym_accessibility_modifier, + ACTIONS(3626), 2, + anon_sym_get, + anon_sym_set, + STATE(1588), 2, + sym_decorator, + aux_sym_class_body_repeat1, + ACTIONS(2820), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(1936), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(2730), 4, + sym_public_field_definition, + sym_method_signature, + sym_abstract_method_signature, + sym_index_signature, + ACTIONS(2804), 11, + anon_sym_export, + anon_sym_namespace, + anon_sym_type, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [72655] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1605), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -126332,9 +126857,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3048), 22, + ACTIONS(1603), 24, anon_sym_as, anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -126354,15 +126880,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, + anon_sym_extends, anon_sym_LBRACE_PIPE, - [72413] = 5, + [72702] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2161), 1, - anon_sym_LPAREN, - STATE(1690), 1, - sym_arguments, - ACTIONS(3050), 15, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(2342), 1, + anon_sym_DASH, + ACTIONS(2344), 1, + anon_sym_DQUOTE, + ACTIONS(2346), 1, + anon_sym_SQUOTE, + ACTIONS(2810), 1, + anon_sym_LBRACK, + ACTIONS(3614), 1, + anon_sym_STAR, + ACTIONS(3618), 1, + anon_sym_async, + ACTIONS(3620), 1, + sym_number, + ACTIONS(3622), 1, + anon_sym_static, + ACTIONS(3624), 1, + anon_sym_abstract, + ACTIONS(3628), 1, + sym_readonly, + ACTIONS(3744), 1, + anon_sym_RBRACE, + STATE(1850), 1, + sym_method_definition, + STATE(1870), 1, + sym_accessibility_modifier, + ACTIONS(3626), 2, + anon_sym_get, + anon_sym_set, + STATE(1588), 2, + sym_decorator, + aux_sym_class_body_repeat1, + ACTIONS(2820), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(1936), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(2730), 4, + sym_public_field_definition, + sym_method_signature, + sym_abstract_method_signature, + sym_index_signature, + ACTIONS(2804), 11, + anon_sym_export, + anon_sym_namespace, + anon_sym_type, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [72785] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1597), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -126378,9 +126963,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3052), 22, + ACTIONS(1595), 24, anon_sym_as, anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -126400,13 +126986,76 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, + anon_sym_extends, anon_sym_LBRACE_PIPE, - [72464] = 3, + [72832] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(2895), 16, + ACTIONS(109), 1, + anon_sym_STAR, + ACTIONS(113), 1, + anon_sym_COMMA, + ACTIONS(123), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(845), 1, + anon_sym_DQUOTE, + ACTIONS(847), 1, + anon_sym_SQUOTE, + ACTIONS(1728), 1, + anon_sym_LBRACE, + ACTIONS(3660), 1, + anon_sym_LBRACK, + ACTIONS(3664), 1, + sym_number, + ACTIONS(3748), 1, + anon_sym_RBRACE, + ACTIONS(3750), 1, + anon_sym_async, + ACTIONS(3752), 1, + anon_sym_static, + ACTIONS(3758), 1, + sym_readonly, + STATE(1883), 1, + sym_accessibility_modifier, + STATE(2736), 1, + aux_sym_object_repeat1, + STATE(3037), 1, + sym_object, + STATE(3038), 1, + sym_array, + ACTIONS(3754), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3756), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(2084), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(2734), 4, + sym_assignment_pattern, + sym_spread_element, + sym_method_definition, + sym_pair, + ACTIONS(3746), 11, + anon_sym_export, + anon_sym_namespace, + anon_sym_type, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [72917] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1577), 15, anon_sym_STAR, - anon_sym_EQ, anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, @@ -126421,7 +127070,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2897), 23, + ACTIONS(1575), 24, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -126444,15 +127093,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, + anon_sym_extends, anon_sym_LBRACE_PIPE, - [72511] = 4, + [72964] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3693), 1, - sym_regex_flags, - ACTIONS(3383), 17, + ACTIONS(2907), 16, anon_sym_STAR, - anon_sym_as, + anon_sym_EQ, anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, @@ -126467,8 +127115,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_instanceof, - ACTIONS(3385), 21, + ACTIONS(2909), 23, + anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -126486,17 +127134,16 @@ static 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_LBRACE_PIPE, - [72560] = 3, + [73011] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2899), 16, + ACTIONS(1037), 14, anon_sym_STAR, - anon_sym_EQ, - anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -126510,10 +127157,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2901), 23, + ACTIONS(1039), 25, + sym__automatic_semicolon, 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, @@ -126533,13 +127183,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, - [72607] = 3, + [73058] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1507), 15, + ACTIONS(3330), 14, anon_sym_STAR, - anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -126553,10 +127201,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1505), 24, + ACTIONS(3332), 25, + sym__automatic_semicolon, 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, @@ -126576,16 +127227,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, - anon_sym_LBRACE_PIPE, - [72654] = 4, + [73105] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3387), 1, - sym_regex_flags, - ACTIONS(3383), 17, + ACTIONS(1499), 15, anon_sym_STAR, - anon_sym_as, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -126599,10 +127246,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_instanceof, - anon_sym_implements, - ACTIONS(3385), 21, - anon_sym_LBRACE, + ACTIONS(1497), 24, + anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -126620,13 +127265,16 @@ static 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, - [72703] = 3, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + [73152] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1557), 15, + ACTIONS(1511), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -126642,7 +127290,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1555), 24, + ACTIONS(1509), 24, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -126667,10 +127315,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_LBRACE_PIPE, - [72750] = 3, + [73199] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1499), 15, + ACTIONS(1585), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -126686,7 +127334,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1497), 24, + ACTIONS(1583), 24, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -126711,38 +127359,38 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_LBRACE_PIPE, - [72797] = 7, + [73246] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2266), 1, + ACTIONS(2314), 1, anon_sym_LBRACK, - ACTIONS(2272), 1, + ACTIONS(2320), 1, anon_sym_QMARK_DOT, - ACTIONS(2282), 1, + ACTIONS(2470), 1, anon_sym_DOT, - ACTIONS(3695), 1, - anon_sym_EQ, - ACTIONS(1097), 14, + ACTIONS(1525), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(1527), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1037), 12, anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, - anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1099), 21, - sym__automatic_semicolon, + ACTIONS(1039), 19, anon_sym_as, - anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -126759,57 +127407,58 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [72852] = 21, + anon_sym_LBRACE_PIPE, + [73303] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(91), 1, anon_sym_AT, - ACTIONS(2316), 1, + ACTIONS(2342), 1, anon_sym_DASH, - ACTIONS(2318), 1, + ACTIONS(2344), 1, anon_sym_DQUOTE, - ACTIONS(2320), 1, + ACTIONS(2346), 1, anon_sym_SQUOTE, - ACTIONS(2760), 1, + ACTIONS(2810), 1, anon_sym_LBRACK, - ACTIONS(3604), 1, + ACTIONS(3614), 1, anon_sym_STAR, - ACTIONS(3608), 1, + ACTIONS(3618), 1, anon_sym_async, - ACTIONS(3610), 1, + ACTIONS(3620), 1, sym_number, - ACTIONS(3612), 1, + ACTIONS(3622), 1, anon_sym_static, - ACTIONS(3614), 1, + ACTIONS(3624), 1, anon_sym_abstract, - ACTIONS(3618), 1, + ACTIONS(3628), 1, sym_readonly, - ACTIONS(3697), 1, + ACTIONS(3760), 1, anon_sym_RBRACE, - STATE(1843), 1, + STATE(1850), 1, sym_method_definition, - STATE(1872), 1, + STATE(1870), 1, sym_accessibility_modifier, - ACTIONS(3616), 2, + ACTIONS(3626), 2, anon_sym_get, anon_sym_set, - STATE(1589), 2, + STATE(1588), 2, sym_decorator, aux_sym_class_body_repeat1, - ACTIONS(2770), 3, + ACTIONS(2820), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(1932), 3, + STATE(1936), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(2640), 4, + STATE(2730), 4, sym_public_field_definition, sym_method_signature, sym_abstract_method_signature, sym_index_signature, - ACTIONS(2750), 11, + ACTIONS(2804), 11, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -126821,10 +127470,54 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [72935] = 3, + [73386] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1065), 14, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1067), 25, + sym__automatic_semicolon, + 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, + [73433] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3150), 14, + ACTIONS(3131), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -126839,7 +127532,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3152), 25, + ACTIONS(3057), 25, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, @@ -126865,10 +127558,72 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [72982] = 3, + [73480] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(2342), 1, + anon_sym_DASH, + ACTIONS(2344), 1, + anon_sym_DQUOTE, + ACTIONS(2346), 1, + anon_sym_SQUOTE, + ACTIONS(2810), 1, + anon_sym_LBRACK, + ACTIONS(3614), 1, + anon_sym_STAR, + ACTIONS(3618), 1, + anon_sym_async, + ACTIONS(3620), 1, + sym_number, + ACTIONS(3622), 1, + anon_sym_static, + ACTIONS(3624), 1, + anon_sym_abstract, + ACTIONS(3628), 1, + sym_readonly, + ACTIONS(3762), 1, + anon_sym_RBRACE, + STATE(1850), 1, + sym_method_definition, + STATE(1870), 1, + sym_accessibility_modifier, + ACTIONS(3626), 2, + anon_sym_get, + anon_sym_set, + STATE(1579), 2, + sym_decorator, + aux_sym_class_body_repeat1, + ACTIONS(2820), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(1936), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(2730), 4, + sym_public_field_definition, + sym_method_signature, + sym_abstract_method_signature, + sym_index_signature, + ACTIONS(2804), 11, + anon_sym_export, + anon_sym_namespace, + anon_sym_type, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [73563] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3146), 14, + ACTIONS(1095), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -126883,7 +127638,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3148), 25, + ACTIONS(1097), 25, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, @@ -126909,31 +127664,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [73029] = 10, + [73610] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2175), 1, - anon_sym_LBRACK, - ACTIONS(2177), 1, - anon_sym_DOT, - ACTIONS(2179), 1, - anon_sym_QMARK_DOT, - ACTIONS(3620), 1, - anon_sym_EQ, - ACTIONS(3626), 1, - anon_sym_QMARK, - ACTIONS(3699), 1, - anon_sym_COLON, - ACTIONS(3623), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(1097), 13, + ACTIONS(1105), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, + anon_sym_QMARK, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -126941,9 +127682,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1099), 18, + ACTIONS(1107), 25, + sym__automatic_semicolon, 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, @@ -126960,57 +127708,57 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [73090] = 21, + [73657] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(91), 1, anon_sym_AT, - ACTIONS(2316), 1, + ACTIONS(2342), 1, anon_sym_DASH, - ACTIONS(2318), 1, + ACTIONS(2344), 1, anon_sym_DQUOTE, - ACTIONS(2320), 1, + ACTIONS(2346), 1, anon_sym_SQUOTE, - ACTIONS(2760), 1, + ACTIONS(2810), 1, anon_sym_LBRACK, - ACTIONS(3604), 1, + ACTIONS(3614), 1, anon_sym_STAR, - ACTIONS(3608), 1, + ACTIONS(3618), 1, anon_sym_async, - ACTIONS(3610), 1, + ACTIONS(3620), 1, sym_number, - ACTIONS(3612), 1, + ACTIONS(3622), 1, anon_sym_static, - ACTIONS(3614), 1, + ACTIONS(3624), 1, anon_sym_abstract, - ACTIONS(3618), 1, + ACTIONS(3628), 1, sym_readonly, - ACTIONS(3701), 1, + ACTIONS(3764), 1, anon_sym_RBRACE, - STATE(1843), 1, + STATE(1850), 1, sym_method_definition, - STATE(1872), 1, + STATE(1870), 1, sym_accessibility_modifier, - ACTIONS(3616), 2, + ACTIONS(3626), 2, anon_sym_get, anon_sym_set, - STATE(1589), 2, + STATE(1588), 2, sym_decorator, aux_sym_class_body_repeat1, - ACTIONS(2770), 3, + ACTIONS(2820), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(1932), 3, + STATE(1936), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(2640), 4, + STATE(2730), 4, sym_public_field_definition, sym_method_signature, sym_abstract_method_signature, sym_index_signature, - ACTIONS(2750), 11, + ACTIONS(2804), 11, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -127022,31 +127770,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [73173] = 10, + [73740] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2175), 1, - anon_sym_LBRACK, - ACTIONS(2177), 1, - anon_sym_DOT, - ACTIONS(2179), 1, - anon_sym_QMARK_DOT, - ACTIONS(3703), 1, - anon_sym_EQ, - ACTIONS(3709), 1, - anon_sym_COLON, - ACTIONS(3711), 1, - anon_sym_QMARK, - ACTIONS(3706), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(1097), 13, + ACTIONS(1075), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, + anon_sym_QMARK, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -127054,9 +127788,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1099), 18, + ACTIONS(1077), 25, + sym__automatic_semicolon, 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, @@ -127073,11 +127814,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [73234] = 3, + [73787] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 14, + ACTIONS(1573), 15, anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -127091,13 +127833,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3033), 25, - sym__automatic_semicolon, + ACTIONS(1571), 24, 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, @@ -127117,12 +127856,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [73281] = 3, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + [73834] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1581), 15, + ACTIONS(985), 14, anon_sym_STAR, - anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -127136,10 +127876,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1579), 24, + ACTIONS(987), 25, + sym__automatic_semicolon, 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, @@ -127159,33 +127902,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, - anon_sym_LBRACE_PIPE, - [73328] = 10, + [73881] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2175), 1, - anon_sym_LBRACK, - ACTIONS(2177), 1, - anon_sym_DOT, - ACTIONS(2179), 1, - anon_sym_QMARK_DOT, - ACTIONS(2370), 1, - anon_sym_QMARK, - ACTIONS(2620), 1, - anon_sym_COLON, - ACTIONS(3579), 1, - anon_sym_EQ, - ACTIONS(2361), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(1097), 13, + ACTIONS(1557), 15, anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, + anon_sym_QMARK, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -127193,9 +127921,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1099), 18, + ACTIONS(1555), 24, anon_sym_as, + anon_sym_COMMA, 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, @@ -127212,12 +127944,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [73389] = 3, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + [73928] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1511), 15, + ACTIONS(3127), 14, anon_sym_STAR, - anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -127231,10 +127964,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1509), 24, + ACTIONS(3129), 25, + sym__automatic_semicolon, 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, @@ -127254,17 +127990,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, - anon_sym_LBRACE_PIPE, - [73436] = 3, + [73975] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1565), 15, + ACTIONS(3021), 1, + anon_sym_LT, + ACTIONS(947), 14, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -127275,7 +128010,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1563), 24, + ACTIONS(945), 24, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -127300,17 +128035,28 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_LBRACE_PIPE, - [73483] = 3, + [74024] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3246), 14, + ACTIONS(2282), 1, + anon_sym_LBRACK, + ACTIONS(2288), 1, + anon_sym_QMARK_DOT, + ACTIONS(2298), 1, + anon_sym_DOT, + ACTIONS(3766), 1, + anon_sym_LPAREN, + ACTIONS(3769), 1, + anon_sym_COLON, + ACTIONS(3771), 2, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(1037), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, - anon_sym_QMARK, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -127318,16 +128064,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3248), 25, + ACTIONS(1039), 20, sym__automatic_semicolon, 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, @@ -127344,57 +128085,57 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [73530] = 21, + [74083] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(91), 1, anon_sym_AT, - ACTIONS(2316), 1, + ACTIONS(2342), 1, anon_sym_DASH, - ACTIONS(2318), 1, + ACTIONS(2344), 1, anon_sym_DQUOTE, - ACTIONS(2320), 1, + ACTIONS(2346), 1, anon_sym_SQUOTE, - ACTIONS(2760), 1, + ACTIONS(2810), 1, anon_sym_LBRACK, - ACTIONS(3604), 1, + ACTIONS(3614), 1, anon_sym_STAR, - ACTIONS(3608), 1, + ACTIONS(3618), 1, anon_sym_async, - ACTIONS(3610), 1, + ACTIONS(3620), 1, sym_number, - ACTIONS(3612), 1, + ACTIONS(3622), 1, anon_sym_static, - ACTIONS(3614), 1, + ACTIONS(3624), 1, anon_sym_abstract, - ACTIONS(3618), 1, + ACTIONS(3628), 1, sym_readonly, - ACTIONS(3714), 1, + ACTIONS(3774), 1, anon_sym_RBRACE, - STATE(1843), 1, + STATE(1850), 1, sym_method_definition, - STATE(1872), 1, + STATE(1870), 1, sym_accessibility_modifier, - ACTIONS(3616), 2, + ACTIONS(3626), 2, anon_sym_get, anon_sym_set, - STATE(1570), 2, + STATE(1560), 2, sym_decorator, aux_sym_class_body_repeat1, - ACTIONS(2770), 3, + ACTIONS(2820), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(1932), 3, + STATE(1936), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(2640), 4, + STATE(2730), 4, sym_public_field_definition, sym_method_signature, sym_abstract_method_signature, sym_index_signature, - ACTIONS(2750), 11, + ACTIONS(2804), 11, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -127406,59 +128147,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [73613] = 8, + [74166] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2379), 1, - anon_sym_LBRACK, - ACTIONS(2385), 1, - anon_sym_QMARK_DOT, - ACTIONS(2410), 1, - anon_sym_DOT, - ACTIONS(1525), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(1527), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1097), 12, + ACTIONS(3779), 1, anon_sym_STAR, - anon_sym_LBRACE, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_SLASH, - anon_sym_QMARK, - anon_sym_GT_GT, - anon_sym_PLUS, + ACTIONS(3782), 1, + anon_sym_RBRACE, + ACTIONS(3784), 1, + anon_sym_LBRACK, + ACTIONS(3787), 1, + anon_sym_async, + ACTIONS(3790), 1, anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1099), 19, - 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, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, - [73670] = 3, + ACTIONS(3793), 1, + anon_sym_DQUOTE, + ACTIONS(3796), 1, + anon_sym_SQUOTE, + ACTIONS(3799), 1, + sym_number, + ACTIONS(3802), 1, + anon_sym_AT, + ACTIONS(3805), 1, + anon_sym_static, + ACTIONS(3808), 1, + anon_sym_abstract, + ACTIONS(3817), 1, + sym_readonly, + STATE(1850), 1, + sym_method_definition, + STATE(1870), 1, + sym_accessibility_modifier, + ACTIONS(3811), 2, + anon_sym_get, + anon_sym_set, + STATE(1588), 2, + sym_decorator, + aux_sym_class_body_repeat1, + ACTIONS(3814), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(1936), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(2730), 4, + sym_public_field_definition, + sym_method_signature, + sym_abstract_method_signature, + sym_index_signature, + ACTIONS(3776), 11, + anon_sym_export, + anon_sym_namespace, + anon_sym_type, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [74249] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1573), 15, + ACTIONS(1583), 2, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(1585), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1581), 13, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -127468,17 +128228,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_QMARK, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1571), 24, + ACTIONS(1579), 22, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -127497,12 +128254,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, anon_sym_LBRACE_PIPE, - [73717] = 3, + [74300] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1577), 15, + ACTIONS(1523), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -127518,7 +128274,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1575), 24, + ACTIONS(1521), 24, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -127543,154 +128299,140 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_LBRACE_PIPE, - [73764] = 3, + [74347] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(1569), 15, - anon_sym_STAR, - anon_sym_LBRACE, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1567), 24, - anon_sym_as, - anon_sym_COMMA, + ACTIONS(479), 1, + anon_sym_BQUOTE, + ACTIONS(2161), 1, anon_sym_LPAREN, + ACTIONS(2191), 1, anon_sym_LBRACK, + ACTIONS(2193), 1, anon_sym_DOT, + ACTIONS(2883), 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_extends, - anon_sym_LBRACE_PIPE, - [73811] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2742), 14, - anon_sym_STAR, + ACTIONS(2941), 1, + anon_sym_as, + ACTIONS(2945), 1, anon_sym_BANG, - anon_sym_in, + ACTIONS(3514), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(3516), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(3518), 1, + anon_sym_AMP_AMP, + ACTIONS(3524), 1, anon_sym_AMP, + ACTIONS(3526), 1, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2746), 25, - sym__automatic_semicolon, - 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, + ACTIONS(3530), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(3534), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(3820), 1, + anon_sym_COLON, + STATE(2547), 1, + sym_type_arguments, + ACTIONS(2971), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [73858] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1563), 2, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(1565), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1561), 13, + ACTIONS(3520), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(3528), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1126), 2, + sym_template_string, + sym_arguments, + ACTIONS(3510), 3, anon_sym_STAR, - anon_sym_LBRACE, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, anon_sym_SLASH, - anon_sym_QMARK, anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1559), 22, - anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(3522), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(3512), 4, + anon_sym_in, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3532), 5, 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_LBRACE_PIPE, - [73909] = 7, + [74438] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(2379), 1, - anon_sym_LBRACK, - ACTIONS(2385), 1, - anon_sym_QMARK_DOT, - ACTIONS(2410), 1, - anon_sym_DOT, - ACTIONS(3716), 1, - anon_sym_EQ, - ACTIONS(1097), 15, + ACTIONS(109), 1, anon_sym_STAR, + ACTIONS(113), 1, + anon_sym_COMMA, + ACTIONS(123), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(845), 1, + anon_sym_DQUOTE, + ACTIONS(847), 1, + anon_sym_SQUOTE, + ACTIONS(1728), 1, anon_sym_LBRACE, + ACTIONS(3660), 1, + anon_sym_LBRACK, + ACTIONS(3664), 1, + sym_number, + ACTIONS(3824), 1, + anon_sym_RBRACE, + ACTIONS(3826), 1, + anon_sym_async, + ACTIONS(3828), 1, + anon_sym_static, + ACTIONS(3834), 1, + sym_readonly, + STATE(1883), 1, + sym_accessibility_modifier, + STATE(2751), 1, + aux_sym_object_repeat1, + STATE(3037), 1, + sym_object, + STATE(3038), 1, + sym_array, + ACTIONS(3830), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3832), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(2084), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(2749), 4, + sym_assignment_pattern, + sym_spread_element, + sym_method_definition, + sym_pair, + ACTIONS(3822), 11, + anon_sym_export, + anon_sym_namespace, + anon_sym_type, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [74523] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3318), 14, + anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -127704,10 +128446,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1099), 20, + ACTIONS(3320), 25, + sym__automatic_semicolon, 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, @@ -127724,21 +128472,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, - [73964] = 7, + [74570] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2379), 1, - anon_sym_LBRACK, - ACTIONS(2385), 1, - anon_sym_QMARK_DOT, - ACTIONS(2410), 1, - anon_sym_DOT, - ACTIONS(3718), 1, - anon_sym_EQ, - ACTIONS(1097), 15, + ACTIONS(3312), 14, anon_sym_STAR, - anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -127752,10 +128490,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1099), 20, + ACTIONS(3031), 25, + sym__automatic_semicolon, 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, @@ -127772,13 +128516,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, - [74019] = 3, + [74617] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1549), 15, + ACTIONS(3308), 14, anon_sym_STAR, - anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -127792,10 +128534,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1547), 24, + ACTIONS(3310), 25, + sym__automatic_semicolon, 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, @@ -127815,14 +128560,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, - anon_sym_LBRACE_PIPE, - [74066] = 3, + [74664] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1545), 15, + ACTIONS(963), 14, anon_sym_STAR, - anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -127836,10 +128578,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1543), 24, + ACTIONS(965), 25, + sym__automatic_semicolon, 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, @@ -127859,74 +128604,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, - anon_sym_LBRACE_PIPE, - [74113] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3723), 1, - anon_sym_STAR, - ACTIONS(3726), 1, - anon_sym_RBRACE, - ACTIONS(3728), 1, - anon_sym_LBRACK, - ACTIONS(3731), 1, - anon_sym_async, - ACTIONS(3734), 1, - anon_sym_DASH, - ACTIONS(3737), 1, - anon_sym_DQUOTE, - ACTIONS(3740), 1, - anon_sym_SQUOTE, - ACTIONS(3743), 1, - sym_number, - ACTIONS(3746), 1, - anon_sym_AT, - ACTIONS(3749), 1, - anon_sym_static, - ACTIONS(3752), 1, - anon_sym_abstract, - ACTIONS(3761), 1, - sym_readonly, - STATE(1843), 1, - sym_method_definition, - STATE(1872), 1, - sym_accessibility_modifier, - ACTIONS(3755), 2, - anon_sym_get, - anon_sym_set, - STATE(1589), 2, - sym_decorator, - aux_sym_class_body_repeat1, - ACTIONS(3758), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(1932), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(2640), 4, - sym_public_field_definition, - sym_method_signature, - sym_abstract_method_signature, - sym_index_signature, - ACTIONS(3720), 11, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [74196] = 3, + [74711] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3264), 14, + ACTIONS(1027), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -127941,7 +128622,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3266), 25, + ACTIONS(1029), 25, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, @@ -127967,12 +128648,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [74243] = 3, + [74758] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1589), 15, + ACTIONS(3306), 14, anon_sym_STAR, - anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -127986,10 +128666,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1587), 24, + ACTIONS(3007), 25, + sym__automatic_semicolon, 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, @@ -128009,12 +128692,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, - anon_sym_LBRACE_PIPE, - [74290] = 3, + [74805] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3142), 14, + ACTIONS(3304), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -128029,7 +128710,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3144), 25, + ACTIONS(3005), 25, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, @@ -128055,10 +128736,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [74337] = 3, + [74852] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1605), 15, + ACTIONS(1527), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -128074,7 +128755,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1603), 24, + ACTIONS(1525), 24, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -128099,10 +128780,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_LBRACE_PIPE, - [74384] = 3, + [74899] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3242), 14, + ACTIONS(3334), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -128117,7 +128798,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3244), 25, + ACTIONS(3336), 25, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, @@ -128143,16 +128824,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [74431] = 6, + [74946] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3764), 1, - anon_sym_LBRACE, - ACTIONS(3766), 1, - anon_sym_DOT, - STATE(1665), 1, - sym_statement_block, - ACTIONS(919), 14, + ACTIONS(3326), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -128167,11 +128842,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(917), 22, + ACTIONS(3328), 25, + sym__automatic_semicolon, 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, @@ -128189,15 +128868,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, - [74484] = 5, + [74993] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3764), 1, - anon_sym_LBRACE, - STATE(1665), 1, - sym_statement_block, - ACTIONS(919), 14, + ACTIONS(3322), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -128212,10 +128886,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(917), 23, + ACTIONS(3324), 25, + sym__automatic_semicolon, 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, @@ -128235,13 +128912,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, - [74535] = 3, + [75040] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(997), 15, + ACTIONS(3314), 14, anon_sym_STAR, - anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -128255,10 +128930,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(995), 24, + ACTIONS(3316), 25, + sym__automatic_semicolon, 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, @@ -128278,32 +128956,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, - anon_sym_LBRACE_PIPE, - [74582] = 9, + [75087] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2175), 1, - anon_sym_LBRACK, - ACTIONS(2177), 1, - anon_sym_DOT, - ACTIONS(2179), 1, - anon_sym_QMARK_DOT, - ACTIONS(3703), 1, - anon_sym_EQ, - ACTIONS(3711), 1, - anon_sym_QMARK, - ACTIONS(3706), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(1097), 13, + ACTIONS(1519), 15, anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, + anon_sym_QMARK, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -128311,9 +128975,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1099), 18, + ACTIONS(1517), 24, anon_sym_as, + anon_sym_COMMA, 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, @@ -128330,75 +128998,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [74641] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(109), 1, - anon_sym_STAR, - ACTIONS(113), 1, - anon_sym_COMMA, - ACTIONS(123), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(845), 1, - anon_sym_DQUOTE, - ACTIONS(847), 1, - anon_sym_SQUOTE, - ACTIONS(1722), 1, - anon_sym_LBRACE, - ACTIONS(3643), 1, - anon_sym_LBRACK, - ACTIONS(3647), 1, - sym_number, - ACTIONS(3770), 1, - anon_sym_RBRACE, - ACTIONS(3772), 1, - anon_sym_async, - ACTIONS(3774), 1, - anon_sym_static, - ACTIONS(3780), 1, - sym_readonly, - STATE(1875), 1, - sym_accessibility_modifier, - STATE(2644), 1, - aux_sym_object_repeat1, - STATE(3086), 1, - sym_array, - STATE(3204), 1, - sym_object, - ACTIONS(3776), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3778), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(2109), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(2699), 4, - sym_assignment_pattern, - sym_spread_element, - sym_method_definition, - sym_pair, - ACTIONS(3768), 11, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [74726] = 3, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + [75134] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1471), 15, + ACTIONS(3252), 14, anon_sym_STAR, - anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -128412,10 +129018,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1469), 24, + ACTIONS(3254), 25, + sym__automatic_semicolon, 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, @@ -128435,14 +129044,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, - anon_sym_LBRACE_PIPE, - [74773] = 3, + [75181] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1467), 15, + ACTIONS(3242), 14, anon_sym_STAR, - anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -128456,10 +129062,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1465), 24, + ACTIONS(3244), 25, + sym__automatic_semicolon, 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, @@ -128479,12 +129088,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, - anon_sym_LBRACE_PIPE, - [74820] = 3, + [75228] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1463), 15, + ACTIONS(1531), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -128500,7 +129107,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1461), 24, + ACTIONS(1529), 24, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -128525,139 +129132,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_LBRACE_PIPE, - [74867] = 25, + [75275] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(479), 1, - anon_sym_BQUOTE, - ACTIONS(2145), 1, - anon_sym_LPAREN, - ACTIONS(2175), 1, - anon_sym_LBRACK, - ACTIONS(2177), 1, + ACTIONS(1721), 1, anon_sym_DOT, - ACTIONS(2863), 1, - anon_sym_QMARK_DOT, - ACTIONS(2915), 1, - anon_sym_as, - ACTIONS(2919), 1, - anon_sym_BANG, - ACTIONS(3484), 1, - anon_sym_LT, - ACTIONS(3486), 1, - anon_sym_QMARK, - ACTIONS(3488), 1, - anon_sym_AMP_AMP, - ACTIONS(3494), 1, - anon_sym_AMP, - ACTIONS(3496), 1, - anon_sym_PIPE, - ACTIONS(3500), 1, - anon_sym_STAR_STAR, - ACTIONS(3504), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3782), 1, - anon_sym_COLON, - STATE(2565), 1, - sym_type_arguments, - ACTIONS(2945), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3490), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(3498), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1128), 2, - sym_template_string, - sym_arguments, - ACTIONS(3480), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3492), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(3482), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3502), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [74958] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(109), 1, - anon_sym_STAR, - ACTIONS(113), 1, - anon_sym_COMMA, - ACTIONS(123), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(845), 1, - anon_sym_DQUOTE, - ACTIONS(847), 1, - anon_sym_SQUOTE, - ACTIONS(1722), 1, - anon_sym_LBRACE, - ACTIONS(3643), 1, - anon_sym_LBRACK, - ACTIONS(3647), 1, - sym_number, - ACTIONS(3786), 1, - anon_sym_RBRACE, - ACTIONS(3788), 1, - anon_sym_async, - ACTIONS(3790), 1, - anon_sym_static, - ACTIONS(3796), 1, - sym_readonly, - STATE(1875), 1, - sym_accessibility_modifier, - STATE(2655), 1, - aux_sym_object_repeat1, - STATE(3086), 1, - sym_array, - STATE(3204), 1, - sym_object, - ACTIONS(3792), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3794), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(2109), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(2653), 4, - sym_assignment_pattern, - sym_spread_element, - sym_method_definition, - sym_pair, - ACTIONS(3784), 11, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [75043] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(993), 15, + ACTIONS(1457), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -128673,12 +129153,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(991), 24, + ACTIONS(1455), 23, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -128698,39 +129177,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_LBRACE_PIPE, - [75090] = 9, + [75324] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1734), 1, - anon_sym_extends, - ACTIONS(2379), 1, - anon_sym_LBRACK, - ACTIONS(2385), 1, - anon_sym_QMARK_DOT, - ACTIONS(2410), 1, - anon_sym_DOT, - ACTIONS(3013), 1, - anon_sym_COMMA, - ACTIONS(3016), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1097), 12, + ACTIONS(1561), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, + anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1099), 19, + ACTIONS(1559), 24, anon_sym_as, + anon_sym_COMMA, 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, @@ -128747,35 +129219,41 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, + anon_sym_extends, anon_sym_LBRACE_PIPE, - [75149] = 3, + [75371] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3238), 14, + ACTIONS(1547), 1, + anon_sym_extends, + ACTIONS(2314), 1, + anon_sym_LBRACK, + ACTIONS(2320), 1, + anon_sym_QMARK_DOT, + ACTIONS(2470), 1, + anon_sym_DOT, + ACTIONS(2997), 1, + anon_sym_COMMA, + ACTIONS(3000), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1037), 12, anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, - anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3240), 25, - sym__automatic_semicolon, - 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_BANG_EQ, + ACTIONS(1039), 19, + anon_sym_as, + anon_sym_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -128792,11 +129270,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [75196] = 3, + anon_sym_LBRACE_PIPE, + [75430] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3229), 14, + ACTIONS(3578), 1, + sym__automatic_semicolon, + ACTIONS(909), 15, anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -128810,13 +129292,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3231), 25, - sym__automatic_semicolon, + ACTIONS(907), 23, 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, @@ -128836,18 +129315,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [75243] = 6, + anon_sym_LBRACE_PIPE, + [75479] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3677), 1, - anon_sym_AMP, - ACTIONS(3679), 1, - anon_sym_PIPE, - ACTIONS(3681), 1, - anon_sym_extends, - ACTIONS(1770), 13, - anon_sym_STAR, + ACTIONS(3836), 1, anon_sym_LBRACE, + ACTIONS(3838), 1, + anon_sym_DOT, + STATE(1645), 1, + sym_statement_block, + ACTIONS(919), 14, + anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -128855,16 +129334,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_QMARK, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1768), 23, + ACTIONS(917), 22, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -128883,10 +129363,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_LBRACE_PIPE, - [75296] = 3, + [75532] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1491), 15, + ACTIONS(3702), 1, + anon_sym_AMP, + ACTIONS(3704), 1, + anon_sym_PIPE, + ACTIONS(1762), 13, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -128896,13 +129380,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_QMARK, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1489), 24, + ACTIONS(1760), 24, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -128927,10 +129409,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_LBRACE_PIPE, - [75343] = 3, + [75583] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1477), 15, + ACTIONS(3702), 1, + anon_sym_AMP, + ACTIONS(3704), 1, + anon_sym_PIPE, + ACTIONS(3706), 1, + anon_sym_extends, + ACTIONS(1750), 13, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -128940,13 +129428,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_QMARK, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1475), 24, + ACTIONS(1748), 23, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -128969,13 +129455,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, anon_sym_LBRACE_PIPE, - [75390] = 3, + [75636] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3135), 14, + ACTIONS(1467), 15, anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -128989,13 +129475,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3137), 25, - sym__automatic_semicolon, + ACTIONS(1465), 24, 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, @@ -129015,186 +129498,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [75437] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(109), 1, - anon_sym_STAR, - ACTIONS(113), 1, - anon_sym_COMMA, - ACTIONS(123), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(845), 1, - anon_sym_DQUOTE, - ACTIONS(847), 1, - anon_sym_SQUOTE, - ACTIONS(1722), 1, - anon_sym_LBRACE, - ACTIONS(3643), 1, - anon_sym_LBRACK, - ACTIONS(3647), 1, - sym_number, - ACTIONS(3800), 1, - anon_sym_RBRACE, - ACTIONS(3802), 1, - anon_sym_async, - ACTIONS(3804), 1, - anon_sym_static, - ACTIONS(3810), 1, - sym_readonly, - STATE(1875), 1, - sym_accessibility_modifier, - STATE(2646), 1, - aux_sym_object_repeat1, - STATE(3086), 1, - sym_array, - STATE(3204), 1, - sym_object, - ACTIONS(3806), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3808), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(2109), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(2642), 4, - sym_assignment_pattern, - sym_spread_element, - sym_method_definition, - sym_pair, - ACTIONS(3798), 11, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [75522] = 25, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + [75683] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(479), 1, anon_sym_BQUOTE, - ACTIONS(2145), 1, + ACTIONS(2161), 1, anon_sym_LPAREN, - ACTIONS(2175), 1, + ACTIONS(2191), 1, anon_sym_LBRACK, - ACTIONS(2177), 1, + ACTIONS(2193), 1, anon_sym_DOT, - ACTIONS(2863), 1, + ACTIONS(2883), 1, anon_sym_QMARK_DOT, - ACTIONS(2915), 1, + ACTIONS(2941), 1, anon_sym_as, - ACTIONS(2919), 1, + ACTIONS(2945), 1, anon_sym_BANG, - ACTIONS(3484), 1, + ACTIONS(3514), 1, anon_sym_LT, - ACTIONS(3486), 1, + ACTIONS(3516), 1, anon_sym_QMARK, - ACTIONS(3488), 1, + ACTIONS(3518), 1, anon_sym_AMP_AMP, - ACTIONS(3494), 1, + ACTIONS(3524), 1, anon_sym_AMP, - ACTIONS(3496), 1, + ACTIONS(3526), 1, anon_sym_PIPE, - ACTIONS(3500), 1, + ACTIONS(3530), 1, anon_sym_STAR_STAR, - ACTIONS(3504), 1, + ACTIONS(3534), 1, anon_sym_QMARK_QMARK, - ACTIONS(3812), 1, + ACTIONS(3840), 1, anon_sym_COLON, - STATE(2565), 1, + STATE(2547), 1, sym_type_arguments, - ACTIONS(2945), 2, + ACTIONS(2971), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3490), 2, + ACTIONS(3520), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(3498), 2, + ACTIONS(3528), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1128), 2, + STATE(1126), 2, sym_template_string, sym_arguments, - ACTIONS(3480), 3, + ACTIONS(3510), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(3492), 3, + ACTIONS(3522), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(3482), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3502), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [75613] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3677), 1, - anon_sym_AMP, - ACTIONS(3679), 1, - anon_sym_PIPE, - ACTIONS(3681), 1, - anon_sym_extends, - ACTIONS(1748), 13, - anon_sym_STAR, - anon_sym_LBRACE, - anon_sym_BANG, + ACTIONS(3512), 4, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1746), 23, - anon_sym_as, - anon_sym_COMMA, - 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, + ACTIONS(3532), 5, 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_LBRACE_PIPE, - [75666] = 3, + [75774] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3208), 14, + ACTIONS(953), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -129209,7 +129584,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3210), 25, + ACTIONS(955), 25, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, @@ -129235,12 +129610,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [75713] = 4, + [75821] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2983), 1, - anon_sym_EQ_GT, - ACTIONS(2979), 14, + ACTIONS(3836), 1, + anon_sym_LBRACE, + STATE(1645), 1, + sym_statement_block, + ACTIONS(919), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -129255,12 +129632,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2981), 24, + ACTIONS(917), 23, 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, @@ -129280,76 +129655,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [75762] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(2316), 1, - anon_sym_DASH, - ACTIONS(2318), 1, - anon_sym_DQUOTE, - ACTIONS(2320), 1, - anon_sym_SQUOTE, - ACTIONS(2760), 1, - anon_sym_LBRACK, - ACTIONS(3604), 1, - anon_sym_STAR, - ACTIONS(3608), 1, - anon_sym_async, - ACTIONS(3610), 1, - sym_number, - ACTIONS(3612), 1, - anon_sym_static, - ACTIONS(3614), 1, - anon_sym_abstract, - ACTIONS(3618), 1, - sym_readonly, - ACTIONS(3814), 1, - anon_sym_RBRACE, - STATE(1843), 1, - sym_method_definition, - STATE(1872), 1, - sym_accessibility_modifier, - ACTIONS(3616), 2, - anon_sym_get, - anon_sym_set, - STATE(1627), 2, - sym_decorator, - aux_sym_class_body_repeat1, - ACTIONS(2770), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(1932), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(2640), 4, - sym_public_field_definition, - sym_method_signature, - sym_abstract_method_signature, - sym_index_signature, - ACTIONS(2750), 11, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [75845] = 5, + anon_sym_LBRACE_PIPE, + [75872] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3677), 1, - anon_sym_AMP, - ACTIONS(3679), 1, - anon_sym_PIPE, - ACTIONS(1760), 13, + ACTIONS(943), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -129359,11 +129669,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_QMARK, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1758), 24, + ACTIONS(941), 24, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -129388,76 +129700,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_LBRACE_PIPE, - [75896] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(2316), 1, - anon_sym_DASH, - ACTIONS(2318), 1, - anon_sym_DQUOTE, - ACTIONS(2320), 1, - anon_sym_SQUOTE, - ACTIONS(2760), 1, - anon_sym_LBRACK, - ACTIONS(3604), 1, - anon_sym_STAR, - ACTIONS(3608), 1, - anon_sym_async, - ACTIONS(3610), 1, - sym_number, - ACTIONS(3612), 1, - anon_sym_static, - ACTIONS(3614), 1, - anon_sym_abstract, - ACTIONS(3618), 1, - sym_readonly, - ACTIONS(3816), 1, - anon_sym_RBRACE, - STATE(1843), 1, - sym_method_definition, - STATE(1872), 1, - sym_accessibility_modifier, - ACTIONS(3616), 2, - anon_sym_get, - anon_sym_set, - STATE(1589), 2, - sym_decorator, - aux_sym_class_body_repeat1, - ACTIONS(2770), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(1932), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(2640), 4, - sym_public_field_definition, - sym_method_signature, - sym_abstract_method_signature, - sym_index_signature, - ACTIONS(2750), 11, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [75979] = 4, + [75919] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3587), 1, - sym__automatic_semicolon, - ACTIONS(909), 15, + ACTIONS(1045), 14, anon_sym_STAR, - anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -129471,10 +129718,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(907), 23, + ACTIONS(1047), 25, + sym__automatic_semicolon, 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, @@ -129494,61 +129744,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, - [76028] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1595), 1, - anon_sym_extends, - ACTIONS(2379), 1, - anon_sym_LBRACK, - ACTIONS(2385), 1, - anon_sym_QMARK_DOT, - ACTIONS(2410), 1, - anon_sym_DOT, - ACTIONS(3019), 1, - anon_sym_COMMA, - ACTIONS(3022), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1097), 12, - anon_sym_STAR, - anon_sym_LBRACE, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_SLASH, - anon_sym_QMARK, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1099), 19, - 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, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, - [76087] = 3, + [75966] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3204), 14, + ACTIONS(3172), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -129563,7 +129762,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3206), 25, + ACTIONS(3174), 25, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, @@ -129589,12 +129788,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [76134] = 4, + [76013] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1741), 1, - anon_sym_DOT, - ACTIONS(1413), 15, + ACTIONS(1483), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -129610,11 +129807,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1411), 23, + ACTIONS(1481), 24, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -129634,16 +129832,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_LBRACE_PIPE, - [76183] = 4, + [76060] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3004), 1, - anon_sym_LT, - ACTIONS(1091), 14, + ACTIONS(1495), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -129654,7 +129851,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1089), 24, + ACTIONS(1493), 24, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -129679,11 +129876,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_LBRACE_PIPE, - [76232] = 3, + [76107] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3200), 14, + ACTIONS(3702), 1, + anon_sym_AMP, + ACTIONS(3704), 1, + anon_sym_PIPE, + ACTIONS(3706), 1, + anon_sym_extends, + ACTIONS(1770), 13, anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -129691,346 +129895,171 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_QMARK, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3202), 25, - sym__automatic_semicolon, - 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, - [76279] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(2316), 1, - anon_sym_DASH, - ACTIONS(2318), 1, - anon_sym_DQUOTE, - ACTIONS(2320), 1, - anon_sym_SQUOTE, - ACTIONS(2760), 1, - anon_sym_LBRACK, - ACTIONS(3604), 1, - anon_sym_STAR, - ACTIONS(3608), 1, - anon_sym_async, - ACTIONS(3610), 1, - sym_number, - ACTIONS(3612), 1, - anon_sym_static, - ACTIONS(3614), 1, - anon_sym_abstract, - ACTIONS(3618), 1, - sym_readonly, - ACTIONS(3818), 1, - anon_sym_RBRACE, - STATE(1843), 1, - sym_method_definition, - STATE(1872), 1, - sym_accessibility_modifier, - ACTIONS(3616), 2, - anon_sym_get, - anon_sym_set, - STATE(1589), 2, - sym_decorator, - aux_sym_class_body_repeat1, - ACTIONS(2770), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(1932), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(2640), 4, - sym_public_field_definition, - sym_method_signature, - sym_abstract_method_signature, - sym_index_signature, - ACTIONS(2750), 11, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [76362] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(2316), 1, - anon_sym_DASH, - ACTIONS(2318), 1, - anon_sym_DQUOTE, - ACTIONS(2320), 1, - anon_sym_SQUOTE, - ACTIONS(2760), 1, - anon_sym_LBRACK, - ACTIONS(3604), 1, - anon_sym_STAR, - ACTIONS(3608), 1, - anon_sym_async, - ACTIONS(3610), 1, - sym_number, - ACTIONS(3612), 1, - anon_sym_static, - ACTIONS(3614), 1, - anon_sym_abstract, - ACTIONS(3618), 1, - sym_readonly, - ACTIONS(3820), 1, - anon_sym_RBRACE, - STATE(1843), 1, - sym_method_definition, - STATE(1872), 1, - sym_accessibility_modifier, - ACTIONS(3616), 2, - anon_sym_get, - anon_sym_set, - STATE(1566), 2, - sym_decorator, - aux_sym_class_body_repeat1, - ACTIONS(2770), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(1932), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(2640), 4, - sym_public_field_definition, - sym_method_signature, - sym_abstract_method_signature, - sym_index_signature, - ACTIONS(2750), 11, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [76445] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(2316), 1, - anon_sym_DASH, - ACTIONS(2318), 1, - anon_sym_DQUOTE, - ACTIONS(2320), 1, - anon_sym_SQUOTE, - ACTIONS(2760), 1, - anon_sym_LBRACK, - ACTIONS(3604), 1, - anon_sym_STAR, - ACTIONS(3608), 1, - anon_sym_async, - ACTIONS(3610), 1, - sym_number, - ACTIONS(3612), 1, - anon_sym_static, - ACTIONS(3614), 1, - anon_sym_abstract, - ACTIONS(3618), 1, - sym_readonly, - ACTIONS(3822), 1, - anon_sym_RBRACE, - STATE(1843), 1, - sym_method_definition, - STATE(1872), 1, - sym_accessibility_modifier, - ACTIONS(3616), 2, - anon_sym_get, - anon_sym_set, - STATE(1620), 2, - sym_decorator, - aux_sym_class_body_repeat1, - ACTIONS(2770), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(1932), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(2640), 4, - sym_public_field_definition, - sym_method_signature, - sym_abstract_method_signature, - sym_index_signature, - ACTIONS(2750), 11, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [76528] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(479), 1, - anon_sym_BQUOTE, - ACTIONS(2145), 1, + ACTIONS(1768), 23, + anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(2175), 1, anon_sym_LBRACK, - ACTIONS(2177), 1, anon_sym_DOT, - ACTIONS(2863), 1, anon_sym_QMARK_DOT, - ACTIONS(2915), 1, - anon_sym_as, - ACTIONS(2919), 1, - anon_sym_BANG, - ACTIONS(3484), 1, - anon_sym_LT, - ACTIONS(3486), 1, - anon_sym_QMARK, - ACTIONS(3488), 1, anon_sym_AMP_AMP, - ACTIONS(3494), 1, - anon_sym_AMP, - ACTIONS(3496), 1, - anon_sym_PIPE, - ACTIONS(3500), 1, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(3504), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(3824), 1, - anon_sym_COLON, - STATE(2565), 1, - sym_type_arguments, - ACTIONS(2945), 2, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3490), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(3498), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1128), 2, - sym_template_string, - sym_arguments, - ACTIONS(3480), 3, + anon_sym_BQUOTE, + anon_sym_LBRACE_PIPE, + [76160] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1055), 14, anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, anon_sym_SLASH, + anon_sym_QMARK, anon_sym_GT_GT, - ACTIONS(3492), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1057), 25, + sym__automatic_semicolon, + 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, - ACTIONS(3482), 4, + 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, + [76207] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3076), 1, + anon_sym_EQ_GT, + ACTIONS(3072), 14, + anon_sym_STAR, + anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3502), 5, + ACTIONS(3074), 24, + 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, - [76619] = 12, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [76256] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(845), 1, - anon_sym_DQUOTE, - ACTIONS(847), 1, - anon_sym_SQUOTE, - ACTIONS(3826), 1, + ACTIONS(973), 14, anon_sym_STAR, - ACTIONS(3828), 1, - anon_sym_EQ, - ACTIONS(3830), 1, - anon_sym_LBRACK, - ACTIONS(3832), 1, - sym_number, - STATE(2678), 1, - aux_sym_object_repeat1, - ACTIONS(3834), 2, - anon_sym_get, - anon_sym_set, - STATE(2172), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2788), 9, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(975), 25, sym__automatic_semicolon, + anon_sym_as, 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(1607), 17, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - anon_sym_async, - 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, - sym_readonly, - [76683] = 3, + 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, + [76303] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3029), 15, + ACTIONS(1491), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -130046,7 +130075,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3031), 23, + ACTIONS(1489), 24, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -130069,11 +130098,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, + anon_sym_extends, anon_sym_LBRACE_PIPE, - [76729] = 3, + [76350] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1091), 15, + ACTIONS(1487), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -130089,7 +130119,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1089), 23, + ACTIONS(1485), 24, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -130112,77 +130142,169 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, + anon_sym_extends, anon_sym_LBRACE_PIPE, - [76775] = 24, + [76397] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(2157), 1, - anon_sym_LPAREN, - ACTIONS(2266), 1, - anon_sym_LBRACK, - ACTIONS(2282), 1, - anon_sym_DOT, - ACTIONS(2915), 1, - anon_sym_as, - ACTIONS(2919), 1, + ACTIONS(1001), 15, + anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, - ACTIONS(3108), 1, - anon_sym_QMARK_DOT, - ACTIONS(3484), 1, + anon_sym_in, anon_sym_LT, - ACTIONS(3486), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(3488), 1, - anon_sym_AMP_AMP, - ACTIONS(3494), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(3496), 1, anon_sym_PIPE, - ACTIONS(3500), 1, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(999), 24, + anon_sym_as, + anon_sym_COMMA, + 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, - ACTIONS(3504), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - STATE(2501), 1, - sym_type_arguments, - ACTIONS(2945), 2, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3490), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(3498), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1567), 2, - sym_template_string, - sym_arguments, - ACTIONS(3480), 3, + anon_sym_BQUOTE, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + [76444] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2282), 1, + anon_sym_LBRACK, + ACTIONS(2288), 1, + anon_sym_QMARK_DOT, + ACTIONS(2298), 1, + anon_sym_DOT, + ACTIONS(1712), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(3040), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1037), 11, anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, anon_sym_SLASH, + anon_sym_QMARK, anon_sym_GT_GT, - ACTIONS(3492), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1039), 20, + sym__automatic_semicolon, + anon_sym_as, + anon_sym_LPAREN, + 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, - ACTIONS(3482), 4, - anon_sym_in, + 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, + [76501] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1712), 1, + anon_sym_extends, + ACTIONS(2314), 1, + anon_sym_LBRACK, + ACTIONS(2320), 1, + anon_sym_QMARK_DOT, + ACTIONS(2470), 1, + anon_sym_DOT, + ACTIONS(3037), 1, + anon_sym_COMMA, + ACTIONS(3040), 3, anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1037), 12, + anon_sym_STAR, + anon_sym_LBRACE, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3502), 5, + ACTIONS(1039), 19, + 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, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [76863] = 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_LBRACE_PIPE, + [76560] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1077), 15, + ACTIONS(1547), 1, + anon_sym_extends, + ACTIONS(2191), 1, + anon_sym_LBRACK, + ACTIONS(2193), 1, + anon_sym_DOT, + ACTIONS(2195), 1, + anon_sym_QMARK_DOT, + ACTIONS(2997), 1, + anon_sym_RPAREN, + ACTIONS(3000), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1037), 12, anon_sym_STAR, - anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -130190,19 +130312,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_QMARK, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1075), 23, + ACTIONS(1039), 20, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -130219,11 +130337,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, - [76909] = 3, + [76619] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3156), 15, + ACTIONS(947), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -130239,7 +130356,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3158), 23, + ACTIONS(945), 23, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -130263,12 +130380,19 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_LBRACE_PIPE, - [76955] = 3, + [76665] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1087), 15, + ACTIONS(2282), 1, + anon_sym_LBRACK, + ACTIONS(2288), 1, + anon_sym_QMARK_DOT, + ACTIONS(2298), 1, + anon_sym_DOT, + ACTIONS(3842), 1, + anon_sym_EQ, + ACTIONS(1037), 14, anon_sym_STAR, - anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -130282,13 +130406,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1085), 23, + ACTIONS(1039), 20, + sym__automatic_semicolon, anon_sym_as, - anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -130305,11 +130427,63 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, - [77001] = 3, + [76719] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2344), 1, + anon_sym_DQUOTE, + ACTIONS(2346), 1, + anon_sym_SQUOTE, + ACTIONS(3844), 1, + anon_sym_STAR, + ACTIONS(3846), 1, + anon_sym_EQ, + ACTIONS(3848), 1, + anon_sym_LBRACK, + ACTIONS(3850), 1, + anon_sym_async, + ACTIONS(3852), 1, + sym_number, + STATE(2651), 1, + aux_sym_object_repeat1, + ACTIONS(3854), 2, + anon_sym_get, + anon_sym_set, + STATE(1943), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2776), 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(2804), 16, + anon_sym_export, + anon_sym_namespace, + anon_sym_type, + 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, + sym_readonly, + [76785] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3154), 15, + ACTIONS(3172), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -130325,7 +130499,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3054), 23, + ACTIONS(3174), 23, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -130349,33 +130523,35 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_LBRACE_PIPE, - [77047] = 13, + [76831] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2318), 1, + ACTIONS(2344), 1, anon_sym_DQUOTE, - ACTIONS(2320), 1, + ACTIONS(2346), 1, anon_sym_SQUOTE, - ACTIONS(3826), 1, + ACTIONS(3844), 1, anon_sym_STAR, - ACTIONS(3828), 1, + ACTIONS(3846), 1, anon_sym_EQ, - ACTIONS(3836), 1, - anon_sym_LBRACK, - ACTIONS(3838), 1, + ACTIONS(3850), 1, anon_sym_async, - ACTIONS(3840), 1, + ACTIONS(3852), 1, sym_number, - STATE(2645), 1, + ACTIONS(3856), 1, + anon_sym_LBRACK, + ACTIONS(3858), 1, + sym_readonly, + STATE(2651), 1, aux_sym_object_repeat1, - ACTIONS(3842), 2, + ACTIONS(3854), 2, anon_sym_get, anon_sym_set, - STATE(1948), 3, + STATE(1943), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2788), 9, + ACTIONS(2776), 9, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -130385,7 +130561,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(2750), 16, + ACTIONS(2804), 15, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -130401,20 +130577,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - sym_readonly, - [77113] = 7, + [76899] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2175), 1, - anon_sym_LBRACK, - ACTIONS(2177), 1, - anon_sym_DOT, - ACTIONS(2179), 1, - anon_sym_QMARK_DOT, - ACTIONS(2855), 1, - anon_sym_EQ, - ACTIONS(1097), 14, + ACTIONS(1009), 15, anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -130428,11 +130596,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1099), 20, + ACTIONS(1007), 23, anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -130449,10 +130619,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [77167] = 3, + anon_sym_LBRACE_PIPE, + [76945] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3200), 15, + ACTIONS(3072), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -130468,7 +130639,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3202), 23, + ACTIONS(3074), 23, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -130492,12 +130663,71 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_LBRACE_PIPE, - [77213] = 3, + [76991] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(3204), 15, + ACTIONS(845), 1, + anon_sym_DQUOTE, + ACTIONS(847), 1, + anon_sym_SQUOTE, + ACTIONS(3844), 1, + anon_sym_STAR, + ACTIONS(3846), 1, + anon_sym_EQ, + ACTIONS(3860), 1, + anon_sym_LBRACK, + ACTIONS(3862), 1, + sym_number, + STATE(2651), 1, + aux_sym_object_repeat1, + ACTIONS(3864), 2, + anon_sym_get, + anon_sym_set, + STATE(2193), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2776), 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(1607), 17, + anon_sym_export, + anon_sym_namespace, + anon_sym_type, + anon_sym_async, + 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, + sym_readonly, + [77055] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2282), 1, + anon_sym_LBRACK, + ACTIONS(2288), 1, + anon_sym_QMARK_DOT, + ACTIONS(2298), 1, + anon_sym_DOT, + ACTIONS(3866), 1, + anon_sym_EQ, + ACTIONS(1037), 14, anon_sym_STAR, - anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -130511,13 +130741,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3206), 23, + ACTIONS(1039), 20, + sym__automatic_semicolon, anon_sym_as, - anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -130534,11 +130762,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, - [77259] = 3, + [77109] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3150), 15, + ACTIONS(3314), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -130554,7 +130781,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3152), 23, + ACTIONS(3316), 23, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -130578,10 +130805,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_LBRACE_PIPE, - [77305] = 3, + [77155] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3146), 15, + ACTIONS(997), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -130597,7 +130824,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3148), 23, + ACTIONS(995), 23, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -130621,10 +130848,63 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_LBRACE_PIPE, - [77351] = 3, + [77201] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2344), 1, + anon_sym_DQUOTE, + ACTIONS(2346), 1, + anon_sym_SQUOTE, + ACTIONS(3844), 1, + anon_sym_STAR, + ACTIONS(3846), 1, + anon_sym_EQ, + ACTIONS(3848), 1, + anon_sym_LBRACK, + ACTIONS(3850), 1, + anon_sym_async, + ACTIONS(3852), 1, + sym_number, + STATE(2757), 1, + aux_sym_object_repeat1, + ACTIONS(3854), 2, + anon_sym_get, + anon_sym_set, + STATE(1943), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2776), 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(2804), 16, + anon_sym_export, + anon_sym_namespace, + anon_sym_type, + 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, + sym_readonly, + [77267] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3208), 15, + ACTIONS(1113), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -130640,7 +130920,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3210), 23, + ACTIONS(1111), 23, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -130664,10 +130944,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_LBRACE_PIPE, - [77397] = 3, + [77313] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3220), 15, + ACTIONS(993), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -130683,7 +130963,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3222), 23, + ACTIONS(991), 23, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -130707,10 +130987,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_LBRACE_PIPE, - [77443] = 3, + [77359] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3229), 15, + ACTIONS(939), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -130726,7 +131006,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3231), 23, + ACTIONS(937), 23, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -130750,10 +131030,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_LBRACE_PIPE, - [77489] = 3, + [77405] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3238), 15, + ACTIONS(1005), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -130769,7 +131049,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3240), 23, + ACTIONS(1003), 23, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -130793,35 +131073,35 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_LBRACE_PIPE, - [77535] = 14, + [77451] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2318), 1, + ACTIONS(2344), 1, anon_sym_DQUOTE, - ACTIONS(2320), 1, + ACTIONS(2346), 1, anon_sym_SQUOTE, - ACTIONS(3826), 1, + ACTIONS(3844), 1, anon_sym_STAR, - ACTIONS(3828), 1, + ACTIONS(3846), 1, anon_sym_EQ, - ACTIONS(3838), 1, + ACTIONS(3850), 1, anon_sym_async, - ACTIONS(3840), 1, + ACTIONS(3852), 1, sym_number, - ACTIONS(3844), 1, + ACTIONS(3856), 1, anon_sym_LBRACK, - ACTIONS(3846), 1, + ACTIONS(3858), 1, sym_readonly, - STATE(2678), 1, + STATE(2696), 1, aux_sym_object_repeat1, - ACTIONS(3842), 2, + ACTIONS(3854), 2, anon_sym_get, anon_sym_set, - STATE(1948), 3, + STATE(1943), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2788), 9, + ACTIONS(2776), 9, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -130831,7 +131111,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(2750), 15, + ACTIONS(2804), 15, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -130847,65 +131127,79 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [77603] = 13, + [77519] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2318), 1, + ACTIONS(109), 1, + anon_sym_STAR, + ACTIONS(123), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(845), 1, anon_sym_DQUOTE, - ACTIONS(2320), 1, + ACTIONS(847), 1, anon_sym_SQUOTE, - ACTIONS(3826), 1, - anon_sym_STAR, - ACTIONS(3828), 1, - anon_sym_EQ, - ACTIONS(3836), 1, + ACTIONS(1728), 1, + anon_sym_LBRACE, + ACTIONS(3660), 1, anon_sym_LBRACK, - ACTIONS(3838), 1, - anon_sym_async, - ACTIONS(3840), 1, + ACTIONS(3664), 1, sym_number, - STATE(2678), 1, - aux_sym_object_repeat1, - ACTIONS(3842), 2, + ACTIONS(3870), 1, + anon_sym_async, + ACTIONS(3872), 1, + anon_sym_static, + ACTIONS(3878), 1, + sym_readonly, + STATE(1883), 1, + sym_accessibility_modifier, + STATE(3037), 1, + sym_object, + STATE(3038), 1, + sym_array, + ACTIONS(2730), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(3874), 2, anon_sym_get, anon_sym_set, - STATE(1948), 3, + ACTIONS(3876), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(2084), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2788), 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(2750), 16, + STATE(2976), 4, + sym_assignment_pattern, + sym_spread_element, + sym_method_definition, + sym_pair, + ACTIONS(3868), 11, anon_sym_export, anon_sym_namespace, anon_sym_type, 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, - sym_readonly, - [77669] = 3, + [77599] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3242), 15, + ACTIONS(2191), 1, + anon_sym_LBRACK, + ACTIONS(2193), 1, + anon_sym_DOT, + ACTIONS(2195), 1, + anon_sym_QMARK_DOT, + ACTIONS(2877), 1, + anon_sym_EQ, + ACTIONS(1037), 14, anon_sym_STAR, - anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -130919,13 +131213,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3244), 23, + ACTIONS(1039), 20, anon_sym_as, - anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -130942,11 +131234,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, - [77715] = 3, + [77653] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3142), 15, + ACTIONS(2758), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -130962,7 +131253,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3144), 23, + ACTIONS(2762), 23, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -130986,73 +131277,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_LBRACE_PIPE, - [77761] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2318), 1, - anon_sym_DQUOTE, - ACTIONS(2320), 1, - anon_sym_SQUOTE, - ACTIONS(3826), 1, - anon_sym_STAR, - ACTIONS(3828), 1, - anon_sym_EQ, - ACTIONS(3838), 1, - anon_sym_async, - ACTIONS(3840), 1, - sym_number, - ACTIONS(3844), 1, - anon_sym_LBRACK, - ACTIONS(3846), 1, - sym_readonly, - STATE(2645), 1, - aux_sym_object_repeat1, - ACTIONS(3842), 2, - anon_sym_get, - anon_sym_set, - STATE(1948), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2788), 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(2750), 15, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - 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, - [77829] = 7, + [77699] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2175), 1, - anon_sym_LBRACK, - ACTIONS(2177), 1, - anon_sym_DOT, - ACTIONS(2179), 1, - anon_sym_QMARK_DOT, - ACTIONS(2857), 1, - anon_sym_EQ, - ACTIONS(1097), 14, + ACTIONS(3168), 15, anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -131066,11 +131296,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1099), 20, + ACTIONS(3170), 23, anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -131087,10 +131319,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [77883] = 3, + anon_sym_LBRACE_PIPE, + [77745] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3312), 15, + ACTIONS(963), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -131106,7 +131339,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3314), 23, + ACTIONS(965), 23, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -131130,10 +131363,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_LBRACE_PIPE, - [77929] = 3, + [77791] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3246), 15, + ACTIONS(1027), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -131149,7 +131382,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3248), 23, + ACTIONS(1029), 23, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -131173,62 +131406,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_LBRACE_PIPE, - [77975] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(845), 1, - anon_sym_DQUOTE, - ACTIONS(847), 1, - anon_sym_SQUOTE, - ACTIONS(3826), 1, - anon_sym_STAR, - ACTIONS(3828), 1, - anon_sym_EQ, - ACTIONS(3830), 1, - anon_sym_LBRACK, - ACTIONS(3832), 1, - sym_number, - STATE(2645), 1, - aux_sym_object_repeat1, - ACTIONS(3834), 2, - anon_sym_get, - anon_sym_set, - STATE(2172), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2788), 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(1607), 17, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - anon_sym_async, - 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, - sym_readonly, - [78039] = 3, + [77837] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 15, + ACTIONS(985), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -131244,7 +131425,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3033), 23, + ACTIONS(987), 23, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -131268,10 +131449,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_LBRACE_PIPE, - [78085] = 3, + [77883] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(949), 15, + ACTIONS(1075), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -131287,7 +131468,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(947), 23, + ACTIONS(1077), 23, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -131311,10 +131492,121 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_LBRACE_PIPE, - [78131] = 3, + [77929] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2191), 1, + anon_sym_LBRACK, + ACTIONS(2193), 1, + anon_sym_DOT, + ACTIONS(2195), 1, + anon_sym_QMARK_DOT, + ACTIONS(2871), 1, + anon_sym_EQ, + ACTIONS(1037), 14, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1039), 20, + anon_sym_as, + anon_sym_LPAREN, + 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_BQUOTE, + [77983] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(479), 1, + anon_sym_BQUOTE, + ACTIONS(2161), 1, + anon_sym_LPAREN, + ACTIONS(2191), 1, + anon_sym_LBRACK, + ACTIONS(2193), 1, + anon_sym_DOT, + ACTIONS(2883), 1, + anon_sym_QMARK_DOT, + ACTIONS(2941), 1, + anon_sym_as, + ACTIONS(2945), 1, + anon_sym_BANG, + ACTIONS(3514), 1, + anon_sym_LT, + ACTIONS(3516), 1, + anon_sym_QMARK, + ACTIONS(3518), 1, + anon_sym_AMP_AMP, + ACTIONS(3524), 1, + anon_sym_AMP, + ACTIONS(3526), 1, + anon_sym_PIPE, + ACTIONS(3530), 1, + anon_sym_STAR_STAR, + ACTIONS(3534), 1, + anon_sym_QMARK_QMARK, + STATE(2547), 1, + sym_type_arguments, + ACTIONS(2971), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3520), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(3528), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1126), 2, + sym_template_string, + sym_arguments, + ACTIONS(3510), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(3522), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(3512), 4, + anon_sym_in, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3532), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [78071] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3296), 15, + ACTIONS(1105), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -131330,7 +131622,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3298), 23, + ACTIONS(1107), 23, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -131354,10 +131646,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_LBRACE_PIPE, - [78177] = 3, + [78117] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2979), 15, + ACTIONS(3123), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -131373,7 +131665,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2981), 23, + ACTIONS(3125), 23, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -131397,70 +131689,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_LBRACE_PIPE, - [78223] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(109), 1, - anon_sym_STAR, - ACTIONS(123), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(845), 1, - anon_sym_DQUOTE, - ACTIONS(847), 1, - anon_sym_SQUOTE, - ACTIONS(1722), 1, - anon_sym_LBRACE, - ACTIONS(3643), 1, - anon_sym_LBRACK, - ACTIONS(3647), 1, - sym_number, - ACTIONS(3850), 1, - anon_sym_async, - ACTIONS(3852), 1, - anon_sym_static, - ACTIONS(3858), 1, - sym_readonly, - STATE(1875), 1, - sym_accessibility_modifier, - STATE(3086), 1, - sym_array, - STATE(3204), 1, - sym_object, - ACTIONS(2714), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(3854), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3856), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(2109), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(2786), 4, - sym_assignment_pattern, - sym_spread_element, - sym_method_definition, - sym_pair, - ACTIONS(3848), 11, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [78303] = 3, + [78163] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3135), 15, + ACTIONS(1095), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -131476,7 +131708,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3137), 23, + ACTIONS(1097), 23, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -131500,63 +131732,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_LBRACE_PIPE, - [78349] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2318), 1, - anon_sym_DQUOTE, - ACTIONS(2320), 1, - anon_sym_SQUOTE, - ACTIONS(3826), 1, - anon_sym_STAR, - ACTIONS(3828), 1, - anon_sym_EQ, - ACTIONS(3836), 1, - anon_sym_LBRACK, - ACTIONS(3838), 1, - anon_sym_async, - ACTIONS(3840), 1, - sym_number, - STATE(2739), 1, - aux_sym_object_repeat1, - ACTIONS(3842), 2, - anon_sym_get, - anon_sym_set, - STATE(1948), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2788), 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(2750), 16, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - 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, - sym_readonly, - [78415] = 3, + [78209] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1001), 15, + ACTIONS(1065), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -131572,7 +131751,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(999), 23, + ACTIONS(1067), 23, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -131596,62 +131775,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_LBRACE_PIPE, - [78461] = 12, + [78255] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(845), 1, - anon_sym_DQUOTE, - ACTIONS(847), 1, - anon_sym_SQUOTE, - ACTIONS(3826), 1, - anon_sym_STAR, - ACTIONS(3828), 1, - anon_sym_EQ, - ACTIONS(3830), 1, - anon_sym_LBRACK, - ACTIONS(3832), 1, - sym_number, - STATE(2772), 1, - aux_sym_object_repeat1, - ACTIONS(3834), 2, - anon_sym_get, - anon_sym_set, - STATE(2172), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2788), 9, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(2173), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, + ACTIONS(2282), 1, + anon_sym_LBRACK, + ACTIONS(2298), 1, + anon_sym_DOT, + ACTIONS(2941), 1, + anon_sym_as, + ACTIONS(2945), 1, + anon_sym_BANG, + ACTIONS(3086), 1, + anon_sym_QMARK_DOT, + ACTIONS(3514), 1, anon_sym_LT, + ACTIONS(3516), 1, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(1607), 17, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - anon_sym_async, - 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, - sym_readonly, - [78525] = 3, + ACTIONS(3518), 1, + anon_sym_AMP_AMP, + ACTIONS(3524), 1, + anon_sym_AMP, + ACTIONS(3526), 1, + anon_sym_PIPE, + ACTIONS(3530), 1, + anon_sym_STAR_STAR, + ACTIONS(3534), 1, + anon_sym_QMARK_QMARK, + STATE(2611), 1, + sym_type_arguments, + ACTIONS(2971), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3520), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(3528), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1529), 2, + sym_template_string, + sym_arguments, + ACTIONS(3510), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(3522), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(3512), 4, + anon_sym_in, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3532), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [78343] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3254), 15, + ACTIONS(3119), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -131667,7 +131858,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3256), 23, + ACTIONS(3121), 23, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -131691,10 +131882,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_LBRACE_PIPE, - [78571] = 3, + [78389] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3258), 15, + ACTIONS(3146), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -131710,7 +131901,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2917), 23, + ACTIONS(3148), 23, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -131734,10 +131925,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_LBRACE_PIPE, - [78617] = 3, + [78435] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1083), 15, + ACTIONS(3139), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -131753,7 +131944,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1081), 23, + ACTIONS(3141), 23, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -131777,10 +131968,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_LBRACE_PIPE, - [78663] = 3, + [78481] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1113), 15, + ACTIONS(3133), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -131796,7 +131987,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1111), 23, + ACTIONS(3135), 23, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -131820,19 +132011,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_LBRACE_PIPE, - [78709] = 7, + [78527] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2266), 1, - anon_sym_LBRACK, - ACTIONS(2272), 1, - anon_sym_QMARK_DOT, - ACTIONS(2282), 1, - anon_sym_DOT, - ACTIONS(3860), 1, - anon_sym_EQ, - ACTIONS(1097), 14, + ACTIONS(973), 15, anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -131846,11 +132030,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1099), 20, - sym__automatic_semicolon, + ACTIONS(975), 23, 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, @@ -131867,10 +132053,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [78763] = 3, + anon_sym_LBRACE_PIPE, + [78573] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3260), 15, + ACTIONS(1055), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -131886,7 +132073,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3262), 23, + ACTIONS(1057), 23, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -131910,64 +132097,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_LBRACE_PIPE, - [78809] = 14, + [78619] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2318), 1, - anon_sym_DQUOTE, - ACTIONS(2320), 1, - anon_sym_SQUOTE, - ACTIONS(3826), 1, - anon_sym_STAR, - ACTIONS(3828), 1, - anon_sym_EQ, - ACTIONS(3838), 1, - anon_sym_async, - ACTIONS(3840), 1, - sym_number, - ACTIONS(3844), 1, - anon_sym_LBRACK, - ACTIONS(3846), 1, - sym_readonly, - STATE(2772), 1, - aux_sym_object_repeat1, - ACTIONS(3842), 2, - anon_sym_get, - anon_sym_set, - STATE(1948), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2788), 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(2750), 15, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - 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, - [78877] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1057), 15, + ACTIONS(1045), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -131983,7 +132116,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1059), 23, + ACTIONS(1047), 23, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -132007,10 +132140,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_LBRACE_PIPE, - [78923] = 3, + [78665] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2742), 15, + ACTIONS(953), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -132026,7 +132159,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2746), 23, + ACTIONS(955), 23, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -132050,72 +132183,55 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_LBRACE_PIPE, - [78969] = 13, + [78711] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2318), 1, - anon_sym_DQUOTE, - ACTIONS(2320), 1, - anon_sym_SQUOTE, - ACTIONS(3826), 1, + ACTIONS(3242), 15, anon_sym_STAR, - ACTIONS(3828), 1, - anon_sym_EQ, - ACTIONS(3836), 1, - anon_sym_LBRACK, - ACTIONS(3838), 1, - anon_sym_async, - ACTIONS(3840), 1, - sym_number, - STATE(2772), 1, - aux_sym_object_repeat1, - ACTIONS(3842), 2, - anon_sym_get, - anon_sym_set, - STATE(1948), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2788), 9, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_BANG, + anon_sym_in, anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2750), 16, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - 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, - sym_readonly, - [79035] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2266), 1, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3244), 23, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_LBRACK, - ACTIONS(2272), 1, - anon_sym_QMARK_DOT, - ACTIONS(2282), 1, anon_sym_DOT, - ACTIONS(3862), 1, - anon_sym_EQ, - ACTIONS(1097), 14, + 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_LBRACE_PIPE, + [78757] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3252), 15, anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -132129,11 +132245,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1099), 20, - sym__automatic_semicolon, + ACTIONS(3254), 23, 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, @@ -132150,10 +132268,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [79089] = 3, + anon_sym_LBRACE_PIPE, + [78803] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3264), 15, + ACTIONS(3322), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -132169,7 +132288,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3266), 23, + ACTIONS(3324), 23, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -132193,10 +132312,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_LBRACE_PIPE, - [79135] = 3, + [78849] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3062), 15, + ACTIONS(3326), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -132212,7 +132331,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3064), 23, + ACTIONS(3328), 23, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -132236,10 +132355,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_LBRACE_PIPE, - [79181] = 3, + [78895] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1097), 15, + ACTIONS(3334), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -132255,7 +132374,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1099), 23, + ACTIONS(3336), 23, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -132279,10 +132398,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_LBRACE_PIPE, - [79227] = 3, + [78941] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3270), 15, + ACTIONS(3300), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -132298,7 +132417,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2949), 23, + ACTIONS(3302), 23, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -132322,16 +132441,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_LBRACE_PIPE, - [79273] = 6, + [78987] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2379), 1, - anon_sym_LBRACK, - ACTIONS(2385), 1, - anon_sym_QMARK_DOT, - ACTIONS(2410), 1, - anon_sym_DOT, - ACTIONS(1097), 15, + ACTIONS(3304), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -132347,10 +132460,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1099), 20, + ACTIONS(3005), 23, anon_sym_as, anon_sym_COMMA, 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, @@ -132368,74 +132484,96 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_LBRACE_PIPE, - [79325] = 24, + [79033] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(479), 1, - anon_sym_BQUOTE, - ACTIONS(2145), 1, - anon_sym_LPAREN, - ACTIONS(2175), 1, - anon_sym_LBRACK, - ACTIONS(2177), 1, - anon_sym_DOT, - ACTIONS(2863), 1, - anon_sym_QMARK_DOT, - ACTIONS(2915), 1, - anon_sym_as, - ACTIONS(2919), 1, + ACTIONS(3306), 15, + anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, - ACTIONS(3484), 1, + anon_sym_in, anon_sym_LT, - ACTIONS(3486), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(3488), 1, - anon_sym_AMP_AMP, - ACTIONS(3494), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(3496), 1, anon_sym_PIPE, - ACTIONS(3500), 1, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3007), 23, + anon_sym_as, + anon_sym_COMMA, + 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, - ACTIONS(3504), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - STATE(2565), 1, - sym_type_arguments, - ACTIONS(2945), 2, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3490), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(3498), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1128), 2, - sym_template_string, - sym_arguments, - ACTIONS(3480), 3, + anon_sym_BQUOTE, + anon_sym_LBRACE_PIPE, + [79079] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3308), 15, anon_sym_STAR, + anon_sym_LBRACE, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, anon_sym_SLASH, + anon_sym_QMARK, anon_sym_GT_GT, - ACTIONS(3492), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3310), 23, + anon_sym_as, + anon_sym_COMMA, + 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, - ACTIONS(3482), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3502), 5, + 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, - [79413] = 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_LBRACE_PIPE, + [79125] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3272), 15, + ACTIONS(3312), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -132451,7 +132589,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3274), 23, + ACTIONS(3031), 23, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -132475,10 +132613,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_LBRACE_PIPE, - [79459] = 3, + [79171] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3276), 15, + ACTIONS(3318), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -132494,7 +132632,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2951), 23, + ACTIONS(3320), 23, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -132518,74 +132656,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_LBRACE_PIPE, - [79505] = 24, + [79217] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(573), 1, - anon_sym_BQUOTE, - ACTIONS(2161), 1, - anon_sym_LPAREN, - ACTIONS(2379), 1, - anon_sym_LBRACK, - ACTIONS(2410), 1, - anon_sym_DOT, - ACTIONS(2915), 1, - anon_sym_as, - ACTIONS(2919), 1, - anon_sym_BANG, - ACTIONS(3176), 1, - anon_sym_QMARK_DOT, - ACTIONS(3484), 1, - anon_sym_LT, - ACTIONS(3486), 1, - anon_sym_QMARK, - ACTIONS(3488), 1, - anon_sym_AMP_AMP, - ACTIONS(3494), 1, - anon_sym_AMP, - ACTIONS(3496), 1, - anon_sym_PIPE, - ACTIONS(3500), 1, - anon_sym_STAR_STAR, - ACTIONS(3504), 1, - anon_sym_QMARK_QMARK, - STATE(2574), 1, - sym_type_arguments, - ACTIONS(2945), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3490), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(3498), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1643), 2, - sym_template_string, - sym_arguments, - ACTIONS(3480), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3492), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(3482), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3502), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [79593] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3278), 15, + ACTIONS(3330), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -132601,7 +132675,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2953), 23, + ACTIONS(3332), 23, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -132625,10 +132699,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_LBRACE_PIPE, - [79639] = 3, + [79263] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3280), 15, + ACTIONS(1037), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -132644,7 +132718,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3282), 23, + ACTIONS(1039), 23, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -132668,35 +132742,33 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_LBRACE_PIPE, - [79685] = 14, + [79309] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(2318), 1, + ACTIONS(2344), 1, anon_sym_DQUOTE, - ACTIONS(2320), 1, + ACTIONS(2346), 1, anon_sym_SQUOTE, - ACTIONS(3826), 1, + ACTIONS(3844), 1, anon_sym_STAR, - ACTIONS(3828), 1, + ACTIONS(3846), 1, anon_sym_EQ, - ACTIONS(3838), 1, + ACTIONS(3848), 1, + anon_sym_LBRACK, + ACTIONS(3850), 1, anon_sym_async, - ACTIONS(3840), 1, + ACTIONS(3852), 1, sym_number, - ACTIONS(3844), 1, - anon_sym_LBRACK, - ACTIONS(3846), 1, - sym_readonly, - STATE(2739), 1, + STATE(2696), 1, aux_sym_object_repeat1, - ACTIONS(3842), 2, + ACTIONS(3854), 2, anon_sym_get, anon_sym_set, - STATE(1948), 3, + STATE(1943), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2788), 9, + ACTIONS(2776), 9, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -132706,7 +132778,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(2750), 15, + ACTIONS(2804), 16, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -132722,10 +132794,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [79753] = 3, + sym_readonly, + [79375] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3284), 15, + ACTIONS(1085), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -132741,7 +132814,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3286), 23, + ACTIONS(1087), 23, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -132765,10 +132838,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_LBRACE_PIPE, - [79799] = 3, + [79421] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3288), 15, + ACTIONS(2314), 1, + anon_sym_LBRACK, + ACTIONS(2320), 1, + anon_sym_QMARK_DOT, + ACTIONS(2470), 1, + anon_sym_DOT, + ACTIONS(1037), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -132784,13 +132863,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3290), 23, + ACTIONS(1039), 20, anon_sym_as, anon_sym_COMMA, 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, @@ -132808,74 +132884,83 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_LBRACE_PIPE, - [79845] = 3, + [79473] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(3292), 15, + ACTIONS(845), 1, + anon_sym_DQUOTE, + ACTIONS(847), 1, + anon_sym_SQUOTE, + ACTIONS(3844), 1, anon_sym_STAR, - anon_sym_LBRACE, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3294), 23, - anon_sym_as, + ACTIONS(3846), 1, + anon_sym_EQ, + ACTIONS(3860), 1, + anon_sym_LBRACK, + ACTIONS(3862), 1, + sym_number, + STATE(2696), 1, + aux_sym_object_repeat1, + ACTIONS(3864), 2, + anon_sym_get, + anon_sym_set, + STATE(2193), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2776), 9, + sym__automatic_semicolon, 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_LBRACE_PIPE, - [79891] = 12, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(1607), 17, + anon_sym_export, + anon_sym_namespace, + anon_sym_type, + anon_sym_async, + 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, + sym_readonly, + [79537] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(845), 1, anon_sym_DQUOTE, ACTIONS(847), 1, anon_sym_SQUOTE, - ACTIONS(3826), 1, + ACTIONS(3844), 1, anon_sym_STAR, - ACTIONS(3828), 1, + ACTIONS(3846), 1, anon_sym_EQ, - ACTIONS(3830), 1, + ACTIONS(3860), 1, anon_sym_LBRACK, - ACTIONS(3832), 1, + ACTIONS(3862), 1, sym_number, - STATE(2739), 1, + STATE(2757), 1, aux_sym_object_repeat1, - ACTIONS(3834), 2, + ACTIONS(3864), 2, anon_sym_get, anon_sym_set, - STATE(2172), 3, + STATE(2193), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2788), 9, + ACTIONS(2776), 9, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -132903,10 +132988,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [79955] = 3, + [79601] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3300), 15, + ACTIONS(3294), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -132922,7 +133007,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3302), 23, + ACTIONS(3296), 23, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -132946,10 +133031,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_LBRACE_PIPE, - [80001] = 3, + [79647] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3304), 15, + ACTIONS(3290), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -132965,7 +133050,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3306), 23, + ACTIONS(3053), 23, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -132989,10 +133074,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_LBRACE_PIPE, - [80047] = 3, + [79693] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1037), 15, + ACTIONS(3286), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -133008,7 +133093,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1039), 23, + ACTIONS(3288), 23, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -133032,10 +133117,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_LBRACE_PIPE, - [80093] = 3, + [79739] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(965), 15, + ACTIONS(3250), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -133051,7 +133136,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(967), 23, + ACTIONS(2943), 23, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -133075,10 +133160,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_LBRACE_PIPE, - [80139] = 3, + [79785] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(845), 1, + anon_sym_DQUOTE, + ACTIONS(847), 1, + anon_sym_SQUOTE, + ACTIONS(3844), 1, + anon_sym_STAR, + ACTIONS(3846), 1, + anon_sym_EQ, + ACTIONS(3860), 1, + anon_sym_LBRACK, + ACTIONS(3862), 1, + sym_number, + STATE(2641), 1, + aux_sym_object_repeat1, + ACTIONS(3864), 2, + anon_sym_get, + anon_sym_set, + STATE(2193), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2776), 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(1607), 17, + anon_sym_export, + anon_sym_namespace, + anon_sym_type, + anon_sym_async, + 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, + sym_readonly, + [79849] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1017), 15, + ACTIONS(3131), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -133094,7 +133231,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1019), 23, + ACTIONS(3057), 23, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -133118,53 +133255,117 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_LBRACE_PIPE, - [80185] = 3, + [79895] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(985), 15, + ACTIONS(2344), 1, + anon_sym_DQUOTE, + ACTIONS(2346), 1, + anon_sym_SQUOTE, + ACTIONS(3844), 1, anon_sym_STAR, - anon_sym_LBRACE, - anon_sym_BANG, - anon_sym_in, + ACTIONS(3846), 1, + anon_sym_EQ, + ACTIONS(3850), 1, + anon_sym_async, + ACTIONS(3852), 1, + sym_number, + ACTIONS(3856), 1, + anon_sym_LBRACK, + ACTIONS(3858), 1, + sym_readonly, + STATE(2641), 1, + aux_sym_object_repeat1, + ACTIONS(3854), 2, + anon_sym_get, + anon_sym_set, + STATE(1943), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2776), 9, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, anon_sym_QMARK, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(987), 23, - anon_sym_as, + anon_sym_PIPE_RBRACE, + ACTIONS(2804), 15, + anon_sym_export, + anon_sym_namespace, + anon_sym_type, + 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, + [79963] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2344), 1, + anon_sym_DQUOTE, + ACTIONS(2346), 1, + anon_sym_SQUOTE, + ACTIONS(3844), 1, + anon_sym_STAR, + ACTIONS(3846), 1, + anon_sym_EQ, + ACTIONS(3848), 1, + anon_sym_LBRACK, + ACTIONS(3850), 1, + anon_sym_async, + ACTIONS(3852), 1, + sym_number, + STATE(2641), 1, + aux_sym_object_repeat1, + ACTIONS(3854), 2, + anon_sym_get, + anon_sym_set, + STATE(1943), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2776), 9, + sym__automatic_semicolon, 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_LBRACE_PIPE, - [80231] = 3, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2804), 16, + anon_sym_export, + anon_sym_namespace, + anon_sym_type, + 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, + sym_readonly, + [80029] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1047), 15, + ACTIONS(3246), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -133180,7 +133381,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1049), 23, + ACTIONS(3248), 23, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -133204,10 +133405,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_LBRACE_PIPE, - [80277] = 3, + [80075] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(975), 15, + ACTIONS(3238), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -133223,7 +133424,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(977), 23, + ACTIONS(3240), 23, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -133247,10 +133448,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_LBRACE_PIPE, - [80323] = 3, + [80121] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(955), 15, + ACTIONS(3127), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -133266,7 +133467,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(957), 23, + ACTIONS(3129), 23, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -133290,10 +133491,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_LBRACE_PIPE, - [80369] = 3, + [80167] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1067), 15, + ACTIONS(3234), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -133309,7 +133510,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1069), 23, + ACTIONS(3236), 23, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -133333,10 +133534,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_LBRACE_PIPE, - [80415] = 3, + [80213] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1027), 15, + ACTIONS(3230), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -133352,7 +133553,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1029), 23, + ACTIONS(3232), 23, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -133376,10 +133577,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_LBRACE_PIPE, - [80461] = 3, + [80259] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1105), 15, + ACTIONS(3226), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -133395,7 +133596,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1107), 23, + ACTIONS(3228), 23, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -133419,10 +133620,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_LBRACE_PIPE, - [80507] = 3, + [80305] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3316), 15, + ACTIONS(3222), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -133438,7 +133639,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3318), 23, + ACTIONS(3224), 23, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -133462,10 +133663,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_LBRACE_PIPE, - [80553] = 3, + [80351] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(941), 15, + ACTIONS(715), 1, + anon_sym_BQUOTE, + ACTIONS(2177), 1, + anon_sym_LPAREN, + ACTIONS(2314), 1, + anon_sym_LBRACK, + ACTIONS(2470), 1, + anon_sym_DOT, + ACTIONS(2941), 1, + anon_sym_as, + ACTIONS(2945), 1, + anon_sym_BANG, + ACTIONS(3188), 1, + anon_sym_QMARK_DOT, + ACTIONS(3514), 1, + anon_sym_LT, + ACTIONS(3516), 1, + anon_sym_QMARK, + ACTIONS(3518), 1, + anon_sym_AMP_AMP, + ACTIONS(3524), 1, + anon_sym_AMP, + ACTIONS(3526), 1, + anon_sym_PIPE, + ACTIONS(3530), 1, + anon_sym_STAR_STAR, + ACTIONS(3534), 1, + anon_sym_QMARK_QMARK, + STATE(2592), 1, + sym_type_arguments, + ACTIONS(2971), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3520), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(3528), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1669), 2, + sym_template_string, + sym_arguments, + ACTIONS(3510), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(3522), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(3512), 4, + anon_sym_in, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3532), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [80439] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2929), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -133481,7 +133746,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(943), 23, + ACTIONS(2931), 23, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -133505,10 +133770,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_LBRACE_PIPE, - [80599] = 3, + [80485] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3308), 15, + ACTIONS(3218), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -133524,7 +133789,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3310), 23, + ACTIONS(3220), 23, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -133548,26 +133813,35 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_LBRACE_PIPE, - [80645] = 10, + [80531] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(845), 1, + ACTIONS(2344), 1, anon_sym_DQUOTE, - ACTIONS(847), 1, + ACTIONS(2346), 1, anon_sym_SQUOTE, - ACTIONS(3828), 1, + ACTIONS(3844), 1, + anon_sym_STAR, + ACTIONS(3846), 1, anon_sym_EQ, - ACTIONS(3830), 1, - anon_sym_LBRACK, - ACTIONS(3832), 1, + ACTIONS(3850), 1, + anon_sym_async, + ACTIONS(3852), 1, sym_number, - STATE(2678), 1, + ACTIONS(3856), 1, + anon_sym_LBRACK, + ACTIONS(3858), 1, + sym_readonly, + STATE(2757), 1, aux_sym_object_repeat1, - STATE(2172), 3, + ACTIONS(3854), 2, + anon_sym_get, + anon_sym_set, + STATE(1943), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2788), 9, + ACTIONS(2776), 9, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -133577,15 +133851,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(1607), 19, + ACTIONS(2804), 15, anon_sym_export, anon_sym_namespace, anon_sym_type, - anon_sym_async, sym_identifier, anon_sym_static, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -133596,25 +133867,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - sym_readonly, - [80704] = 9, + [80599] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2175), 1, - anon_sym_LBRACK, - ACTIONS(2177), 1, - anon_sym_DOT, - ACTIONS(2179), 1, - anon_sym_QMARK_DOT, - ACTIONS(2855), 1, - anon_sym_EQ, - ACTIONS(2965), 1, - anon_sym_in, - ACTIONS(2968), 1, - anon_sym_of, - ACTIONS(1097), 13, + ACTIONS(3214), 15, anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, + anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, @@ -133626,9 +133886,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1099), 18, + ACTIONS(3216), 23, anon_sym_as, + anon_sym_COMMA, 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, @@ -133645,79 +133909,27 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [80761] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2318), 1, - anon_sym_DQUOTE, - ACTIONS(2320), 1, - anon_sym_SQUOTE, - ACTIONS(3826), 1, - anon_sym_STAR, - ACTIONS(3828), 1, - anon_sym_EQ, - ACTIONS(3838), 1, - anon_sym_async, - ACTIONS(3840), 1, - sym_number, - ACTIONS(3844), 1, - anon_sym_LBRACK, - ACTIONS(3846), 1, - sym_readonly, - ACTIONS(2820), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(3842), 2, - anon_sym_get, - anon_sym_set, - STATE(1948), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2788), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2750), 15, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - 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, - [80828] = 10, + anon_sym_LBRACE_PIPE, + [80645] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(845), 1, anon_sym_DQUOTE, ACTIONS(847), 1, anon_sym_SQUOTE, - ACTIONS(3828), 1, + ACTIONS(3846), 1, anon_sym_EQ, - ACTIONS(3830), 1, + ACTIONS(3860), 1, anon_sym_LBRACK, - ACTIONS(3832), 1, + ACTIONS(3862), 1, sym_number, - STATE(2772), 1, + STATE(2641), 1, aux_sym_object_repeat1, - STATE(2172), 3, + STATE(2193), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2788), 9, + ACTIONS(2776), 9, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -133747,31 +133959,31 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [80887] = 12, + [80704] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2318), 1, + ACTIONS(2344), 1, anon_sym_DQUOTE, - ACTIONS(2320), 1, + ACTIONS(2346), 1, anon_sym_SQUOTE, - ACTIONS(3844), 1, + ACTIONS(3848), 1, anon_sym_LBRACK, - ACTIONS(3864), 1, + ACTIONS(3880), 1, anon_sym_STAR, - ACTIONS(3866), 1, + ACTIONS(3882), 1, anon_sym_async, - ACTIONS(3868), 1, + ACTIONS(3884), 1, sym_number, - ACTIONS(3870), 1, + ACTIONS(3886), 1, anon_sym_abstract, - ACTIONS(3872), 2, + ACTIONS(3888), 2, anon_sym_get, anon_sym_set, - STATE(1927), 3, + STATE(1937), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2788), 9, + ACTIONS(2776), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -133781,7 +133993,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2750), 16, + ACTIONS(2804), 16, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -133798,46 +134010,44 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [80950] = 12, + [80767] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2318), 1, + ACTIONS(845), 1, anon_sym_DQUOTE, - ACTIONS(2320), 1, + ACTIONS(847), 1, anon_sym_SQUOTE, - ACTIONS(3836), 1, + ACTIONS(3846), 1, + anon_sym_EQ, + ACTIONS(3860), 1, anon_sym_LBRACK, - ACTIONS(3874), 1, - anon_sym_STAR, - ACTIONS(3876), 1, - anon_sym_async, - ACTIONS(3878), 1, + ACTIONS(3862), 1, sym_number, - ACTIONS(3880), 1, - anon_sym_abstract, - ACTIONS(3882), 2, - anon_sym_get, - anon_sym_set, - STATE(1933), 3, + STATE(2651), 1, + aux_sym_object_repeat1, + STATE(2193), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2788), 9, + ACTIONS(2776), 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, - ACTIONS(2750), 16, + anon_sym_PIPE_RBRACE, + ACTIONS(1607), 19, anon_sym_export, anon_sym_namespace, anon_sym_type, + anon_sym_async, sym_identifier, anon_sym_static, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -133849,22 +134059,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [81013] = 9, + [80826] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2175), 1, + ACTIONS(2191), 1, anon_sym_LBRACK, - ACTIONS(2177), 1, + ACTIONS(2193), 1, anon_sym_DOT, - ACTIONS(2179), 1, + ACTIONS(2195), 1, anon_sym_QMARK_DOT, - ACTIONS(2855), 1, + ACTIONS(2871), 1, anon_sym_EQ, - ACTIONS(3456), 1, + ACTIONS(3594), 1, anon_sym_in, - ACTIONS(3459), 1, + ACTIONS(3597), 1, anon_sym_of, - ACTIONS(1097), 13, + ACTIONS(1037), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_LT, @@ -133878,7 +134088,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1099), 18, + ACTIONS(1039), 18, anon_sym_as, anon_sym_LPAREN, anon_sym_AMP_AMP, @@ -133897,34 +134107,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [81070] = 13, + [80883] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2318), 1, + ACTIONS(845), 1, anon_sym_DQUOTE, - ACTIONS(2320), 1, + ACTIONS(847), 1, anon_sym_SQUOTE, - ACTIONS(3826), 1, + ACTIONS(3844), 1, anon_sym_STAR, - ACTIONS(3828), 1, + ACTIONS(3846), 1, anon_sym_EQ, - ACTIONS(3836), 1, + ACTIONS(3860), 1, anon_sym_LBRACK, - ACTIONS(3838), 1, - anon_sym_async, - ACTIONS(3840), 1, + ACTIONS(3862), 1, sym_number, - ACTIONS(2820), 2, + ACTIONS(2836), 2, anon_sym_COMMA, anon_sym_RBRACE, - ACTIONS(3842), 2, + ACTIONS(3864), 2, anon_sym_get, anon_sym_set, - STATE(1948), 3, + STATE(2193), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2788), 7, + ACTIONS(2776), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -133932,10 +134140,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(2750), 16, + ACTIONS(1607), 17, anon_sym_export, anon_sym_namespace, anon_sym_type, + anon_sym_async, sym_identifier, anon_sym_static, anon_sym_declare, @@ -133949,26 +134158,122 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [81135] = 10, + [80946] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2191), 1, + anon_sym_LBRACK, + ACTIONS(2193), 1, + anon_sym_DOT, + ACTIONS(2195), 1, + anon_sym_QMARK_DOT, + ACTIONS(2877), 1, + anon_sym_EQ, + ACTIONS(3603), 1, + anon_sym_in, + ACTIONS(3606), 1, + anon_sym_of, + ACTIONS(1037), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1039), 18, + 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, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [81003] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2191), 1, + anon_sym_LBRACK, + ACTIONS(2193), 1, + anon_sym_DOT, + ACTIONS(2195), 1, + anon_sym_QMARK_DOT, + ACTIONS(2877), 1, + anon_sym_EQ, + ACTIONS(3063), 1, + anon_sym_in, + ACTIONS(3066), 1, + anon_sym_of, + ACTIONS(1037), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1039), 18, + 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, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [81060] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(845), 1, anon_sym_DQUOTE, ACTIONS(847), 1, anon_sym_SQUOTE, - ACTIONS(3828), 1, + ACTIONS(3846), 1, anon_sym_EQ, - ACTIONS(3830), 1, + ACTIONS(3860), 1, anon_sym_LBRACK, - ACTIONS(3832), 1, + ACTIONS(3862), 1, sym_number, - STATE(2739), 1, + STATE(2757), 1, aux_sym_object_repeat1, - STATE(2172), 3, + STATE(2193), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2788), 9, + ACTIONS(2776), 9, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -133998,70 +134303,75 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [81194] = 9, + [81119] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2175), 1, - anon_sym_LBRACK, - ACTIONS(2177), 1, - anon_sym_DOT, - ACTIONS(2179), 1, - anon_sym_QMARK_DOT, - ACTIONS(2857), 1, - anon_sym_EQ, - ACTIONS(2974), 1, - anon_sym_in, - ACTIONS(2977), 1, - anon_sym_of, - ACTIONS(1097), 13, + ACTIONS(2344), 1, + anon_sym_DQUOTE, + ACTIONS(2346), 1, + anon_sym_SQUOTE, + ACTIONS(3844), 1, anon_sym_STAR, - anon_sym_BANG, + ACTIONS(3846), 1, + anon_sym_EQ, + ACTIONS(3850), 1, + anon_sym_async, + ACTIONS(3852), 1, + sym_number, + ACTIONS(3856), 1, + anon_sym_LBRACK, + ACTIONS(3858), 1, + sym_readonly, + ACTIONS(2836), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(3854), 2, + anon_sym_get, + anon_sym_set, + STATE(1943), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2776), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, anon_sym_QMARK, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1099), 18, - 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, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [81251] = 9, + anon_sym_PIPE_RBRACE, + ACTIONS(2804), 15, + anon_sym_export, + anon_sym_namespace, + anon_sym_type, + 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, + [81186] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2175), 1, + ACTIONS(2191), 1, anon_sym_LBRACK, - ACTIONS(2177), 1, + ACTIONS(2193), 1, anon_sym_DOT, - ACTIONS(2179), 1, + ACTIONS(2195), 1, anon_sym_QMARK_DOT, - ACTIONS(2857), 1, + ACTIONS(2871), 1, anon_sym_EQ, - ACTIONS(3591), 1, + ACTIONS(2986), 1, anon_sym_in, - ACTIONS(3594), 1, + ACTIONS(2989), 1, anon_sym_of, - ACTIONS(1097), 13, + ACTIONS(1037), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_LT, @@ -134075,7 +134385,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1099), 18, + ACTIONS(1039), 18, anon_sym_as, anon_sym_LPAREN, anon_sym_AMP_AMP, @@ -134094,32 +134404,34 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [81308] = 12, + [81243] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(845), 1, + ACTIONS(2344), 1, anon_sym_DQUOTE, - ACTIONS(847), 1, + ACTIONS(2346), 1, anon_sym_SQUOTE, - ACTIONS(3826), 1, + ACTIONS(3844), 1, anon_sym_STAR, - ACTIONS(3828), 1, + ACTIONS(3846), 1, anon_sym_EQ, - ACTIONS(3830), 1, + ACTIONS(3848), 1, anon_sym_LBRACK, - ACTIONS(3832), 1, + ACTIONS(3850), 1, + anon_sym_async, + ACTIONS(3852), 1, sym_number, - ACTIONS(2820), 2, + ACTIONS(2836), 2, anon_sym_COMMA, anon_sym_RBRACE, - ACTIONS(3834), 2, + ACTIONS(3854), 2, anon_sym_get, anon_sym_set, - STATE(2172), 3, + STATE(1943), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2788), 7, + ACTIONS(2776), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -134127,11 +134439,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(1607), 17, + ACTIONS(2804), 16, anon_sym_export, anon_sym_namespace, anon_sym_type, - anon_sym_async, sym_identifier, anon_sym_static, anon_sym_declare, @@ -134145,26 +134456,26 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [81371] = 10, + [81308] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(845), 1, anon_sym_DQUOTE, ACTIONS(847), 1, anon_sym_SQUOTE, - ACTIONS(3828), 1, + ACTIONS(3846), 1, anon_sym_EQ, - ACTIONS(3830), 1, + ACTIONS(3860), 1, anon_sym_LBRACK, - ACTIONS(3832), 1, + ACTIONS(3862), 1, sym_number, - STATE(2645), 1, + STATE(2696), 1, aux_sym_object_repeat1, - STATE(2172), 3, + STATE(2193), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2788), 9, + ACTIONS(2776), 9, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -134194,41 +134505,44 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [81430] = 10, + [81367] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(845), 1, + ACTIONS(2344), 1, anon_sym_DQUOTE, - ACTIONS(847), 1, + ACTIONS(2346), 1, anon_sym_SQUOTE, - ACTIONS(3830), 1, + ACTIONS(3856), 1, anon_sym_LBRACK, - ACTIONS(3884), 1, + ACTIONS(3890), 1, anon_sym_STAR, - ACTIONS(3886), 1, + ACTIONS(3892), 1, + anon_sym_async, + ACTIONS(3894), 1, sym_number, - ACTIONS(3888), 2, + ACTIONS(3896), 1, + anon_sym_abstract, + ACTIONS(3898), 2, anon_sym_get, anon_sym_set, - STATE(2180), 3, + STATE(1931), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2788), 9, + ACTIONS(2776), 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(1607), 17, + ACTIONS(2804), 16, anon_sym_export, anon_sym_namespace, anon_sym_type, - anon_sym_async, sym_identifier, anon_sym_static, anon_sym_declare, @@ -134242,41 +134556,44 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [81488] = 10, + [81430] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(845), 1, + ACTIONS(2344), 1, anon_sym_DQUOTE, - ACTIONS(847), 1, + ACTIONS(2346), 1, anon_sym_SQUOTE, - ACTIONS(3830), 1, + ACTIONS(3856), 1, anon_sym_LBRACK, - ACTIONS(3890), 1, + ACTIONS(3880), 1, anon_sym_STAR, - ACTIONS(3892), 1, + ACTIONS(3882), 1, + anon_sym_async, + ACTIONS(3884), 1, sym_number, - ACTIONS(3894), 2, + ACTIONS(3900), 1, + sym_readonly, + ACTIONS(3888), 2, anon_sym_get, anon_sym_set, - STATE(2176), 3, + STATE(1937), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2788), 9, + ACTIONS(2776), 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(1607), 17, + ACTIONS(2804), 15, anon_sym_export, anon_sym_namespace, anon_sym_type, - anon_sym_async, sym_identifier, anon_sym_static, anon_sym_declare, @@ -134289,42 +134606,39 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - sym_readonly, - [81546] = 12, + [81492] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2318), 1, + ACTIONS(2344), 1, anon_sym_DQUOTE, - ACTIONS(2320), 1, + ACTIONS(2346), 1, anon_sym_SQUOTE, - ACTIONS(3844), 1, + ACTIONS(3856), 1, anon_sym_LBRACK, - ACTIONS(3896), 1, + ACTIONS(3902), 1, anon_sym_STAR, - ACTIONS(3898), 1, + ACTIONS(3904), 1, anon_sym_async, - ACTIONS(3900), 1, + ACTIONS(3906), 1, sym_number, - ACTIONS(3904), 1, - sym_readonly, - ACTIONS(3902), 2, + ACTIONS(3908), 2, anon_sym_get, anon_sym_set, - STATE(1944), 3, + STATE(1939), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2788), 9, + ACTIONS(2776), 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(2750), 15, + ACTIONS(2804), 16, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -134340,46 +134654,44 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [81608] = 12, + sym_readonly, + [81552] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2318), 1, + ACTIONS(845), 1, anon_sym_DQUOTE, - ACTIONS(2320), 1, + ACTIONS(847), 1, anon_sym_SQUOTE, - ACTIONS(3844), 1, + ACTIONS(3846), 1, + anon_sym_EQ, + ACTIONS(3860), 1, anon_sym_LBRACK, - ACTIONS(3906), 1, - anon_sym_STAR, - ACTIONS(3908), 1, - anon_sym_async, - ACTIONS(3910), 1, + ACTIONS(3862), 1, sym_number, - ACTIONS(3914), 1, - sym_readonly, - ACTIONS(3912), 2, - anon_sym_get, - anon_sym_set, - STATE(1938), 3, + ACTIONS(2836), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(2193), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2788), 9, + ACTIONS(2776), 7, 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(2750), 15, + ACTIONS(1607), 19, anon_sym_export, anon_sym_namespace, anon_sym_type, + anon_sym_async, sym_identifier, anon_sym_static, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -134390,29 +134702,30 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [81670] = 11, + sym_readonly, + [81610] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2318), 1, + ACTIONS(2344), 1, anon_sym_DQUOTE, - ACTIONS(2320), 1, + ACTIONS(2346), 1, anon_sym_SQUOTE, - ACTIONS(3844), 1, + ACTIONS(3856), 1, anon_sym_LBRACK, - ACTIONS(3916), 1, + ACTIONS(3910), 1, anon_sym_STAR, - ACTIONS(3918), 1, + ACTIONS(3912), 1, anon_sym_async, - ACTIONS(3920), 1, + ACTIONS(3914), 1, sym_number, - ACTIONS(3922), 2, + ACTIONS(3916), 2, anon_sym_get, anon_sym_set, - STATE(1945), 3, + STATE(1940), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2788), 9, + ACTIONS(2776), 9, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -134422,7 +134735,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(2750), 16, + ACTIONS(2804), 16, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -134439,27 +134752,31 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [81730] = 10, + [81670] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(845), 1, + ACTIONS(2344), 1, anon_sym_DQUOTE, - ACTIONS(847), 1, + ACTIONS(2346), 1, anon_sym_SQUOTE, - ACTIONS(3830), 1, + ACTIONS(3856), 1, anon_sym_LBRACK, - ACTIONS(3874), 1, + ACTIONS(3890), 1, anon_sym_STAR, - ACTIONS(3924), 1, + ACTIONS(3892), 1, + anon_sym_async, + ACTIONS(3894), 1, sym_number, - ACTIONS(3926), 2, + ACTIONS(3918), 1, + sym_readonly, + ACTIONS(3898), 2, anon_sym_get, anon_sym_set, - STATE(2213), 3, + STATE(1931), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2788), 9, + ACTIONS(2776), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -134469,11 +134786,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(1607), 17, + ACTIONS(2804), 15, anon_sym_export, anon_sym_namespace, anon_sym_type, - anon_sym_async, sym_identifier, anon_sym_static, anon_sym_declare, @@ -134486,38 +134802,46 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - sym_readonly, - [81788] = 4, + [81732] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1643), 5, - anon_sym_STAR, - anon_sym_LBRACK, + ACTIONS(2344), 1, anon_sym_DQUOTE, + ACTIONS(2346), 1, anon_sym_SQUOTE, + ACTIONS(3856), 1, + anon_sym_LBRACK, + ACTIONS(3910), 1, + anon_sym_STAR, + ACTIONS(3912), 1, + anon_sym_async, + ACTIONS(3914), 1, sym_number, - ACTIONS(2788), 11, + ACTIONS(3920), 1, + sym_readonly, + ACTIONS(3916), 2, + anon_sym_get, + anon_sym_set, + STATE(1940), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2776), 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(1641), 20, + ACTIONS(2804), 15, anon_sym_export, anon_sym_namespace, anon_sym_type, - anon_sym_async, sym_identifier, anon_sym_static, - anon_sym_abstract, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -134528,28 +134852,27 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - sym_readonly, - [81834] = 10, + [81794] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(845), 1, anon_sym_DQUOTE, ACTIONS(847), 1, anon_sym_SQUOTE, - ACTIONS(3830), 1, + ACTIONS(3860), 1, anon_sym_LBRACK, - ACTIONS(3916), 1, + ACTIONS(3922), 1, anon_sym_STAR, - ACTIONS(3928), 1, + ACTIONS(3924), 1, sym_number, - ACTIONS(3930), 2, + ACTIONS(3926), 2, anon_sym_get, anon_sym_set, - STATE(2174), 3, + STATE(2264), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2788), 9, + ACTIONS(2776), 9, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -134577,27 +134900,27 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [81892] = 10, + [81852] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(845), 1, anon_sym_DQUOTE, ACTIONS(847), 1, anon_sym_SQUOTE, - ACTIONS(3830), 1, + ACTIONS(3860), 1, anon_sym_LBRACK, - ACTIONS(3906), 1, + ACTIONS(3910), 1, anon_sym_STAR, - ACTIONS(3932), 1, + ACTIONS(3928), 1, sym_number, - ACTIONS(3934), 2, + ACTIONS(3930), 2, anon_sym_get, anon_sym_set, - STATE(2244), 3, + STATE(2201), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2788), 9, + ACTIONS(2776), 9, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -134625,29 +134948,27 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [81950] = 11, + [81910] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2318), 1, + ACTIONS(845), 1, anon_sym_DQUOTE, - ACTIONS(2320), 1, + ACTIONS(847), 1, anon_sym_SQUOTE, - ACTIONS(3836), 1, + ACTIONS(3860), 1, anon_sym_LBRACK, - ACTIONS(3936), 1, + ACTIONS(3932), 1, anon_sym_STAR, - ACTIONS(3938), 1, - anon_sym_async, - ACTIONS(3940), 1, + ACTIONS(3934), 1, sym_number, - ACTIONS(3942), 2, + ACTIONS(3936), 2, anon_sym_get, anon_sym_set, - STATE(1943), 3, + STATE(2233), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2788), 9, + ACTIONS(2776), 9, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -134657,10 +134978,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(2750), 16, + ACTIONS(1607), 17, anon_sym_export, anon_sym_namespace, anon_sym_type, + anon_sym_async, sym_identifier, anon_sym_static, anon_sym_declare, @@ -134674,36 +134996,36 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [82010] = 10, + [81968] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(845), 1, anon_sym_DQUOTE, ACTIONS(847), 1, anon_sym_SQUOTE, - ACTIONS(3830), 1, + ACTIONS(3860), 1, anon_sym_LBRACK, - ACTIONS(3864), 1, + ACTIONS(3938), 1, anon_sym_STAR, - ACTIONS(3944), 1, + ACTIONS(3940), 1, sym_number, - ACTIONS(3946), 2, + ACTIONS(3942), 2, anon_sym_get, anon_sym_set, - STATE(2158), 3, + STATE(2164), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2788), 9, + ACTIONS(2776), 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(1607), 17, anon_sym_export, anon_sym_namespace, @@ -134722,27 +135044,29 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [82068] = 10, + [82026] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(845), 1, + ACTIONS(2344), 1, anon_sym_DQUOTE, - ACTIONS(847), 1, + ACTIONS(2346), 1, anon_sym_SQUOTE, - ACTIONS(3830), 1, + ACTIONS(3856), 1, anon_sym_LBRACK, - ACTIONS(3948), 1, + ACTIONS(3938), 1, anon_sym_STAR, - ACTIONS(3950), 1, + ACTIONS(3944), 1, + anon_sym_async, + ACTIONS(3946), 1, sym_number, - ACTIONS(3952), 2, + ACTIONS(3948), 2, anon_sym_get, anon_sym_set, - STATE(2242), 3, + STATE(1946), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2788), 9, + ACTIONS(2776), 9, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -134752,11 +135076,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(1607), 17, + ACTIONS(2804), 16, anon_sym_export, anon_sym_namespace, anon_sym_type, - anon_sym_async, sym_identifier, anon_sym_static, anon_sym_declare, @@ -134770,31 +135093,27 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [82126] = 12, + [82086] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2318), 1, + ACTIONS(845), 1, anon_sym_DQUOTE, - ACTIONS(2320), 1, + ACTIONS(847), 1, anon_sym_SQUOTE, - ACTIONS(3844), 1, + ACTIONS(3860), 1, anon_sym_LBRACK, - ACTIONS(3874), 1, + ACTIONS(3902), 1, anon_sym_STAR, - ACTIONS(3876), 1, - anon_sym_async, - ACTIONS(3878), 1, + ACTIONS(3950), 1, sym_number, - ACTIONS(3954), 1, - sym_readonly, - ACTIONS(3882), 2, + ACTIONS(3952), 2, anon_sym_get, anon_sym_set, - STATE(1933), 3, + STATE(2255), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2788), 9, + ACTIONS(2776), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -134804,10 +135123,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2750), 15, + ACTIONS(1607), 17, anon_sym_export, anon_sym_namespace, anon_sym_type, + anon_sym_async, sym_identifier, anon_sym_static, anon_sym_declare, @@ -134820,29 +135140,30 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [82188] = 11, + sym_readonly, + [82144] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2318), 1, + ACTIONS(2344), 1, anon_sym_DQUOTE, - ACTIONS(2320), 1, + ACTIONS(2346), 1, anon_sym_SQUOTE, - ACTIONS(3844), 1, + ACTIONS(3856), 1, anon_sym_LBRACK, - ACTIONS(3906), 1, + ACTIONS(3954), 1, anon_sym_STAR, - ACTIONS(3908), 1, + ACTIONS(3956), 1, anon_sym_async, - ACTIONS(3910), 1, + ACTIONS(3958), 1, sym_number, - ACTIONS(3912), 2, + ACTIONS(3960), 2, anon_sym_get, anon_sym_set, - STATE(1938), 3, + STATE(1945), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2788), 9, + ACTIONS(2776), 9, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -134852,7 +135173,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(2750), 16, + ACTIONS(2804), 16, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -134869,42 +135190,41 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [82248] = 11, + [82204] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2318), 1, + ACTIONS(845), 1, anon_sym_DQUOTE, - ACTIONS(2320), 1, + ACTIONS(847), 1, anon_sym_SQUOTE, - ACTIONS(3844), 1, + ACTIONS(3860), 1, anon_sym_LBRACK, - ACTIONS(3896), 1, + ACTIONS(3880), 1, anon_sym_STAR, - ACTIONS(3898), 1, - anon_sym_async, - ACTIONS(3900), 1, + ACTIONS(3962), 1, sym_number, - ACTIONS(3902), 2, + ACTIONS(3964), 2, anon_sym_get, anon_sym_set, - STATE(1944), 3, + STATE(2252), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2788), 9, + ACTIONS(2776), 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(2750), 16, + ACTIONS(1607), 17, anon_sym_export, anon_sym_namespace, anon_sym_type, + anon_sym_async, sym_identifier, anon_sym_static, anon_sym_declare, @@ -134918,36 +135238,36 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [82308] = 10, + [82262] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(845), 1, anon_sym_DQUOTE, ACTIONS(847), 1, anon_sym_SQUOTE, - ACTIONS(3830), 1, + ACTIONS(3860), 1, anon_sym_LBRACK, - ACTIONS(3956), 1, + ACTIONS(3954), 1, anon_sym_STAR, - ACTIONS(3958), 1, + ACTIONS(3966), 1, sym_number, - ACTIONS(3960), 2, + ACTIONS(3968), 2, anon_sym_get, anon_sym_set, - STATE(2221), 3, + STATE(2205), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2788), 9, + ACTIONS(2776), 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(1607), 17, anon_sym_export, anon_sym_namespace, @@ -134966,44 +135286,41 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [82366] = 12, + [82320] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2318), 1, + ACTIONS(845), 1, anon_sym_DQUOTE, - ACTIONS(2320), 1, + ACTIONS(847), 1, anon_sym_SQUOTE, - ACTIONS(3844), 1, + ACTIONS(3860), 1, anon_sym_LBRACK, - ACTIONS(3864), 1, + ACTIONS(3970), 1, anon_sym_STAR, - ACTIONS(3866), 1, - anon_sym_async, - ACTIONS(3868), 1, + ACTIONS(3972), 1, sym_number, - ACTIONS(3962), 1, - sym_readonly, - ACTIONS(3872), 2, + ACTIONS(3974), 2, anon_sym_get, anon_sym_set, - STATE(1927), 3, + STATE(2208), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2788), 9, + ACTIONS(2776), 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, - ACTIONS(2750), 15, + anon_sym_PIPE_RBRACE, + ACTIONS(1607), 17, anon_sym_export, anon_sym_namespace, anon_sym_type, + anon_sym_async, sym_identifier, anon_sym_static, anon_sym_declare, @@ -135016,41 +135333,43 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [82428] = 10, + sym_readonly, + [82378] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(845), 1, + ACTIONS(2344), 1, anon_sym_DQUOTE, - ACTIONS(847), 1, + ACTIONS(2346), 1, anon_sym_SQUOTE, - ACTIONS(3830), 1, + ACTIONS(3856), 1, anon_sym_LBRACK, - ACTIONS(3936), 1, + ACTIONS(3890), 1, anon_sym_STAR, - ACTIONS(3964), 1, + ACTIONS(3892), 1, + anon_sym_async, + ACTIONS(3894), 1, sym_number, - ACTIONS(3966), 2, + ACTIONS(3898), 2, anon_sym_get, anon_sym_set, - STATE(2177), 3, + STATE(1931), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2788), 9, + ACTIONS(2776), 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(1607), 17, + ACTIONS(2804), 16, anon_sym_export, anon_sym_namespace, anon_sym_type, - anon_sym_async, sym_identifier, anon_sym_static, anon_sym_declare, @@ -135064,29 +135383,27 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [82486] = 11, + [82438] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2318), 1, + ACTIONS(845), 1, anon_sym_DQUOTE, - ACTIONS(2320), 1, + ACTIONS(847), 1, anon_sym_SQUOTE, - ACTIONS(3844), 1, + ACTIONS(3860), 1, anon_sym_LBRACK, - ACTIONS(3968), 1, + ACTIONS(3890), 1, anon_sym_STAR, - ACTIONS(3970), 1, - anon_sym_async, - ACTIONS(3972), 1, + ACTIONS(3976), 1, sym_number, - ACTIONS(3974), 2, + ACTIONS(3978), 2, anon_sym_get, anon_sym_set, - STATE(1935), 3, + STATE(2169), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2788), 9, + ACTIONS(2776), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -135096,10 +135413,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2750), 16, + ACTIONS(1607), 17, anon_sym_export, anon_sym_namespace, anon_sym_type, + anon_sym_async, sym_identifier, anon_sym_static, anon_sym_declare, @@ -135113,29 +135431,27 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [82546] = 11, + [82496] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2318), 1, + ACTIONS(845), 1, anon_sym_DQUOTE, - ACTIONS(2320), 1, + ACTIONS(847), 1, anon_sym_SQUOTE, - ACTIONS(3844), 1, + ACTIONS(3860), 1, anon_sym_LBRACK, - ACTIONS(3864), 1, + ACTIONS(3980), 1, anon_sym_STAR, - ACTIONS(3866), 1, - anon_sym_async, - ACTIONS(3868), 1, + ACTIONS(3982), 1, sym_number, - ACTIONS(3872), 2, + ACTIONS(3984), 2, anon_sym_get, anon_sym_set, - STATE(1927), 3, + STATE(2228), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2788), 9, + ACTIONS(2776), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -135145,10 +135461,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2750), 16, + ACTIONS(1607), 17, anon_sym_export, anon_sym_namespace, anon_sym_type, + anon_sym_async, sym_identifier, anon_sym_static, anon_sym_declare, @@ -135162,41 +135479,44 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [82606] = 10, + [82554] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(845), 1, + ACTIONS(2344), 1, anon_sym_DQUOTE, - ACTIONS(847), 1, + ACTIONS(2346), 1, anon_sym_SQUOTE, - ACTIONS(3830), 1, + ACTIONS(3856), 1, anon_sym_LBRACK, - ACTIONS(3968), 1, + ACTIONS(3938), 1, anon_sym_STAR, - ACTIONS(3976), 1, + ACTIONS(3944), 1, + anon_sym_async, + ACTIONS(3946), 1, sym_number, - ACTIONS(3978), 2, + ACTIONS(3986), 1, + sym_readonly, + ACTIONS(3948), 2, anon_sym_get, anon_sym_set, - STATE(2219), 3, + STATE(1946), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2788), 9, + ACTIONS(2776), 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, - ACTIONS(1607), 17, + anon_sym_PIPE_RBRACE, + ACTIONS(2804), 15, anon_sym_export, anon_sym_namespace, anon_sym_type, - anon_sym_async, sym_identifier, anon_sym_static, anon_sym_declare, @@ -135209,32 +135529,29 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - sym_readonly, - [82664] = 12, + [82616] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2318), 1, + ACTIONS(2344), 1, anon_sym_DQUOTE, - ACTIONS(2320), 1, + ACTIONS(2346), 1, anon_sym_SQUOTE, - ACTIONS(3844), 1, + ACTIONS(3848), 1, anon_sym_LBRACK, - ACTIONS(3936), 1, + ACTIONS(3988), 1, anon_sym_STAR, - ACTIONS(3938), 1, + ACTIONS(3990), 1, anon_sym_async, - ACTIONS(3940), 1, + ACTIONS(3992), 1, sym_number, - ACTIONS(3980), 1, - sym_readonly, - ACTIONS(3942), 2, + ACTIONS(3994), 2, anon_sym_get, anon_sym_set, - STATE(1943), 3, + STATE(1951), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2788), 9, + ACTIONS(2776), 9, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -135244,7 +135561,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(2750), 15, + ACTIONS(2804), 16, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -135260,41 +135577,36 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [82726] = 10, + sym_readonly, + [82676] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(845), 1, + ACTIONS(1643), 5, + anon_sym_STAR, + anon_sym_LBRACK, anon_sym_DQUOTE, - ACTIONS(847), 1, anon_sym_SQUOTE, - ACTIONS(3828), 1, - anon_sym_EQ, - ACTIONS(3830), 1, - anon_sym_LBRACK, - ACTIONS(3832), 1, sym_number, - ACTIONS(2820), 2, + ACTIONS(2776), 11, + sym__automatic_semicolon, + anon_sym_EQ, anon_sym_COMMA, anon_sym_RBRACE, - STATE(2172), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2788), 7, - sym__automatic_semicolon, + anon_sym_BANG, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(1607), 19, + ACTIONS(1641), 20, anon_sym_export, anon_sym_namespace, anon_sym_type, anon_sym_async, sym_identifier, anon_sym_static, + anon_sym_abstract, anon_sym_get, anon_sym_set, anon_sym_declare, @@ -135308,29 +135620,29 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [82784] = 11, + [82722] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2318), 1, + ACTIONS(2344), 1, anon_sym_DQUOTE, - ACTIONS(2320), 1, + ACTIONS(2346), 1, anon_sym_SQUOTE, - ACTIONS(3844), 1, + ACTIONS(3856), 1, anon_sym_LBRACK, - ACTIONS(3890), 1, + ACTIONS(3922), 1, anon_sym_STAR, - ACTIONS(3982), 1, + ACTIONS(3996), 1, anon_sym_async, - ACTIONS(3984), 1, + ACTIONS(3998), 1, sym_number, - ACTIONS(3986), 2, + ACTIONS(4000), 2, anon_sym_get, anon_sym_set, - STATE(1942), 3, + STATE(1948), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2788), 9, + ACTIONS(2776), 9, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -135340,7 +135652,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(2750), 16, + ACTIONS(2804), 16, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -135357,27 +135669,27 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [82844] = 10, + [82782] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(845), 1, anon_sym_DQUOTE, ACTIONS(847), 1, anon_sym_SQUOTE, - ACTIONS(3830), 1, + ACTIONS(3860), 1, anon_sym_LBRACK, - ACTIONS(3896), 1, - anon_sym_STAR, ACTIONS(3988), 1, + anon_sym_STAR, + ACTIONS(4002), 1, sym_number, - ACTIONS(3990), 2, + ACTIONS(4004), 2, anon_sym_get, anon_sym_set, - STATE(2175), 3, + STATE(2222), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2788), 9, + ACTIONS(2776), 9, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -135405,44 +135717,44 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [82902] = 14, + [82840] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(113), 1, - anon_sym_COMMA, - ACTIONS(845), 1, + ACTIONS(2344), 1, anon_sym_DQUOTE, - ACTIONS(847), 1, + ACTIONS(2346), 1, anon_sym_SQUOTE, - ACTIONS(1377), 1, - sym_number, - ACTIONS(3828), 1, - anon_sym_EQ, - ACTIONS(3830), 1, + ACTIONS(3856), 1, anon_sym_LBRACK, - ACTIONS(3992), 1, + ACTIONS(3988), 1, anon_sym_STAR, - ACTIONS(3994), 1, - anon_sym_RBRACE, - STATE(2678), 1, - aux_sym_object_repeat1, - ACTIONS(1611), 2, + ACTIONS(3990), 1, + anon_sym_async, + ACTIONS(3992), 1, + sym_number, + ACTIONS(4006), 1, + sym_readonly, + ACTIONS(3994), 2, anon_sym_get, anon_sym_set, - STATE(2189), 3, + STATE(1951), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2788), 4, + ACTIONS(2776), 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, - ACTIONS(1607), 17, + anon_sym_PIPE_RBRACE, + ACTIONS(2804), 15, anon_sym_export, anon_sym_namespace, anon_sym_type, - anon_sym_async, sym_identifier, anon_sym_static, anon_sym_declare, @@ -135455,8 +135767,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - sym_readonly, - [82967] = 14, + [82902] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(113), 1, @@ -135465,35 +135776,38 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(847), 1, anon_sym_SQUOTE, - ACTIONS(1377), 1, + ACTIONS(1403), 1, sym_number, - ACTIONS(3828), 1, + ACTIONS(1609), 1, + anon_sym_async, + ACTIONS(1613), 1, + sym_readonly, + ACTIONS(3846), 1, anon_sym_EQ, - ACTIONS(3830), 1, + ACTIONS(3860), 1, anon_sym_LBRACK, - ACTIONS(3992), 1, + ACTIONS(4008), 1, anon_sym_STAR, - ACTIONS(3996), 1, + ACTIONS(4010), 1, anon_sym_RBRACE, - STATE(2659), 1, + STATE(2696), 1, aux_sym_object_repeat1, ACTIONS(1611), 2, anon_sym_get, anon_sym_set, - STATE(2189), 3, + STATE(2218), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2788), 4, + ACTIONS(2776), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(1607), 17, + ACTIONS(1607), 15, anon_sym_export, anon_sym_namespace, anon_sym_type, - anon_sym_async, sym_identifier, anon_sym_static, anon_sym_declare, @@ -135506,39 +135820,47 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - sym_readonly, - [83032] = 6, + [82971] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(3828), 1, - anon_sym_EQ, - STATE(2772), 1, - aux_sym_object_repeat1, - ACTIONS(1643), 5, - anon_sym_STAR, - anon_sym_LBRACK, + ACTIONS(113), 1, + anon_sym_COMMA, + ACTIONS(845), 1, anon_sym_DQUOTE, + ACTIONS(847), 1, anon_sym_SQUOTE, + ACTIONS(1403), 1, sym_number, - ACTIONS(2788), 9, - sym__automatic_semicolon, - anon_sym_COMMA, + ACTIONS(1609), 1, + anon_sym_async, + ACTIONS(3846), 1, + anon_sym_EQ, + ACTIONS(3860), 1, + anon_sym_LBRACK, + ACTIONS(4008), 1, + anon_sym_STAR, + ACTIONS(4010), 1, anon_sym_RBRACE, + STATE(2696), 1, + aux_sym_object_repeat1, + ACTIONS(1611), 2, + anon_sym_get, + anon_sym_set, + STATE(2218), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2776), 4, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(1641), 19, + ACTIONS(1607), 16, anon_sym_export, anon_sym_namespace, anon_sym_type, - anon_sym_async, sym_identifier, anon_sym_static, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -135550,7 +135872,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [83081] = 15, + [83038] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(113), 1, @@ -135559,33 +135881,35 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(847), 1, anon_sym_SQUOTE, - ACTIONS(1377), 1, + ACTIONS(1403), 1, sym_number, ACTIONS(1609), 1, anon_sym_async, - ACTIONS(3828), 1, + ACTIONS(1613), 1, + sym_readonly, + ACTIONS(3846), 1, anon_sym_EQ, - ACTIONS(3830), 1, + ACTIONS(3860), 1, anon_sym_LBRACK, - ACTIONS(3992), 1, + ACTIONS(4008), 1, anon_sym_STAR, - ACTIONS(3994), 1, + ACTIONS(4012), 1, anon_sym_RBRACE, - STATE(2678), 1, + STATE(2689), 1, aux_sym_object_repeat1, ACTIONS(1611), 2, anon_sym_get, anon_sym_set, - STATE(2189), 3, + STATE(2218), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2788), 4, + ACTIONS(2776), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(1607), 16, + ACTIONS(1607), 15, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -135601,23 +135925,20 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - sym_readonly, - [83148] = 8, + [83107] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(845), 1, + ACTIONS(3846), 1, + anon_sym_EQ, + STATE(2757), 1, + aux_sym_object_repeat1, + ACTIONS(1643), 5, + anon_sym_STAR, + anon_sym_LBRACK, anon_sym_DQUOTE, - ACTIONS(847), 1, anon_sym_SQUOTE, - ACTIONS(3830), 1, - anon_sym_LBRACK, - ACTIONS(3932), 1, sym_number, - STATE(2244), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2788), 9, + ACTIONS(2776), 9, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -135627,7 +135948,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(1607), 19, + ACTIONS(1641), 19, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -135647,50 +135968,117 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [83201] = 6, + [83156] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(4002), 1, - anon_sym_LPAREN, - ACTIONS(4004), 1, - anon_sym_DOT, - STATE(1820), 1, - sym_arguments, - ACTIONS(4000), 10, - anon_sym_STAR, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1728), 1, anon_sym_LBRACE, - anon_sym_RBRACE, + ACTIONS(4016), 1, + anon_sym_RPAREN, + ACTIONS(4018), 1, anon_sym_LBRACK, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - anon_sym_AT, - ACTIONS(3998), 22, + ACTIONS(4020), 1, + sym_readonly, + STATE(1806), 1, + aux_sym_export_statement_repeat1, + STATE(1890), 1, + sym_decorator, + STATE(1910), 1, + sym_accessibility_modifier, + STATE(2103), 1, + sym__parameter_name, + STATE(2340), 1, + sym_array, + STATE(2345), 1, + sym_object, + STATE(2595), 1, + sym__rest_identifier, + ACTIONS(4014), 2, + sym_identifier, + sym_this, + ACTIONS(1684), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(2963), 3, + sym_rest_parameter, + sym_required_parameter, + sym_optional_parameter, + ACTIONS(1672), 14, anon_sym_export, anon_sym_namespace, anon_sym_type, - anon_sym_class, anon_sym_async, - sym_identifier, - sym_this, anon_sym_static, - anon_sym_abstract, 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, + [83229] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1728), 1, + anon_sym_LBRACE, + ACTIONS(4018), 1, + anon_sym_LBRACK, + ACTIONS(4020), 1, + sym_readonly, + ACTIONS(4022), 1, + anon_sym_RPAREN, + STATE(1806), 1, + aux_sym_export_statement_repeat1, + STATE(1890), 1, + sym_decorator, + STATE(1910), 1, + sym_accessibility_modifier, + STATE(2103), 1, + sym__parameter_name, + STATE(2340), 1, + sym_array, + STATE(2345), 1, + sym_object, + STATE(2595), 1, + sym__rest_identifier, + ACTIONS(4014), 2, + sym_identifier, + sym_this, + ACTIONS(1684), 3, anon_sym_public, anon_sym_private, anon_sym_protected, + STATE(2963), 3, + sym_rest_parameter, + sym_required_parameter, + sym_optional_parameter, + ACTIONS(1672), 14, + anon_sym_export, + anon_sym_namespace, + anon_sym_type, + anon_sym_async, + anon_sym_static, + 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, - sym_readonly, - [83250] = 16, + [83302] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(113), 1, @@ -135699,38 +136087,35 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(847), 1, anon_sym_SQUOTE, - ACTIONS(1242), 1, - anon_sym_RBRACE, - ACTIONS(1377), 1, + ACTIONS(1403), 1, sym_number, - ACTIONS(1609), 1, - anon_sym_async, - ACTIONS(1613), 1, - sym_readonly, - ACTIONS(3828), 1, + ACTIONS(3846), 1, anon_sym_EQ, - ACTIONS(3830), 1, + ACTIONS(3860), 1, anon_sym_LBRACK, - ACTIONS(3992), 1, + ACTIONS(4008), 1, anon_sym_STAR, - STATE(2645), 1, + ACTIONS(4010), 1, + anon_sym_RBRACE, + STATE(2696), 1, aux_sym_object_repeat1, ACTIONS(1611), 2, anon_sym_get, anon_sym_set, - STATE(2189), 3, + STATE(2218), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2788), 4, + ACTIONS(2776), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(1607), 15, + ACTIONS(1607), 17, anon_sym_export, anon_sym_namespace, anon_sym_type, + anon_sym_async, sym_identifier, anon_sym_static, anon_sym_declare, @@ -135743,31 +136128,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [83319] = 8, + sym_readonly, + [83367] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(845), 1, anon_sym_DQUOTE, ACTIONS(847), 1, anon_sym_SQUOTE, - ACTIONS(3830), 1, + ACTIONS(3860), 1, anon_sym_LBRACK, - ACTIONS(3976), 1, + ACTIONS(4002), 1, sym_number, - STATE(2219), 3, + STATE(2222), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2788), 9, + ACTIONS(2776), 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(1607), 19, anon_sym_export, anon_sym_namespace, @@ -135788,22 +136174,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [83372] = 8, + [83420] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(845), 1, anon_sym_DQUOTE, ACTIONS(847), 1, anon_sym_SQUOTE, - ACTIONS(3830), 1, + ACTIONS(3860), 1, anon_sym_LBRACK, - ACTIONS(4006), 1, + ACTIONS(3950), 1, sym_number, - STATE(2253), 3, + STATE(2255), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2788), 9, + ACTIONS(2776), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -135833,22 +136219,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [83425] = 8, + [83473] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(845), 1, anon_sym_DQUOTE, ACTIONS(847), 1, anon_sym_SQUOTE, - ACTIONS(3830), 1, + ACTIONS(3860), 1, anon_sym_LBRACK, - ACTIONS(3928), 1, + ACTIONS(3924), 1, sym_number, - STATE(2174), 3, + STATE(2264), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2788), 9, + ACTIONS(2776), 9, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -135878,31 +136264,31 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [83478] = 8, + [83526] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(845), 1, anon_sym_DQUOTE, ACTIONS(847), 1, anon_sym_SQUOTE, - ACTIONS(3830), 1, + ACTIONS(3860), 1, anon_sym_LBRACK, - ACTIONS(3924), 1, + ACTIONS(3928), 1, sym_number, - STATE(2213), 3, + STATE(2201), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2788), 9, + ACTIONS(2776), 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(1607), 19, anon_sym_export, anon_sym_namespace, @@ -135923,22 +136309,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [83531] = 8, + [83579] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(2318), 1, + ACTIONS(113), 1, + anon_sym_COMMA, + ACTIONS(845), 1, anon_sym_DQUOTE, - ACTIONS(2320), 1, + ACTIONS(847), 1, anon_sym_SQUOTE, - ACTIONS(3844), 1, + ACTIONS(1403), 1, + sym_number, + ACTIONS(1609), 1, + anon_sym_async, + ACTIONS(3846), 1, + anon_sym_EQ, + ACTIONS(3860), 1, anon_sym_LBRACK, ACTIONS(4008), 1, + anon_sym_STAR, + ACTIONS(4012), 1, + anon_sym_RBRACE, + STATE(2689), 1, + aux_sym_object_repeat1, + ACTIONS(1611), 2, + anon_sym_get, + anon_sym_set, + STATE(2218), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2776), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(1607), 16, + anon_sym_export, + anon_sym_namespace, + anon_sym_type, + 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, + sym_readonly, + [83646] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(845), 1, + anon_sym_DQUOTE, + ACTIONS(847), 1, + anon_sym_SQUOTE, + ACTIONS(3860), 1, + anon_sym_LBRACK, + ACTIONS(4024), 1, sym_number, - STATE(2043), 3, + STATE(2251), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2788), 9, + ACTIONS(2776), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -135948,7 +136386,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2750), 19, + ACTIONS(1607), 19, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -135968,102 +136406,92 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [83584] = 18, + [83699] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(459), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1722), 1, - anon_sym_LBRACE, - ACTIONS(4012), 1, - anon_sym_RPAREN, - ACTIONS(4014), 1, + ACTIONS(2344), 1, + anon_sym_DQUOTE, + ACTIONS(2346), 1, + anon_sym_SQUOTE, + ACTIONS(3856), 1, anon_sym_LBRACK, - ACTIONS(4016), 1, - sym_readonly, - STATE(1802), 1, - aux_sym_export_statement_repeat1, - STATE(1905), 1, - sym_decorator, - STATE(1906), 1, - sym_accessibility_modifier, - STATE(2094), 1, - sym__parameter_name, - STATE(2372), 1, - sym_object, - STATE(2378), 1, - sym_array, - STATE(2534), 1, - sym__rest_identifier, - ACTIONS(4010), 2, - sym_identifier, - sym_this, - ACTIONS(1697), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(2852), 3, - sym_rest_parameter, - sym_required_parameter, - sym_optional_parameter, - ACTIONS(1685), 14, + ACTIONS(4026), 1, + sym_number, + STATE(2053), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2776), 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(2804), 19, anon_sym_export, anon_sym_namespace, anon_sym_type, anon_sym_async, + 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, - [83657] = 18, + sym_readonly, + [83752] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(91), 1, anon_sym_AT, ACTIONS(459), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1722), 1, + ACTIONS(1728), 1, anon_sym_LBRACE, - ACTIONS(4014), 1, + ACTIONS(4018), 1, anon_sym_LBRACK, - ACTIONS(4016), 1, + ACTIONS(4020), 1, sym_readonly, - ACTIONS(4018), 1, - anon_sym_RPAREN, - STATE(1802), 1, + ACTIONS(4028), 1, + anon_sym_class, + STATE(1877), 1, aux_sym_export_statement_repeat1, - STATE(1905), 1, + STATE(1890), 1, sym_decorator, - STATE(1906), 1, + STATE(1910), 1, sym_accessibility_modifier, - STATE(2094), 1, + STATE(2103), 1, sym__parameter_name, - STATE(2372), 1, - sym_object, - STATE(2378), 1, + STATE(2340), 1, sym_array, - STATE(2534), 1, + STATE(2345), 1, + sym_object, + STATE(2595), 1, sym__rest_identifier, - ACTIONS(4010), 2, + ACTIONS(4014), 2, sym_identifier, sym_this, - ACTIONS(1697), 3, + ACTIONS(1684), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(2852), 3, + STATE(2661), 3, sym_rest_parameter, sym_required_parameter, sym_optional_parameter, - ACTIONS(1685), 14, + ACTIONS(1672), 14, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -136078,7 +136506,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [83730] = 14, + [83825] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(113), 1, @@ -136089,33 +136517,34 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, ACTIONS(1242), 1, anon_sym_RBRACE, - ACTIONS(1377), 1, + ACTIONS(1403), 1, sym_number, - ACTIONS(3828), 1, + ACTIONS(1609), 1, + anon_sym_async, + ACTIONS(3846), 1, anon_sym_EQ, - ACTIONS(3830), 1, + ACTIONS(3860), 1, anon_sym_LBRACK, - ACTIONS(3992), 1, + ACTIONS(4008), 1, anon_sym_STAR, - STATE(2645), 1, + STATE(2651), 1, aux_sym_object_repeat1, ACTIONS(1611), 2, anon_sym_get, anon_sym_set, - STATE(2189), 3, + STATE(2218), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2788), 4, + ACTIONS(2776), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(1607), 17, + ACTIONS(1607), 16, anon_sym_export, anon_sym_namespace, anon_sym_type, - anon_sym_async, sym_identifier, anon_sym_static, anon_sym_declare, @@ -136129,162 +136558,112 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [83795] = 8, + [83892] = 16, ACTIONS(3), 1, sym_comment, + ACTIONS(113), 1, + anon_sym_COMMA, ACTIONS(845), 1, anon_sym_DQUOTE, ACTIONS(847), 1, anon_sym_SQUOTE, - ACTIONS(3830), 1, - anon_sym_LBRACK, - ACTIONS(3944), 1, + ACTIONS(1242), 1, + anon_sym_RBRACE, + ACTIONS(1403), 1, sym_number, - STATE(2158), 3, + ACTIONS(1609), 1, + anon_sym_async, + ACTIONS(1613), 1, + sym_readonly, + ACTIONS(3846), 1, + anon_sym_EQ, + ACTIONS(3860), 1, + anon_sym_LBRACK, + ACTIONS(4008), 1, + anon_sym_STAR, + STATE(2651), 1, + aux_sym_object_repeat1, + ACTIONS(1611), 2, + anon_sym_get, + anon_sym_set, + STATE(2218), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2788), 9, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, + ACTIONS(2776), 4, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(1607), 19, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - anon_sym_async, - 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, - sym_readonly, - [83848] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(459), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1722), 1, - anon_sym_LBRACE, - ACTIONS(4014), 1, - anon_sym_LBRACK, - ACTIONS(4016), 1, - sym_readonly, - ACTIONS(4020), 1, - anon_sym_RPAREN, - STATE(1802), 1, - aux_sym_export_statement_repeat1, - STATE(1905), 1, - sym_decorator, - STATE(1906), 1, - sym_accessibility_modifier, - STATE(2094), 1, - sym__parameter_name, - STATE(2372), 1, - sym_object, - STATE(2378), 1, - sym_array, - STATE(2534), 1, - sym__rest_identifier, - ACTIONS(4010), 2, - sym_identifier, - sym_this, - ACTIONS(1697), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(2852), 3, - sym_rest_parameter, - sym_required_parameter, - sym_optional_parameter, - ACTIONS(1685), 14, + ACTIONS(1607), 15, anon_sym_export, anon_sym_namespace, anon_sym_type, - anon_sym_async, + 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, - [83921] = 18, + [83961] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(459), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1722), 1, - anon_sym_LBRACE, - ACTIONS(4014), 1, + ACTIONS(113), 1, + anon_sym_COMMA, + ACTIONS(845), 1, + anon_sym_DQUOTE, + ACTIONS(847), 1, + anon_sym_SQUOTE, + ACTIONS(1244), 1, + anon_sym_RBRACE, + ACTIONS(1403), 1, + sym_number, + ACTIONS(1609), 1, + anon_sym_async, + ACTIONS(3846), 1, + anon_sym_EQ, + ACTIONS(3860), 1, anon_sym_LBRACK, - ACTIONS(4016), 1, - sym_readonly, - ACTIONS(4022), 1, - anon_sym_class, - STATE(1874), 1, - aux_sym_export_statement_repeat1, - STATE(1905), 1, - sym_decorator, - STATE(1906), 1, - sym_accessibility_modifier, - STATE(2094), 1, - sym__parameter_name, - STATE(2372), 1, - sym_object, - STATE(2378), 1, - sym_array, - STATE(2534), 1, - sym__rest_identifier, - ACTIONS(4010), 2, - sym_identifier, - sym_this, - ACTIONS(1697), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(2714), 3, - sym_rest_parameter, - sym_required_parameter, - sym_optional_parameter, - ACTIONS(1685), 14, + ACTIONS(4008), 1, + anon_sym_STAR, + STATE(2757), 1, + aux_sym_object_repeat1, + ACTIONS(1611), 2, + anon_sym_get, + anon_sym_set, + STATE(2218), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2776), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(1607), 16, anon_sym_export, anon_sym_namespace, anon_sym_type, - anon_sym_async, + 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, - [83994] = 14, + sym_readonly, + [84028] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(113), 1, @@ -136293,26 +136672,26 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(847), 1, anon_sym_SQUOTE, - ACTIONS(1244), 1, + ACTIONS(1242), 1, anon_sym_RBRACE, - ACTIONS(1377), 1, + ACTIONS(1403), 1, sym_number, - ACTIONS(3828), 1, + ACTIONS(3846), 1, anon_sym_EQ, - ACTIONS(3830), 1, + ACTIONS(3860), 1, anon_sym_LBRACK, - ACTIONS(3992), 1, + ACTIONS(4008), 1, anon_sym_STAR, - STATE(2772), 1, + STATE(2651), 1, aux_sym_object_repeat1, ACTIONS(1611), 2, anon_sym_get, anon_sym_set, - STATE(2189), 3, + STATE(2218), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2788), 4, + ACTIONS(2776), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, @@ -136335,32 +136714,30 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [84059] = 8, + [84093] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(845), 1, + ACTIONS(3846), 1, + anon_sym_EQ, + STATE(2696), 1, + aux_sym_object_repeat1, + ACTIONS(1643), 5, + anon_sym_STAR, + anon_sym_LBRACK, anon_sym_DQUOTE, - ACTIONS(847), 1, anon_sym_SQUOTE, - ACTIONS(3830), 1, - anon_sym_LBRACK, - ACTIONS(3958), 1, sym_number, - STATE(2221), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2788), 9, + ACTIONS(2776), 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, - ACTIONS(1607), 19, + anon_sym_PIPE_RBRACE, + ACTIONS(1641), 19, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -136380,49 +136757,38 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [84112] = 16, + [84142] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(113), 1, - anon_sym_COMMA, - ACTIONS(845), 1, + ACTIONS(3846), 1, + anon_sym_EQ, + STATE(2641), 1, + aux_sym_object_repeat1, + ACTIONS(1643), 5, + anon_sym_STAR, + anon_sym_LBRACK, anon_sym_DQUOTE, - ACTIONS(847), 1, anon_sym_SQUOTE, - ACTIONS(1244), 1, - anon_sym_RBRACE, - ACTIONS(1377), 1, sym_number, - ACTIONS(1609), 1, - anon_sym_async, - ACTIONS(1613), 1, - sym_readonly, - ACTIONS(3828), 1, - anon_sym_EQ, - ACTIONS(3830), 1, - anon_sym_LBRACK, - ACTIONS(3992), 1, - anon_sym_STAR, - STATE(2772), 1, - aux_sym_object_repeat1, - ACTIONS(1611), 2, - anon_sym_get, - anon_sym_set, - STATE(2189), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2788), 4, + ACTIONS(2776), 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, - ACTIONS(1607), 15, + anon_sym_PIPE_RBRACE, + ACTIONS(1641), 19, anon_sym_export, anon_sym_namespace, anon_sym_type, + anon_sym_async, sym_identifier, anon_sym_static, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -136433,7 +136799,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [84181] = 15, + sym_readonly, + [84191] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(113), 1, @@ -136442,36 +136809,35 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(847), 1, anon_sym_SQUOTE, - ACTIONS(1242), 1, - anon_sym_RBRACE, - ACTIONS(1377), 1, + ACTIONS(1403), 1, sym_number, - ACTIONS(1609), 1, - anon_sym_async, - ACTIONS(3828), 1, + ACTIONS(3846), 1, anon_sym_EQ, - ACTIONS(3830), 1, + ACTIONS(3860), 1, anon_sym_LBRACK, - ACTIONS(3992), 1, + ACTIONS(4008), 1, anon_sym_STAR, - STATE(2645), 1, + ACTIONS(4012), 1, + anon_sym_RBRACE, + STATE(2689), 1, aux_sym_object_repeat1, ACTIONS(1611), 2, anon_sym_get, anon_sym_set, - STATE(2189), 3, + STATE(2218), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2788), 4, + ACTIONS(2776), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(1607), 16, + ACTIONS(1607), 17, anon_sym_export, anon_sym_namespace, anon_sym_type, + anon_sym_async, sym_identifier, anon_sym_static, anon_sym_declare, @@ -136485,131 +136851,86 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [84248] = 18, + [84256] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(91), 1, anon_sym_AT, ACTIONS(459), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1722), 1, + ACTIONS(1728), 1, anon_sym_LBRACE, - ACTIONS(4014), 1, + ACTIONS(4018), 1, anon_sym_LBRACK, - ACTIONS(4016), 1, + ACTIONS(4020), 1, sym_readonly, - ACTIONS(4024), 1, + ACTIONS(4030), 1, anon_sym_RPAREN, - STATE(1802), 1, + STATE(1806), 1, aux_sym_export_statement_repeat1, - STATE(1905), 1, + STATE(1890), 1, sym_decorator, - STATE(1906), 1, + STATE(1910), 1, sym_accessibility_modifier, - STATE(2094), 1, + STATE(2103), 1, sym__parameter_name, - STATE(2372), 1, - sym_object, - STATE(2378), 1, + STATE(2340), 1, sym_array, - STATE(2534), 1, + STATE(2345), 1, + sym_object, + STATE(2595), 1, sym__rest_identifier, - ACTIONS(4010), 2, + ACTIONS(4014), 2, sym_identifier, sym_this, - ACTIONS(1697), 3, + ACTIONS(1684), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(2852), 3, + STATE(2963), 3, sym_rest_parameter, sym_required_parameter, sym_optional_parameter, - ACTIONS(1685), 14, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - anon_sym_async, - anon_sym_static, - 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, - [84321] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2318), 1, - anon_sym_DQUOTE, - ACTIONS(2320), 1, - anon_sym_SQUOTE, - ACTIONS(3844), 1, - anon_sym_LBRACK, - ACTIONS(4026), 1, - sym_number, - STATE(2034), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2788), 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(2750), 19, + ACTIONS(1672), 14, anon_sym_export, anon_sym_namespace, anon_sym_type, anon_sym_async, - 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, - sym_readonly, - [84374] = 8, + [84329] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(845), 1, anon_sym_DQUOTE, ACTIONS(847), 1, anon_sym_SQUOTE, - ACTIONS(3830), 1, + ACTIONS(3860), 1, anon_sym_LBRACK, - ACTIONS(3950), 1, + ACTIONS(3982), 1, sym_number, - STATE(2242), 3, + STATE(2228), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2788), 9, + ACTIONS(2776), 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(1607), 19, anon_sym_export, anon_sym_namespace, @@ -136630,7 +136951,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [84427] = 16, + [84382] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(113), 1, @@ -136639,30 +136960,30 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(847), 1, anon_sym_SQUOTE, - ACTIONS(1377), 1, + ACTIONS(1244), 1, + anon_sym_RBRACE, + ACTIONS(1403), 1, sym_number, ACTIONS(1609), 1, anon_sym_async, ACTIONS(1613), 1, sym_readonly, - ACTIONS(3828), 1, + ACTIONS(3846), 1, anon_sym_EQ, - ACTIONS(3830), 1, + ACTIONS(3860), 1, anon_sym_LBRACK, - ACTIONS(3992), 1, + ACTIONS(4008), 1, anon_sym_STAR, - ACTIONS(3994), 1, - anon_sym_RBRACE, - STATE(2678), 1, + STATE(2757), 1, aux_sym_object_repeat1, ACTIONS(1611), 2, anon_sym_get, anon_sym_set, - STATE(2189), 3, + STATE(2218), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2788), 4, + ACTIONS(2776), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, @@ -136683,40 +137004,46 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [84496] = 8, + [84451] = 14, ACTIONS(3), 1, sym_comment, + ACTIONS(113), 1, + anon_sym_COMMA, ACTIONS(845), 1, anon_sym_DQUOTE, ACTIONS(847), 1, anon_sym_SQUOTE, - ACTIONS(3830), 1, - anon_sym_LBRACK, - ACTIONS(3892), 1, + ACTIONS(1244), 1, + anon_sym_RBRACE, + ACTIONS(1403), 1, sym_number, - STATE(2176), 3, + ACTIONS(3846), 1, + anon_sym_EQ, + ACTIONS(3860), 1, + anon_sym_LBRACK, + ACTIONS(4008), 1, + anon_sym_STAR, + STATE(2757), 1, + aux_sym_object_repeat1, + ACTIONS(1611), 2, + anon_sym_get, + anon_sym_set, + STATE(2218), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2788), 9, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(2776), 4, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(1607), 19, + ACTIONS(1607), 17, anon_sym_export, anon_sym_namespace, anon_sym_type, anon_sym_async, sym_identifier, anon_sym_static, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -136728,31 +137055,31 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [84549] = 8, + [84516] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(845), 1, anon_sym_DQUOTE, ACTIONS(847), 1, anon_sym_SQUOTE, - ACTIONS(3830), 1, + ACTIONS(3860), 1, anon_sym_LBRACK, - ACTIONS(4028), 1, + ACTIONS(3966), 1, sym_number, - STATE(2240), 3, + STATE(2205), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2788), 9, + ACTIONS(2776), 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(1607), 19, anon_sym_export, anon_sym_namespace, @@ -136773,95 +137100,90 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [84602] = 18, + [84569] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(459), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1722), 1, + ACTIONS(4036), 1, + anon_sym_LPAREN, + ACTIONS(4038), 1, + anon_sym_DOT, + STATE(1821), 1, + sym_arguments, + ACTIONS(4034), 10, + anon_sym_STAR, anon_sym_LBRACE, - ACTIONS(4014), 1, + anon_sym_RBRACE, anon_sym_LBRACK, - ACTIONS(4016), 1, - sym_readonly, - ACTIONS(4030), 1, - anon_sym_RPAREN, - STATE(1802), 1, - aux_sym_export_statement_repeat1, - STATE(1905), 1, - sym_decorator, - STATE(1906), 1, - sym_accessibility_modifier, - STATE(2094), 1, - sym__parameter_name, - STATE(2372), 1, - sym_object, - STATE(2378), 1, - sym_array, - STATE(2534), 1, - sym__rest_identifier, - ACTIONS(4010), 2, - sym_identifier, - sym_this, - ACTIONS(1697), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(2852), 3, - sym_rest_parameter, - sym_required_parameter, - sym_optional_parameter, - ACTIONS(1685), 14, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + anon_sym_AT, + ACTIONS(4032), 22, anon_sym_export, anon_sym_namespace, anon_sym_type, + anon_sym_class, anon_sym_async, + sym_identifier, + sym_this, anon_sym_static, + anon_sym_abstract, 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, - [84675] = 8, + sym_readonly, + [84618] = 15, ACTIONS(3), 1, sym_comment, + ACTIONS(113), 1, + anon_sym_COMMA, ACTIONS(845), 1, anon_sym_DQUOTE, ACTIONS(847), 1, anon_sym_SQUOTE, - ACTIONS(3830), 1, - anon_sym_LBRACK, - ACTIONS(3886), 1, + ACTIONS(1201), 1, + anon_sym_RBRACE, + ACTIONS(1403), 1, sym_number, - STATE(2180), 3, + ACTIONS(1609), 1, + anon_sym_async, + ACTIONS(3846), 1, + anon_sym_EQ, + ACTIONS(3860), 1, + anon_sym_LBRACK, + ACTIONS(4008), 1, + anon_sym_STAR, + STATE(2641), 1, + aux_sym_object_repeat1, + ACTIONS(1611), 2, + anon_sym_get, + anon_sym_set, + STATE(2218), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2788), 9, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(2776), 4, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(1607), 19, + ACTIONS(1607), 16, anon_sym_export, anon_sym_namespace, anon_sym_type, - anon_sym_async, sym_identifier, anon_sym_static, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -136873,7 +137195,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [84728] = 15, + [84685] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(113), 1, @@ -136882,33 +137204,35 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(847), 1, anon_sym_SQUOTE, - ACTIONS(1377), 1, + ACTIONS(1201), 1, + anon_sym_RBRACE, + ACTIONS(1403), 1, sym_number, ACTIONS(1609), 1, anon_sym_async, - ACTIONS(3828), 1, + ACTIONS(1613), 1, + sym_readonly, + ACTIONS(3846), 1, anon_sym_EQ, - ACTIONS(3830), 1, + ACTIONS(3860), 1, anon_sym_LBRACK, - ACTIONS(3992), 1, + ACTIONS(4008), 1, anon_sym_STAR, - ACTIONS(3996), 1, - anon_sym_RBRACE, - STATE(2659), 1, + STATE(2641), 1, aux_sym_object_repeat1, ACTIONS(1611), 2, anon_sym_get, anon_sym_set, - STATE(2189), 3, + STATE(2218), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2788), 4, + ACTIONS(2776), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(1607), 16, + ACTIONS(1607), 15, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -136924,51 +137248,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - sym_readonly, - [84795] = 6, + [84754] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3828), 1, - anon_sym_EQ, - STATE(2739), 1, - aux_sym_object_repeat1, - ACTIONS(1643), 5, - anon_sym_STAR, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1728), 1, + anon_sym_LBRACE, + ACTIONS(4018), 1, anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - ACTIONS(2788), 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(1641), 19, + ACTIONS(4020), 1, + sym_readonly, + ACTIONS(4040), 1, + anon_sym_RPAREN, + STATE(1806), 1, + aux_sym_export_statement_repeat1, + STATE(1890), 1, + sym_decorator, + STATE(1910), 1, + sym_accessibility_modifier, + STATE(2103), 1, + sym__parameter_name, + STATE(2340), 1, + sym_array, + STATE(2345), 1, + sym_object, + STATE(2595), 1, + sym__rest_identifier, + ACTIONS(4014), 2, + sym_identifier, + sym_this, + ACTIONS(1684), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(2963), 3, + sym_rest_parameter, + sym_required_parameter, + sym_optional_parameter, + ACTIONS(1672), 14, anon_sym_export, anon_sym_namespace, anon_sym_type, anon_sym_async, - 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, - sym_readonly, - [84844] = 16, + [84827] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(113), 1, @@ -136977,38 +137312,35 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(847), 1, anon_sym_SQUOTE, - ACTIONS(1377), 1, + ACTIONS(1201), 1, + anon_sym_RBRACE, + ACTIONS(1403), 1, sym_number, - ACTIONS(1609), 1, - anon_sym_async, - ACTIONS(1613), 1, - sym_readonly, - ACTIONS(3828), 1, + ACTIONS(3846), 1, anon_sym_EQ, - ACTIONS(3830), 1, + ACTIONS(3860), 1, anon_sym_LBRACK, - ACTIONS(3992), 1, + ACTIONS(4008), 1, anon_sym_STAR, - ACTIONS(3996), 1, - anon_sym_RBRACE, - STATE(2659), 1, + STATE(2641), 1, aux_sym_object_repeat1, ACTIONS(1611), 2, anon_sym_get, anon_sym_set, - STATE(2189), 3, + STATE(2218), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2788), 4, + ACTIONS(2776), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(1607), 15, + ACTIONS(1607), 17, anon_sym_export, anon_sym_namespace, anon_sym_type, + anon_sym_async, sym_identifier, anon_sym_static, anon_sym_declare, @@ -137021,92 +137353,96 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [84913] = 8, + sym_readonly, + [84892] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(845), 1, - anon_sym_DQUOTE, - ACTIONS(847), 1, - anon_sym_SQUOTE, - ACTIONS(3830), 1, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1728), 1, + anon_sym_LBRACE, + ACTIONS(4018), 1, anon_sym_LBRACK, - ACTIONS(3988), 1, - sym_number, - STATE(2175), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2788), 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(1607), 19, + ACTIONS(4020), 1, + sym_readonly, + ACTIONS(4042), 1, + anon_sym_RPAREN, + STATE(1806), 1, + aux_sym_export_statement_repeat1, + STATE(1890), 1, + sym_decorator, + STATE(1910), 1, + sym_accessibility_modifier, + STATE(2103), 1, + sym__parameter_name, + STATE(2340), 1, + sym_array, + STATE(2345), 1, + sym_object, + STATE(2595), 1, + sym__rest_identifier, + ACTIONS(4014), 2, + sym_identifier, + sym_this, + ACTIONS(1684), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(2963), 3, + sym_rest_parameter, + sym_required_parameter, + sym_optional_parameter, + ACTIONS(1672), 14, anon_sym_export, anon_sym_namespace, anon_sym_type, anon_sym_async, - 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, - sym_readonly, - [84966] = 15, + [84965] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(113), 1, - anon_sym_COMMA, ACTIONS(845), 1, anon_sym_DQUOTE, ACTIONS(847), 1, anon_sym_SQUOTE, - ACTIONS(1244), 1, - anon_sym_RBRACE, - ACTIONS(1377), 1, - sym_number, - ACTIONS(1609), 1, - anon_sym_async, - ACTIONS(3828), 1, - anon_sym_EQ, - ACTIONS(3830), 1, + ACTIONS(3860), 1, anon_sym_LBRACK, - ACTIONS(3992), 1, - anon_sym_STAR, - STATE(2772), 1, - aux_sym_object_repeat1, - ACTIONS(1611), 2, - anon_sym_get, - anon_sym_set, - STATE(2189), 3, + ACTIONS(4044), 1, + sym_number, + STATE(2173), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2788), 4, + ACTIONS(2776), 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(1607), 16, + ACTIONS(1607), 19, anon_sym_export, anon_sym_namespace, anon_sym_type, + anon_sym_async, sym_identifier, anon_sym_static, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -137118,47 +137454,40 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [85033] = 15, + [85018] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(113), 1, - anon_sym_COMMA, ACTIONS(845), 1, anon_sym_DQUOTE, ACTIONS(847), 1, anon_sym_SQUOTE, - ACTIONS(1201), 1, - anon_sym_RBRACE, - ACTIONS(1377), 1, - sym_number, - ACTIONS(1609), 1, - anon_sym_async, - ACTIONS(3828), 1, - anon_sym_EQ, - ACTIONS(3830), 1, + ACTIONS(3860), 1, anon_sym_LBRACK, - ACTIONS(3992), 1, - anon_sym_STAR, - STATE(2739), 1, - aux_sym_object_repeat1, - ACTIONS(1611), 2, - anon_sym_get, - anon_sym_set, - STATE(2189), 3, + ACTIONS(3962), 1, + sym_number, + STATE(2252), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2788), 4, + ACTIONS(2776), 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(1607), 16, + ACTIONS(1607), 19, anon_sym_export, anon_sym_namespace, anon_sym_type, + anon_sym_async, sym_identifier, anon_sym_static, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -137170,30 +137499,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [85100] = 6, + [85071] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3828), 1, - anon_sym_EQ, - STATE(2678), 1, - aux_sym_object_repeat1, - ACTIONS(1643), 5, - anon_sym_STAR, - anon_sym_LBRACK, + ACTIONS(845), 1, anon_sym_DQUOTE, + ACTIONS(847), 1, anon_sym_SQUOTE, + ACTIONS(3860), 1, + anon_sym_LBRACK, + ACTIONS(3976), 1, sym_number, - ACTIONS(2788), 9, + STATE(2169), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2776), 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(1641), 19, + ACTIONS(1607), 19, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -137213,102 +137544,92 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [85149] = 18, + [85124] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(459), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1722), 1, - anon_sym_LBRACE, - ACTIONS(4014), 1, + ACTIONS(2344), 1, + anon_sym_DQUOTE, + ACTIONS(2346), 1, + anon_sym_SQUOTE, + ACTIONS(3856), 1, anon_sym_LBRACK, - ACTIONS(4016), 1, - sym_readonly, - ACTIONS(4032), 1, - anon_sym_RPAREN, - STATE(1802), 1, - aux_sym_export_statement_repeat1, - STATE(1905), 1, - sym_decorator, - STATE(1906), 1, - sym_accessibility_modifier, - STATE(2094), 1, - sym__parameter_name, - STATE(2372), 1, - sym_object, - STATE(2378), 1, - sym_array, - STATE(2534), 1, - sym__rest_identifier, - ACTIONS(4010), 2, - sym_identifier, - sym_this, - ACTIONS(1697), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(2852), 3, - sym_rest_parameter, - sym_required_parameter, - sym_optional_parameter, - ACTIONS(1685), 14, + ACTIONS(4046), 1, + sym_number, + STATE(2046), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2776), 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(2804), 19, anon_sym_export, anon_sym_namespace, anon_sym_type, anon_sym_async, + 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, - [85222] = 18, + sym_readonly, + [85177] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(91), 1, anon_sym_AT, ACTIONS(459), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1722), 1, + ACTIONS(1728), 1, anon_sym_LBRACE, - ACTIONS(4014), 1, + ACTIONS(4018), 1, anon_sym_LBRACK, - ACTIONS(4016), 1, + ACTIONS(4020), 1, sym_readonly, - ACTIONS(4034), 1, + ACTIONS(4048), 1, anon_sym_RPAREN, - STATE(1792), 1, + STATE(1795), 1, aux_sym_export_statement_repeat1, - STATE(1905), 1, + STATE(1890), 1, sym_decorator, - STATE(1906), 1, + STATE(1910), 1, sym_accessibility_modifier, - STATE(2094), 1, + STATE(2103), 1, sym__parameter_name, - STATE(2372), 1, - sym_object, - STATE(2378), 1, + STATE(2340), 1, sym_array, - STATE(2534), 1, + STATE(2345), 1, + sym_object, + STATE(2595), 1, sym__rest_identifier, - ACTIONS(4010), 2, + ACTIONS(4014), 2, sym_identifier, sym_this, - ACTIONS(1697), 3, + ACTIONS(1684), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(2617), 3, + STATE(2775), 3, sym_rest_parameter, sym_required_parameter, sym_optional_parameter, - ACTIONS(1685), 14, + ACTIONS(1672), 14, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -137323,22 +137644,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [85295] = 8, + [85250] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(845), 1, anon_sym_DQUOTE, ACTIONS(847), 1, anon_sym_SQUOTE, - ACTIONS(3830), 1, + ACTIONS(3860), 1, anon_sym_LBRACK, - ACTIONS(3964), 1, + ACTIONS(3940), 1, sym_number, - STATE(2177), 3, + STATE(2164), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2788), 9, + ACTIONS(2776), 9, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -137368,12 +137689,67 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [85348] = 6, + [85303] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3828), 1, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1728), 1, + anon_sym_LBRACE, + ACTIONS(4018), 1, + anon_sym_LBRACK, + ACTIONS(4020), 1, + sym_readonly, + ACTIONS(4050), 1, + anon_sym_RPAREN, + STATE(1806), 1, + aux_sym_export_statement_repeat1, + STATE(1890), 1, + sym_decorator, + STATE(1910), 1, + sym_accessibility_modifier, + STATE(2103), 1, + sym__parameter_name, + STATE(2340), 1, + sym_array, + STATE(2345), 1, + sym_object, + STATE(2595), 1, + sym__rest_identifier, + ACTIONS(4014), 2, + sym_identifier, + sym_this, + ACTIONS(1684), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(2963), 3, + sym_rest_parameter, + sym_required_parameter, + sym_optional_parameter, + ACTIONS(1672), 14, + anon_sym_export, + anon_sym_namespace, + anon_sym_type, + anon_sym_async, + anon_sym_static, + 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, + [85376] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3846), 1, anon_sym_EQ, - STATE(2645), 1, + STATE(2651), 1, aux_sym_object_repeat1, ACTIONS(1643), 5, anon_sym_STAR, @@ -137381,7 +137757,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, - ACTIONS(2788), 9, + ACTIONS(2776), 9, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -137411,49 +137787,40 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [85397] = 16, + [85425] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(113), 1, - anon_sym_COMMA, ACTIONS(845), 1, anon_sym_DQUOTE, ACTIONS(847), 1, anon_sym_SQUOTE, - ACTIONS(1201), 1, - anon_sym_RBRACE, - ACTIONS(1377), 1, - sym_number, - ACTIONS(1609), 1, - anon_sym_async, - ACTIONS(1613), 1, - sym_readonly, - ACTIONS(3828), 1, - anon_sym_EQ, - ACTIONS(3830), 1, + ACTIONS(3860), 1, anon_sym_LBRACK, - ACTIONS(3992), 1, - anon_sym_STAR, - STATE(2739), 1, - aux_sym_object_repeat1, - ACTIONS(1611), 2, - anon_sym_get, - anon_sym_set, - STATE(2189), 3, + ACTIONS(3934), 1, + sym_number, + STATE(2233), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2788), 4, + ACTIONS(2776), 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, - ACTIONS(1607), 15, + anon_sym_PIPE_RBRACE, + ACTIONS(1607), 19, anon_sym_export, anon_sym_namespace, anon_sym_type, + anon_sym_async, sym_identifier, anon_sym_static, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -137464,7 +137831,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [85466] = 18, + sym_readonly, + [85478] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(91), 1, @@ -137473,38 +137841,38 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, ACTIONS(459), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1722), 1, + ACTIONS(1728), 1, anon_sym_LBRACE, - ACTIONS(4014), 1, + ACTIONS(4018), 1, anon_sym_LBRACK, - ACTIONS(4016), 1, + ACTIONS(4020), 1, sym_readonly, - STATE(1798), 1, + STATE(1799), 1, aux_sym_export_statement_repeat1, - STATE(1905), 1, + STATE(1890), 1, sym_decorator, - STATE(1906), 1, + STATE(1910), 1, sym_accessibility_modifier, - STATE(2094), 1, + STATE(2103), 1, sym__parameter_name, - STATE(2372), 1, - sym_object, - STATE(2378), 1, + STATE(2340), 1, sym_array, - STATE(2534), 1, + STATE(2345), 1, + sym_object, + STATE(2595), 1, sym__rest_identifier, - ACTIONS(4010), 2, + ACTIONS(4014), 2, sym_identifier, sym_this, - ACTIONS(1697), 3, + ACTIONS(1684), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(2686), 3, + STATE(2622), 3, sym_rest_parameter, sym_required_parameter, sym_optional_parameter, - ACTIONS(1685), 14, + ACTIONS(1672), 14, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -137519,95 +137887,40 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [85539] = 14, + [85551] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(113), 1, - anon_sym_COMMA, ACTIONS(845), 1, anon_sym_DQUOTE, ACTIONS(847), 1, anon_sym_SQUOTE, - ACTIONS(1201), 1, - anon_sym_RBRACE, - ACTIONS(1377), 1, - sym_number, - ACTIONS(3828), 1, - anon_sym_EQ, - ACTIONS(3830), 1, + ACTIONS(3860), 1, anon_sym_LBRACK, - ACTIONS(3992), 1, - anon_sym_STAR, - STATE(2739), 1, - aux_sym_object_repeat1, - ACTIONS(1611), 2, - anon_sym_get, - anon_sym_set, - STATE(2189), 3, + ACTIONS(3972), 1, + sym_number, + STATE(2208), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2788), 4, + ACTIONS(2776), 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, - ACTIONS(1607), 17, + anon_sym_PIPE_RBRACE, + ACTIONS(1607), 19, anon_sym_export, anon_sym_namespace, anon_sym_type, anon_sym_async, 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, - sym_readonly, - [85604] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(845), 1, - anon_sym_DQUOTE, - ACTIONS(847), 1, - anon_sym_SQUOTE, - ACTIONS(1377), 1, - sym_number, - ACTIONS(1609), 1, - anon_sym_async, - ACTIONS(3828), 1, - anon_sym_EQ, - ACTIONS(3830), 1, - anon_sym_LBRACK, - ACTIONS(3992), 1, - anon_sym_STAR, - ACTIONS(1611), 2, anon_sym_get, anon_sym_set, - ACTIONS(4036), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(2189), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2788), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(1607), 16, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - sym_identifier, - anon_sym_static, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -137619,45 +137932,45 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [85666] = 17, + [85604] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(91), 1, anon_sym_AT, ACTIONS(459), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1722), 1, + ACTIONS(1728), 1, anon_sym_LBRACE, - ACTIONS(4014), 1, + ACTIONS(4018), 1, anon_sym_LBRACK, - ACTIONS(4016), 1, + ACTIONS(4020), 1, sym_readonly, - STATE(1874), 1, + STATE(1877), 1, aux_sym_export_statement_repeat1, - STATE(1905), 1, + STATE(1890), 1, sym_decorator, - STATE(1906), 1, + STATE(1910), 1, sym_accessibility_modifier, - STATE(2094), 1, + STATE(2103), 1, sym__parameter_name, - STATE(2372), 1, - sym_object, - STATE(2378), 1, + STATE(2340), 1, sym_array, - STATE(2534), 1, + STATE(2345), 1, + sym_object, + STATE(2595), 1, sym__rest_identifier, - ACTIONS(4010), 2, + ACTIONS(4014), 2, sym_identifier, sym_this, - ACTIONS(1697), 3, + ACTIONS(1684), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(2674), 3, + STATE(2658), 3, sym_rest_parameter, sym_required_parameter, sym_optional_parameter, - ACTIONS(1685), 14, + ACTIONS(1672), 14, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -137672,43 +137985,37 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [85736] = 12, + [85674] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(845), 1, - anon_sym_DQUOTE, - ACTIONS(847), 1, - anon_sym_SQUOTE, - ACTIONS(1377), 1, - sym_number, - ACTIONS(3828), 1, + ACTIONS(3846), 1, anon_sym_EQ, - ACTIONS(3830), 1, - anon_sym_LBRACK, - ACTIONS(3992), 1, - anon_sym_STAR, - ACTIONS(1611), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(4036), 2, + ACTIONS(2836), 2, anon_sym_COMMA, anon_sym_RBRACE, - STATE(2189), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2788), 4, + ACTIONS(1643), 5, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + ACTIONS(2776), 7, + sym__automatic_semicolon, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(1607), 17, + anon_sym_PIPE_RBRACE, + ACTIONS(1641), 19, anon_sym_export, anon_sym_namespace, anon_sym_type, anon_sym_async, sym_identifier, anon_sym_static, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -137720,46 +138027,43 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [85796] = 14, + [85722] = 12, ACTIONS(3), 1, sym_comment, + ACTIONS(113), 1, + anon_sym_COMMA, ACTIONS(845), 1, anon_sym_DQUOTE, ACTIONS(847), 1, anon_sym_SQUOTE, - ACTIONS(1377), 1, + ACTIONS(1242), 1, + anon_sym_RBRACE, + ACTIONS(1403), 1, sym_number, - ACTIONS(1609), 1, - anon_sym_async, - ACTIONS(1613), 1, - sym_readonly, - ACTIONS(3828), 1, + ACTIONS(3846), 1, anon_sym_EQ, - ACTIONS(3830), 1, + ACTIONS(3860), 1, anon_sym_LBRACK, - ACTIONS(3992), 1, - anon_sym_STAR, - ACTIONS(1611), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(4036), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(2189), 3, + STATE(2651), 1, + aux_sym_object_repeat1, + STATE(2218), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2788), 4, + ACTIONS(2776), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(1607), 15, + ACTIONS(1607), 19, anon_sym_export, anon_sym_namespace, anon_sym_type, + anon_sym_async, sym_identifier, anon_sym_static, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -137770,41 +138074,33 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [85860] = 12, + sym_readonly, + [85782] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(113), 1, - anon_sym_COMMA, - ACTIONS(845), 1, + ACTIONS(4054), 11, + anon_sym_STAR, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH, anon_sym_DQUOTE, - ACTIONS(847), 1, anon_sym_SQUOTE, - ACTIONS(1201), 1, - anon_sym_RBRACE, - ACTIONS(1377), 1, sym_number, - ACTIONS(3828), 1, - anon_sym_EQ, - ACTIONS(3830), 1, - anon_sym_LBRACK, - STATE(2739), 1, - aux_sym_object_repeat1, - STATE(2189), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2788), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(1607), 19, + anon_sym_AT, + ACTIONS(4052), 23, anon_sym_export, anon_sym_namespace, anon_sym_type, + anon_sym_DOT, + anon_sym_class, anon_sym_async, sym_identifier, + sym_this, anon_sym_static, + anon_sym_abstract, anon_sym_get, anon_sym_set, anon_sym_declare, @@ -137818,74 +138114,94 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [85920] = 6, + [85824] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(3828), 1, - anon_sym_EQ, - ACTIONS(2820), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(1643), 5, - anon_sym_STAR, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1728), 1, + anon_sym_LBRACE, + ACTIONS(4018), 1, anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - ACTIONS(2788), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(1641), 19, + ACTIONS(4020), 1, + sym_readonly, + STATE(1877), 1, + aux_sym_export_statement_repeat1, + STATE(1890), 1, + sym_decorator, + STATE(1910), 1, + sym_accessibility_modifier, + STATE(2103), 1, + sym__parameter_name, + STATE(2340), 1, + sym_array, + STATE(2345), 1, + sym_object, + STATE(2595), 1, + sym__rest_identifier, + ACTIONS(4014), 2, + sym_identifier, + sym_this, + ACTIONS(1684), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(2661), 3, + sym_rest_parameter, + sym_required_parameter, + sym_optional_parameter, + ACTIONS(1672), 14, anon_sym_export, anon_sym_namespace, anon_sym_type, anon_sym_async, - 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, - sym_readonly, - [85968] = 3, + [85894] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(4040), 11, - anon_sym_STAR, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH, + ACTIONS(113), 1, + anon_sym_COMMA, + ACTIONS(845), 1, anon_sym_DQUOTE, + ACTIONS(847), 1, anon_sym_SQUOTE, + ACTIONS(1244), 1, + anon_sym_RBRACE, + ACTIONS(1403), 1, sym_number, - anon_sym_AT, - ACTIONS(4038), 23, + ACTIONS(3846), 1, + anon_sym_EQ, + ACTIONS(3860), 1, + anon_sym_LBRACK, + STATE(2757), 1, + aux_sym_object_repeat1, + STATE(2218), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2776), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(1607), 19, anon_sym_export, anon_sym_namespace, anon_sym_type, - anon_sym_DOT, - anon_sym_class, anon_sym_async, sym_identifier, - sym_this, anon_sym_static, - anon_sym_abstract, anon_sym_get, anon_sym_set, anon_sym_declare, @@ -137899,45 +138215,45 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [86010] = 17, + [85954] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(91), 1, anon_sym_AT, ACTIONS(459), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1722), 1, + ACTIONS(1728), 1, anon_sym_LBRACE, - ACTIONS(4014), 1, + ACTIONS(4018), 1, anon_sym_LBRACK, - ACTIONS(4016), 1, + ACTIONS(4020), 1, sym_readonly, - STATE(1874), 1, + STATE(1806), 1, aux_sym_export_statement_repeat1, - STATE(1905), 1, + STATE(1890), 1, sym_decorator, - STATE(1906), 1, + STATE(1910), 1, sym_accessibility_modifier, - STATE(2094), 1, + STATE(2103), 1, sym__parameter_name, - STATE(2372), 1, - sym_object, - STATE(2378), 1, + STATE(2340), 1, sym_array, - STATE(2534), 1, + STATE(2345), 1, + sym_object, + STATE(2595), 1, sym__rest_identifier, - ACTIONS(4010), 2, + ACTIONS(4014), 2, sym_identifier, sym_this, - ACTIONS(1697), 3, + ACTIONS(1684), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(2714), 3, + STATE(2963), 3, sym_rest_parameter, sym_required_parameter, sym_optional_parameter, - ACTIONS(1685), 14, + ACTIONS(1672), 14, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -137952,7 +138268,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [86080] = 12, + [86024] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(113), 1, @@ -137961,21 +138277,21 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(847), 1, anon_sym_SQUOTE, - ACTIONS(1377), 1, + ACTIONS(1403), 1, sym_number, - ACTIONS(3828), 1, + ACTIONS(3846), 1, anon_sym_EQ, - ACTIONS(3830), 1, + ACTIONS(3860), 1, anon_sym_LBRACK, - ACTIONS(3996), 1, + ACTIONS(4010), 1, anon_sym_RBRACE, - STATE(2659), 1, + STATE(2696), 1, aux_sym_object_repeat1, - STATE(2189), 3, + STATE(2218), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2788), 4, + ACTIONS(2776), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, @@ -138000,43 +138316,46 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [86140] = 12, + [86084] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(113), 1, - anon_sym_COMMA, ACTIONS(845), 1, anon_sym_DQUOTE, ACTIONS(847), 1, anon_sym_SQUOTE, - ACTIONS(1244), 1, - anon_sym_RBRACE, - ACTIONS(1377), 1, + ACTIONS(1403), 1, sym_number, - ACTIONS(3828), 1, + ACTIONS(1609), 1, + anon_sym_async, + ACTIONS(1613), 1, + sym_readonly, + ACTIONS(3846), 1, anon_sym_EQ, - ACTIONS(3830), 1, + ACTIONS(3860), 1, anon_sym_LBRACK, - STATE(2772), 1, - aux_sym_object_repeat1, - STATE(2189), 3, + ACTIONS(4008), 1, + anon_sym_STAR, + ACTIONS(1611), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(4056), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(2218), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2788), 4, + ACTIONS(2776), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(1607), 19, + ACTIONS(1607), 15, anon_sym_export, anon_sym_namespace, anon_sym_type, - anon_sym_async, sym_identifier, anon_sym_static, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -138047,8 +138366,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - sym_readonly, - [86200] = 12, + [86148] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(113), 1, @@ -138057,21 +138375,21 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(847), 1, anon_sym_SQUOTE, - ACTIONS(1377), 1, + ACTIONS(1403), 1, sym_number, - ACTIONS(3828), 1, + ACTIONS(3846), 1, anon_sym_EQ, - ACTIONS(3830), 1, + ACTIONS(3860), 1, anon_sym_LBRACK, - ACTIONS(3994), 1, + ACTIONS(4012), 1, anon_sym_RBRACE, - STATE(2678), 1, + STATE(2689), 1, aux_sym_object_repeat1, - STATE(2189), 3, + STATE(2218), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2788), 4, + ACTIONS(2776), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, @@ -138096,98 +138414,93 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [86260] = 17, + [86208] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(459), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1722), 1, - anon_sym_LBRACE, - ACTIONS(4014), 1, + ACTIONS(845), 1, + anon_sym_DQUOTE, + ACTIONS(847), 1, + anon_sym_SQUOTE, + ACTIONS(1403), 1, + sym_number, + ACTIONS(3846), 1, + anon_sym_EQ, + ACTIONS(3860), 1, anon_sym_LBRACK, - ACTIONS(4016), 1, - sym_readonly, - STATE(1874), 1, - aux_sym_export_statement_repeat1, - STATE(1905), 1, - sym_decorator, - STATE(1906), 1, - sym_accessibility_modifier, - STATE(2094), 1, - sym__parameter_name, - STATE(2372), 1, - sym_object, - STATE(2378), 1, - sym_array, - STATE(2534), 1, - sym__rest_identifier, - ACTIONS(4010), 2, - sym_identifier, - sym_this, - ACTIONS(1697), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(2903), 3, - sym_rest_parameter, - sym_required_parameter, - sym_optional_parameter, - ACTIONS(1685), 14, + ACTIONS(4008), 1, + anon_sym_STAR, + ACTIONS(1611), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(4056), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(2218), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2776), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(1607), 17, anon_sym_export, anon_sym_namespace, anon_sym_type, anon_sym_async, + 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, - [86330] = 17, + sym_readonly, + [86268] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(91), 1, anon_sym_AT, ACTIONS(459), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1722), 1, + ACTIONS(1728), 1, anon_sym_LBRACE, - ACTIONS(4014), 1, + ACTIONS(4018), 1, anon_sym_LBRACK, - ACTIONS(4016), 1, + ACTIONS(4020), 1, sym_readonly, - STATE(1802), 1, + STATE(1877), 1, aux_sym_export_statement_repeat1, - STATE(1905), 1, + STATE(1890), 1, sym_decorator, - STATE(1906), 1, + STATE(1910), 1, sym_accessibility_modifier, - STATE(2094), 1, + STATE(2103), 1, sym__parameter_name, - STATE(2372), 1, - sym_object, - STATE(2378), 1, + STATE(2340), 1, sym_array, - STATE(2534), 1, + STATE(2345), 1, + sym_object, + STATE(2595), 1, sym__rest_identifier, - ACTIONS(4010), 2, + ACTIONS(4014), 2, sym_identifier, sym_this, - ACTIONS(1697), 3, + ACTIONS(1684), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(2852), 3, + STATE(2856), 3, sym_rest_parameter, sym_required_parameter, sym_optional_parameter, - ACTIONS(1685), 14, + ACTIONS(1672), 14, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -138202,7 +138515,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [86400] = 12, + [86338] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(113), 1, @@ -138211,21 +138524,21 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(847), 1, anon_sym_SQUOTE, - ACTIONS(1242), 1, + ACTIONS(1201), 1, anon_sym_RBRACE, - ACTIONS(1377), 1, + ACTIONS(1403), 1, sym_number, - ACTIONS(3828), 1, + ACTIONS(3846), 1, anon_sym_EQ, - ACTIONS(3830), 1, + ACTIONS(3860), 1, anon_sym_LBRACK, - STATE(2645), 1, + STATE(2641), 1, aux_sym_object_repeat1, - STATE(2189), 3, + STATE(2218), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2788), 4, + ACTIONS(2776), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, @@ -138250,40 +138563,44 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [86460] = 10, + [86398] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(845), 1, anon_sym_DQUOTE, ACTIONS(847), 1, anon_sym_SQUOTE, - ACTIONS(1377), 1, + ACTIONS(1403), 1, sym_number, - ACTIONS(3828), 1, + ACTIONS(1609), 1, + anon_sym_async, + ACTIONS(3846), 1, anon_sym_EQ, - ACTIONS(3830), 1, + ACTIONS(3860), 1, anon_sym_LBRACK, - ACTIONS(4036), 2, + ACTIONS(4008), 1, + anon_sym_STAR, + ACTIONS(1611), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(4056), 2, anon_sym_COMMA, anon_sym_RBRACE, - STATE(2189), 3, + STATE(2218), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2788), 4, + ACTIONS(2776), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(1607), 19, + ACTIONS(1607), 16, anon_sym_export, anon_sym_namespace, anon_sym_type, - anon_sym_async, sym_identifier, anon_sym_static, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -138295,50 +138612,50 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [86515] = 22, + [86460] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(91), 1, anon_sym_AT, - ACTIONS(1197), 1, + ACTIONS(2774), 1, anon_sym_namespace, - ACTIONS(1203), 1, + ACTIONS(2778), 1, anon_sym_type, - ACTIONS(1205), 1, + ACTIONS(2780), 1, anon_sym_import, - ACTIONS(1207), 1, + ACTIONS(2782), 1, anon_sym_var, - ACTIONS(1209), 1, + ACTIONS(2784), 1, anon_sym_let, - ACTIONS(1211), 1, + ACTIONS(2786), 1, anon_sym_const, - ACTIONS(1226), 1, + ACTIONS(2788), 1, anon_sym_class, - ACTIONS(1228), 1, + ACTIONS(2790), 1, anon_sym_async, - ACTIONS(1230), 1, + ACTIONS(2792), 1, anon_sym_function, - ACTIONS(1232), 1, + ACTIONS(2794), 1, anon_sym_abstract, - ACTIONS(1234), 1, + ACTIONS(2796), 1, anon_sym_declare, - ACTIONS(1236), 1, + ACTIONS(2798), 1, anon_sym_module, - ACTIONS(1238), 1, + ACTIONS(2800), 1, anon_sym_interface, - ACTIONS(1240), 1, + ACTIONS(2802), 1, anon_sym_enum, - ACTIONS(4042), 1, + ACTIONS(4058), 1, anon_sym_default, - STATE(561), 1, - sym_internal_module, - STATE(605), 1, - sym__declaration, - STATE(1905), 1, + STATE(1890), 1, sym_decorator, - STATE(2572), 1, + STATE(2273), 1, aux_sym_export_statement_repeat1, - STATE(598), 13, + STATE(2401), 1, + sym__declaration, + STATE(2474), 1, + sym_internal_module, + STATE(2469), 13, sym_variable_declaration, sym_lexical_declaration, sym_class_declaration, @@ -138352,50 +138669,50 @@ static uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_enum_declaration, sym_type_alias_declaration, - [86594] = 22, + [86539] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(91), 1, anon_sym_AT, - ACTIONS(2786), 1, + ACTIONS(1197), 1, anon_sym_namespace, - ACTIONS(2790), 1, + ACTIONS(1203), 1, anon_sym_type, - ACTIONS(2792), 1, + ACTIONS(1205), 1, anon_sym_import, - ACTIONS(2794), 1, + ACTIONS(1207), 1, anon_sym_var, - ACTIONS(2796), 1, + ACTIONS(1209), 1, anon_sym_let, - ACTIONS(2798), 1, + ACTIONS(1211), 1, anon_sym_const, - ACTIONS(2800), 1, + ACTIONS(1226), 1, anon_sym_class, - ACTIONS(2802), 1, + ACTIONS(1228), 1, anon_sym_async, - ACTIONS(2804), 1, + ACTIONS(1230), 1, anon_sym_function, - ACTIONS(2806), 1, + ACTIONS(1232), 1, anon_sym_abstract, - ACTIONS(2808), 1, + ACTIONS(1234), 1, anon_sym_declare, - ACTIONS(2810), 1, + ACTIONS(1236), 1, anon_sym_module, - ACTIONS(2812), 1, + ACTIONS(1238), 1, anon_sym_interface, - ACTIONS(2814), 1, + ACTIONS(1240), 1, anon_sym_enum, - ACTIONS(4044), 1, + ACTIONS(4060), 1, anon_sym_default, - STATE(1905), 1, - sym_decorator, - STATE(2369), 1, + STATE(541), 1, sym__declaration, - STATE(2431), 1, + STATE(569), 1, sym_internal_module, - STATE(2551), 1, + STATE(1890), 1, + sym_decorator, + STATE(2424), 1, aux_sym_export_statement_repeat1, - STATE(2426), 13, + STATE(579), 13, sym_variable_declaration, sym_lexical_declaration, sym_class_declaration, @@ -138409,50 +138726,50 @@ static uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_enum_declaration, sym_type_alias_declaration, - [86673] = 22, + [86618] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(91), 1, anon_sym_AT, - ACTIONS(2786), 1, + ACTIONS(1197), 1, anon_sym_namespace, - ACTIONS(2790), 1, + ACTIONS(1203), 1, anon_sym_type, - ACTIONS(2792), 1, + ACTIONS(1205), 1, anon_sym_import, - ACTIONS(2794), 1, + ACTIONS(1207), 1, anon_sym_var, - ACTIONS(2796), 1, + ACTIONS(1209), 1, anon_sym_let, - ACTIONS(2798), 1, + ACTIONS(1211), 1, anon_sym_const, - ACTIONS(2800), 1, + ACTIONS(1226), 1, anon_sym_class, - ACTIONS(2802), 1, + ACTIONS(1228), 1, anon_sym_async, - ACTIONS(2804), 1, + ACTIONS(1230), 1, anon_sym_function, - ACTIONS(2806), 1, + ACTIONS(1232), 1, anon_sym_abstract, - ACTIONS(2808), 1, - anon_sym_declare, - ACTIONS(2812), 1, + ACTIONS(1238), 1, anon_sym_interface, - ACTIONS(2814), 1, + ACTIONS(1240), 1, anon_sym_enum, - ACTIONS(4046), 1, - anon_sym_module, - ACTIONS(4048), 1, + ACTIONS(1262), 1, anon_sym_global, - STATE(1905), 1, - sym_decorator, - STATE(2431), 1, - sym_internal_module, - STATE(2454), 1, + ACTIONS(1286), 1, + anon_sym_declare, + ACTIONS(1308), 1, + anon_sym_module, + STATE(551), 1, sym__declaration, - STATE(2551), 1, + STATE(569), 1, + sym_internal_module, + STATE(1890), 1, + sym_decorator, + STATE(2424), 1, aux_sym_export_statement_repeat1, - STATE(2426), 13, + STATE(579), 13, sym_variable_declaration, sym_lexical_declaration, sym_class_declaration, @@ -138466,7 +138783,7 @@ static uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_enum_declaration, sym_type_alias_declaration, - [86752] = 22, + [86697] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(91), 1, @@ -138491,25 +138808,25 @@ static uint16_t ts_small_parse_table[] = { anon_sym_function, ACTIONS(1232), 1, anon_sym_abstract, - ACTIONS(1236), 1, - anon_sym_module, + ACTIONS(1234), 1, + anon_sym_declare, ACTIONS(1238), 1, anon_sym_interface, ACTIONS(1240), 1, anon_sym_enum, ACTIONS(1260), 1, - anon_sym_declare, - ACTIONS(4042), 1, - anon_sym_default, - STATE(561), 1, - sym_internal_module, - STATE(605), 1, + anon_sym_module, + ACTIONS(1262), 1, + anon_sym_global, + STATE(551), 1, sym__declaration, - STATE(1905), 1, + STATE(569), 1, + sym_internal_module, + STATE(1890), 1, sym_decorator, - STATE(2572), 1, + STATE(2424), 1, aux_sym_export_statement_repeat1, - STATE(598), 13, + STATE(579), 13, sym_variable_declaration, sym_lexical_declaration, sym_class_declaration, @@ -138523,6 +138840,51 @@ static uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_enum_declaration, sym_type_alias_declaration, + [86776] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(845), 1, + anon_sym_DQUOTE, + ACTIONS(847), 1, + anon_sym_SQUOTE, + ACTIONS(1403), 1, + sym_number, + ACTIONS(3846), 1, + anon_sym_EQ, + ACTIONS(3860), 1, + anon_sym_LBRACK, + ACTIONS(4056), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(2218), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2776), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(1607), 19, + anon_sym_export, + anon_sym_namespace, + anon_sym_type, + anon_sym_async, + 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, + sym_readonly, [86831] = 22, ACTIONS(3), 1, sym_comment, @@ -138548,25 +138910,25 @@ static uint16_t ts_small_parse_table[] = { anon_sym_function, ACTIONS(1232), 1, anon_sym_abstract, + ACTIONS(1236), 1, + anon_sym_module, ACTIONS(1238), 1, anon_sym_interface, ACTIONS(1240), 1, anon_sym_enum, - ACTIONS(1260), 1, - anon_sym_declare, ACTIONS(1286), 1, - anon_sym_global, - ACTIONS(1310), 1, - anon_sym_module, - STATE(549), 1, + anon_sym_declare, + ACTIONS(4060), 1, + anon_sym_default, + STATE(541), 1, sym__declaration, - STATE(561), 1, + STATE(569), 1, sym_internal_module, - STATE(1905), 1, + STATE(1890), 1, sym_decorator, - STATE(2572), 1, + STATE(2424), 1, aux_sym_export_statement_repeat1, - STATE(598), 13, + STATE(579), 13, sym_variable_declaration, sym_lexical_declaration, sym_class_declaration, @@ -138585,45 +138947,45 @@ static uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(91), 1, anon_sym_AT, - ACTIONS(1197), 1, + ACTIONS(2774), 1, anon_sym_namespace, - ACTIONS(1203), 1, + ACTIONS(2778), 1, anon_sym_type, - ACTIONS(1205), 1, + ACTIONS(2780), 1, anon_sym_import, - ACTIONS(1207), 1, + ACTIONS(2782), 1, anon_sym_var, - ACTIONS(1209), 1, + ACTIONS(2784), 1, anon_sym_let, - ACTIONS(1211), 1, + ACTIONS(2786), 1, anon_sym_const, - ACTIONS(1226), 1, + ACTIONS(2788), 1, anon_sym_class, - ACTIONS(1228), 1, + ACTIONS(2790), 1, anon_sym_async, - ACTIONS(1230), 1, + ACTIONS(2792), 1, anon_sym_function, - ACTIONS(1232), 1, + ACTIONS(2794), 1, anon_sym_abstract, - ACTIONS(1234), 1, + ACTIONS(2796), 1, anon_sym_declare, - ACTIONS(1238), 1, + ACTIONS(2800), 1, anon_sym_interface, - ACTIONS(1240), 1, + ACTIONS(2802), 1, anon_sym_enum, - ACTIONS(1284), 1, + ACTIONS(4062), 1, anon_sym_module, - ACTIONS(1286), 1, + ACTIONS(4064), 1, anon_sym_global, - STATE(549), 1, - sym__declaration, - STATE(561), 1, - sym_internal_module, - STATE(1905), 1, + STATE(1890), 1, sym_decorator, - STATE(2572), 1, + STATE(2273), 1, aux_sym_export_statement_repeat1, - STATE(598), 13, + STATE(2431), 1, + sym__declaration, + STATE(2474), 1, + sym_internal_module, + STATE(2469), 13, sym_variable_declaration, sym_lexical_declaration, sym_class_declaration, @@ -138637,18 +138999,97 @@ static uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_enum_declaration, sym_type_alias_declaration, - [86989] = 8, + [86989] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3316), 10, + anon_sym_STAR, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + anon_sym_AT, + ACTIONS(3314), 22, + anon_sym_export, + anon_sym_namespace, + anon_sym_type, + anon_sym_class, + anon_sym_async, + sym_identifier, + sym_this, + anon_sym_static, + anon_sym_abstract, + 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, + sym_readonly, + [87029] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(113), 1, + anon_sym_COMMA, + ACTIONS(1201), 1, + anon_sym_RBRACE, + ACTIONS(3846), 1, + anon_sym_EQ, + STATE(2641), 1, + aux_sym_object_repeat1, + ACTIONS(2776), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(1643), 5, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + ACTIONS(1641), 19, + anon_sym_export, + anon_sym_namespace, + anon_sym_type, + anon_sym_async, + 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, + sym_readonly, + [87079] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(113), 1, anon_sym_COMMA, ACTIONS(1244), 1, anon_sym_RBRACE, - ACTIONS(3828), 1, + ACTIONS(3846), 1, anon_sym_EQ, - STATE(2772), 1, + STATE(2757), 1, aux_sym_object_repeat1, - ACTIONS(2788), 4, + ACTIONS(2776), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, @@ -138679,18 +139120,55 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [87039] = 8, + [87129] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3125), 10, + anon_sym_STAR, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + anon_sym_AT, + ACTIONS(3123), 22, + anon_sym_export, + anon_sym_namespace, + anon_sym_type, + anon_sym_class, + anon_sym_async, + sym_identifier, + sym_this, + anon_sym_static, + anon_sym_abstract, + 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, + sym_readonly, + [87169] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(113), 1, anon_sym_COMMA, - ACTIONS(3828), 1, + ACTIONS(3846), 1, anon_sym_EQ, - ACTIONS(3996), 1, + ACTIONS(4010), 1, anon_sym_RBRACE, - STATE(2659), 1, + STATE(2696), 1, aux_sym_object_repeat1, - ACTIONS(2788), 4, + ACTIONS(2776), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, @@ -138721,18 +139199,55 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [87089] = 8, + [87219] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4068), 10, + anon_sym_STAR, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + anon_sym_AT, + ACTIONS(4066), 22, + anon_sym_export, + anon_sym_namespace, + anon_sym_type, + anon_sym_class, + anon_sym_async, + sym_identifier, + sym_this, + anon_sym_static, + anon_sym_abstract, + 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, + sym_readonly, + [87259] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(113), 1, anon_sym_COMMA, - ACTIONS(1242), 1, - anon_sym_RBRACE, - ACTIONS(3828), 1, + ACTIONS(3846), 1, anon_sym_EQ, - STATE(2645), 1, + ACTIONS(4012), 1, + anon_sym_RBRACE, + STATE(2689), 1, aux_sym_object_repeat1, - ACTIONS(2788), 4, + ACTIONS(2776), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, @@ -138763,18 +139278,131 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [87139] = 8, + [87309] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3074), 10, + anon_sym_STAR, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + anon_sym_AT, + ACTIONS(3072), 22, + anon_sym_export, + anon_sym_namespace, + anon_sym_type, + anon_sym_class, + anon_sym_async, + sym_identifier, + sym_this, + anon_sym_static, + anon_sym_abstract, + 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, + sym_readonly, + [87349] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4034), 10, + anon_sym_STAR, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + anon_sym_AT, + ACTIONS(4032), 22, + anon_sym_export, + anon_sym_namespace, + anon_sym_type, + anon_sym_class, + anon_sym_async, + sym_identifier, + sym_this, + anon_sym_static, + anon_sym_abstract, + 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, + sym_readonly, + [87389] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(113), 1, anon_sym_COMMA, - ACTIONS(1201), 1, + ACTIONS(1242), 1, anon_sym_RBRACE, - ACTIONS(3828), 1, + ACTIONS(3846), 1, anon_sym_EQ, - STATE(2739), 1, + STATE(2651), 1, aux_sym_object_repeat1, - ACTIONS(2788), 4, + ACTIONS(2776), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(1643), 5, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + ACTIONS(1641), 19, + anon_sym_export, + anon_sym_namespace, + anon_sym_type, + anon_sym_async, + 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, + sym_readonly, + [87439] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3846), 1, + anon_sym_EQ, + ACTIONS(4056), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(2776), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, @@ -138805,32 +139433,37 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [87189] = 3, + [87484] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2981), 10, - anon_sym_STAR, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH, + ACTIONS(845), 1, anon_sym_DQUOTE, + ACTIONS(847), 1, anon_sym_SQUOTE, + ACTIONS(3860), 1, + anon_sym_LBRACK, + ACTIONS(4070), 1, + anon_sym_STAR, + ACTIONS(4072), 1, sym_number, - anon_sym_AT, - ACTIONS(2979), 22, + ACTIONS(4074), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(2776), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(2226), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(1607), 17, anon_sym_export, anon_sym_namespace, anon_sym_type, - anon_sym_class, anon_sym_async, sym_identifier, - sym_this, anon_sym_static, - anon_sym_abstract, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -138842,28 +139475,26 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [87229] = 3, + [87536] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4000), 10, + ACTIONS(4078), 10, + sym__automatic_semicolon, anon_sym_STAR, - anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, anon_sym_AT, - ACTIONS(3998), 22, + ACTIONS(4076), 20, anon_sym_export, anon_sym_namespace, anon_sym_type, - anon_sym_class, anon_sym_async, sym_identifier, - sym_this, anon_sym_static, anon_sym_abstract, anon_sym_get, @@ -138879,32 +139510,37 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [87269] = 3, + [87574] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(3298), 10, - anon_sym_STAR, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH, + ACTIONS(845), 1, anon_sym_DQUOTE, + ACTIONS(847), 1, anon_sym_SQUOTE, + ACTIONS(3860), 1, + anon_sym_LBRACK, + ACTIONS(4080), 1, + anon_sym_STAR, + ACTIONS(4082), 1, sym_number, - anon_sym_AT, - ACTIONS(3296), 22, + ACTIONS(4084), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(2776), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(2198), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(1607), 17, anon_sym_export, anon_sym_namespace, anon_sym_type, - anon_sym_class, anon_sym_async, sym_identifier, - sym_this, anon_sym_static, - anon_sym_abstract, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -138916,32 +139552,38 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [87309] = 3, + [87626] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 10, - anon_sym_STAR, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH, + ACTIONS(845), 1, anon_sym_DQUOTE, + ACTIONS(847), 1, anon_sym_SQUOTE, + ACTIONS(3860), 1, + anon_sym_LBRACK, + ACTIONS(4080), 1, + anon_sym_STAR, + ACTIONS(4082), 1, sym_number, - anon_sym_AT, - ACTIONS(3312), 22, + ACTIONS(4086), 1, + anon_sym_async, + ACTIONS(4084), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(2776), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(2198), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(1607), 16, anon_sym_export, anon_sym_namespace, anon_sym_type, - anon_sym_class, - anon_sym_async, sym_identifier, - sym_this, anon_sym_static, - anon_sym_abstract, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -138953,30 +139595,34 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [87349] = 3, + [87680] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4052), 10, - anon_sym_STAR, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH, + ACTIONS(845), 1, anon_sym_DQUOTE, + ACTIONS(847), 1, anon_sym_SQUOTE, + ACTIONS(3860), 1, + anon_sym_LBRACK, + ACTIONS(4082), 1, sym_number, - anon_sym_AT, - ACTIONS(4050), 22, + ACTIONS(4088), 1, + anon_sym_EQ_GT, + ACTIONS(2776), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(2198), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(1607), 19, anon_sym_export, anon_sym_namespace, anon_sym_type, - anon_sym_class, anon_sym_async, sym_identifier, - sym_this, anon_sym_static, - anon_sym_abstract, anon_sym_get, anon_sym_set, anon_sym_declare, @@ -138990,35 +139636,72 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [87389] = 8, + [87730] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(113), 1, - anon_sym_COMMA, - ACTIONS(3828), 1, - anon_sym_EQ, - ACTIONS(3994), 1, - anon_sym_RBRACE, - STATE(2678), 1, - aux_sym_object_repeat1, - ACTIONS(2788), 4, + ACTIONS(845), 1, + anon_sym_DQUOTE, + ACTIONS(847), 1, + anon_sym_SQUOTE, + ACTIONS(3860), 1, + anon_sym_LBRACK, + ACTIONS(4080), 1, + anon_sym_STAR, + ACTIONS(4082), 1, + sym_number, + ACTIONS(4086), 1, + anon_sym_async, + ACTIONS(4090), 1, + sym_readonly, + ACTIONS(4084), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(2776), 3, anon_sym_LPAREN, - anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(1643), 5, + STATE(2198), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(1607), 15, + anon_sym_export, + anon_sym_namespace, + anon_sym_type, + 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, + [87786] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4094), 10, + sym__automatic_semicolon, anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_DASH, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, - ACTIONS(1641), 19, + anon_sym_AT, + ACTIONS(4092), 20, anon_sym_export, anon_sym_namespace, anon_sym_type, anon_sym_async, sym_identifier, anon_sym_static, + anon_sym_abstract, anon_sym_get, anon_sym_set, anon_sym_declare, @@ -139032,32 +139715,28 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [87439] = 6, + [87824] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3828), 1, - anon_sym_EQ, - ACTIONS(4036), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(2788), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(1643), 5, + ACTIONS(4098), 10, + sym__automatic_semicolon, anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_DASH, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, - ACTIONS(1641), 19, + anon_sym_AT, + ACTIONS(4096), 20, anon_sym_export, anon_sym_namespace, anon_sym_type, anon_sym_async, sym_identifier, anon_sym_static, + anon_sym_abstract, anon_sym_get, anon_sym_set, anon_sym_declare, @@ -139071,10 +139750,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [87484] = 3, + [87862] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4056), 10, + ACTIONS(4102), 10, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -139085,7 +139764,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, sym_number, anon_sym_AT, - ACTIONS(4054), 20, + ACTIONS(4100), 20, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -139106,10 +139785,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [87522] = 3, + [87900] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4060), 10, + ACTIONS(1003), 10, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -139120,7 +139799,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, sym_number, anon_sym_AT, - ACTIONS(4058), 20, + ACTIONS(1005), 20, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -139141,38 +139820,30 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [87560] = 11, + [87938] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(845), 1, + ACTIONS(4106), 10, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DASH, anon_sym_DQUOTE, - ACTIONS(847), 1, anon_sym_SQUOTE, - ACTIONS(3830), 1, - anon_sym_LBRACK, - ACTIONS(4062), 1, - anon_sym_STAR, - ACTIONS(4064), 1, - anon_sym_async, - ACTIONS(4066), 1, sym_number, - ACTIONS(4068), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(2788), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - STATE(2215), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(1607), 16, + anon_sym_AT, + ACTIONS(4104), 20, anon_sym_export, anon_sym_namespace, anon_sym_type, + anon_sym_async, sym_identifier, anon_sym_static, + anon_sym_abstract, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -139184,38 +139855,30 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [87614] = 11, + [87976] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(845), 1, + ACTIONS(4110), 10, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DASH, anon_sym_DQUOTE, - ACTIONS(847), 1, anon_sym_SQUOTE, - ACTIONS(3830), 1, - anon_sym_LBRACK, - ACTIONS(4070), 1, - anon_sym_STAR, - ACTIONS(4072), 1, - anon_sym_async, - ACTIONS(4074), 1, sym_number, - ACTIONS(4076), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(2788), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - STATE(2187), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(1607), 16, + anon_sym_AT, + ACTIONS(4108), 20, anon_sym_export, anon_sym_namespace, anon_sym_type, + anon_sym_async, sym_identifier, anon_sym_static, + anon_sym_abstract, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -139227,11 +139890,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [87668] = 3, + [88014] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4080), 10, + ACTIONS(4112), 1, sym__automatic_semicolon, + ACTIONS(937), 9, anon_sym_STAR, anon_sym_RBRACE, anon_sym_SEMI, @@ -139241,7 +139905,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, sym_number, anon_sym_AT, - ACTIONS(4078), 20, + ACTIONS(939), 20, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -139262,10 +139926,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [87706] = 3, + [88054] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4084), 10, + ACTIONS(4116), 10, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -139276,7 +139940,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, sym_number, anon_sym_AT, - ACTIONS(4082), 20, + ACTIONS(4114), 20, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -139297,10 +139961,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [87744] = 3, + [88092] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(947), 10, + ACTIONS(937), 10, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -139311,7 +139975,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, sym_number, anon_sym_AT, - ACTIONS(949), 20, + ACTIONS(939), 20, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -139332,37 +139996,30 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [87782] = 10, + [88130] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(845), 1, + ACTIONS(4120), 10, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DASH, anon_sym_DQUOTE, - ACTIONS(847), 1, anon_sym_SQUOTE, - ACTIONS(3830), 1, - anon_sym_LBRACK, - ACTIONS(4070), 1, - anon_sym_STAR, - ACTIONS(4074), 1, sym_number, - ACTIONS(4076), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(2788), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - STATE(2187), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(1607), 17, + anon_sym_AT, + ACTIONS(4118), 20, anon_sym_export, anon_sym_namespace, anon_sym_type, anon_sym_async, sym_identifier, anon_sym_static, + anon_sym_abstract, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -139374,40 +140031,30 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [87834] = 12, + [88168] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(845), 1, + ACTIONS(4124), 10, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DASH, anon_sym_DQUOTE, - ACTIONS(847), 1, anon_sym_SQUOTE, - ACTIONS(3830), 1, - anon_sym_LBRACK, - ACTIONS(4070), 1, - anon_sym_STAR, - ACTIONS(4072), 1, - anon_sym_async, - ACTIONS(4074), 1, sym_number, - ACTIONS(4086), 1, - sym_readonly, - ACTIONS(4076), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(2788), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - STATE(2187), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(1607), 15, + anon_sym_AT, + ACTIONS(4122), 20, anon_sym_export, anon_sym_namespace, anon_sym_type, + anon_sym_async, sym_identifier, anon_sym_static, + anon_sym_abstract, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -139418,12 +140065,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [87890] = 4, + sym_readonly, + [88206] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4088), 1, + ACTIONS(4128), 10, sym__automatic_semicolon, - ACTIONS(907), 9, anon_sym_STAR, anon_sym_RBRACE, anon_sym_SEMI, @@ -139433,7 +140080,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, sym_number, anon_sym_AT, - ACTIONS(909), 20, + ACTIONS(4126), 20, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -139454,12 +140101,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [87930] = 4, + [88244] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4090), 1, + ACTIONS(4132), 10, sym__automatic_semicolon, - ACTIONS(947), 9, anon_sym_STAR, anon_sym_RBRACE, anon_sym_SEMI, @@ -139469,7 +140115,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, sym_number, anon_sym_AT, - ACTIONS(949), 20, + ACTIONS(4130), 20, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -139490,37 +140136,30 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [87970] = 10, + [88282] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(845), 1, + ACTIONS(4136), 10, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DASH, anon_sym_DQUOTE, - ACTIONS(847), 1, anon_sym_SQUOTE, - ACTIONS(3830), 1, - anon_sym_LBRACK, - ACTIONS(4092), 1, - anon_sym_STAR, - ACTIONS(4094), 1, sym_number, - ACTIONS(4096), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(2788), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - STATE(2251), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(1607), 17, + anon_sym_AT, + ACTIONS(4134), 20, anon_sym_export, anon_sym_namespace, anon_sym_type, anon_sym_async, sym_identifier, anon_sym_static, + anon_sym_abstract, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -139532,11 +140171,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [88022] = 3, + [88320] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1081), 10, + ACTIONS(4138), 1, sym__automatic_semicolon, + ACTIONS(907), 9, anon_sym_STAR, anon_sym_RBRACE, anon_sym_SEMI, @@ -139546,7 +140186,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, sym_number, anon_sym_AT, - ACTIONS(1083), 20, + ACTIONS(909), 20, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -139567,65 +140207,38 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [88060] = 3, + [88360] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(4100), 10, - sym__automatic_semicolon, - anon_sym_STAR, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DASH, + ACTIONS(845), 1, anon_sym_DQUOTE, + ACTIONS(847), 1, anon_sym_SQUOTE, - sym_number, - anon_sym_AT, - ACTIONS(4098), 20, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, + ACTIONS(3860), 1, + anon_sym_LBRACK, + ACTIONS(4140), 1, + anon_sym_STAR, + ACTIONS(4142), 1, anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_abstract, + ACTIONS(4144), 1, + sym_number, + ACTIONS(4146), 2, 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, - sym_readonly, - [88098] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4104), 10, - sym__automatic_semicolon, - anon_sym_STAR, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - anon_sym_AT, - ACTIONS(4102), 20, + ACTIONS(2776), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(2207), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(1607), 16, anon_sym_export, anon_sym_namespace, anon_sym_type, - anon_sym_async, sym_identifier, anon_sym_static, - anon_sym_abstract, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -139637,30 +140250,37 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [88136] = 3, + [88414] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(4108), 10, - sym__automatic_semicolon, - anon_sym_STAR, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DASH, + ACTIONS(845), 1, anon_sym_DQUOTE, + ACTIONS(847), 1, anon_sym_SQUOTE, + ACTIONS(3860), 1, + anon_sym_LBRACK, + ACTIONS(4140), 1, + anon_sym_STAR, + ACTIONS(4144), 1, sym_number, - anon_sym_AT, - ACTIONS(4106), 20, + ACTIONS(4146), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(2776), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(2207), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(1607), 17, anon_sym_export, anon_sym_namespace, anon_sym_type, anon_sym_async, sym_identifier, anon_sym_static, - anon_sym_abstract, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -139672,21 +140292,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [88174] = 3, + [88466] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4112), 10, + ACTIONS(4152), 2, sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(4150), 8, anon_sym_STAR, anon_sym_RBRACE, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DASH, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, anon_sym_AT, - ACTIONS(4110), 20, + ACTIONS(4148), 20, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -139707,24 +140328,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [88212] = 9, + [88506] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(845), 1, anon_sym_DQUOTE, ACTIONS(847), 1, anon_sym_SQUOTE, - ACTIONS(3830), 1, + ACTIONS(3860), 1, anon_sym_LBRACK, - ACTIONS(4074), 1, + ACTIONS(3972), 1, sym_number, - ACTIONS(4114), 1, - anon_sym_EQ_GT, - ACTIONS(2788), 3, + ACTIONS(2776), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(2187), 3, + STATE(2208), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -139748,63 +140367,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [88262] = 3, + [88553] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4118), 10, - sym__automatic_semicolon, - anon_sym_STAR, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DASH, + ACTIONS(845), 1, anon_sym_DQUOTE, + ACTIONS(847), 1, anon_sym_SQUOTE, - sym_number, - anon_sym_AT, - ACTIONS(4116), 20, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_abstract, - 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, - sym_readonly, - [88300] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4122), 10, - sym__automatic_semicolon, - anon_sym_STAR, - anon_sym_RBRACE, - anon_sym_SEMI, + ACTIONS(3860), 1, anon_sym_LBRACK, - anon_sym_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, + ACTIONS(3934), 1, sym_number, - anon_sym_AT, - ACTIONS(4120), 20, + ACTIONS(2776), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(2233), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(1607), 19, anon_sym_export, anon_sym_namespace, anon_sym_type, anon_sym_async, sym_identifier, anon_sym_static, - anon_sym_abstract, anon_sym_get, anon_sym_set, anon_sym_declare, @@ -139818,29 +140406,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [88338] = 4, + [88600] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4128), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(4126), 8, - anon_sym_STAR, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_DASH, + ACTIONS(845), 1, anon_sym_DQUOTE, + ACTIONS(847), 1, anon_sym_SQUOTE, + ACTIONS(3860), 1, + anon_sym_LBRACK, + ACTIONS(3976), 1, sym_number, - anon_sym_AT, - ACTIONS(4124), 20, + ACTIONS(2776), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(2169), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(1607), 19, anon_sym_export, anon_sym_namespace, anon_sym_type, anon_sym_async, sym_identifier, anon_sym_static, - anon_sym_abstract, anon_sym_get, anon_sym_set, anon_sym_declare, @@ -139854,28 +140445,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [88378] = 3, + [88647] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4132), 10, - sym__automatic_semicolon, - anon_sym_STAR, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DASH, + ACTIONS(845), 1, anon_sym_DQUOTE, + ACTIONS(847), 1, anon_sym_SQUOTE, + ACTIONS(3860), 1, + anon_sym_LBRACK, + ACTIONS(3928), 1, sym_number, - anon_sym_AT, - ACTIONS(4130), 20, + ACTIONS(2776), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(2201), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(1607), 19, anon_sym_export, anon_sym_namespace, anon_sym_type, anon_sym_async, sym_identifier, anon_sym_static, - anon_sym_abstract, anon_sym_get, anon_sym_set, anon_sym_declare, @@ -139889,70 +140484,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [88416] = 10, + [88694] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(845), 1, anon_sym_DQUOTE, ACTIONS(847), 1, anon_sym_SQUOTE, - ACTIONS(3830), 1, + ACTIONS(3860), 1, anon_sym_LBRACK, - ACTIONS(4062), 1, - anon_sym_STAR, - ACTIONS(4066), 1, + ACTIONS(4082), 1, sym_number, - ACTIONS(4068), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(2788), 3, + ACTIONS(2776), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(2215), 3, + STATE(2198), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1607), 17, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - anon_sym_async, - 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, - sym_readonly, - [88468] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4136), 10, - sym__automatic_semicolon, - anon_sym_STAR, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - anon_sym_AT, - ACTIONS(4134), 20, + ACTIONS(1607), 19, anon_sym_export, anon_sym_namespace, anon_sym_type, anon_sym_async, sym_identifier, anon_sym_static, - anon_sym_abstract, anon_sym_get, anon_sym_set, anon_sym_declare, @@ -139966,22 +140523,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [88506] = 8, + [88741] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(845), 1, anon_sym_DQUOTE, ACTIONS(847), 1, anon_sym_SQUOTE, - ACTIONS(3830), 1, + ACTIONS(3860), 1, anon_sym_LBRACK, - ACTIONS(3950), 1, + ACTIONS(4072), 1, sym_number, - ACTIONS(2788), 3, + ACTIONS(2776), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(2242), 3, + STATE(2226), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -140005,22 +140562,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [88553] = 8, + [88788] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(845), 1, anon_sym_DQUOTE, ACTIONS(847), 1, anon_sym_SQUOTE, - ACTIONS(3830), 1, + ACTIONS(3860), 1, anon_sym_LBRACK, - ACTIONS(4066), 1, + ACTIONS(4154), 1, sym_number, - ACTIONS(2788), 3, + ACTIONS(2776), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(2215), 3, + STATE(2217), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -140044,22 +140601,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [88600] = 8, + [88835] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(845), 1, anon_sym_DQUOTE, ACTIONS(847), 1, anon_sym_SQUOTE, - ACTIONS(3830), 1, + ACTIONS(3860), 1, anon_sym_LBRACK, - ACTIONS(3976), 1, + ACTIONS(4156), 1, sym_number, - ACTIONS(2788), 3, + ACTIONS(2776), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(2219), 3, + STATE(2216), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -140083,27 +140640,27 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [88647] = 8, + [88882] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1722), 1, + ACTIONS(1728), 1, anon_sym_LBRACE, - ACTIONS(4014), 1, + ACTIONS(4018), 1, anon_sym_LBRACK, - STATE(2322), 1, - sym_object, - STATE(2325), 1, + STATE(2478), 1, sym_array, - ACTIONS(1720), 2, + STATE(2487), 1, + sym_object, + ACTIONS(4158), 2, sym_identifier, sym_this, - ACTIONS(1728), 5, + ACTIONS(2308), 5, anon_sym_EQ, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(801), 18, + ACTIONS(4160), 18, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -140122,22 +140679,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [88694] = 8, + [88929] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(845), 1, anon_sym_DQUOTE, ACTIONS(847), 1, anon_sym_SQUOTE, - ACTIONS(3830), 1, + ACTIONS(3860), 1, anon_sym_LBRACK, - ACTIONS(3944), 1, + ACTIONS(4162), 1, sym_number, - ACTIONS(2788), 3, + ACTIONS(2776), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(2158), 3, + STATE(2209), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -140161,22 +140718,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [88741] = 8, + [88976] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(845), 1, anon_sym_DQUOTE, ACTIONS(847), 1, anon_sym_SQUOTE, - ACTIONS(3830), 1, + ACTIONS(3860), 1, anon_sym_LBRACK, - ACTIONS(4138), 1, + ACTIONS(3966), 1, sym_number, - ACTIONS(2788), 3, + ACTIONS(2776), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(2179), 3, + STATE(2205), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -140200,22 +140757,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [88788] = 8, + [89023] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(845), 1, anon_sym_DQUOTE, ACTIONS(847), 1, anon_sym_SQUOTE, - ACTIONS(3830), 1, + ACTIONS(3860), 1, anon_sym_LBRACK, - ACTIONS(3928), 1, + ACTIONS(4144), 1, sym_number, - ACTIONS(2788), 3, + ACTIONS(2776), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(2174), 3, + STATE(2207), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -140239,22 +140796,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [88835] = 8, + [89070] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(845), 1, anon_sym_DQUOTE, ACTIONS(847), 1, anon_sym_SQUOTE, - ACTIONS(3830), 1, + ACTIONS(3860), 1, anon_sym_LBRACK, - ACTIONS(3958), 1, + ACTIONS(4164), 1, sym_number, - ACTIONS(2788), 3, + ACTIONS(2776), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(2221), 3, + STATE(2237), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -140278,22 +140835,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [88882] = 8, + [89117] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(845), 1, anon_sym_DQUOTE, ACTIONS(847), 1, anon_sym_SQUOTE, - ACTIONS(3830), 1, + ACTIONS(3860), 1, anon_sym_LBRACK, - ACTIONS(4140), 1, + ACTIONS(3982), 1, sym_number, - ACTIONS(2788), 3, + ACTIONS(2776), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(2181), 3, + STATE(2228), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -140317,31 +140874,31 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [88929] = 8, + [89164] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(845), 1, - anon_sym_DQUOTE, - ACTIONS(847), 1, - anon_sym_SQUOTE, - ACTIONS(3830), 1, + ACTIONS(1728), 1, + anon_sym_LBRACE, + ACTIONS(4018), 1, anon_sym_LBRACK, - ACTIONS(3886), 1, - sym_number, - ACTIONS(2788), 3, - anon_sym_LPAREN, - anon_sym_LT, + STATE(2356), 1, + sym_array, + STATE(2357), 1, + sym_object, + ACTIONS(1726), 2, + sym_identifier, + sym_this, + ACTIONS(1724), 5, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_QMARK, - STATE(2180), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(1607), 19, + ACTIONS(801), 18, anon_sym_export, anon_sym_namespace, anon_sym_type, anon_sym_async, - sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, @@ -140356,22 +140913,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [88976] = 8, + [89211] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(845), 1, anon_sym_DQUOTE, ACTIONS(847), 1, anon_sym_SQUOTE, - ACTIONS(3830), 1, + ACTIONS(3860), 1, anon_sym_LBRACK, - ACTIONS(4074), 1, + ACTIONS(3950), 1, sym_number, - ACTIONS(2788), 3, + ACTIONS(2776), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(2187), 3, + STATE(2255), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -140395,61 +140952,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [89023] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1722), 1, - anon_sym_LBRACE, - ACTIONS(4014), 1, - anon_sym_LBRACK, - STATE(2470), 1, - sym_array, - STATE(2471), 1, - sym_object, - ACTIONS(4142), 2, - sym_identifier, - sym_this, - ACTIONS(2284), 5, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - ACTIONS(4144), 18, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - anon_sym_async, - 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, - sym_readonly, - [89070] = 8, + [89258] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(845), 1, anon_sym_DQUOTE, ACTIONS(847), 1, anon_sym_SQUOTE, - ACTIONS(3830), 1, + ACTIONS(3860), 1, anon_sym_LBRACK, - ACTIONS(3932), 1, + ACTIONS(3940), 1, sym_number, - ACTIONS(2788), 3, + ACTIONS(2776), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(2244), 3, + STATE(2164), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -140473,22 +140991,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [89117] = 8, + [89305] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(845), 1, anon_sym_DQUOTE, ACTIONS(847), 1, anon_sym_SQUOTE, - ACTIONS(3830), 1, + ACTIONS(3860), 1, anon_sym_LBRACK, - ACTIONS(3988), 1, + ACTIONS(3924), 1, sym_number, - ACTIONS(2788), 3, + ACTIONS(2776), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(2175), 3, + STATE(2264), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -140512,22 +141030,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [89164] = 8, + [89352] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(845), 1, anon_sym_DQUOTE, ACTIONS(847), 1, anon_sym_SQUOTE, - ACTIONS(3830), 1, + ACTIONS(3860), 1, anon_sym_LBRACK, - ACTIONS(4094), 1, + ACTIONS(4166), 1, + anon_sym_RBRACE, + ACTIONS(4168), 1, sym_number, - ACTIONS(2788), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - STATE(2251), 3, + STATE(2819), 1, + sym_enum_assignment, + STATE(2589), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -140551,34 +141069,39 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [89211] = 8, + [89400] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(845), 1, + ACTIONS(2344), 1, anon_sym_DQUOTE, - ACTIONS(847), 1, + ACTIONS(2346), 1, anon_sym_SQUOTE, - ACTIONS(3830), 1, + ACTIONS(3856), 1, anon_sym_LBRACK, - ACTIONS(3892), 1, + ACTIONS(3880), 1, + anon_sym_STAR, + ACTIONS(3882), 1, + anon_sym_async, + ACTIONS(3884), 1, sym_number, - ACTIONS(2788), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - STATE(2176), 3, + ACTIONS(4170), 1, + anon_sym_static, + ACTIONS(4172), 1, + anon_sym_abstract, + ACTIONS(4174), 1, + sym_readonly, + ACTIONS(3888), 2, + anon_sym_get, + anon_sym_set, + STATE(1937), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1607), 19, + ACTIONS(2804), 14, anon_sym_export, anon_sym_namespace, anon_sym_type, - anon_sym_async, sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -140589,23 +141112,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - sym_readonly, - [89258] = 8, + [89456] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(845), 1, anon_sym_DQUOTE, ACTIONS(847), 1, anon_sym_SQUOTE, - ACTIONS(3830), 1, + ACTIONS(3860), 1, anon_sym_LBRACK, - ACTIONS(4146), 1, + ACTIONS(4168), 1, sym_number, - ACTIONS(2788), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - STATE(2208), 3, + ACTIONS(4176), 1, + anon_sym_RBRACE, + STATE(2819), 1, + sym_enum_assignment, + STATE(2589), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -140629,22 +141151,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [89305] = 8, + [89504] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(845), 1, anon_sym_DQUOTE, ACTIONS(847), 1, anon_sym_SQUOTE, - ACTIONS(3830), 1, + ACTIONS(3860), 1, anon_sym_LBRACK, - ACTIONS(4148), 1, + ACTIONS(4178), 1, + anon_sym_RBRACE, + ACTIONS(4180), 1, sym_number, - ACTIONS(2788), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - STATE(2192), 3, + STATE(2740), 1, + sym_enum_assignment, + STATE(2447), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -140668,32 +141190,26 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [89352] = 9, + [89552] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(845), 1, + ACTIONS(3782), 8, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_DASH, anon_sym_DQUOTE, - ACTIONS(847), 1, anon_sym_SQUOTE, - ACTIONS(3830), 1, - anon_sym_LBRACK, - ACTIONS(4150), 1, - anon_sym_RBRACE, - ACTIONS(4152), 1, sym_number, - STATE(2756), 1, - sym_enum_assignment, - STATE(2459), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(1607), 19, + anon_sym_AT, + ACTIONS(4182), 20, anon_sym_export, anon_sym_namespace, anon_sym_type, anon_sym_async, sym_identifier, anon_sym_static, + anon_sym_abstract, anon_sym_get, anon_sym_set, anon_sym_declare, @@ -140707,22 +141223,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [89400] = 9, + [89588] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(845), 1, anon_sym_DQUOTE, ACTIONS(847), 1, anon_sym_SQUOTE, - ACTIONS(3830), 1, + ACTIONS(3860), 1, anon_sym_LBRACK, - ACTIONS(4154), 1, + ACTIONS(4184), 1, anon_sym_RBRACE, - ACTIONS(4156), 1, + ACTIONS(4186), 1, sym_number, - STATE(2900), 1, + STATE(2654), 1, sym_enum_assignment, - STATE(2557), 3, + STATE(2339), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -140746,26 +141262,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [89448] = 3, + [89636] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3726), 8, - anon_sym_STAR, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_DASH, + ACTIONS(845), 1, anon_sym_DQUOTE, + ACTIONS(847), 1, anon_sym_SQUOTE, + ACTIONS(3860), 1, + anon_sym_LBRACK, + ACTIONS(4168), 1, sym_number, - anon_sym_AT, - ACTIONS(4158), 20, + ACTIONS(4188), 1, + anon_sym_RBRACE, + STATE(2819), 1, + sym_enum_assignment, + STATE(2589), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(1607), 19, anon_sym_export, anon_sym_namespace, anon_sym_type, anon_sym_async, sym_identifier, anon_sym_static, - anon_sym_abstract, anon_sym_get, anon_sym_set, anon_sym_declare, @@ -140779,22 +141301,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [89484] = 9, + [89684] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(845), 1, anon_sym_DQUOTE, ACTIONS(847), 1, anon_sym_SQUOTE, - ACTIONS(3830), 1, + ACTIONS(3860), 1, anon_sym_LBRACK, - ACTIONS(4156), 1, + ACTIONS(4168), 1, sym_number, - ACTIONS(4160), 1, + ACTIONS(4190), 1, anon_sym_RBRACE, - STATE(2900), 1, + STATE(2819), 1, sym_enum_assignment, - STATE(2557), 3, + STATE(2589), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -140818,32 +141340,29 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [89532] = 9, + [89732] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(845), 1, - anon_sym_DQUOTE, - ACTIONS(847), 1, - anon_sym_SQUOTE, - ACTIONS(3830), 1, + ACTIONS(4196), 1, + anon_sym_AT, + STATE(1877), 1, + aux_sym_export_statement_repeat1, + STATE(1890), 1, + sym_decorator, + ACTIONS(4194), 3, + anon_sym_LBRACE, anon_sym_LBRACK, - ACTIONS(4156), 1, - sym_number, - ACTIONS(4162), 1, - anon_sym_RBRACE, - STATE(2900), 1, - sym_enum_assignment, - STATE(2557), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(1607), 19, + anon_sym_DOT_DOT_DOT, + ACTIONS(4192), 22, anon_sym_export, anon_sym_namespace, anon_sym_type, + anon_sym_class, anon_sym_async, sym_identifier, + sym_this, anon_sym_static, + anon_sym_abstract, anon_sym_get, anon_sym_set, anon_sym_declare, @@ -140857,34 +141376,37 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [89580] = 9, + [89774] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(845), 1, + ACTIONS(2344), 1, anon_sym_DQUOTE, - ACTIONS(847), 1, + ACTIONS(2346), 1, anon_sym_SQUOTE, - ACTIONS(3830), 1, + ACTIONS(3856), 1, anon_sym_LBRACK, - ACTIONS(4156), 1, + ACTIONS(3988), 1, + anon_sym_STAR, + ACTIONS(3990), 1, + anon_sym_async, + ACTIONS(3992), 1, sym_number, - ACTIONS(4164), 1, - anon_sym_RBRACE, - STATE(2900), 1, - sym_enum_assignment, - STATE(2557), 3, + ACTIONS(4006), 1, + sym_readonly, + ACTIONS(4199), 1, + anon_sym_static, + ACTIONS(3994), 2, + anon_sym_get, + anon_sym_set, + STATE(1951), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1607), 19, + ACTIONS(2804), 14, anon_sym_export, anon_sym_namespace, anon_sym_type, - anon_sym_async, sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -140895,23 +141417,20 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - sym_readonly, - [89628] = 9, + [89827] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(845), 1, anon_sym_DQUOTE, ACTIONS(847), 1, anon_sym_SQUOTE, - ACTIONS(3830), 1, + ACTIONS(3860), 1, anon_sym_LBRACK, - ACTIONS(4166), 1, - anon_sym_RBRACE, ACTIONS(4168), 1, sym_number, - STATE(2746), 1, + STATE(2819), 1, sym_enum_assignment, - STATE(2433), 3, + STATE(2589), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -140935,39 +141454,35 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [89676] = 13, + [89872] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2318), 1, + ACTIONS(2344), 1, anon_sym_DQUOTE, - ACTIONS(2320), 1, + ACTIONS(2346), 1, anon_sym_SQUOTE, - ACTIONS(3844), 1, + ACTIONS(3856), 1, anon_sym_LBRACK, - ACTIONS(3874), 1, + ACTIONS(4201), 1, anon_sym_STAR, - ACTIONS(3876), 1, - anon_sym_async, - ACTIONS(3878), 1, + ACTIONS(4203), 1, sym_number, - ACTIONS(4170), 1, - anon_sym_static, - ACTIONS(4172), 1, - anon_sym_abstract, - ACTIONS(4174), 1, + ACTIONS(4207), 1, sym_readonly, - ACTIONS(3882), 2, + ACTIONS(4205), 2, anon_sym_get, anon_sym_set, - STATE(1933), 3, + STATE(1935), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2750), 14, + ACTIONS(2804), 16, anon_sym_export, anon_sym_namespace, anon_sym_type, + anon_sym_async, sym_identifier, + anon_sym_static, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -140978,13 +141493,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [89732] = 4, + [89921] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(1643), 2, anon_sym_LBRACE, anon_sym_LBRACK, - ACTIONS(1728), 5, + ACTIONS(1724), 5, anon_sym_EQ, anon_sym_COMMA, anon_sym_RPAREN, @@ -141011,150 +141526,33 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [89769] = 6, + [89958] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(4180), 1, - anon_sym_AT, - STATE(1874), 1, - aux_sym_export_statement_repeat1, - STATE(1905), 1, - sym_decorator, - ACTIONS(4178), 3, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_DOT_DOT_DOT, - ACTIONS(4176), 21, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - anon_sym_class, - anon_sym_async, - sym_identifier, - sym_this, - 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, - sym_readonly, - [89810] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(845), 1, - anon_sym_DQUOTE, - ACTIONS(847), 1, - anon_sym_SQUOTE, - ACTIONS(1377), 1, - sym_number, - ACTIONS(1609), 1, - anon_sym_async, - ACTIONS(1613), 1, - sym_readonly, - ACTIONS(3830), 1, - anon_sym_LBRACK, - ACTIONS(3992), 1, - anon_sym_STAR, - ACTIONS(4183), 1, - anon_sym_static, - ACTIONS(1611), 2, - anon_sym_get, - anon_sym_set, - STATE(2189), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(1607), 14, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - 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, - [89863] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2318), 1, - anon_sym_DQUOTE, - ACTIONS(2320), 1, - anon_sym_SQUOTE, - ACTIONS(3826), 1, - anon_sym_STAR, - ACTIONS(3838), 1, - anon_sym_async, - ACTIONS(3840), 1, - sym_number, - ACTIONS(3844), 1, - anon_sym_LBRACK, - ACTIONS(3846), 1, - sym_readonly, - ACTIONS(4185), 1, - anon_sym_static, - ACTIONS(3842), 2, - anon_sym_get, - anon_sym_set, - STATE(1948), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2750), 14, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - 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, - [89916] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2318), 1, + ACTIONS(2344), 1, anon_sym_DQUOTE, - ACTIONS(2320), 1, + ACTIONS(2346), 1, anon_sym_SQUOTE, ACTIONS(3844), 1, - anon_sym_LBRACK, - ACTIONS(3936), 1, anon_sym_STAR, - ACTIONS(3938), 1, + ACTIONS(3850), 1, anon_sym_async, - ACTIONS(3940), 1, + ACTIONS(3852), 1, sym_number, - ACTIONS(3980), 1, + ACTIONS(3856), 1, + anon_sym_LBRACK, + ACTIONS(3858), 1, sym_readonly, - ACTIONS(4187), 1, + ACTIONS(4209), 1, anon_sym_static, - ACTIONS(3942), 2, + ACTIONS(3854), 2, anon_sym_get, anon_sym_set, STATE(1943), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2750), 14, + ACTIONS(2804), 14, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -141169,72 +141567,37 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [89969] = 8, + [90011] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(845), 1, anon_sym_DQUOTE, ACTIONS(847), 1, anon_sym_SQUOTE, - ACTIONS(3830), 1, - anon_sym_LBRACK, - ACTIONS(4156), 1, + ACTIONS(1403), 1, sym_number, - STATE(2900), 1, - sym_enum_assignment, - STATE(2557), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(1607), 19, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, + ACTIONS(1609), 1, anon_sym_async, - 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, + ACTIONS(1613), 1, sym_readonly, - [90014] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2318), 1, - anon_sym_DQUOTE, - ACTIONS(2320), 1, - anon_sym_SQUOTE, - ACTIONS(3844), 1, + ACTIONS(3860), 1, anon_sym_LBRACK, - ACTIONS(4189), 1, + ACTIONS(4008), 1, anon_sym_STAR, - ACTIONS(4191), 1, - sym_number, - ACTIONS(4195), 1, - sym_readonly, - ACTIONS(4193), 2, + ACTIONS(4211), 1, + anon_sym_static, + ACTIONS(1611), 2, anon_sym_get, anon_sym_set, - STATE(1929), 3, + STATE(2218), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2750), 16, + ACTIONS(1607), 14, anon_sym_export, anon_sym_namespace, anon_sym_type, - anon_sym_async, sym_identifier, - anon_sym_static, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -141245,29 +141608,29 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [90063] = 10, + [90064] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2318), 1, + ACTIONS(2344), 1, anon_sym_DQUOTE, - ACTIONS(2320), 1, + ACTIONS(2346), 1, anon_sym_SQUOTE, - ACTIONS(3844), 1, + ACTIONS(3856), 1, anon_sym_LBRACK, - ACTIONS(4197), 1, + ACTIONS(4213), 1, anon_sym_STAR, - ACTIONS(4199), 1, + ACTIONS(4215), 1, sym_number, - ACTIONS(4203), 1, + ACTIONS(4219), 1, sym_readonly, - ACTIONS(4201), 2, + ACTIONS(4217), 2, anon_sym_get, anon_sym_set, - STATE(1926), 3, + STATE(1933), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2750), 16, + ACTIONS(2804), 16, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -141284,18 +141647,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [90112] = 7, + [90113] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(845), 1, anon_sym_DQUOTE, ACTIONS(847), 1, anon_sym_SQUOTE, - ACTIONS(3830), 1, + ACTIONS(3860), 1, anon_sym_LBRACK, - ACTIONS(4074), 1, + ACTIONS(3934), 1, sym_number, - STATE(2187), 3, + STATE(2233), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -141319,18 +141682,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [90154] = 7, + [90155] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(845), 1, anon_sym_DQUOTE, ACTIONS(847), 1, anon_sym_SQUOTE, - ACTIONS(3830), 1, + ACTIONS(3860), 1, anon_sym_LBRACK, - ACTIONS(3892), 1, + ACTIONS(3972), 1, sym_number, - STATE(2176), 3, + STATE(2208), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -141354,22 +141717,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [90196] = 7, + [90197] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(845), 1, + ACTIONS(2344), 1, anon_sym_DQUOTE, - ACTIONS(847), 1, + ACTIONS(2346), 1, anon_sym_SQUOTE, - ACTIONS(3830), 1, + ACTIONS(3856), 1, anon_sym_LBRACK, - ACTIONS(3976), 1, + ACTIONS(4026), 1, sym_number, - STATE(2219), 3, + STATE(2053), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1607), 19, + ACTIONS(2804), 19, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -141389,18 +141752,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [90238] = 7, + [90239] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(845), 1, anon_sym_DQUOTE, ACTIONS(847), 1, anon_sym_SQUOTE, - ACTIONS(3830), 1, + ACTIONS(3860), 1, anon_sym_LBRACK, - ACTIONS(3944), 1, + ACTIONS(3976), 1, sym_number, - STATE(2158), 3, + STATE(2169), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -141424,18 +141787,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [90280] = 7, + [90281] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(845), 1, anon_sym_DQUOTE, ACTIONS(847), 1, anon_sym_SQUOTE, - ACTIONS(3830), 1, + ACTIONS(3860), 1, anon_sym_LBRACK, - ACTIONS(4028), 1, + ACTIONS(4072), 1, sym_number, - STATE(2240), 3, + STATE(2226), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -141459,28 +141822,24 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [90322] = 7, + [90323] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(845), 1, - anon_sym_DQUOTE, - ACTIONS(847), 1, - anon_sym_SQUOTE, - ACTIONS(3830), 1, + ACTIONS(4223), 4, + anon_sym_LBRACE, anon_sym_LBRACK, - ACTIONS(3924), 1, - sym_number, - STATE(2213), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(1607), 19, + anon_sym_DOT_DOT_DOT, + anon_sym_AT, + ACTIONS(4221), 22, anon_sym_export, anon_sym_namespace, anon_sym_type, + anon_sym_class, anon_sym_async, sym_identifier, + sym_this, anon_sym_static, + anon_sym_abstract, anon_sym_get, anon_sym_set, anon_sym_declare, @@ -141494,22 +141853,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [90364] = 7, + [90357] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2318), 1, + ACTIONS(845), 1, anon_sym_DQUOTE, - ACTIONS(2320), 1, + ACTIONS(847), 1, anon_sym_SQUOTE, - ACTIONS(3844), 1, + ACTIONS(3860), 1, anon_sym_LBRACK, - ACTIONS(4008), 1, + ACTIONS(4144), 1, sym_number, - STATE(2043), 3, + STATE(2207), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2750), 19, + ACTIONS(1607), 19, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -141529,18 +141888,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [90406] = 7, + [90399] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(845), 1, anon_sym_DQUOTE, ACTIONS(847), 1, anon_sym_SQUOTE, - ACTIONS(3830), 1, + ACTIONS(3860), 1, anon_sym_LBRACK, - ACTIONS(3928), 1, + ACTIONS(4082), 1, sym_number, - STATE(2174), 3, + STATE(2198), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -141564,18 +141923,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [90448] = 7, + [90441] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(845), 1, anon_sym_DQUOTE, ACTIONS(847), 1, anon_sym_SQUOTE, - ACTIONS(1377), 1, - sym_number, - ACTIONS(3830), 1, + ACTIONS(3860), 1, anon_sym_LBRACK, - STATE(2189), 3, + ACTIONS(3862), 1, + sym_number, + STATE(2193), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -141599,18 +141958,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [90490] = 7, + [90483] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(845), 1, anon_sym_DQUOTE, ACTIONS(847), 1, anon_sym_SQUOTE, - ACTIONS(3830), 1, + ACTIONS(3860), 1, anon_sym_LBRACK, - ACTIONS(3964), 1, + ACTIONS(4156), 1, sym_number, - STATE(2177), 3, + STATE(2216), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -141634,18 +141993,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [90532] = 7, + [90525] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(845), 1, anon_sym_DQUOTE, ACTIONS(847), 1, anon_sym_SQUOTE, - ACTIONS(3830), 1, + ACTIONS(3860), 1, anon_sym_LBRACK, - ACTIONS(3950), 1, + ACTIONS(3928), 1, sym_number, - STATE(2242), 3, + STATE(2201), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -141669,18 +142028,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [90574] = 7, + [90567] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(845), 1, anon_sym_DQUOTE, ACTIONS(847), 1, anon_sym_SQUOTE, - ACTIONS(3830), 1, + ACTIONS(3860), 1, anon_sym_LBRACK, - ACTIONS(4146), 1, + ACTIONS(3966), 1, sym_number, - STATE(2208), 3, + STATE(2205), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -141704,18 +142063,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [90616] = 7, + [90609] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(845), 1, anon_sym_DQUOTE, ACTIONS(847), 1, anon_sym_SQUOTE, - ACTIONS(3830), 1, + ACTIONS(3860), 1, anon_sym_LBRACK, - ACTIONS(4138), 1, + ACTIONS(4024), 1, sym_number, - STATE(2179), 3, + STATE(2251), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -141739,18 +142098,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [90658] = 7, + [90651] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(845), 1, anon_sym_DQUOTE, ACTIONS(847), 1, anon_sym_SQUOTE, - ACTIONS(3830), 1, + ACTIONS(3860), 1, anon_sym_LBRACK, - ACTIONS(4066), 1, + ACTIONS(4164), 1, sym_number, - STATE(2215), 3, + STATE(2237), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -141774,22 +142133,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [90700] = 7, + [90693] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(845), 1, + ACTIONS(2344), 1, anon_sym_DQUOTE, - ACTIONS(847), 1, + ACTIONS(2346), 1, anon_sym_SQUOTE, - ACTIONS(3830), 1, + ACTIONS(3856), 1, anon_sym_LBRACK, - ACTIONS(3988), 1, + ACTIONS(4046), 1, sym_number, - STATE(2175), 3, + STATE(2046), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1607), 19, + ACTIONS(2804), 19, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -141809,18 +142168,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [90742] = 7, + [90735] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(845), 1, anon_sym_DQUOTE, ACTIONS(847), 1, anon_sym_SQUOTE, - ACTIONS(3830), 1, + ACTIONS(3860), 1, anon_sym_LBRACK, - ACTIONS(3932), 1, + ACTIONS(4044), 1, sym_number, - STATE(2244), 3, + STATE(2173), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -141844,18 +142203,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [90784] = 7, + [90777] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(845), 1, anon_sym_DQUOTE, ACTIONS(847), 1, anon_sym_SQUOTE, - ACTIONS(3830), 1, + ACTIONS(3860), 1, anon_sym_LBRACK, - ACTIONS(4140), 1, + ACTIONS(3924), 1, sym_number, - STATE(2181), 3, + STATE(2264), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -141879,18 +142238,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [90826] = 7, + [90819] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(845), 1, anon_sym_DQUOTE, ACTIONS(847), 1, anon_sym_SQUOTE, - ACTIONS(3830), 1, + ACTIONS(3860), 1, anon_sym_LBRACK, - ACTIONS(4148), 1, + ACTIONS(4002), 1, sym_number, - STATE(2192), 3, + STATE(2222), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -141914,18 +142273,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [90868] = 7, + [90861] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(845), 1, anon_sym_DQUOTE, ACTIONS(847), 1, anon_sym_SQUOTE, - ACTIONS(3830), 1, + ACTIONS(3860), 1, anon_sym_LBRACK, - ACTIONS(3886), 1, + ACTIONS(3950), 1, sym_number, - STATE(2180), 3, + STATE(2255), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -141949,18 +142308,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [90910] = 7, + [90903] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(845), 1, anon_sym_DQUOTE, ACTIONS(847), 1, anon_sym_SQUOTE, - ACTIONS(3830), 1, + ACTIONS(3860), 1, anon_sym_LBRACK, - ACTIONS(4094), 1, + ACTIONS(3962), 1, sym_number, - STATE(2251), 3, + STATE(2252), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -141984,18 +142343,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [90952] = 7, + [90945] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(845), 1, anon_sym_DQUOTE, ACTIONS(847), 1, anon_sym_SQUOTE, - ACTIONS(3830), 1, - anon_sym_LBRACK, - ACTIONS(3832), 1, + ACTIONS(1403), 1, sym_number, - STATE(2172), 3, + ACTIONS(3860), 1, + anon_sym_LBRACK, + STATE(2218), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -142019,22 +142378,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [90994] = 7, + [90987] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2318), 1, + ACTIONS(845), 1, anon_sym_DQUOTE, - ACTIONS(2320), 1, + ACTIONS(847), 1, anon_sym_SQUOTE, - ACTIONS(3844), 1, + ACTIONS(3860), 1, anon_sym_LBRACK, - ACTIONS(4026), 1, + ACTIONS(3982), 1, sym_number, - STATE(2034), 3, + STATE(2228), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2750), 19, + ACTIONS(1607), 19, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -142054,18 +142413,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [91036] = 7, + [91029] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(845), 1, anon_sym_DQUOTE, ACTIONS(847), 1, anon_sym_SQUOTE, - ACTIONS(3830), 1, + ACTIONS(3860), 1, anon_sym_LBRACK, - ACTIONS(4006), 1, + ACTIONS(4162), 1, sym_number, - STATE(2253), 3, + STATE(2209), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -142089,18 +142448,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [91078] = 7, + [91071] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(845), 1, anon_sym_DQUOTE, ACTIONS(847), 1, anon_sym_SQUOTE, - ACTIONS(3830), 1, + ACTIONS(3860), 1, anon_sym_LBRACK, - ACTIONS(3958), 1, + ACTIONS(3940), 1, sym_number, - STATE(2221), 3, + STATE(2164), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -142124,22 +142483,27 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [91120] = 3, + [91113] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4207), 4, - anon_sym_LBRACE, + ACTIONS(845), 1, + anon_sym_DQUOTE, + ACTIONS(847), 1, + anon_sym_SQUOTE, + ACTIONS(3860), 1, anon_sym_LBRACK, - anon_sym_DOT_DOT_DOT, - anon_sym_AT, - ACTIONS(4205), 21, + ACTIONS(4154), 1, + sym_number, + STATE(2217), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(1607), 19, anon_sym_export, anon_sym_namespace, anon_sym_type, - anon_sym_class, anon_sym_async, sym_identifier, - sym_this, anon_sym_static, anon_sym_get, anon_sym_set, @@ -142154,20 +142518,20 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [91153] = 8, + [91155] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1722), 1, + ACTIONS(1728), 1, anon_sym_LBRACE, - ACTIONS(4014), 1, + ACTIONS(4018), 1, anon_sym_LBRACK, - ACTIONS(4209), 1, + ACTIONS(4225), 1, sym_readonly, - STATE(2322), 1, - sym_object, - STATE(2325), 1, + STATE(2356), 1, sym_array, - ACTIONS(1720), 2, + STATE(2357), 1, + sym_object, + ACTIONS(1726), 2, sym_identifier, sym_this, ACTIONS(801), 17, @@ -142188,14 +142552,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [91195] = 4, + [91197] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4211), 1, + ACTIONS(4227), 1, sym_identifier, - STATE(3113), 1, + STATE(3204), 1, sym_mapped_type_clause, - ACTIONS(4213), 18, + ACTIONS(4229), 18, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -142214,18 +142578,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [91225] = 6, + [91227] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1585), 1, + ACTIONS(1503), 1, anon_sym_EQ, - ACTIONS(4215), 1, + ACTIONS(4231), 1, anon_sym_LT, - ACTIONS(4217), 1, + ACTIONS(4233), 1, anon_sym_DOT, - STATE(313), 1, + STATE(378), 1, sym_type_arguments, - ACTIONS(1583), 14, + ACTIONS(1501), 14, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_else, @@ -142240,18 +142604,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [91257] = 6, + [91259] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1672), 1, + ACTIONS(1661), 1, anon_sym_EQ, - ACTIONS(4215), 1, + ACTIONS(4231), 1, anon_sym_LT, - ACTIONS(4219), 1, + ACTIONS(4235), 1, anon_sym_DOT, - STATE(313), 1, + STATE(378), 1, sym_type_arguments, - ACTIONS(1670), 14, + ACTIONS(1659), 14, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_else, @@ -142266,18 +142630,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [91289] = 6, + [91291] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1661), 1, + ACTIONS(1704), 1, anon_sym_EQ, - ACTIONS(4215), 1, + ACTIONS(4231), 1, anon_sym_LT, - ACTIONS(4219), 1, + ACTIONS(4235), 1, anon_sym_DOT, - STATE(313), 1, + STATE(378), 1, sym_type_arguments, - ACTIONS(1659), 14, + ACTIONS(1702), 14, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_else, @@ -142292,14 +142656,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [91321] = 4, + [91323] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1091), 1, + ACTIONS(947), 1, anon_sym_EQ, - ACTIONS(1411), 1, + ACTIONS(1455), 1, anon_sym_LT, - ACTIONS(1089), 15, + ACTIONS(945), 15, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_else, @@ -142315,16 +142679,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [91348] = 5, + [91350] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1519), 1, + ACTIONS(1569), 1, anon_sym_EQ, - ACTIONS(4215), 1, + ACTIONS(4231), 1, anon_sym_LT, - STATE(301), 1, + STATE(372), 1, sym_type_arguments, - ACTIONS(1517), 14, + ACTIONS(1567), 14, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_else, @@ -142339,16 +142703,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [91377] = 5, + [91379] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1736), 1, + ACTIONS(1714), 1, anon_sym_EQ, - ACTIONS(4215), 1, + ACTIONS(4231), 1, anon_sym_LT, - STATE(301), 1, + STATE(372), 1, sym_type_arguments, - ACTIONS(1734), 14, + ACTIONS(1712), 14, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_else, @@ -142363,55 +142727,55 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [91406] = 4, + [91408] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1585), 1, + ACTIONS(1001), 1, + anon_sym_PIPE, + ACTIONS(999), 15, + sym__automatic_semicolon, anon_sym_EQ, - ACTIONS(4217), 1, - anon_sym_DOT, - ACTIONS(1583), 14, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_else, - anon_sym_RPAREN, - anon_sym_while, + anon_sym_RBRACE, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_COLON, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, + anon_sym_LT, anon_sym_QMARK, anon_sym_AMP, - anon_sym_PIPE, anon_sym_extends, - [91432] = 3, + anon_sym_PIPE_RBRACE, + [91432] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(997), 1, - anon_sym_PIPE, - ACTIONS(995), 15, - sym__automatic_semicolon, + ACTIONS(1503), 1, anon_sym_EQ, + ACTIONS(4233), 1, + anon_sym_DOT, + ACTIONS(1501), 14, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_else, + anon_sym_RPAREN, + anon_sym_while, anon_sym_COLON, anon_sym_LBRACK, - anon_sym_LT, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP, + anon_sym_PIPE, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [91456] = 3, + [91458] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(993), 1, + ACTIONS(943), 1, anon_sym_PIPE, - ACTIONS(991), 15, + ACTIONS(941), 15, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -142427,10 +142791,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [91480] = 2, + [91482] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 15, + ACTIONS(4237), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -142446,10 +142810,55 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - [91501] = 2, + [91503] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1762), 1, + anon_sym_EQ, + ACTIONS(4239), 1, + anon_sym_AMP, + ACTIONS(4241), 1, + anon_sym_PIPE, + ACTIONS(1760), 12, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_else, + anon_sym_RPAREN, + anon_sym_while, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_extends, + [91530] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1750), 1, + anon_sym_EQ, + ACTIONS(4239), 1, + anon_sym_AMP, + ACTIONS(4241), 1, + anon_sym_PIPE, + ACTIONS(4243), 1, + anon_sym_extends, + ACTIONS(1748), 11, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_else, + anon_sym_RPAREN, + anon_sym_while, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_QMARK, + [91559] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4223), 15, + ACTIONS(4245), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -142465,10 +142874,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - [91522] = 2, + [91580] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4225), 15, + ACTIONS(4247), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -142484,10 +142893,33 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - [91543] = 2, + [91601] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1770), 1, + anon_sym_EQ, + ACTIONS(4239), 1, + anon_sym_AMP, + ACTIONS(4241), 1, + anon_sym_PIPE, + ACTIONS(4243), 1, + anon_sym_extends, + ACTIONS(1768), 11, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_else, + anon_sym_RPAREN, + anon_sym_while, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_QMARK, + [91630] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4227), 15, + ACTIONS(4249), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -142503,10 +142935,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - [91564] = 2, + [91651] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4229), 15, + ACTIONS(4251), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -142522,78 +142954,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - [91585] = 5, + [91672] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1760), 1, - anon_sym_EQ, - ACTIONS(4231), 1, - anon_sym_AMP, - ACTIONS(4233), 1, - anon_sym_PIPE, - ACTIONS(1758), 12, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_else, - anon_sym_RPAREN, - anon_sym_while, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_extends, - [91612] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1770), 1, - anon_sym_EQ, - ACTIONS(4231), 1, - anon_sym_AMP, - ACTIONS(4233), 1, - anon_sym_PIPE, - ACTIONS(4235), 1, - anon_sym_extends, - ACTIONS(1768), 11, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_else, - anon_sym_RPAREN, - anon_sym_while, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, - anon_sym_QMARK, - [91641] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1748), 1, - anon_sym_EQ, - ACTIONS(4231), 1, - anon_sym_AMP, - ACTIONS(4233), 1, - anon_sym_PIPE, - ACTIONS(4235), 1, - anon_sym_extends, - ACTIONS(1746), 11, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_else, - anon_sym_RPAREN, - anon_sym_while, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, - anon_sym_QMARK, - [91670] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4237), 15, + ACTIONS(4253), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -142609,79 +142973,72 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - [91691] = 13, + [91693] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1691), 1, + ACTIONS(1704), 1, + anon_sym_PIPE, + ACTIONS(4255), 1, anon_sym_LT, - ACTIONS(2198), 1, - anon_sym_COLON, - ACTIONS(2306), 1, - anon_sym_LPAREN, - ACTIONS(4239), 1, - anon_sym_EQ, - ACTIONS(4243), 1, - anon_sym_BANG, - ACTIONS(4245), 1, - anon_sym_QMARK, - STATE(2020), 1, - sym_formal_parameters, - STATE(2311), 1, - sym_type_annotation, - STATE(2651), 1, - sym__initializer, - STATE(2657), 1, - sym__call_signature, - STATE(2862), 1, - sym_type_parameters, - ACTIONS(4241), 3, + ACTIONS(4257), 1, + anon_sym_DOT, + ACTIONS(4259), 1, + anon_sym_is, + STATE(1994), 1, + sym_type_arguments, + ACTIONS(1702), 9, sym__automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [91733] = 13, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [91723] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1691), 1, + ACTIONS(1678), 1, anon_sym_LT, - ACTIONS(2198), 1, + ACTIONS(2238), 1, anon_sym_COLON, - ACTIONS(2306), 1, + ACTIONS(2332), 1, anon_sym_LPAREN, - ACTIONS(4239), 1, + ACTIONS(4261), 1, anon_sym_EQ, - ACTIONS(4243), 1, + ACTIONS(4265), 1, anon_sym_BANG, - ACTIONS(4247), 1, + ACTIONS(4267), 1, anon_sym_QMARK, - STATE(2020), 1, + STATE(2015), 1, sym_formal_parameters, - STATE(2310), 1, + STATE(2266), 1, sym__call_signature, - STATE(2311), 1, + STATE(2316), 1, sym_type_annotation, - STATE(2651), 1, + STATE(2717), 1, sym__initializer, - STATE(2862), 1, + STATE(2918), 1, sym_type_parameters, - ACTIONS(4241), 3, + ACTIONS(4263), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [91775] = 7, + [91765] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1672), 1, + ACTIONS(1503), 1, anon_sym_PIPE, - ACTIONS(4249), 1, + ACTIONS(4255), 1, anon_sym_LT, - ACTIONS(4251), 1, + ACTIONS(4269), 1, anon_sym_DOT, - ACTIONS(4253), 1, - anon_sym_is, - STATE(1993), 1, + STATE(1994), 1, sym_type_arguments, - ACTIONS(1670), 9, + ACTIONS(1501), 10, sym__automatic_semicolon, + anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -142690,47 +143047,47 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [91805] = 13, + [91793] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1691), 1, + ACTIONS(1678), 1, anon_sym_LT, - ACTIONS(2198), 1, + ACTIONS(2238), 1, anon_sym_COLON, - ACTIONS(2306), 1, + ACTIONS(2332), 1, anon_sym_LPAREN, - ACTIONS(4239), 1, + ACTIONS(4261), 1, anon_sym_EQ, - ACTIONS(4257), 1, + ACTIONS(4265), 1, anon_sym_BANG, - ACTIONS(4259), 1, + ACTIONS(4271), 1, anon_sym_QMARK, - STATE(2020), 1, + STATE(2015), 1, sym_formal_parameters, - STATE(2258), 1, + STATE(2316), 1, sym_type_annotation, - STATE(2614), 1, + STATE(2701), 1, sym__call_signature, - STATE(2664), 1, + STATE(2717), 1, sym__initializer, - STATE(2862), 1, + STATE(2918), 1, sym_type_parameters, - ACTIONS(4255), 3, + ACTIONS(4263), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [91847] = 6, + [91835] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1672), 1, + ACTIONS(1704), 1, anon_sym_PIPE, - ACTIONS(4249), 1, + ACTIONS(4255), 1, anon_sym_LT, - ACTIONS(4251), 1, + ACTIONS(4257), 1, anon_sym_DOT, - STATE(1993), 1, + STATE(1994), 1, sym_type_arguments, - ACTIONS(1670), 10, + ACTIONS(1702), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -142741,98 +143098,105 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [91875] = 6, + [91863] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1661), 1, - anon_sym_PIPE, - ACTIONS(4249), 1, + ACTIONS(1678), 1, anon_sym_LT, - ACTIONS(4251), 1, - anon_sym_DOT, - STATE(1993), 1, - sym_type_arguments, - ACTIONS(1659), 10, - sym__automatic_semicolon, + ACTIONS(2238), 1, + anon_sym_COLON, + ACTIONS(2332), 1, + anon_sym_LPAREN, + ACTIONS(4261), 1, anon_sym_EQ, - anon_sym_LBRACE, + ACTIONS(4275), 1, + anon_sym_BANG, + ACTIONS(4277), 1, + anon_sym_QMARK, + STATE(2015), 1, + sym_formal_parameters, + STATE(2315), 1, + sym_type_annotation, + STATE(2700), 1, + sym__call_signature, + STATE(2716), 1, + sym__initializer, + STATE(2918), 1, + sym_type_parameters, + ACTIONS(4273), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [91903] = 13, + [91905] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1691), 1, + ACTIONS(1678), 1, anon_sym_LT, - ACTIONS(2198), 1, + ACTIONS(2238), 1, anon_sym_COLON, - ACTIONS(2306), 1, + ACTIONS(2332), 1, anon_sym_LPAREN, - ACTIONS(4239), 1, + ACTIONS(4261), 1, anon_sym_EQ, - ACTIONS(4263), 1, + ACTIONS(4281), 1, anon_sym_BANG, - ACTIONS(4265), 1, + ACTIONS(4283), 1, anon_sym_QMARK, - STATE(2020), 1, + STATE(2015), 1, sym_formal_parameters, - STATE(2277), 1, - sym__call_signature, - STATE(2300), 1, + STATE(2278), 1, sym_type_annotation, - STATE(2641), 1, + STATE(2284), 1, + sym__call_signature, + STATE(2764), 1, sym__initializer, - STATE(2862), 1, + STATE(2918), 1, sym_type_parameters, - ACTIONS(4261), 3, + ACTIONS(4279), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [91945] = 13, + [91947] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1691), 1, + ACTIONS(1678), 1, anon_sym_LT, - ACTIONS(2198), 1, + ACTIONS(2238), 1, anon_sym_COLON, - ACTIONS(2306), 1, + ACTIONS(2332), 1, anon_sym_LPAREN, - ACTIONS(4239), 1, + ACTIONS(4261), 1, anon_sym_EQ, - ACTIONS(4257), 1, + ACTIONS(4275), 1, anon_sym_BANG, - ACTIONS(4267), 1, + ACTIONS(4285), 1, anon_sym_QMARK, - STATE(2020), 1, + STATE(2015), 1, sym_formal_parameters, - STATE(2258), 1, - sym_type_annotation, - STATE(2287), 1, + STATE(2289), 1, sym__call_signature, - STATE(2664), 1, + STATE(2315), 1, + sym_type_annotation, + STATE(2716), 1, sym__initializer, - STATE(2862), 1, + STATE(2918), 1, sym_type_parameters, - ACTIONS(4255), 3, + ACTIONS(4273), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [91987] = 6, + [91989] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1585), 1, + ACTIONS(1661), 1, anon_sym_PIPE, - ACTIONS(4249), 1, + ACTIONS(4255), 1, anon_sym_LT, - ACTIONS(4269), 1, + ACTIONS(4257), 1, anon_sym_DOT, - STATE(1993), 1, + STATE(1994), 1, sym_type_arguments, - ACTIONS(1583), 10, + ACTIONS(1659), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -142843,112 +143207,94 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [92015] = 13, + [92017] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1691), 1, + ACTIONS(1678), 1, anon_sym_LT, - ACTIONS(2198), 1, + ACTIONS(2238), 1, anon_sym_COLON, - ACTIONS(2306), 1, + ACTIONS(2332), 1, anon_sym_LPAREN, - ACTIONS(4239), 1, + ACTIONS(4261), 1, anon_sym_EQ, - ACTIONS(4273), 1, + ACTIONS(4289), 1, anon_sym_BANG, - ACTIONS(4275), 1, + ACTIONS(4291), 1, anon_sym_QMARK, - STATE(2020), 1, + STATE(2015), 1, sym_formal_parameters, - STATE(2350), 1, + STATE(2397), 1, sym__call_signature, - STATE(2356), 1, + STATE(2414), 1, sym_type_annotation, - STATE(2695), 1, + STATE(2707), 1, sym__initializer, - STATE(2862), 1, + STATE(2918), 1, sym_type_parameters, - ACTIONS(4271), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [92057] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1091), 1, - anon_sym_PIPE, - ACTIONS(1411), 1, - anon_sym_LT, - ACTIONS(1089), 11, + ACTIONS(4287), 3, 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, - [92080] = 10, + [92059] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1691), 1, + ACTIONS(1678), 1, anon_sym_LT, - ACTIONS(2306), 1, - anon_sym_LPAREN, - ACTIONS(4279), 1, + ACTIONS(2238), 1, anon_sym_COLON, - ACTIONS(4281), 1, + ACTIONS(2332), 1, + anon_sym_LPAREN, + ACTIONS(4295), 1, anon_sym_QMARK, - STATE(2020), 1, + STATE(2015), 1, sym_formal_parameters, - STATE(2116), 1, + STATE(2140), 1, sym__call_signature, - STATE(2434), 1, + STATE(2296), 1, sym_type_annotation, - STATE(2862), 1, + STATE(2918), 1, sym_type_parameters, - ACTIONS(4277), 5, + ACTIONS(4293), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [92115] = 10, + [92094] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1691), 1, + ACTIONS(4231), 1, anon_sym_LT, - ACTIONS(2198), 1, + ACTIONS(4235), 1, + anon_sym_DOT, + ACTIONS(4297), 1, + anon_sym_EQ, + ACTIONS(4302), 1, anon_sym_COLON, - ACTIONS(2306), 1, - anon_sym_LPAREN, - ACTIONS(4285), 1, - anon_sym_QMARK, - STATE(2020), 1, - sym_formal_parameters, - STATE(2294), 1, - sym__call_signature, - STATE(2298), 1, - sym_type_annotation, - STATE(2862), 1, - sym_type_parameters, - ACTIONS(4283), 5, - sym__automatic_semicolon, + ACTIONS(4304), 1, + anon_sym_extends, + STATE(378), 1, + sym_type_arguments, + STATE(2508), 1, + sym_constraint, + STATE(2805), 1, + sym_default_type, + ACTIONS(4299), 2, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [92150] = 4, + anon_sym_GT, + ACTIONS(1702), 3, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + [92131] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1089), 1, + ACTIONS(945), 1, anon_sym_DOT, - ACTIONS(1413), 1, + ACTIONS(1457), 1, anon_sym_PIPE, - ACTIONS(1411), 11, + ACTIONS(1455), 11, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -142960,187 +143306,186 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [92173] = 5, + [92154] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1519), 1, - anon_sym_PIPE, - ACTIONS(4249), 1, + ACTIONS(1678), 1, anon_sym_LT, - STATE(1999), 1, - sym_type_arguments, - ACTIONS(1517), 10, + ACTIONS(2238), 1, + anon_sym_COLON, + ACTIONS(2332), 1, + anon_sym_LPAREN, + ACTIONS(4309), 1, + anon_sym_QMARK, + STATE(2015), 1, + sym_formal_parameters, + STATE(2145), 1, + sym__call_signature, + STATE(2268), 1, + sym_type_annotation, + STATE(2918), 1, + sym_type_parameters, + ACTIONS(4307), 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, - [92198] = 11, + [92189] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4215), 1, + ACTIONS(1569), 1, + anon_sym_PIPE, + ACTIONS(4255), 1, anon_sym_LT, - ACTIONS(4219), 1, - anon_sym_DOT, - ACTIONS(4287), 1, - anon_sym_EQ, - ACTIONS(4292), 1, - anon_sym_COLON, - ACTIONS(4294), 1, - anon_sym_extends, - STATE(313), 1, + STATE(1973), 1, sym_type_arguments, - STATE(2520), 1, - sym_constraint, - STATE(2792), 1, - sym_default_type, - ACTIONS(4289), 2, + ACTIONS(1567), 10, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_GT, - ACTIONS(1670), 3, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_AMP, - anon_sym_PIPE, - [92235] = 10, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [92214] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1691), 1, + ACTIONS(1678), 1, anon_sym_LT, - ACTIONS(2198), 1, + ACTIONS(2238), 1, anon_sym_COLON, - ACTIONS(2306), 1, + ACTIONS(2332), 1, anon_sym_LPAREN, - ACTIONS(4299), 1, + ACTIONS(4313), 1, anon_sym_QMARK, - STATE(2020), 1, + STATE(2015), 1, sym_formal_parameters, - STATE(2125), 1, + STATE(2130), 1, sym__call_signature, - STATE(2346), 1, + STATE(2484), 1, sym_type_annotation, - STATE(2862), 1, + STATE(2918), 1, sym_type_parameters, - ACTIONS(4297), 5, + ACTIONS(4311), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [92270] = 10, + [92249] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1691), 1, + ACTIONS(1678), 1, anon_sym_LT, - ACTIONS(2198), 1, + ACTIONS(2238), 1, anon_sym_COLON, - ACTIONS(2306), 1, + ACTIONS(2332), 1, anon_sym_LPAREN, - ACTIONS(4303), 1, + ACTIONS(4315), 1, anon_sym_QMARK, - STATE(2020), 1, + STATE(2015), 1, sym_formal_parameters, - STATE(2328), 1, - sym_type_annotation, - STATE(2363), 1, + STATE(2277), 1, sym__call_signature, - STATE(2862), 1, + STATE(2296), 1, + sym_type_annotation, + STATE(2918), 1, sym_type_parameters, - ACTIONS(4301), 5, + ACTIONS(4293), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [92305] = 10, + [92284] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1691), 1, + ACTIONS(1678), 1, anon_sym_LT, - ACTIONS(2198), 1, + ACTIONS(2238), 1, anon_sym_COLON, - ACTIONS(2306), 1, + ACTIONS(2332), 1, anon_sym_LPAREN, - ACTIONS(4305), 1, + ACTIONS(4319), 1, anon_sym_QMARK, - STATE(2020), 1, + STATE(2015), 1, sym_formal_parameters, - STATE(2117), 1, - sym__call_signature, - STATE(2298), 1, + STATE(2402), 1, sym_type_annotation, - STATE(2862), 1, + STATE(2405), 1, + sym__call_signature, + STATE(2918), 1, sym_type_parameters, - ACTIONS(4283), 5, + ACTIONS(4317), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [92340] = 10, + [92319] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1691), 1, + ACTIONS(1678), 1, anon_sym_LT, - ACTIONS(2198), 1, + ACTIONS(2238), 1, anon_sym_COLON, - ACTIONS(2306), 1, + ACTIONS(2332), 1, anon_sym_LPAREN, - ACTIONS(4307), 1, + ACTIONS(4321), 1, anon_sym_QMARK, - STATE(2020), 1, + STATE(2015), 1, sym_formal_parameters, - STATE(2335), 1, + STATE(2386), 1, sym__call_signature, - STATE(2346), 1, + STATE(2484), 1, sym_type_annotation, - STATE(2862), 1, + STATE(2918), 1, sym_type_parameters, - ACTIONS(4297), 5, + ACTIONS(4311), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [92375] = 10, + [92354] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1691), 1, + ACTIONS(1678), 1, anon_sym_LT, - ACTIONS(2198), 1, - anon_sym_COLON, - ACTIONS(2306), 1, + ACTIONS(2332), 1, anon_sym_LPAREN, - ACTIONS(4309), 1, + ACTIONS(4323), 1, + anon_sym_COLON, + ACTIONS(4325), 1, anon_sym_QMARK, - STATE(2020), 1, + STATE(2015), 1, sym_formal_parameters, - STATE(2434), 1, - sym_type_annotation, - STATE(2435), 1, + STATE(2106), 1, sym__call_signature, - STATE(2862), 1, + STATE(2402), 1, + sym_type_annotation, + STATE(2918), 1, sym_type_parameters, - ACTIONS(4277), 5, + ACTIONS(4317), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [92410] = 5, + [92389] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1736), 1, + ACTIONS(1714), 1, anon_sym_PIPE, - ACTIONS(4249), 1, + ACTIONS(4255), 1, anon_sym_LT, - STATE(1999), 1, + STATE(1973), 1, sym_type_arguments, - ACTIONS(1734), 10, + ACTIONS(1712), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -143151,300 +143496,225 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [92435] = 10, + [92414] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1691), 1, + ACTIONS(1678), 1, anon_sym_LT, - ACTIONS(2198), 1, + ACTIONS(2238), 1, anon_sym_COLON, - ACTIONS(2306), 1, + ACTIONS(2332), 1, anon_sym_LPAREN, - ACTIONS(4311), 1, + ACTIONS(4327), 1, anon_sym_QMARK, - STATE(2020), 1, + STATE(2015), 1, sym_formal_parameters, - STATE(2138), 1, - sym__call_signature, - STATE(2328), 1, + STATE(2268), 1, sym_type_annotation, - STATE(2862), 1, + STATE(2302), 1, + sym__call_signature, + STATE(2918), 1, sym_type_parameters, - ACTIONS(4301), 5, + ACTIONS(4307), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [92470] = 9, + [92449] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1691), 1, + ACTIONS(947), 1, + anon_sym_PIPE, + ACTIONS(1455), 1, anon_sym_LT, - ACTIONS(2198), 1, - anon_sym_COLON, - ACTIONS(2306), 1, - anon_sym_LPAREN, - STATE(2020), 1, - sym_formal_parameters, - STATE(2128), 1, - sym__call_signature, - STATE(2379), 1, - sym_type_annotation, - STATE(2862), 1, - sym_type_parameters, - ACTIONS(4313), 5, + ACTIONS(945), 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, - [92502] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1691), 1, - anon_sym_LT, - ACTIONS(2198), 1, - anon_sym_COLON, - ACTIONS(2306), 1, - anon_sym_LPAREN, - ACTIONS(4239), 1, - anon_sym_EQ, - STATE(2020), 1, - sym_formal_parameters, - STATE(2352), 1, - sym_type_annotation, - STATE(2688), 1, - sym__initializer, - STATE(2694), 1, - sym__call_signature, - STATE(2862), 1, - sym_type_parameters, - ACTIONS(4315), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [92538] = 11, + [92472] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1691), 1, + ACTIONS(1678), 1, anon_sym_LT, - ACTIONS(2198), 1, + ACTIONS(2238), 1, anon_sym_COLON, - ACTIONS(2306), 1, + ACTIONS(2332), 1, anon_sym_LPAREN, - ACTIONS(4239), 1, + ACTIONS(4261), 1, anon_sym_EQ, - STATE(2020), 1, + STATE(2015), 1, sym_formal_parameters, - STATE(2347), 1, + STATE(2393), 1, sym__call_signature, - STATE(2352), 1, + STATE(2403), 1, sym_type_annotation, - STATE(2688), 1, + STATE(2676), 1, sym__initializer, - STATE(2862), 1, + STATE(2918), 1, sym_type_parameters, - ACTIONS(4315), 3, + ACTIONS(4329), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [92574] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4215), 1, - anon_sym_LT, - ACTIONS(4219), 1, - anon_sym_DOT, - ACTIONS(4317), 1, - anon_sym_RPAREN, - STATE(313), 1, - sym_type_arguments, - ACTIONS(1670), 4, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - ACTIONS(2620), 4, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - [92602] = 9, + [92508] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1691), 1, + ACTIONS(1678), 1, anon_sym_LT, - ACTIONS(2198), 1, + ACTIONS(2238), 1, anon_sym_COLON, - ACTIONS(2306), 1, + ACTIONS(2332), 1, anon_sym_LPAREN, - STATE(2020), 1, + STATE(2015), 1, sym_formal_parameters, - STATE(2282), 1, + STATE(2440), 1, sym__call_signature, - STATE(2299), 1, + STATE(2455), 1, sym_type_annotation, - STATE(2862), 1, + STATE(2918), 1, sym_type_parameters, - ACTIONS(4320), 5, + ACTIONS(4331), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [92634] = 11, + [92540] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1691), 1, + ACTIONS(1678), 1, anon_sym_LT, - ACTIONS(2198), 1, + ACTIONS(2238), 1, anon_sym_COLON, - ACTIONS(2306), 1, + ACTIONS(2332), 1, anon_sym_LPAREN, - ACTIONS(4239), 1, + ACTIONS(4261), 1, anon_sym_EQ, - STATE(2020), 1, + STATE(2015), 1, sym_formal_parameters, - STATE(2306), 1, + STATE(2456), 1, sym__call_signature, - STATE(2312), 1, - sym_type_annotation, - STATE(2652), 1, - sym__initializer, - STATE(2862), 1, - sym_type_parameters, - ACTIONS(4322), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [92670] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1691), 1, - anon_sym_LT, - ACTIONS(2198), 1, - anon_sym_COLON, - ACTIONS(2306), 1, - anon_sym_LPAREN, - ACTIONS(4239), 1, - anon_sym_EQ, - STATE(2020), 1, - sym_formal_parameters, - STATE(2259), 1, + STATE(2465), 1, sym_type_annotation, - STATE(2260), 1, - sym__call_signature, - STATE(2615), 1, + STATE(2792), 1, sym__initializer, - STATE(2862), 1, + STATE(2918), 1, sym_type_parameters, - ACTIONS(4324), 3, + ACTIONS(4333), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [92706] = 9, + [92576] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1691), 1, + ACTIONS(1678), 1, anon_sym_LT, - ACTIONS(2198), 1, + ACTIONS(2238), 1, anon_sym_COLON, - ACTIONS(2306), 1, + ACTIONS(2332), 1, anon_sym_LPAREN, - STATE(2020), 1, + STATE(2015), 1, sym_formal_parameters, - STATE(2121), 1, + STATE(2124), 1, sym__call_signature, - STATE(2337), 1, + STATE(2297), 1, sym_type_annotation, - STATE(2862), 1, + STATE(2918), 1, sym_type_parameters, - ACTIONS(4326), 5, + ACTIONS(4335), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [92738] = 9, + [92608] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1691), 1, + ACTIONS(1678), 1, anon_sym_LT, - ACTIONS(2198), 1, + ACTIONS(2238), 1, anon_sym_COLON, - ACTIONS(2306), 1, + ACTIONS(2332), 1, anon_sym_LPAREN, - STATE(2020), 1, + STATE(2015), 1, sym_formal_parameters, - STATE(2280), 1, + STATE(2269), 1, sym_type_annotation, - STATE(2385), 1, + STATE(2312), 1, sym__call_signature, - STATE(2862), 1, + STATE(2918), 1, sym_type_parameters, - ACTIONS(4328), 5, + ACTIONS(4337), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [92770] = 11, + [92640] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1691), 1, + ACTIONS(1678), 1, anon_sym_LT, - ACTIONS(2198), 1, + ACTIONS(2238), 1, anon_sym_COLON, - ACTIONS(2306), 1, + ACTIONS(2332), 1, anon_sym_LPAREN, - ACTIONS(4239), 1, - anon_sym_EQ, - STATE(2020), 1, + STATE(2015), 1, sym_formal_parameters, - STATE(2312), 1, + STATE(2297), 1, sym_type_annotation, - STATE(2652), 1, - sym__initializer, - STATE(2658), 1, + STATE(2317), 1, sym__call_signature, - STATE(2862), 1, + STATE(2918), 1, sym_type_parameters, - ACTIONS(4322), 3, + ACTIONS(4335), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [92806] = 9, + anon_sym_PIPE_RBRACE, + [92672] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1691), 1, + ACTIONS(1678), 1, anon_sym_LT, - ACTIONS(2198), 1, + ACTIONS(2238), 1, anon_sym_COLON, - ACTIONS(2306), 1, + ACTIONS(2332), 1, anon_sym_LPAREN, - STATE(2020), 1, + ACTIONS(4261), 1, + anon_sym_EQ, + STATE(2015), 1, sym_formal_parameters, - STATE(2375), 1, - sym__call_signature, - STATE(2379), 1, + STATE(2321), 1, sym_type_annotation, - STATE(2862), 1, + STATE(2695), 1, + sym__call_signature, + STATE(2708), 1, + sym__initializer, + STATE(2918), 1, sym_type_parameters, - ACTIONS(4313), 5, + ACTIONS(4339), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [92838] = 4, + [92708] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1585), 1, + ACTIONS(1503), 1, anon_sym_PIPE, ACTIONS(4269), 1, anon_sym_DOT, - ACTIONS(1583), 10, + ACTIONS(1501), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -143455,162 +143725,223 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [92860] = 6, + [92730] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4215), 1, + ACTIONS(4231), 1, anon_sym_LT, - ACTIONS(4219), 1, + ACTIONS(4235), 1, anon_sym_DOT, - STATE(313), 1, + STATE(378), 1, sym_type_arguments, - ACTIONS(1670), 4, + ACTIONS(1702), 4, anon_sym_LBRACK, anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - ACTIONS(4330), 5, + ACTIONS(4341), 5, anon_sym_EQ, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, anon_sym_QMARK, - [92886] = 9, + [92756] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1691), 1, + ACTIONS(1678), 1, anon_sym_LT, - ACTIONS(2198), 1, + ACTIONS(2238), 1, anon_sym_COLON, - ACTIONS(2306), 1, + ACTIONS(2332), 1, anon_sym_LPAREN, - STATE(2020), 1, + ACTIONS(4261), 1, + anon_sym_EQ, + STATE(2015), 1, sym_formal_parameters, - STATE(2070), 1, + STATE(2304), 1, sym__call_signature, - STATE(2299), 1, + STATE(2321), 1, sym_type_annotation, - STATE(2862), 1, + STATE(2708), 1, + sym__initializer, + STATE(2918), 1, sym_type_parameters, - ACTIONS(4320), 5, + ACTIONS(4339), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [92918] = 11, + [92792] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1691), 1, + ACTIONS(1678), 1, anon_sym_LT, - ACTIONS(2198), 1, + ACTIONS(2238), 1, anon_sym_COLON, - ACTIONS(2306), 1, + ACTIONS(2332), 1, anon_sym_LPAREN, - ACTIONS(4239), 1, + ACTIONS(4261), 1, anon_sym_EQ, - STATE(2020), 1, + STATE(2015), 1, sym_formal_parameters, - STATE(2381), 1, - sym__call_signature, - STATE(2384), 1, + STATE(2403), 1, sym_type_annotation, - STATE(2731), 1, + STATE(2676), 1, sym__initializer, - STATE(2862), 1, + STATE(2692), 1, + sym__call_signature, + STATE(2918), 1, sym_type_parameters, - ACTIONS(4332), 3, + ACTIONS(4329), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [92954] = 9, + [92828] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1691), 1, + ACTIONS(1678), 1, anon_sym_LT, - ACTIONS(2198), 1, + ACTIONS(2238), 1, anon_sym_COLON, - ACTIONS(2306), 1, + ACTIONS(2332), 1, anon_sym_LPAREN, - STATE(2020), 1, + STATE(2015), 1, sym_formal_parameters, - STATE(2139), 1, + STATE(2126), 1, sym__call_signature, - STATE(2280), 1, + STATE(2455), 1, sym_type_annotation, - STATE(2862), 1, + STATE(2918), 1, sym_type_parameters, - ACTIONS(4328), 5, + ACTIONS(4331), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [92986] = 9, + [92860] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1691), 1, + ACTIONS(1678), 1, anon_sym_LT, - ACTIONS(2198), 1, + ACTIONS(2238), 1, anon_sym_COLON, - ACTIONS(2306), 1, + ACTIONS(2332), 1, anon_sym_LPAREN, - STATE(2020), 1, + STATE(2015), 1, sym_formal_parameters, - STATE(2329), 1, + STATE(2139), 1, sym__call_signature, - STATE(2337), 1, + STATE(2388), 1, sym_type_annotation, - STATE(2862), 1, + STATE(2918), 1, sym_type_parameters, - ACTIONS(4326), 5, + ACTIONS(4343), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [93018] = 5, + [92892] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4334), 1, - anon_sym_AMP, - ACTIONS(4336), 1, - anon_sym_PIPE, - ACTIONS(4338), 1, - anon_sym_extends, - ACTIONS(1746), 8, + ACTIONS(1678), 1, + anon_sym_LT, + ACTIONS(2238), 1, + anon_sym_COLON, + ACTIONS(2332), 1, + anon_sym_LPAREN, + STATE(2015), 1, + sym_formal_parameters, + STATE(2381), 1, + sym__call_signature, + STATE(2388), 1, + sym_type_annotation, + STATE(2918), 1, + sym_type_parameters, + ACTIONS(4343), 5, 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, - [93041] = 3, + [92924] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1519), 1, - anon_sym_PIPE, - ACTIONS(1517), 10, + ACTIONS(1678), 1, + anon_sym_LT, + ACTIONS(2238), 1, + anon_sym_COLON, + ACTIONS(2332), 1, + anon_sym_LPAREN, + STATE(2015), 1, + sym_formal_parameters, + STATE(2147), 1, + sym__call_signature, + STATE(2269), 1, + sym_type_annotation, + STATE(2918), 1, + sym_type_parameters, + ACTIONS(4337), 5, sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [92956] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1678), 1, + anon_sym_LT, + ACTIONS(2238), 1, + anon_sym_COLON, + ACTIONS(2332), 1, + anon_sym_LPAREN, + ACTIONS(4261), 1, + anon_sym_EQ, + STATE(2015), 1, + sym_formal_parameters, + STATE(2330), 1, + sym_type_annotation, + STATE(2351), 1, + sym__call_signature, + STATE(2688), 1, + sym__initializer, + STATE(2918), 1, + sym_type_parameters, + ACTIONS(4345), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [92992] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4231), 1, + anon_sym_LT, + ACTIONS(4235), 1, + anon_sym_DOT, + ACTIONS(4347), 1, + anon_sym_RPAREN, + STATE(378), 1, + sym_type_arguments, + ACTIONS(1702), 4, anon_sym_LBRACK, anon_sym_AMP, + anon_sym_PIPE, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [93060] = 3, + ACTIONS(2684), 4, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_QMARK, + [93020] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1503), 1, + ACTIONS(1714), 1, anon_sym_PIPE, - ACTIONS(1501), 10, + ACTIONS(4259), 1, + anon_sym_is, + ACTIONS(1712), 9, sym__automatic_semicolon, - anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -143619,30 +143950,29 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [93079] = 3, + [93041] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1545), 1, + ACTIONS(1539), 1, anon_sym_PIPE, - ACTIONS(1543), 10, + ACTIONS(4350), 1, + anon_sym_LBRACK, + ACTIONS(1537), 9, 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, - [93098] = 4, + [93062] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4334), 1, - anon_sym_AMP, - ACTIONS(4336), 1, + ACTIONS(1515), 1, anon_sym_PIPE, - ACTIONS(1758), 9, + ACTIONS(1513), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -143650,14 +143980,15 @@ static 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, - [93119] = 3, + [93081] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1589), 1, + ACTIONS(1491), 1, anon_sym_PIPE, - ACTIONS(1587), 10, + ACTIONS(1489), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -143668,12 +143999,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [93138] = 3, + [93100] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1593), 1, + ACTIONS(1569), 1, anon_sym_PIPE, - ACTIONS(1591), 10, + ACTIONS(1567), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -143684,12 +144015,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [93157] = 3, + [93119] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1585), 1, + ACTIONS(1593), 1, anon_sym_PIPE, - ACTIONS(1583), 10, + ACTIONS(1591), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -143700,29 +144031,29 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [93176] = 4, + [93138] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1601), 1, - anon_sym_PIPE, - ACTIONS(4340), 1, - anon_sym_LBRACK, - ACTIONS(1599), 9, - sym__automatic_semicolon, + ACTIONS(3846), 1, anon_sym_EQ, - anon_sym_LBRACE, + STATE(2651), 1, + aux_sym_object_repeat1, + ACTIONS(2776), 9, + sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_AMP, - anon_sym_extends, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, anon_sym_PIPE_RBRACE, - [93197] = 3, + [93159] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1491), 1, + ACTIONS(1601), 1, anon_sym_PIPE, - ACTIONS(1489), 10, + ACTIONS(1599), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -143733,12 +144064,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [93216] = 3, + [93178] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1553), 1, + ACTIONS(1519), 1, anon_sym_PIPE, - ACTIONS(1551), 10, + ACTIONS(1517), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -143749,29 +144080,28 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [93235] = 4, + [93197] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1539), 1, + ACTIONS(1605), 1, anon_sym_PIPE, - ACTIONS(4340), 1, - anon_sym_LBRACK, - ACTIONS(1537), 9, + ACTIONS(1603), 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, - [93256] = 3, + [93216] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1535), 1, + ACTIONS(1557), 1, anon_sym_PIPE, - ACTIONS(1533), 10, + ACTIONS(1555), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -143782,29 +144112,28 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [93275] = 4, + [93235] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3828), 1, - anon_sym_EQ, - STATE(2678), 1, - aux_sym_object_repeat1, - ACTIONS(2788), 9, + ACTIONS(1483), 1, + anon_sym_PIPE, + ACTIONS(1481), 10, sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - 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, - [93296] = 3, + [93254] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1531), 1, + ACTIONS(1565), 1, anon_sym_PIPE, - ACTIONS(1529), 10, + ACTIONS(1563), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -143815,7 +144144,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [93315] = 3, + [93273] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1597), 1, @@ -143831,12 +144160,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [93334] = 3, + [93292] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1187), 1, + ACTIONS(1561), 1, anon_sym_PIPE, - ACTIONS(1185), 10, + ACTIONS(1559), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -143847,12 +144176,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [93353] = 3, + [93311] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1549), 1, + ACTIONS(4352), 1, + anon_sym_AMP, + ACTIONS(4354), 1, anon_sym_PIPE, - ACTIONS(1547), 10, + ACTIONS(1760), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -143860,15 +144191,29 @@ static 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, - [93372] = 3, + [93332] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1605), 1, + ACTIONS(3585), 11, + 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, + [93349] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1487), 1, anon_sym_PIPE, - ACTIONS(1603), 10, + ACTIONS(1485), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -143879,29 +144224,28 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [93391] = 4, + [93368] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1565), 1, + ACTIONS(1573), 1, anon_sym_PIPE, - ACTIONS(1563), 3, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_extends, - ACTIONS(1559), 7, + ACTIONS(1571), 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, - [93412] = 3, + [93387] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1569), 1, + ACTIONS(1523), 1, anon_sym_PIPE, - ACTIONS(1567), 10, + ACTIONS(1521), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -143912,27 +144256,30 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [93431] = 2, + [93406] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2788), 11, + ACTIONS(4352), 1, + anon_sym_AMP, + ACTIONS(4354), 1, + anon_sym_PIPE, + ACTIONS(4356), 1, + anon_sym_extends, + ACTIONS(1768), 8, 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_PIPE_RBRACE, - [93448] = 3, + [93429] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1577), 1, + ACTIONS(1499), 1, anon_sym_PIPE, - ACTIONS(1575), 10, + ACTIONS(1497), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -143943,12 +144290,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [93467] = 3, + [93448] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1573), 1, + ACTIONS(1577), 1, anon_sym_PIPE, - ACTIONS(1571), 10, + ACTIONS(1575), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -143959,27 +144306,29 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [93486] = 2, + [93467] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3572), 11, - sym__automatic_semicolon, + ACTIONS(3846), 1, anon_sym_EQ, + STATE(2757), 1, + aux_sym_object_repeat1, + ACTIONS(2776), 9, + sym__automatic_semicolon, 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, - [93503] = 3, + [93488] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1527), 1, + ACTIONS(1495), 1, anon_sym_PIPE, - ACTIONS(1525), 10, + ACTIONS(1493), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -143990,12 +144339,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [93522] = 3, + [93507] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1477), 1, + ACTIONS(1527), 1, anon_sym_PIPE, - ACTIONS(1475), 10, + ACTIONS(1525), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -144006,12 +144355,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [93541] = 3, + [93526] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1471), 1, + ACTIONS(1531), 1, anon_sym_PIPE, - ACTIONS(1469), 10, + ACTIONS(1529), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -144022,12 +144371,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [93560] = 3, + [93545] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1523), 1, + ACTIONS(1535), 1, anon_sym_PIPE, - ACTIONS(1521), 10, + ACTIONS(1533), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -144038,12 +144387,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [93579] = 3, + [93564] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1515), 1, + ACTIONS(1187), 1, anon_sym_PIPE, - ACTIONS(1513), 10, + ACTIONS(1185), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -144054,46 +144403,27 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [93598] = 4, + [93583] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3828), 1, - anon_sym_EQ, - STATE(2739), 1, - aux_sym_object_repeat1, - ACTIONS(2788), 9, + ACTIONS(2776), 11, 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, - [93619] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3828), 1, anon_sym_EQ, - STATE(2772), 1, - aux_sym_object_repeat1, - ACTIONS(2788), 9, - sym__automatic_semicolon, 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, - [93640] = 3, + [93600] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1565), 1, + ACTIONS(1549), 1, anon_sym_PIPE, - ACTIONS(1563), 10, + ACTIONS(1547), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -144104,12 +144434,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [93659] = 3, + [93619] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1467), 1, + ACTIONS(1511), 1, anon_sym_PIPE, - ACTIONS(1465), 10, + ACTIONS(1509), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -144120,12 +144450,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [93678] = 3, + [93638] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1511), 1, + ACTIONS(4352), 1, + anon_sym_AMP, + ACTIONS(4354), 1, anon_sym_PIPE, - ACTIONS(1509), 10, + ACTIONS(4356), 1, + anon_sym_extends, + ACTIONS(1748), 8, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -144133,33 +144467,32 @@ static 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, - [93697] = 3, + [93661] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1581), 1, + ACTIONS(1545), 1, anon_sym_PIPE, - ACTIONS(1579), 10, + ACTIONS(4350), 1, + anon_sym_LBRACK, + ACTIONS(1543), 9, 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, - [93716] = 4, + [93682] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3828), 1, + ACTIONS(3846), 1, anon_sym_EQ, - STATE(2645), 1, + STATE(2696), 1, aux_sym_object_repeat1, - ACTIONS(2788), 9, + ACTIONS(2776), 9, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -144169,15 +144502,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - [93737] = 4, + [93703] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1736), 1, + ACTIONS(1589), 1, anon_sym_PIPE, - ACTIONS(4253), 1, - anon_sym_is, - ACTIONS(1734), 9, + ACTIONS(1587), 10, sym__automatic_semicolon, + anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -144186,16 +144518,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [93758] = 5, + [93722] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4334), 1, - anon_sym_AMP, - ACTIONS(4336), 1, + ACTIONS(1503), 1, anon_sym_PIPE, - ACTIONS(4338), 1, - anon_sym_extends, - ACTIONS(1768), 8, + ACTIONS(1501), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -144203,13 +144531,15 @@ static 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, - [93781] = 3, + [93741] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1499), 1, + ACTIONS(1507), 1, anon_sym_PIPE, - ACTIONS(1497), 10, + ACTIONS(1505), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -144220,12 +144550,29 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [93800] = 3, + [93760] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1557), 1, + ACTIONS(3846), 1, + anon_sym_EQ, + STATE(2641), 1, + aux_sym_object_repeat1, + ACTIONS(2776), 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, + [93781] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1585), 1, anon_sym_PIPE, - ACTIONS(1555), 10, + ACTIONS(1583), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -144236,12 +144583,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [93819] = 3, + [93800] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1507), 1, + ACTIONS(1553), 1, anon_sym_PIPE, - ACTIONS(1505), 10, + ACTIONS(1551), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -144252,12 +144599,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [93838] = 3, + [93819] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1463), 1, + ACTIONS(1467), 1, anon_sym_PIPE, - ACTIONS(1461), 10, + ACTIONS(1465), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -144268,16 +144615,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [93857] = 5, + [93838] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4334), 1, - anon_sym_AMP, - ACTIONS(4336), 1, + ACTIONS(1585), 1, anon_sym_PIPE, - ACTIONS(4338), 1, + ACTIONS(1583), 3, + anon_sym_LBRACK, + anon_sym_AMP, anon_sym_extends, - ACTIONS(4342), 7, + ACTIONS(1579), 7, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -144285,575 +144632,552 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [93879] = 11, + [93859] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4231), 1, + anon_sym_LT, + ACTIONS(4235), 1, + anon_sym_DOT, + ACTIONS(4358), 1, + anon_sym_is, + STATE(378), 1, + sym_type_arguments, + ACTIONS(1702), 6, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [93883] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1691), 1, + ACTIONS(1678), 1, anon_sym_LT, - ACTIONS(4344), 1, + ACTIONS(4360), 1, sym_identifier, - ACTIONS(4346), 1, + ACTIONS(4362), 1, anon_sym_LBRACE, - ACTIONS(4348), 1, + ACTIONS(4364), 1, anon_sym_implements, - ACTIONS(4350), 1, + ACTIONS(4366), 1, anon_sym_extends, - STATE(1626), 1, + STATE(1556), 1, sym_class_body, - STATE(2077), 1, + STATE(2102), 1, sym_type_parameters, - STATE(2732), 1, + STATE(2746), 1, sym_extends_clause, - STATE(2967), 1, + STATE(2908), 1, sym_class_heritage, - STATE(2994), 1, + STATE(3093), 1, sym_implements_clause, - [93913] = 11, + [93917] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4370), 1, + anon_sym_COLON, + STATE(2210), 3, + sym_type_annotation, + sym_asserts, + sym_type_predicate_annotation, + ACTIONS(4368), 6, + sym__automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [93937] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1691), 1, + ACTIONS(1678), 1, anon_sym_LT, - ACTIONS(4346), 1, + ACTIONS(4362), 1, anon_sym_LBRACE, - ACTIONS(4348), 1, + ACTIONS(4364), 1, anon_sym_implements, - ACTIONS(4350), 1, + ACTIONS(4366), 1, anon_sym_extends, - ACTIONS(4352), 1, + ACTIONS(4372), 1, sym_identifier, - STATE(1612), 1, + STATE(1622), 1, sym_class_body, - STATE(2107), 1, + STATE(2128), 1, sym_type_parameters, - STATE(2732), 1, + STATE(2746), 1, sym_extends_clause, - STATE(2956), 1, + STATE(2927), 1, sym_class_heritage, - STATE(2994), 1, + STATE(3093), 1, sym_implements_clause, - [93947] = 11, + [93971] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1691), 1, + ACTIONS(1678), 1, anon_sym_LT, - ACTIONS(4346), 1, - anon_sym_LBRACE, - ACTIONS(4348), 1, + ACTIONS(4364), 1, anon_sym_implements, - ACTIONS(4350), 1, + ACTIONS(4366), 1, anon_sym_extends, - ACTIONS(4354), 1, + ACTIONS(4374), 1, sym_identifier, - STATE(1612), 1, + ACTIONS(4376), 1, + anon_sym_LBRACE, + STATE(1154), 1, sym_class_body, - STATE(2107), 1, + STATE(2118), 1, sym_type_parameters, - STATE(2732), 1, + STATE(2746), 1, sym_extends_clause, - STATE(2956), 1, + STATE(3002), 1, sym_class_heritage, - STATE(2994), 1, + STATE(3093), 1, sym_implements_clause, - [93981] = 3, + [94005] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2692), 1, - anon_sym_EQ, - ACTIONS(3572), 9, + ACTIONS(4352), 1, + anon_sym_AMP, + ACTIONS(4354), 1, + anon_sym_PIPE, + ACTIONS(4356), 1, + anon_sym_extends, + ACTIONS(4378), 7, sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, 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, - [93999] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1691), 1, - anon_sym_LT, - ACTIONS(4348), 1, - anon_sym_implements, - ACTIONS(4350), 1, - anon_sym_extends, - ACTIONS(4356), 1, - sym_identifier, - ACTIONS(4358), 1, - anon_sym_LBRACE, - STATE(1138), 1, - sym_class_body, - STATE(2075), 1, - sym_type_parameters, - STATE(2732), 1, - sym_extends_clause, - STATE(2961), 1, - sym_class_heritage, - STATE(2994), 1, - sym_implements_clause, - [94033] = 4, + [94027] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4362), 1, + ACTIONS(4370), 1, anon_sym_COLON, - STATE(2170), 3, + STATE(2194), 3, sym_type_annotation, sym_asserts, sym_type_predicate_annotation, - ACTIONS(4360), 6, + ACTIONS(4380), 6, sym__automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [94053] = 4, + [94047] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(3828), 1, - anon_sym_EQ, - ACTIONS(2820), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(2788), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, + ACTIONS(1678), 1, anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - [94073] = 11, + ACTIONS(4362), 1, + anon_sym_LBRACE, + ACTIONS(4364), 1, + anon_sym_implements, + ACTIONS(4366), 1, + anon_sym_extends, + ACTIONS(4382), 1, + sym_identifier, + STATE(1622), 1, + sym_class_body, + STATE(2128), 1, + sym_type_parameters, + STATE(2746), 1, + sym_extends_clause, + STATE(2927), 1, + sym_class_heritage, + STATE(3093), 1, + sym_implements_clause, + [94081] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1691), 1, + ACTIONS(1678), 1, anon_sym_LT, - ACTIONS(4348), 1, + ACTIONS(4362), 1, + anon_sym_LBRACE, + ACTIONS(4364), 1, anon_sym_implements, - ACTIONS(4350), 1, + ACTIONS(4366), 1, anon_sym_extends, - ACTIONS(4364), 1, + ACTIONS(4384), 1, sym_identifier, - ACTIONS(4366), 1, + STATE(1556), 1, + sym_class_body, + STATE(2102), 1, + sym_type_parameters, + STATE(2746), 1, + sym_extends_clause, + STATE(2908), 1, + sym_class_heritage, + STATE(3093), 1, + sym_implements_clause, + [94115] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1678), 1, + anon_sym_LT, + ACTIONS(4362), 1, anon_sym_LBRACE, - STATE(1641), 1, + ACTIONS(4364), 1, + anon_sym_implements, + ACTIONS(4366), 1, + anon_sym_extends, + ACTIONS(4386), 1, + sym_identifier, + STATE(1622), 1, sym_class_body, - STATE(2087), 1, + STATE(2128), 1, sym_type_parameters, - STATE(2732), 1, + STATE(2746), 1, sym_extends_clause, - STATE(2799), 1, + STATE(2927), 1, sym_class_heritage, - STATE(2994), 1, + STATE(3093), 1, sym_implements_clause, - [94107] = 11, + [94149] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1691), 1, + ACTIONS(1678), 1, anon_sym_LT, - ACTIONS(4346), 1, + ACTIONS(4362), 1, anon_sym_LBRACE, - ACTIONS(4348), 1, + ACTIONS(4364), 1, anon_sym_implements, - ACTIONS(4350), 1, + ACTIONS(4366), 1, anon_sym_extends, - ACTIONS(4368), 1, + ACTIONS(4388), 1, sym_identifier, - STATE(1626), 1, + STATE(1556), 1, sym_class_body, - STATE(2077), 1, + STATE(2102), 1, sym_type_parameters, - STATE(2732), 1, + STATE(2746), 1, sym_extends_clause, - STATE(2967), 1, + STATE(2908), 1, sym_class_heritage, - STATE(2994), 1, + STATE(3093), 1, sym_implements_clause, - [94141] = 9, + [94183] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2318), 1, + ACTIONS(2344), 1, anon_sym_DQUOTE, - ACTIONS(2320), 1, + ACTIONS(2346), 1, anon_sym_SQUOTE, - ACTIONS(2744), 1, + ACTIONS(2760), 1, anon_sym_LBRACE, - ACTIONS(4370), 1, + ACTIONS(4390), 1, sym_identifier, - ACTIONS(4372), 1, + ACTIONS(4392), 1, anon_sym_STAR, - STATE(2897), 1, + STATE(2923), 1, sym_import_clause, - STATE(2896), 2, + STATE(2922), 2, sym_string, sym_import_require_clause, - STATE(3062), 2, + STATE(3155), 2, sym_namespace_import, sym_named_imports, - [94171] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4362), 1, - anon_sym_COLON, - STATE(2235), 3, - sym_type_annotation, - sym_asserts, - sym_type_predicate_annotation, - ACTIONS(4374), 6, - sym__automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [94191] = 11, + [94213] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1691), 1, + ACTIONS(1678), 1, anon_sym_LT, - ACTIONS(4346), 1, - anon_sym_LBRACE, - ACTIONS(4348), 1, + ACTIONS(4364), 1, anon_sym_implements, - ACTIONS(4350), 1, + ACTIONS(4366), 1, anon_sym_extends, - ACTIONS(4376), 1, + ACTIONS(4394), 1, sym_identifier, - STATE(1612), 1, - sym_class_body, - STATE(2107), 1, - sym_type_parameters, - STATE(2732), 1, - sym_extends_clause, - STATE(2956), 1, - sym_class_heritage, - STATE(2994), 1, - sym_implements_clause, - [94225] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1691), 1, - anon_sym_LT, - ACTIONS(4348), 1, - anon_sym_implements, - ACTIONS(4350), 1, - anon_sym_extends, - ACTIONS(4366), 1, + ACTIONS(4396), 1, anon_sym_LBRACE, - ACTIONS(4378), 1, - sym_identifier, - STATE(1663), 1, + STATE(1638), 1, sym_class_body, - STATE(2095), 1, + STATE(2111), 1, sym_type_parameters, - STATE(2732), 1, + STATE(2746), 1, sym_extends_clause, - STATE(2931), 1, + STATE(2936), 1, sym_class_heritage, - STATE(2994), 1, + STATE(3093), 1, sym_implements_clause, - [94259] = 11, + [94247] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1691), 1, + ACTIONS(1678), 1, anon_sym_LT, - ACTIONS(4346), 1, - anon_sym_LBRACE, - ACTIONS(4348), 1, + ACTIONS(4364), 1, anon_sym_implements, - ACTIONS(4350), 1, + ACTIONS(4366), 1, anon_sym_extends, - ACTIONS(4380), 1, + ACTIONS(4396), 1, + anon_sym_LBRACE, + ACTIONS(4398), 1, sym_identifier, - STATE(1626), 1, + STATE(1712), 1, sym_class_body, - STATE(2077), 1, + STATE(2085), 1, sym_type_parameters, - STATE(2732), 1, + STATE(2746), 1, sym_extends_clause, - STATE(2967), 1, + STATE(2894), 1, sym_class_heritage, - STATE(2994), 1, + STATE(3093), 1, sym_implements_clause, - [94293] = 11, + [94281] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1691), 1, + ACTIONS(1678), 1, anon_sym_LT, - ACTIONS(4348), 1, + ACTIONS(4364), 1, anon_sym_implements, - ACTIONS(4350), 1, + ACTIONS(4366), 1, anon_sym_extends, - ACTIONS(4358), 1, + ACTIONS(4376), 1, anon_sym_LBRACE, - ACTIONS(4382), 1, + ACTIONS(4400), 1, sym_identifier, - STATE(1113), 1, + STATE(1140), 1, sym_class_body, - STATE(2090), 1, + STATE(2144), 1, sym_type_parameters, - STATE(2732), 1, + STATE(2746), 1, sym_extends_clause, - STATE(2846), 1, + STATE(2934), 1, sym_class_heritage, - STATE(2994), 1, + STATE(3093), 1, sym_implements_clause, - [94327] = 6, + [94315] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4215), 1, + ACTIONS(2724), 1, + anon_sym_EQ, + ACTIONS(3585), 9, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, anon_sym_LT, - ACTIONS(4219), 1, - anon_sym_DOT, - ACTIONS(4384), 1, - anon_sym_is, - STATE(313), 1, - sym_type_arguments, - ACTIONS(1670), 6, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [94351] = 10, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + [94333] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1691), 1, + ACTIONS(3846), 1, + anon_sym_EQ, + ACTIONS(2836), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(2776), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, anon_sym_LT, - ACTIONS(4386), 1, - anon_sym_LBRACE, - ACTIONS(4388), 1, - anon_sym_implements, - ACTIONS(4390), 1, - anon_sym_extends, - STATE(2129), 1, - sym_type_parameters, - STATE(2284), 1, - sym_class_body, - STATE(2732), 1, - sym_extends_clause, - STATE(2881), 1, - sym_class_heritage, - STATE(2994), 1, - sym_implements_clause, - [94382] = 10, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + [94353] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1691), 1, + ACTIONS(1678), 1, anon_sym_LT, - ACTIONS(4358), 1, + ACTIONS(4402), 1, anon_sym_LBRACE, - ACTIONS(4388), 1, + ACTIONS(4404), 1, anon_sym_implements, - ACTIONS(4390), 1, + ACTIONS(4406), 1, anon_sym_extends, - STATE(1172), 1, + STATE(75), 1, sym_class_body, - STATE(2084), 1, + STATE(2121), 1, sym_type_parameters, - STATE(2732), 1, + STATE(2746), 1, sym_extends_clause, - STATE(2945), 1, + STATE(2907), 1, sym_class_heritage, - STATE(2994), 1, + STATE(3093), 1, sym_implements_clause, - [94413] = 10, + [94384] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1691), 1, + ACTIONS(1678), 1, anon_sym_LT, - ACTIONS(4388), 1, + ACTIONS(4362), 1, + anon_sym_LBRACE, + ACTIONS(4404), 1, anon_sym_implements, - ACTIONS(4390), 1, + ACTIONS(4406), 1, anon_sym_extends, - ACTIONS(4392), 1, - anon_sym_LBRACE, - STATE(70), 1, + STATE(1500), 1, sym_class_body, - STATE(2073), 1, + STATE(2090), 1, sym_type_parameters, - STATE(2732), 1, + STATE(2746), 1, sym_extends_clause, - STATE(2816), 1, + STATE(2952), 1, sym_class_heritage, - STATE(2994), 1, + STATE(3093), 1, sym_implements_clause, - [94444] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(459), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1183), 1, - anon_sym_RBRACK, - ACTIONS(4394), 1, - sym_identifier, - STATE(2643), 1, - sym__rest_identifier, - STATE(2609), 2, - sym_labeled_tuple_type_member, - sym__tuple_type_member, - STATE(2571), 3, - sym_rest_identifier, - sym_optional_identifier, - sym__tuple_type_identifier, - [94469] = 3, + [94415] = 4, ACTIONS(3), 1, sym_comment, + ACTIONS(4408), 1, + anon_sym_RPAREN, ACTIONS(1185), 4, anon_sym_LBRACK, anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - ACTIONS(2284), 5, + ACTIONS(1724), 4, anon_sym_EQ, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_COLON, anon_sym_QMARK, - [94486] = 6, + [94434] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4231), 1, - anon_sym_AMP, - ACTIONS(4233), 1, - anon_sym_PIPE, - ACTIONS(4235), 1, - anon_sym_extends, - ACTIONS(4396), 1, - anon_sym_EQ, - ACTIONS(4342), 5, - anon_sym_LBRACE, - anon_sym_COMMA, + ACTIONS(4411), 1, anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_EQ_GT, - [94509] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1734), 4, + ACTIONS(1712), 4, anon_sym_LBRACK, anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - ACTIONS(4330), 5, + ACTIONS(2684), 4, anon_sym_EQ, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_COLON, anon_sym_QMARK, - [94526] = 4, + [94453] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2907), 1, + ACTIONS(2911), 1, anon_sym_RPAREN, - ACTIONS(1551), 4, + ACTIONS(1587), 4, anon_sym_LBRACK, anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - ACTIONS(2905), 4, + ACTIONS(2909), 4, anon_sym_EQ, anon_sym_COMMA, anon_sym_COLON, anon_sym_QMARK, - [94545] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2198), 1, - anon_sym_COLON, - ACTIONS(4239), 1, - anon_sym_EQ, - STATE(2356), 1, - sym_type_annotation, - STATE(2695), 1, - sym__initializer, - ACTIONS(4273), 2, - anon_sym_BANG, - anon_sym_QMARK, - ACTIONS(4271), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [94570] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1691), 1, - anon_sym_LT, - ACTIONS(4346), 1, - anon_sym_LBRACE, - ACTIONS(4388), 1, - anon_sym_implements, - ACTIONS(4390), 1, - anon_sym_extends, - STATE(1332), 1, - sym_class_body, - STATE(2093), 1, - sym_type_parameters, - STATE(2732), 1, - sym_extends_clause, - STATE(2898), 1, - sym_class_heritage, - STATE(2994), 1, - sym_implements_clause, - [94601] = 10, + [94472] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1691), 1, + ACTIONS(1678), 1, anon_sym_LT, - ACTIONS(4388), 1, + ACTIONS(4404), 1, anon_sym_implements, - ACTIONS(4390), 1, + ACTIONS(4406), 1, anon_sym_extends, - ACTIONS(4398), 1, + ACTIONS(4414), 1, anon_sym_LBRACE, - STATE(604), 1, - sym_class_body, - STATE(2118), 1, + STATE(2142), 1, sym_type_parameters, - STATE(2732), 1, + STATE(2306), 1, + sym_class_body, + STATE(2746), 1, sym_extends_clause, - STATE(2936), 1, + STATE(2969), 1, sym_class_heritage, - STATE(2994), 1, + STATE(3093), 1, sym_implements_clause, - [94632] = 3, + [94503] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1501), 4, + ACTIONS(1712), 4, anon_sym_LBRACK, anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - ACTIONS(913), 5, + ACTIONS(4341), 5, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [94520] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4416), 1, + sym_identifier, + ACTIONS(4418), 1, + anon_sym_RBRACK, + STATE(2779), 1, + sym__rest_identifier, + STATE(2766), 2, + sym_labeled_tuple_type_member, + sym__tuple_type_member, + STATE(2503), 3, + sym_rest_identifier, + sym_optional_identifier, + sym__tuple_type_identifier, + [94545] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1185), 4, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + ACTIONS(2308), 5, anon_sym_EQ, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, anon_sym_QMARK, - [94649] = 10, + [94562] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1691), 1, + ACTIONS(1678), 1, anon_sym_LT, - ACTIONS(4358), 1, + ACTIONS(4362), 1, anon_sym_LBRACE, - ACTIONS(4388), 1, + ACTIONS(4404), 1, anon_sym_implements, - ACTIONS(4390), 1, + ACTIONS(4406), 1, anon_sym_extends, - STATE(1193), 1, + STATE(1364), 1, sym_class_body, - STATE(2133), 1, + STATE(2105), 1, sym_type_parameters, - STATE(2732), 1, + STATE(2746), 1, sym_extends_clause, - STATE(2861), 1, + STATE(2962), 1, sym_class_heritage, - STATE(2994), 1, + STATE(3093), 1, + sym_implements_clause, + [94593] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1678), 1, + anon_sym_LT, + ACTIONS(4404), 1, + anon_sym_implements, + ACTIONS(4406), 1, + anon_sym_extends, + ACTIONS(4414), 1, + anon_sym_LBRACE, + STATE(518), 1, + sym_class_body, + STATE(2134), 1, + sym_type_parameters, + STATE(2746), 1, + sym_extends_clause, + STATE(2940), 1, + sym_class_heritage, + STATE(3093), 1, sym_implements_clause, - [94680] = 3, + [94624] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(913), 4, @@ -144861,1109 +145185,1366 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(1501), 5, + ACTIONS(1505), 5, anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [94697] = 10, + [94641] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1183), 1, + anon_sym_RBRACK, + ACTIONS(4416), 1, + sym_identifier, + STATE(2779), 1, + sym__rest_identifier, + STATE(2623), 2, + sym_labeled_tuple_type_member, + sym__tuple_type_member, + STATE(2503), 3, + sym_rest_identifier, + sym_optional_identifier, + sym__tuple_type_identifier, + [94666] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1691), 1, + ACTIONS(1678), 1, anon_sym_LT, - ACTIONS(4388), 1, + ACTIONS(4362), 1, + anon_sym_LBRACE, + ACTIONS(4404), 1, anon_sym_implements, - ACTIONS(4390), 1, + ACTIONS(4406), 1, anon_sym_extends, - ACTIONS(4392), 1, - anon_sym_LBRACE, - STATE(84), 1, + STATE(1328), 1, sym_class_body, - STATE(2102), 1, + STATE(2133), 1, sym_type_parameters, - STATE(2732), 1, + STATE(2746), 1, sym_extends_clause, - STATE(2888), 1, + STATE(2985), 1, sym_class_heritage, - STATE(2994), 1, + STATE(3093), 1, sym_implements_clause, - [94728] = 5, + [94697] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4334), 1, + ACTIONS(4352), 1, anon_sym_AMP, - ACTIONS(4336), 1, + ACTIONS(4354), 1, anon_sym_PIPE, - ACTIONS(4338), 1, + ACTIONS(4356), 1, anon_sym_extends, - ACTIONS(4400), 6, + ACTIONS(4420), 6, sym__automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [94749] = 7, + [94718] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(459), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(4394), 1, - sym_identifier, - ACTIONS(4402), 1, - anon_sym_RBRACK, - STATE(2643), 1, - sym__rest_identifier, - STATE(2748), 2, - sym_labeled_tuple_type_member, - sym__tuple_type_member, - STATE(2571), 3, - sym_rest_identifier, - sym_optional_identifier, - sym__tuple_type_identifier, - [94774] = 7, + ACTIONS(1505), 4, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + ACTIONS(913), 5, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [94735] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2198), 1, + ACTIONS(2238), 1, anon_sym_COLON, - ACTIONS(4239), 1, + ACTIONS(4261), 1, anon_sym_EQ, - STATE(2311), 1, + STATE(2316), 1, sym_type_annotation, - STATE(2651), 1, + STATE(2717), 1, sym__initializer, - ACTIONS(4243), 2, + ACTIONS(4265), 2, anon_sym_BANG, anon_sym_QMARK, - ACTIONS(4241), 3, + ACTIONS(4263), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [94799] = 4, + [94760] = 10, ACTIONS(3), 1, sym_comment, + ACTIONS(1678), 1, + anon_sym_LT, ACTIONS(4404), 1, - anon_sym_RPAREN, - ACTIONS(1734), 4, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_implements, + ACTIONS(4406), 1, anon_sym_extends, - ACTIONS(2620), 4, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - [94818] = 7, + ACTIONS(4414), 1, + anon_sym_LBRACE, + STATE(2132), 1, + sym_type_parameters, + STATE(2354), 1, + sym_class_body, + STATE(2746), 1, + sym_extends_clause, + STATE(2994), 1, + sym_class_heritage, + STATE(3093), 1, + sym_implements_clause, + [94791] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(459), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(4394), 1, + ACTIONS(4416), 1, sym_identifier, - ACTIONS(4407), 1, + ACTIONS(4422), 1, anon_sym_RBRACK, - STATE(2643), 1, + STATE(2779), 1, sym__rest_identifier, - STATE(2687), 2, + STATE(2639), 2, sym_labeled_tuple_type_member, sym__tuple_type_member, - STATE(2571), 3, + STATE(2503), 3, sym_rest_identifier, sym_optional_identifier, sym__tuple_type_identifier, - [94843] = 4, + [94816] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4409), 1, - anon_sym_RPAREN, - ACTIONS(1185), 4, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - ACTIONS(1728), 4, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - [94862] = 10, + ACTIONS(459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4416), 1, + sym_identifier, + ACTIONS(4424), 1, + anon_sym_RBRACK, + STATE(2779), 1, + sym__rest_identifier, + STATE(2705), 2, + sym_labeled_tuple_type_member, + sym__tuple_type_member, + STATE(2503), 3, + sym_rest_identifier, + sym_optional_identifier, + sym__tuple_type_identifier, + [94841] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1691), 1, + ACTIONS(1678), 1, anon_sym_LT, - ACTIONS(4346), 1, + ACTIONS(4402), 1, anon_sym_LBRACE, - ACTIONS(4388), 1, + ACTIONS(4404), 1, anon_sym_implements, - ACTIONS(4390), 1, + ACTIONS(4406), 1, anon_sym_extends, - STATE(1527), 1, + STATE(91), 1, sym_class_body, - STATE(2122), 1, + STATE(2119), 1, sym_type_parameters, - STATE(2732), 1, + STATE(2746), 1, sym_extends_clause, - STATE(2915), 1, + STATE(2921), 1, sym_class_heritage, - STATE(2994), 1, + STATE(3093), 1, sym_implements_clause, - [94893] = 10, + [94872] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1691), 1, + ACTIONS(1678), 1, anon_sym_LT, - ACTIONS(4386), 1, + ACTIONS(4396), 1, anon_sym_LBRACE, - ACTIONS(4388), 1, + ACTIONS(4404), 1, anon_sym_implements, - ACTIONS(4390), 1, + ACTIONS(4406), 1, anon_sym_extends, - STATE(2126), 1, + STATE(1689), 1, + sym_class_body, + STATE(2088), 1, sym_type_parameters, - STATE(2266), 1, + STATE(2746), 1, + sym_extends_clause, + STATE(2891), 1, + sym_class_heritage, + STATE(3093), 1, + sym_implements_clause, + [94903] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1678), 1, + anon_sym_LT, + ACTIONS(4404), 1, + anon_sym_implements, + ACTIONS(4406), 1, + anon_sym_extends, + ACTIONS(4426), 1, + anon_sym_LBRACE, + STATE(560), 1, sym_class_body, - STATE(2732), 1, + STATE(2095), 1, + sym_type_parameters, + STATE(2746), 1, sym_extends_clause, - STATE(2911), 1, + STATE(2925), 1, sym_class_heritage, - STATE(2994), 1, + STATE(3093), 1, sym_implements_clause, - [94924] = 10, + [94934] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2238), 1, + anon_sym_COLON, + ACTIONS(4261), 1, + anon_sym_EQ, + STATE(2414), 1, + sym_type_annotation, + STATE(2707), 1, + sym__initializer, + ACTIONS(4289), 2, + anon_sym_BANG, + anon_sym_QMARK, + ACTIONS(4287), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [94959] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1691), 1, + ACTIONS(1678), 1, anon_sym_LT, - ACTIONS(4386), 1, + ACTIONS(4376), 1, anon_sym_LBRACE, - ACTIONS(4388), 1, + ACTIONS(4404), 1, anon_sym_implements, - ACTIONS(4390), 1, + ACTIONS(4406), 1, anon_sym_extends, - STATE(519), 1, + STATE(1185), 1, sym_class_body, - STATE(2098), 1, + STATE(2113), 1, sym_type_parameters, - STATE(2732), 1, + STATE(2746), 1, sym_extends_clause, - STATE(2838), 1, + STATE(3006), 1, sym_class_heritage, - STATE(2994), 1, + STATE(3093), 1, sym_implements_clause, - [94955] = 10, + [94990] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1175), 1, + anon_sym_RBRACK, + ACTIONS(4416), 1, + sym_identifier, + STATE(2779), 1, + sym__rest_identifier, + STATE(2636), 2, + sym_labeled_tuple_type_member, + sym__tuple_type_member, + STATE(2503), 3, + sym_rest_identifier, + sym_optional_identifier, + sym__tuple_type_identifier, + [95015] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1691), 1, + ACTIONS(1678), 1, anon_sym_LT, - ACTIONS(4386), 1, + ACTIONS(4404), 1, + anon_sym_implements, + ACTIONS(4406), 1, + anon_sym_extends, + ACTIONS(4414), 1, anon_sym_LBRACE, - ACTIONS(4388), 1, + STATE(2093), 1, + sym_type_parameters, + STATE(2390), 1, + sym_class_body, + STATE(2746), 1, + sym_extends_clause, + STATE(3005), 1, + sym_class_heritage, + STATE(3093), 1, + sym_implements_clause, + [95046] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1678), 1, + anon_sym_LT, + ACTIONS(4404), 1, anon_sym_implements, - ACTIONS(4390), 1, + ACTIONS(4406), 1, anon_sym_extends, - STATE(2127), 1, + ACTIONS(4414), 1, + anon_sym_LBRACE, + STATE(2141), 1, sym_type_parameters, - STATE(2345), 1, + STATE(2332), 1, sym_class_body, - STATE(2732), 1, + STATE(2746), 1, sym_extends_clause, - STATE(2957), 1, + STATE(2982), 1, sym_class_heritage, - STATE(2994), 1, + STATE(3093), 1, sym_implements_clause, - [94986] = 10, + [95077] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1691), 1, + ACTIONS(1678), 1, anon_sym_LT, - ACTIONS(4346), 1, + ACTIONS(4362), 1, anon_sym_LBRACE, - ACTIONS(4388), 1, + ACTIONS(4404), 1, anon_sym_implements, - ACTIONS(4390), 1, + ACTIONS(4406), 1, anon_sym_extends, - STATE(1441), 1, + STATE(1628), 1, sym_class_body, - STATE(2114), 1, + STATE(2100), 1, sym_type_parameters, - STATE(2732), 1, + STATE(2746), 1, sym_extends_clause, - STATE(2952), 1, + STATE(2869), 1, sym_class_heritage, - STATE(2994), 1, + STATE(3093), 1, sym_implements_clause, - [95017] = 10, + [95108] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1691), 1, + ACTIONS(1678), 1, anon_sym_LT, - ACTIONS(4386), 1, - anon_sym_LBRACE, - ACTIONS(4388), 1, + ACTIONS(4404), 1, anon_sym_implements, - ACTIONS(4390), 1, + ACTIONS(4406), 1, anon_sym_extends, - STATE(520), 1, + ACTIONS(4414), 1, + anon_sym_LBRACE, + STATE(521), 1, sym_class_body, - STATE(2101), 1, + STATE(2083), 1, sym_type_parameters, - STATE(2732), 1, + STATE(2746), 1, sym_extends_clause, - STATE(2854), 1, + STATE(2892), 1, sym_class_heritage, - STATE(2994), 1, + STATE(3093), 1, sym_implements_clause, - [95048] = 7, + [95139] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(459), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1169), 1, + ACTIONS(4239), 1, + anon_sym_AMP, + ACTIONS(4241), 1, + anon_sym_PIPE, + ACTIONS(4243), 1, + anon_sym_extends, + ACTIONS(4428), 1, + anon_sym_EQ, + ACTIONS(4378), 5, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_RBRACK, - ACTIONS(4394), 1, - sym_identifier, - STATE(2643), 1, - sym__rest_identifier, - STATE(2637), 2, - sym_labeled_tuple_type_member, - sym__tuple_type_member, - STATE(2571), 3, - sym_rest_identifier, - sym_optional_identifier, - sym__tuple_type_identifier, - [95073] = 10, + anon_sym_EQ_GT, + [95162] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1691), 1, + ACTIONS(1678), 1, anon_sym_LT, - ACTIONS(4366), 1, - anon_sym_LBRACE, - ACTIONS(4388), 1, + ACTIONS(4404), 1, anon_sym_implements, - ACTIONS(4390), 1, + ACTIONS(4406), 1, anon_sym_extends, - STATE(1674), 1, + ACTIONS(4426), 1, + anon_sym_LBRACE, + STATE(609), 1, sym_class_body, - STATE(2080), 1, + STATE(2089), 1, sym_type_parameters, - STATE(2732), 1, + STATE(2746), 1, sym_extends_clause, - STATE(2804), 1, + STATE(2842), 1, sym_class_heritage, - STATE(2994), 1, + STATE(3093), 1, sym_implements_clause, - [95104] = 10, + [95193] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1691), 1, + ACTIONS(1678), 1, anon_sym_LT, - ACTIONS(4366), 1, + ACTIONS(4376), 1, anon_sym_LBRACE, - ACTIONS(4388), 1, + ACTIONS(4404), 1, anon_sym_implements, - ACTIONS(4390), 1, + ACTIONS(4406), 1, anon_sym_extends, - STATE(1707), 1, + STATE(1147), 1, sym_class_body, - STATE(2076), 1, + STATE(2143), 1, sym_type_parameters, - STATE(2732), 1, + STATE(2746), 1, sym_extends_clause, - STATE(2858), 1, + STATE(2978), 1, sym_class_heritage, - STATE(2994), 1, + STATE(3093), 1, sym_implements_clause, - [95135] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(459), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(4394), 1, - sym_identifier, - ACTIONS(4412), 1, - anon_sym_RBRACK, - STATE(2643), 1, - sym__rest_identifier, - STATE(2677), 2, - sym_labeled_tuple_type_member, - sym__tuple_type_member, - STATE(2571), 3, - sym_rest_identifier, - sym_optional_identifier, - sym__tuple_type_identifier, - [95160] = 10, + [95224] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1691), 1, + ACTIONS(1678), 1, anon_sym_LT, - ACTIONS(4346), 1, + ACTIONS(4396), 1, anon_sym_LBRACE, - ACTIONS(4388), 1, + ACTIONS(4404), 1, anon_sym_implements, - ACTIONS(4390), 1, + ACTIONS(4406), 1, anon_sym_extends, - STATE(1551), 1, + STATE(1671), 1, sym_class_body, - STATE(2120), 1, + STATE(2101), 1, sym_type_parameters, - STATE(2732), 1, + STATE(2746), 1, sym_extends_clause, - STATE(2873), 1, + STATE(2875), 1, sym_class_heritage, - STATE(2994), 1, + STATE(3093), 1, sym_implements_clause, - [95191] = 6, + [95255] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(459), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(4394), 1, - sym_identifier, - STATE(2643), 1, - sym__rest_identifier, - STATE(2902), 2, - sym_labeled_tuple_type_member, - sym__tuple_type_member, - STATE(2571), 3, - sym_rest_identifier, - sym_optional_identifier, - sym__tuple_type_identifier, - [95213] = 6, + ACTIONS(4352), 1, + anon_sym_AMP, + ACTIONS(4354), 1, + anon_sym_PIPE, + ACTIONS(4356), 1, + anon_sym_extends, + ACTIONS(1764), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [95275] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(113), 1, anon_sym_COMMA, - ACTIONS(3828), 1, + ACTIONS(3846), 1, anon_sym_EQ, - ACTIONS(3996), 1, + ACTIONS(4010), 1, anon_sym_RBRACE, - STATE(2659), 1, + STATE(2696), 1, aux_sym_object_repeat1, - ACTIONS(2788), 4, + ACTIONS(2776), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - [95235] = 6, + [95297] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(113), 1, anon_sym_COMMA, - ACTIONS(3828), 1, + ACTIONS(3846), 1, anon_sym_EQ, - ACTIONS(3994), 1, + ACTIONS(4012), 1, anon_sym_RBRACE, - STATE(2678), 1, + STATE(2689), 1, aux_sym_object_repeat1, - ACTIONS(2788), 4, + ACTIONS(2776), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - [95257] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4334), 1, - anon_sym_AMP, - ACTIONS(4336), 1, - anon_sym_PIPE, - ACTIONS(4338), 1, - anon_sym_extends, - ACTIONS(4414), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [95277] = 6, + [95319] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(113), 1, anon_sym_COMMA, - ACTIONS(1242), 1, + ACTIONS(1201), 1, anon_sym_RBRACE, - ACTIONS(3828), 1, + ACTIONS(3846), 1, anon_sym_EQ, - STATE(2645), 1, + STATE(2641), 1, aux_sym_object_repeat1, - ACTIONS(2788), 4, + ACTIONS(2776), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - [95299] = 6, + [95341] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4416), 1, + sym_identifier, + STATE(2779), 1, + sym__rest_identifier, + STATE(2851), 2, + sym_labeled_tuple_type_member, + sym__tuple_type_member, + STATE(2503), 3, + sym_rest_identifier, + sym_optional_identifier, + sym__tuple_type_identifier, + [95363] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2238), 1, + anon_sym_COLON, + ACTIONS(4261), 1, + anon_sym_EQ, + ACTIONS(4430), 1, + anon_sym_BANG, + STATE(2322), 1, + sym_type_annotation, + STATE(2653), 1, + sym__initializer, + ACTIONS(2229), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [95387] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(113), 1, anon_sym_COMMA, ACTIONS(1244), 1, anon_sym_RBRACE, - ACTIONS(3828), 1, + ACTIONS(3846), 1, anon_sym_EQ, - STATE(2772), 1, + STATE(2757), 1, aux_sym_object_repeat1, - ACTIONS(2788), 4, + ACTIONS(2776), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - [95321] = 7, + [95409] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2198), 1, - anon_sym_COLON, - ACTIONS(4239), 1, - anon_sym_EQ, - ACTIONS(4416), 1, - anon_sym_BANG, - STATE(2291), 1, - sym_type_annotation, - STATE(2647), 1, - sym__initializer, - ACTIONS(2189), 3, + ACTIONS(4352), 1, + anon_sym_AMP, + ACTIONS(4354), 1, + anon_sym_PIPE, + ACTIONS(4356), 1, + anon_sym_extends, + ACTIONS(4432), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [95429] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4352), 1, + anon_sym_AMP, + ACTIONS(4354), 1, + anon_sym_PIPE, + ACTIONS(4356), 1, + anon_sym_extends, + ACTIONS(4434), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [95449] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4436), 1, + anon_sym_LBRACE, + ACTIONS(4438), 1, + anon_sym_DOT, + STATE(2432), 1, + sym_statement_block, + ACTIONS(917), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [95345] = 6, + anon_sym_PIPE_RBRACE, + [95469] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(113), 1, anon_sym_COMMA, - ACTIONS(1201), 1, + ACTIONS(1242), 1, anon_sym_RBRACE, - ACTIONS(3828), 1, + ACTIONS(3846), 1, anon_sym_EQ, - STATE(2739), 1, + STATE(2651), 1, aux_sym_object_repeat1, - ACTIONS(2788), 4, + ACTIONS(2776), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - [95367] = 5, + [95491] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4418), 1, - anon_sym_LBRACE, - ACTIONS(4420), 1, - anon_sym_DOT, - STATE(2370), 1, - sym_statement_block, - ACTIONS(917), 5, + ACTIONS(1678), 1, + anon_sym_LT, + ACTIONS(4440), 1, + sym_identifier, + ACTIONS(4442), 1, + anon_sym_STAR, + ACTIONS(4444), 1, + anon_sym_LPAREN, + STATE(2253), 1, + sym_formal_parameters, + STATE(2827), 1, + sym_type_parameters, + STATE(2935), 1, + sym__call_signature, + [95516] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4446), 7, sym__automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, + anon_sym_COLON, anon_sym_PIPE_RBRACE, - [95387] = 5, + [95529] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4334), 1, - anon_sym_AMP, - ACTIONS(4336), 1, - anon_sym_PIPE, - ACTIONS(4338), 1, - anon_sym_extends, - ACTIONS(1762), 5, + ACTIONS(3076), 7, sym__automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, + anon_sym_COLON, anon_sym_PIPE_RBRACE, - [95407] = 5, + [95542] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4334), 1, - anon_sym_AMP, - ACTIONS(4336), 1, - anon_sym_PIPE, - ACTIONS(4338), 1, - anon_sym_extends, - ACTIONS(4422), 5, + ACTIONS(1776), 1, + anon_sym_LBRACE, + STATE(2796), 1, + sym_statement_block, + ACTIONS(4448), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [95427] = 4, + [95559] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2198), 1, - anon_sym_COLON, - STATE(2331), 1, - sym_type_annotation, - ACTIONS(4424), 5, + ACTIONS(4436), 1, + anon_sym_LBRACE, + STATE(2432), 1, + sym_statement_block, + ACTIONS(917), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [95444] = 4, + [95576] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1781), 1, + ACTIONS(1776), 1, anon_sym_LBRACE, - STATE(2814), 1, + STATE(2797), 1, sym_statement_block, - ACTIONS(4426), 5, + ACTIONS(4450), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [95461] = 8, + [95593] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1691), 1, - anon_sym_LT, - ACTIONS(4428), 1, - sym_identifier, - ACTIONS(4430), 1, - anon_sym_STAR, - ACTIONS(4432), 1, - anon_sym_LPAREN, - STATE(2157), 1, - sym_formal_parameters, - STATE(2850), 1, - sym_type_parameters, - STATE(2901), 1, - sym__call_signature, - [95486] = 8, + ACTIONS(4358), 1, + anon_sym_is, + ACTIONS(1712), 6, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [95608] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4434), 1, + ACTIONS(4452), 1, sym_identifier, - ACTIONS(4436), 1, + ACTIONS(4454), 1, anon_sym_LBRACE, - ACTIONS(4438), 1, + ACTIONS(4456), 1, anon_sym_LBRACK, - ACTIONS(4440), 1, + ACTIONS(4458), 1, anon_sym_enum, - STATE(2082), 1, + STATE(2114), 1, sym_array, - STATE(2105), 1, + STATE(2116), 1, sym_object, - STATE(2543), 1, + STATE(2587), 1, sym_variable_declarator, - [95511] = 8, + [95633] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4388), 1, + ACTIONS(4404), 1, anon_sym_implements, - ACTIONS(4390), 1, + ACTIONS(4406), 1, anon_sym_extends, - ACTIONS(4392), 1, + ACTIONS(4414), 1, anon_sym_LBRACE, - STATE(75), 1, + STATE(530), 1, sym_class_body, - STATE(2732), 1, + STATE(2746), 1, sym_extends_clause, - STATE(2808), 1, + STATE(2837), 1, sym_class_heritage, - STATE(2994), 1, + STATE(3093), 1, sym_implements_clause, - [95536] = 8, + [95658] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1691), 1, + ACTIONS(1678), 1, anon_sym_LT, - ACTIONS(4432), 1, - anon_sym_LPAREN, - ACTIONS(4442), 1, - sym_identifier, ACTIONS(4444), 1, - anon_sym_STAR, - STATE(2157), 1, + anon_sym_LPAREN, + ACTIONS(4460), 1, + anon_sym_COLON, + ACTIONS(4462), 1, + anon_sym_QMARK, + STATE(2253), 1, sym_formal_parameters, - STATE(2850), 1, + STATE(2827), 1, sym_type_parameters, - STATE(2939), 1, + STATE(2965), 1, sym__call_signature, - [95561] = 8, + [95683] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4358), 1, + ACTIONS(4396), 1, anon_sym_LBRACE, - ACTIONS(4388), 1, + ACTIONS(4404), 1, anon_sym_implements, - ACTIONS(4390), 1, + ACTIONS(4406), 1, anon_sym_extends, - STATE(1189), 1, + STATE(1675), 1, sym_class_body, - STATE(2732), 1, + STATE(2746), 1, sym_extends_clause, - STATE(2893), 1, + STATE(2879), 1, sym_class_heritage, - STATE(2994), 1, + STATE(3093), 1, sym_implements_clause, - [95586] = 8, + [95708] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4366), 1, + ACTIONS(1678), 1, + anon_sym_LT, + ACTIONS(4444), 1, + anon_sym_LPAREN, + ACTIONS(4464), 1, + sym_identifier, + ACTIONS(4466), 1, + anon_sym_STAR, + STATE(2253), 1, + sym_formal_parameters, + STATE(2827), 1, + sym_type_parameters, + STATE(2929), 1, + sym__call_signature, + [95733] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2238), 1, + anon_sym_COLON, + STATE(2292), 1, + sym_type_annotation, + ACTIONS(4468), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [95750] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4396), 1, anon_sym_LBRACE, - ACTIONS(4388), 1, + ACTIONS(4404), 1, anon_sym_implements, - ACTIONS(4390), 1, + ACTIONS(4406), 1, anon_sym_extends, - STATE(1699), 1, + STATE(1673), 1, sym_class_body, - STATE(2732), 1, + STATE(2746), 1, sym_extends_clause, - STATE(2874), 1, + STATE(2878), 1, sym_class_heritage, - STATE(2994), 1, + STATE(3093), 1, sym_implements_clause, - [95611] = 8, + [95775] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4346), 1, - anon_sym_LBRACE, - ACTIONS(4388), 1, + ACTIONS(4404), 1, anon_sym_implements, - ACTIONS(4390), 1, + ACTIONS(4406), 1, anon_sym_extends, - STATE(1493), 1, + ACTIONS(4426), 1, + anon_sym_LBRACE, + STATE(544), 1, sym_class_body, - STATE(2732), 1, + STATE(2746), 1, sym_extends_clause, - STATE(2815), 1, + STATE(2818), 1, sym_class_heritage, - STATE(2994), 1, + STATE(3093), 1, sym_implements_clause, - [95636] = 4, + [95800] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4418), 1, + ACTIONS(4362), 1, anon_sym_LBRACE, - STATE(2370), 1, - sym_statement_block, - ACTIONS(917), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [95653] = 6, + ACTIONS(4404), 1, + anon_sym_implements, + ACTIONS(4406), 1, + anon_sym_extends, + STATE(1621), 1, + sym_class_body, + STATE(2746), 1, + sym_extends_clause, + STATE(2884), 1, + sym_class_heritage, + STATE(3093), 1, + sym_implements_clause, + [95825] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4287), 1, + ACTIONS(4297), 1, anon_sym_EQ, - STATE(2520), 1, + STATE(2508), 1, sym_constraint, - STATE(2792), 1, + STATE(2805), 1, sym_default_type, - ACTIONS(4292), 2, + ACTIONS(4302), 2, anon_sym_COLON, anon_sym_extends, - ACTIONS(4446), 2, + ACTIONS(4470), 2, anon_sym_COMMA, anon_sym_GT, - [95674] = 8, + [95846] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4366), 1, + ACTIONS(4472), 7, + sym__automatic_semicolon, anon_sym_LBRACE, - ACTIONS(4388), 1, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_PIPE_RBRACE, + [95859] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4404), 1, anon_sym_implements, - ACTIONS(4390), 1, + ACTIONS(4406), 1, anon_sym_extends, - STATE(1703), 1, + ACTIONS(4414), 1, + anon_sym_LBRACE, + STATE(2333), 1, sym_class_body, - STATE(2732), 1, + STATE(2746), 1, sym_extends_clause, - STATE(2831), 1, + STATE(2983), 1, sym_class_heritage, - STATE(2994), 1, + STATE(3093), 1, sym_implements_clause, - [95699] = 3, + [95884] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4384), 1, - anon_sym_is, - ACTIONS(1734), 6, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(1678), 1, + anon_sym_LT, + ACTIONS(4444), 1, + anon_sym_LPAREN, + ACTIONS(4474), 1, + sym_identifier, + ACTIONS(4476), 1, + anon_sym_STAR, + STATE(2253), 1, + sym_formal_parameters, + STATE(2827), 1, + sym_type_parameters, + STATE(2937), 1, + sym__call_signature, + [95909] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4404), 1, + anon_sym_implements, + ACTIONS(4406), 1, anon_sym_extends, - [95714] = 6, + ACTIONS(4426), 1, + anon_sym_LBRACE, + STATE(589), 1, + sym_class_body, + STATE(2746), 1, + sym_extends_clause, + STATE(2845), 1, + sym_class_heritage, + STATE(3093), 1, + sym_implements_clause, + [95934] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2198), 1, - anon_sym_COLON, - ACTIONS(4239), 1, - anon_sym_EQ, - STATE(2272), 1, - sym_type_annotation, - STATE(2629), 1, - sym__initializer, - ACTIONS(2963), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [95735] = 2, + ACTIONS(845), 1, + anon_sym_DQUOTE, + ACTIONS(847), 1, + anon_sym_SQUOTE, + ACTIONS(4478), 1, + sym_identifier, + ACTIONS(4480), 1, + anon_sym_DOT, + STATE(513), 1, + sym_nested_identifier, + STATE(528), 1, + sym_string, + STATE(564), 1, + sym__module, + [95959] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(845), 1, + anon_sym_DQUOTE, + ACTIONS(847), 1, + anon_sym_SQUOTE, + ACTIONS(4478), 1, + sym_identifier, + ACTIONS(4482), 1, + anon_sym_DOT, + STATE(513), 1, + sym_nested_identifier, + STATE(528), 1, + sym_string, + STATE(564), 1, + sym__module, + [95984] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(497), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(929), 1, + anon_sym_LBRACE, + ACTIONS(4484), 1, + anon_sym_LT, + ACTIONS(4486), 1, + anon_sym_extends, + STATE(590), 1, + sym_object_type, + STATE(2342), 1, + sym_type_parameters, + STATE(2662), 1, + sym_extends_clause, + [96009] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4448), 7, + ACTIONS(4259), 1, + anon_sym_is, + ACTIONS(4488), 6, sym__automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COLON, anon_sym_PIPE_RBRACE, - [95748] = 8, + [96024] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4358), 1, + ACTIONS(4362), 1, anon_sym_LBRACE, - ACTIONS(4388), 1, + ACTIONS(4404), 1, anon_sym_implements, - ACTIONS(4390), 1, + ACTIONS(4406), 1, anon_sym_extends, - STATE(1191), 1, + STATE(1582), 1, sym_class_body, - STATE(2732), 1, + STATE(2746), 1, sym_extends_clause, - STATE(2878), 1, + STATE(2831), 1, sym_class_heritage, - STATE(2994), 1, + STATE(3093), 1, + sym_implements_clause, + [96049] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4396), 1, + anon_sym_LBRACE, + ACTIONS(4404), 1, + anon_sym_implements, + ACTIONS(4406), 1, + anon_sym_extends, + STATE(1658), 1, + sym_class_body, + STATE(2746), 1, + sym_extends_clause, + STATE(2870), 1, + sym_class_heritage, + STATE(3093), 1, + sym_implements_clause, + [96074] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4362), 1, + anon_sym_LBRACE, + ACTIONS(4404), 1, + anon_sym_implements, + ACTIONS(4406), 1, + anon_sym_extends, + STATE(1607), 1, + sym_class_body, + STATE(2746), 1, + sym_extends_clause, + STATE(2906), 1, + sym_class_heritage, + STATE(3093), 1, sym_implements_clause, - [95773] = 6, + [96099] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2198), 1, + ACTIONS(3108), 1, anon_sym_COLON, - ACTIONS(4239), 1, + ACTIONS(4490), 1, anon_sym_EQ, - STATE(2259), 1, + ACTIONS(4494), 1, + anon_sym_QMARK, + STATE(2600), 1, sym_type_annotation, - STATE(2615), 1, + STATE(2882), 1, sym__initializer, - ACTIONS(4324), 3, - sym__automatic_semicolon, + ACTIONS(4492), 2, anon_sym_COMMA, - anon_sym_SEMI, - [95794] = 3, + anon_sym_RPAREN, + [96122] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4253), 1, - anon_sym_is, - ACTIONS(4450), 6, - sym__automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [95809] = 8, + ACTIONS(1678), 1, + anon_sym_LT, + ACTIONS(4444), 1, + anon_sym_LPAREN, + ACTIONS(4496), 1, + sym_identifier, + ACTIONS(4498), 1, + anon_sym_STAR, + STATE(2253), 1, + sym_formal_parameters, + STATE(2827), 1, + sym_type_parameters, + STATE(2854), 1, + sym__call_signature, + [96147] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4366), 1, + ACTIONS(4362), 1, anon_sym_LBRACE, - ACTIONS(4388), 1, + ACTIONS(4404), 1, anon_sym_implements, - ACTIONS(4390), 1, + ACTIONS(4406), 1, anon_sym_extends, - STATE(1695), 1, + STATE(1459), 1, sym_class_body, - STATE(2732), 1, + STATE(2746), 1, sym_extends_clause, - STATE(2830), 1, + STATE(3004), 1, sym_class_heritage, - STATE(2994), 1, + STATE(3093), 1, sym_implements_clause, - [95834] = 2, + [96172] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4452), 7, - sym__automatic_semicolon, + ACTIONS(1776), 1, anon_sym_LBRACE, + STATE(2948), 1, + sym_statement_block, + ACTIONS(4500), 5, + sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COLON, anon_sym_PIPE_RBRACE, - [95847] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4434), 1, - sym_identifier, - ACTIONS(4436), 1, - anon_sym_LBRACE, - ACTIONS(4438), 1, - anon_sym_LBRACK, - ACTIONS(4454), 1, - anon_sym_enum, - STATE(2082), 1, - sym_array, - STATE(2105), 1, - sym_object, - STATE(2595), 1, - sym_variable_declarator, - [95872] = 8, + [96189] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4358), 1, + ACTIONS(765), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(2591), 1, anon_sym_LBRACE, - ACTIONS(4388), 1, - anon_sym_implements, - ACTIONS(4390), 1, + ACTIONS(4484), 1, + anon_sym_LT, + ACTIONS(4486), 1, anon_sym_extends, - STATE(1141), 1, - sym_class_body, - STATE(2732), 1, + STATE(2375), 1, + sym_type_parameters, + STATE(2418), 1, + sym_object_type, + STATE(2703), 1, sym_extends_clause, - STATE(2993), 1, - sym_class_heritage, - STATE(2994), 1, - sym_implements_clause, - [95897] = 4, + [96214] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3828), 1, - anon_sym_EQ, - ACTIONS(4036), 2, + ACTIONS(1678), 1, + anon_sym_LT, + ACTIONS(4444), 1, + anon_sym_LPAREN, + ACTIONS(4502), 1, + sym_identifier, + ACTIONS(4504), 1, + anon_sym_STAR, + STATE(2253), 1, + sym_formal_parameters, + STATE(2827), 1, + sym_type_parameters, + STATE(2901), 1, + sym__call_signature, + [96239] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1776), 1, + anon_sym_LBRACE, + STATE(2800), 1, + sym_statement_block, + ACTIONS(4506), 5, + sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, - ACTIONS(2788), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - [95914] = 8, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [96256] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1691), 1, + ACTIONS(1678), 1, anon_sym_LT, - ACTIONS(4432), 1, + ACTIONS(4444), 1, anon_sym_LPAREN, - ACTIONS(4456), 1, + ACTIONS(4508), 1, sym_identifier, - ACTIONS(4458), 1, + ACTIONS(4510), 1, anon_sym_STAR, - STATE(2157), 1, + STATE(2253), 1, sym_formal_parameters, - STATE(2850), 1, + STATE(2827), 1, sym_type_parameters, - STATE(2939), 1, + STATE(2937), 1, sym__call_signature, - [95939] = 8, + [96281] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4346), 1, + ACTIONS(4396), 1, anon_sym_LBRACE, - ACTIONS(4388), 1, + ACTIONS(4404), 1, anon_sym_implements, - ACTIONS(4390), 1, + ACTIONS(4406), 1, anon_sym_extends, - STATE(1313), 1, + STATE(1710), 1, sym_class_body, - STATE(2732), 1, + STATE(2746), 1, sym_extends_clause, - STATE(2813), 1, + STATE(2902), 1, sym_class_heritage, - STATE(2994), 1, + STATE(3093), 1, sym_implements_clause, - [95964] = 7, + [96306] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3068), 1, + ACTIONS(2238), 1, anon_sym_COLON, - ACTIONS(4460), 1, + ACTIONS(4261), 1, anon_sym_EQ, - ACTIONS(4464), 1, - anon_sym_QMARK, - STATE(2531), 1, + STATE(2403), 1, sym_type_annotation, - STATE(2987), 1, + STATE(2676), 1, sym__initializer, - ACTIONS(4462), 2, + ACTIONS(4329), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RPAREN, - [95987] = 8, + anon_sym_SEMI, + [96327] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4366), 1, + ACTIONS(4376), 1, anon_sym_LBRACE, - ACTIONS(4388), 1, + ACTIONS(4404), 1, anon_sym_implements, - ACTIONS(4390), 1, + ACTIONS(4406), 1, anon_sym_extends, - STATE(1642), 1, + STATE(1149), 1, sym_class_body, - STATE(2732), 1, + STATE(2746), 1, sym_extends_clause, - STATE(2788), 1, + STATE(2981), 1, sym_class_heritage, - STATE(2994), 1, + STATE(3093), 1, sym_implements_clause, - [96012] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2318), 1, - anon_sym_DQUOTE, - ACTIONS(2320), 1, - anon_sym_SQUOTE, - ACTIONS(4466), 1, - sym_identifier, - ACTIONS(4468), 1, - anon_sym_DOT, - STATE(2066), 1, - sym_nested_identifier, - STATE(2078), 1, - sym_string, - STATE(2455), 1, - sym__module, - [96037] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(747), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(2554), 1, - anon_sym_LBRACE, - ACTIONS(4470), 1, - anon_sym_LT, - ACTIONS(4472), 1, - anon_sym_extends, - STATE(2361), 1, - sym_type_parameters, - STATE(2440), 1, - sym_object_type, - STATE(2702), 1, - sym_extends_clause, - [96062] = 8, + [96352] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4386), 1, - anon_sym_LBRACE, - ACTIONS(4388), 1, - anon_sym_implements, - ACTIONS(4390), 1, - anon_sym_extends, - STATE(535), 1, - sym_class_body, - STATE(2732), 1, - sym_extends_clause, - STATE(2812), 1, - sym_class_heritage, - STATE(2994), 1, - sym_implements_clause, - [96087] = 6, + ACTIONS(2238), 1, + anon_sym_COLON, + ACTIONS(4261), 1, + anon_sym_EQ, + STATE(2366), 1, + sym_type_annotation, + STATE(2628), 1, + sym__initializer, + ACTIONS(2984), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [96373] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2198), 1, + ACTIONS(2238), 1, anon_sym_COLON, - ACTIONS(4239), 1, + ACTIONS(4261), 1, anon_sym_EQ, - STATE(2352), 1, + STATE(2465), 1, sym_type_annotation, - STATE(2688), 1, + STATE(2792), 1, sym__initializer, - ACTIONS(4315), 3, + ACTIONS(4333), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [96108] = 2, + [96394] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4474), 7, + ACTIONS(2238), 1, + anon_sym_COLON, + ACTIONS(4261), 1, + anon_sym_EQ, + STATE(2376), 1, + sym_type_annotation, + STATE(2635), 1, + sym__initializer, + ACTIONS(3061), 3, sym__automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_PIPE_RBRACE, - [96121] = 8, + [96415] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4386), 1, + ACTIONS(2344), 1, + anon_sym_DQUOTE, + ACTIONS(2346), 1, + anon_sym_SQUOTE, + ACTIONS(4512), 1, + sym_identifier, + ACTIONS(4514), 1, + anon_sym_DOT, + STATE(2073), 1, + sym_nested_identifier, + STATE(2079), 1, + sym_string, + STATE(2458), 1, + sym__module, + [96440] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4376), 1, anon_sym_LBRACE, - ACTIONS(4388), 1, + ACTIONS(4404), 1, anon_sym_implements, - ACTIONS(4390), 1, + ACTIONS(4406), 1, anon_sym_extends, - STATE(537), 1, + STATE(1165), 1, sym_class_body, - STATE(2732), 1, + STATE(2746), 1, sym_extends_clause, - STATE(2825), 1, + STATE(2984), 1, sym_class_heritage, - STATE(2994), 1, + STATE(3093), 1, sym_implements_clause, - [96146] = 8, + [96465] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4388), 1, + ACTIONS(4402), 1, + anon_sym_LBRACE, + ACTIONS(4404), 1, anon_sym_implements, - ACTIONS(4390), 1, + ACTIONS(4406), 1, anon_sym_extends, - ACTIONS(4392), 1, - anon_sym_LBRACE, - STATE(85), 1, + STATE(87), 1, sym_class_body, - STATE(2732), 1, + STATE(2746), 1, sym_extends_clause, - STATE(2916), 1, + STATE(2932), 1, sym_class_heritage, - STATE(2994), 1, + STATE(3093), 1, sym_implements_clause, - [96171] = 8, + [96490] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1691), 1, - anon_sym_LT, - ACTIONS(4432), 1, - anon_sym_LPAREN, - ACTIONS(4476), 1, + ACTIONS(4452), 1, sym_identifier, - ACTIONS(4478), 1, - anon_sym_STAR, - STATE(2157), 1, - sym_formal_parameters, - STATE(2850), 1, - sym_type_parameters, - STATE(2939), 1, - sym__call_signature, - [96196] = 8, + ACTIONS(4454), 1, + anon_sym_LBRACE, + ACTIONS(4456), 1, + anon_sym_LBRACK, + ACTIONS(4516), 1, + anon_sym_enum, + STATE(2114), 1, + sym_array, + STATE(2116), 1, + sym_object, + STATE(2494), 1, + sym_variable_declarator, + [96515] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1691), 1, - anon_sym_LT, - ACTIONS(4432), 1, - anon_sym_LPAREN, - ACTIONS(4480), 1, - sym_identifier, - ACTIONS(4482), 1, - anon_sym_STAR, - STATE(2157), 1, - sym_formal_parameters, - STATE(2850), 1, - sym_type_parameters, - STATE(2855), 1, - sym__call_signature, - [96221] = 6, + ACTIONS(4402), 1, + anon_sym_LBRACE, + ACTIONS(4404), 1, + anon_sym_implements, + ACTIONS(4406), 1, + anon_sym_extends, + STATE(77), 1, + sym_class_body, + STATE(2746), 1, + sym_extends_clause, + STATE(2843), 1, + sym_class_heritage, + STATE(3093), 1, + sym_implements_clause, + [96540] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2198), 1, - anon_sym_COLON, - ACTIONS(4239), 1, - anon_sym_EQ, - STATE(2263), 1, - sym_type_annotation, - STATE(2635), 1, - sym__initializer, - ACTIONS(2972), 3, + ACTIONS(1776), 1, + anon_sym_LBRACE, + STATE(2801), 1, + sym_statement_block, + ACTIONS(4518), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [96242] = 2, + anon_sym_PIPE_RBRACE, + [96557] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4484), 7, + ACTIONS(4520), 7, sym__automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, @@ -145971,138 +146552,83 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_COLON, anon_sym_PIPE_RBRACE, - [96255] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4346), 1, - anon_sym_LBRACE, - ACTIONS(4388), 1, - anon_sym_implements, - ACTIONS(4390), 1, - anon_sym_extends, - STATE(1623), 1, - sym_class_body, - STATE(2732), 1, - sym_extends_clause, - STATE(2889), 1, - sym_class_heritage, - STATE(2994), 1, - sym_implements_clause, - [96280] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2198), 1, - anon_sym_COLON, - STATE(2297), 1, - sym_type_annotation, - ACTIONS(4486), 5, + [96570] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1776), 1, + anon_sym_LBRACE, + STATE(2835), 1, + sym_statement_block, + ACTIONS(4522), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [96297] = 8, + [96587] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1691), 1, - anon_sym_LT, - ACTIONS(4432), 1, - anon_sym_LPAREN, - ACTIONS(4488), 1, + ACTIONS(2238), 1, anon_sym_COLON, - ACTIONS(4490), 1, - anon_sym_QMARK, - STATE(2157), 1, - sym_formal_parameters, - STATE(2850), 1, - sym_type_parameters, - STATE(2909), 1, - sym__call_signature, - [96322] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1691), 1, - anon_sym_LT, - ACTIONS(4432), 1, - anon_sym_LPAREN, - ACTIONS(4492), 1, - sym_identifier, - ACTIONS(4494), 1, - anon_sym_STAR, - STATE(2157), 1, - sym_formal_parameters, - STATE(2850), 1, - sym_type_parameters, - STATE(2901), 1, - sym__call_signature, - [96347] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1691), 1, - anon_sym_LT, - ACTIONS(4432), 1, - anon_sym_LPAREN, - ACTIONS(4496), 1, - sym_identifier, - ACTIONS(4498), 1, - anon_sym_STAR, - STATE(2157), 1, - sym_formal_parameters, - STATE(2850), 1, - sym_type_parameters, - STATE(2901), 1, - sym__call_signature, - [96372] = 4, + ACTIONS(4261), 1, + anon_sym_EQ, + STATE(2321), 1, + sym_type_annotation, + STATE(2708), 1, + sym__initializer, + ACTIONS(4339), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [96608] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1781), 1, + ACTIONS(1776), 1, anon_sym_LBRACE, - STATE(2927), 1, + STATE(2806), 1, sym_statement_block, - ACTIONS(4500), 5, + ACTIONS(4524), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [96389] = 8, + [96625] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1691), 1, - anon_sym_LT, - ACTIONS(4432), 1, - anon_sym_LPAREN, - ACTIONS(4502), 1, - sym_identifier, - ACTIONS(4504), 1, - anon_sym_STAR, - STATE(2157), 1, - sym_formal_parameters, - STATE(2790), 1, - sym__call_signature, - STATE(2850), 1, - sym_type_parameters, - [96414] = 8, + ACTIONS(2238), 1, + anon_sym_COLON, + ACTIONS(4261), 1, + anon_sym_EQ, + STATE(2330), 1, + sym_type_annotation, + STATE(2688), 1, + sym__initializer, + ACTIONS(4345), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [96646] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4346), 1, + ACTIONS(4362), 1, anon_sym_LBRACE, - ACTIONS(4388), 1, + ACTIONS(4404), 1, anon_sym_implements, - ACTIONS(4390), 1, + ACTIONS(4406), 1, anon_sym_extends, - STATE(1349), 1, + STATE(1555), 1, sym_class_body, - STATE(2732), 1, + STATE(2746), 1, sym_extends_clause, - STATE(2924), 1, + STATE(2846), 1, sym_class_heritage, - STATE(2994), 1, + STATE(3093), 1, sym_implements_clause, - [96439] = 2, + [96671] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1089), 7, + ACTIONS(945), 7, sym__automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, @@ -146110,2892 +146636,2853 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_DOT, anon_sym_PIPE_RBRACE, - [96452] = 4, + [96684] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1781), 1, + ACTIONS(1776), 1, anon_sym_LBRACE, - STATE(2919), 1, + STATE(2814), 1, sym_statement_block, - ACTIONS(4506), 5, + ACTIONS(4526), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [96469] = 4, + [96701] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1781), 1, - anon_sym_LBRACE, - STATE(2823), 1, - sym_statement_block, - ACTIONS(4508), 5, + ACTIONS(2238), 1, + anon_sym_COLON, + STATE(2407), 1, + sym_type_annotation, + ACTIONS(4528), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [96486] = 8, + [96718] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4388), 1, + ACTIONS(4404), 1, anon_sym_implements, - ACTIONS(4390), 1, + ACTIONS(4406), 1, anon_sym_extends, - ACTIONS(4398), 1, + ACTIONS(4414), 1, anon_sym_LBRACE, - STATE(614), 1, + STATE(2313), 1, sym_class_body, - STATE(2732), 1, + STATE(2746), 1, sym_extends_clause, - STATE(2803), 1, + STATE(2971), 1, sym_class_heritage, - STATE(2994), 1, + STATE(3093), 1, sym_implements_clause, - [96511] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2198), 1, - anon_sym_COLON, - ACTIONS(4239), 1, - anon_sym_EQ, - STATE(2384), 1, - sym_type_annotation, - STATE(2731), 1, - sym__initializer, - ACTIONS(4332), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [96532] = 8, + [96743] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4346), 1, + ACTIONS(4362), 1, anon_sym_LBRACE, - ACTIONS(4388), 1, + ACTIONS(4404), 1, anon_sym_implements, - ACTIONS(4390), 1, + ACTIONS(4406), 1, anon_sym_extends, - STATE(1517), 1, + STATE(1463), 1, sym_class_body, - STATE(2732), 1, + STATE(2746), 1, sym_extends_clause, - STATE(2829), 1, + STATE(2970), 1, sym_class_heritage, - STATE(2994), 1, + STATE(3093), 1, sym_implements_clause, - [96557] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1781), 1, - anon_sym_LBRACE, - STATE(2904), 1, - sym_statement_block, - ACTIONS(4510), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [96574] = 8, + [96768] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4346), 1, - anon_sym_LBRACE, - ACTIONS(4388), 1, + ACTIONS(4404), 1, anon_sym_implements, - ACTIONS(4390), 1, + ACTIONS(4406), 1, anon_sym_extends, - STATE(1535), 1, + ACTIONS(4414), 1, + anon_sym_LBRACE, + STATE(525), 1, sym_class_body, - STATE(2732), 1, + STATE(2746), 1, sym_extends_clause, - STATE(2867), 1, + STATE(2897), 1, sym_class_heritage, - STATE(2994), 1, + STATE(3093), 1, sym_implements_clause, - [96599] = 8, + [96793] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1691), 1, + ACTIONS(1678), 1, anon_sym_LT, - ACTIONS(4432), 1, + ACTIONS(4444), 1, anon_sym_LPAREN, - ACTIONS(4512), 1, + ACTIONS(4530), 1, sym_identifier, - ACTIONS(4514), 1, + ACTIONS(4532), 1, + anon_sym_STAR, + STATE(2253), 1, + sym_formal_parameters, + STATE(2827), 1, + sym_type_parameters, + STATE(2854), 1, + sym__call_signature, + [96818] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1678), 1, + anon_sym_LT, + ACTIONS(4444), 1, + anon_sym_LPAREN, + ACTIONS(4534), 1, + sym_identifier, + ACTIONS(4536), 1, + anon_sym_STAR, + STATE(2253), 1, + sym_formal_parameters, + STATE(2827), 1, + sym_type_parameters, + STATE(2854), 1, + sym__call_signature, + [96843] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3846), 1, + anon_sym_EQ, + ACTIONS(4056), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(2776), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + [96860] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1678), 1, + anon_sym_LT, + ACTIONS(4444), 1, + anon_sym_LPAREN, + ACTIONS(4538), 1, + sym_identifier, + ACTIONS(4540), 1, anon_sym_STAR, - STATE(2157), 1, + STATE(2253), 1, sym_formal_parameters, - STATE(2850), 1, + STATE(2827), 1, sym_type_parameters, - STATE(2899), 1, + STATE(2987), 1, sym__call_signature, - [96624] = 4, + [96885] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1781), 1, + ACTIONS(1776), 1, anon_sym_LBRACE, - STATE(2977), 1, + STATE(2817), 1, sym_statement_block, - ACTIONS(4516), 5, + ACTIONS(4542), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [96641] = 4, + [96902] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1781), 1, + ACTIONS(1776), 1, anon_sym_LBRACE, - STATE(2910), 1, + STATE(2834), 1, sym_statement_block, - ACTIONS(4518), 5, + ACTIONS(4544), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [96658] = 8, + [96919] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4386), 1, - anon_sym_LBRACE, - ACTIONS(4388), 1, + ACTIONS(4404), 1, anon_sym_implements, - ACTIONS(4390), 1, + ACTIONS(4406), 1, anon_sym_extends, - STATE(2296), 1, + ACTIONS(4414), 1, + anon_sym_LBRACE, + STATE(2270), 1, sym_class_body, - STATE(2732), 1, + STATE(2746), 1, sym_extends_clause, - STATE(2970), 1, + STATE(2968), 1, sym_class_heritage, - STATE(2994), 1, + STATE(3093), 1, sym_implements_clause, - [96683] = 8, + [96944] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4386), 1, - anon_sym_LBRACE, - ACTIONS(4388), 1, + ACTIONS(4404), 1, anon_sym_implements, - ACTIONS(4390), 1, + ACTIONS(4406), 1, anon_sym_extends, - STATE(2275), 1, + ACTIONS(4414), 1, + anon_sym_LBRACE, + STATE(2285), 1, sym_class_body, - STATE(2732), 1, + STATE(2746), 1, sym_extends_clause, - STATE(2887), 1, + STATE(2964), 1, sym_class_heritage, - STATE(2994), 1, + STATE(3093), 1, sym_implements_clause, - [96708] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1781), 1, - anon_sym_LBRACE, - STATE(2980), 1, - sym_statement_block, - ACTIONS(4520), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [96725] = 8, + [96969] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4386), 1, + ACTIONS(4376), 1, anon_sym_LBRACE, - ACTIONS(4388), 1, + ACTIONS(4404), 1, anon_sym_implements, - ACTIONS(4390), 1, + ACTIONS(4406), 1, anon_sym_extends, - STATE(2318), 1, + STATE(1110), 1, sym_class_body, - STATE(2732), 1, + STATE(2746), 1, sym_extends_clause, - STATE(2798), 1, + STATE(2966), 1, sym_class_heritage, - STATE(2994), 1, + STATE(3093), 1, sym_implements_clause, - [96750] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1691), 1, - anon_sym_LT, - ACTIONS(4432), 1, - anon_sym_LPAREN, - ACTIONS(4522), 1, - sym_identifier, - ACTIONS(4524), 1, - anon_sym_STAR, - STATE(2157), 1, - sym_formal_parameters, - STATE(2850), 1, - sym_type_parameters, - STATE(2992), 1, - sym__call_signature, - [96775] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1781), 1, - anon_sym_LBRACE, - STATE(2951), 1, - sym_statement_block, - ACTIONS(4526), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [96792] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(845), 1, - anon_sym_DQUOTE, - ACTIONS(847), 1, - anon_sym_SQUOTE, - ACTIONS(4528), 1, - sym_identifier, - ACTIONS(4530), 1, - anon_sym_DOT, - STATE(516), 1, - sym_nested_identifier, - STATE(523), 1, - sym_string, - STATE(551), 1, - sym__module, - [96817] = 8, + [96994] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4358), 1, + ACTIONS(4376), 1, anon_sym_LBRACE, - ACTIONS(4388), 1, + ACTIONS(4404), 1, anon_sym_implements, - ACTIONS(4390), 1, + ACTIONS(4406), 1, anon_sym_extends, - STATE(1201), 1, + STATE(1155), 1, sym_class_body, - STATE(2732), 1, + STATE(2746), 1, sym_extends_clause, - STATE(2789), 1, + STATE(2975), 1, sym_class_heritage, - STATE(2994), 1, + STATE(3093), 1, sym_implements_clause, - [96842] = 4, + [97019] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1781), 1, + ACTIONS(1776), 1, anon_sym_LBRACE, - STATE(2948), 1, + STATE(2888), 1, sym_statement_block, - ACTIONS(4532), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [96859] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2983), 7, + ACTIONS(4546), 5, sym__automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COLON, anon_sym_PIPE_RBRACE, - [96872] = 8, + [97036] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(497), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(929), 1, - anon_sym_LBRACE, - ACTIONS(4470), 1, + ACTIONS(1678), 1, anon_sym_LT, - ACTIONS(4472), 1, - anon_sym_extends, - STATE(588), 1, - sym_object_type, - STATE(2358), 1, - sym_type_parameters, - STATE(2698), 1, - sym_extends_clause, - [96897] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(845), 1, - anon_sym_DQUOTE, - ACTIONS(847), 1, - anon_sym_SQUOTE, - ACTIONS(4528), 1, + ACTIONS(4444), 1, + anon_sym_LPAREN, + ACTIONS(4548), 1, sym_identifier, - ACTIONS(4534), 1, - anon_sym_DOT, - STATE(516), 1, - sym_nested_identifier, - STATE(523), 1, - sym_string, - STATE(551), 1, - sym__module, - [96922] = 4, + ACTIONS(4550), 1, + anon_sym_STAR, + STATE(2253), 1, + sym_formal_parameters, + STATE(2827), 1, + sym_type_parameters, + STATE(2937), 1, + sym__call_signature, + [97061] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1781), 1, + ACTIONS(1776), 1, anon_sym_LBRACE, - STATE(2843), 1, + STATE(2795), 1, sym_statement_block, - ACTIONS(4536), 5, + ACTIONS(4552), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [96939] = 4, + [97078] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1781), 1, - anon_sym_LBRACE, - STATE(2985), 1, - sym_statement_block, - ACTIONS(4538), 5, + ACTIONS(4554), 7, sym__automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, + anon_sym_COLON, anon_sym_PIPE_RBRACE, - [96956] = 6, + [97091] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2198), 1, - anon_sym_COLON, - ACTIONS(4239), 1, - anon_sym_EQ, - STATE(2312), 1, - sym_type_annotation, - STATE(2652), 1, - sym__initializer, - ACTIONS(4322), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [96977] = 7, + ACTIONS(4558), 1, + anon_sym_BQUOTE, + ACTIONS(4560), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4556), 2, + sym__template_chars, + sym_escape_sequence, + STATE(2258), 2, + sym_template_substitution, + aux_sym_template_string_repeat1, + [97109] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1691), 1, - anon_sym_LT, - ACTIONS(4432), 1, - anon_sym_LPAREN, - ACTIONS(4540), 1, - sym_identifier, - STATE(2157), 1, - sym_formal_parameters, - STATE(2810), 1, - sym__call_signature, - STATE(2850), 1, - sym_type_parameters, - [96999] = 7, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(4562), 1, + anon_sym_export, + ACTIONS(4564), 1, + anon_sym_class, + ACTIONS(4566), 1, + anon_sym_abstract, + STATE(1877), 1, + aux_sym_export_statement_repeat1, + STATE(1890), 1, + sym_decorator, + [97131] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4231), 1, - anon_sym_AMP, - ACTIONS(4233), 1, - anon_sym_PIPE, - ACTIONS(4235), 1, - anon_sym_extends, - ACTIONS(4542), 1, + STATE(2151), 1, + aux_sym_object_type_repeat1, + ACTIONS(4571), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(4568), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(4544), 1, - anon_sym_GT, - STATE(2691), 1, - aux_sym_implements_clause_repeat1, - [97021] = 7, + anon_sym_SEMI, + [97147] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4231), 1, + ACTIONS(4239), 1, anon_sym_AMP, - ACTIONS(4233), 1, + ACTIONS(4241), 1, anon_sym_PIPE, - ACTIONS(4235), 1, + ACTIONS(4243), 1, anon_sym_extends, - ACTIONS(4546), 1, + ACTIONS(4573), 1, anon_sym_COMMA, - ACTIONS(4548), 1, + ACTIONS(4575), 1, anon_sym_GT, - STATE(2752), 1, + STATE(2772), 1, aux_sym_implements_clause_repeat1, - [97043] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2698), 1, - anon_sym_typeof, - ACTIONS(4550), 1, - sym_identifier, - STATE(482), 1, - sym_nested_type_identifier, - STATE(2999), 1, - sym_nested_identifier, - STATE(425), 2, - sym_generic_type, - sym_type_query, - [97063] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1691), 1, - anon_sym_LT, - ACTIONS(4432), 1, - anon_sym_LPAREN, - ACTIONS(4552), 1, - sym_identifier, - STATE(2157), 1, - sym_formal_parameters, - STATE(2850), 1, - sym_type_parameters, - STATE(2976), 1, - sym__call_signature, - [97085] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4554), 1, - anon_sym_COLON, - ACTIONS(4360), 2, - anon_sym_LBRACE, - anon_sym_EQ_GT, - STATE(2968), 3, - sym_type_annotation, - sym_asserts, - sym_type_predicate_annotation, - [97101] = 7, + [97169] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4436), 1, + ACTIONS(4454), 1, anon_sym_LBRACE, - ACTIONS(4438), 1, + ACTIONS(4456), 1, anon_sym_LBRACK, - ACTIONS(4556), 1, + ACTIONS(4577), 1, sym_identifier, - STATE(2082), 1, + STATE(2114), 1, sym_array, - STATE(2105), 1, + STATE(2116), 1, sym_object, - STATE(2543), 1, + STATE(2544), 1, sym_variable_declarator, - [97123] = 5, + [97191] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4558), 1, - anon_sym_default, - ACTIONS(4561), 1, - anon_sym_RBRACE, - ACTIONS(4563), 1, - anon_sym_case, - STATE(2148), 3, - sym_switch_case, - sym_switch_default, - aux_sym_switch_body_repeat1, - [97141] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1691), 1, - anon_sym_LT, - ACTIONS(4432), 1, - anon_sym_LPAREN, - ACTIONS(4566), 1, + ACTIONS(2519), 1, + anon_sym_typeof, + ACTIONS(4579), 1, sym_identifier, - STATE(2157), 1, - sym_formal_parameters, - STATE(2850), 1, - sym_type_parameters, - STATE(2991), 1, - sym__call_signature, - [97163] = 4, + STATE(1354), 1, + sym_nested_type_identifier, + STATE(3062), 1, + sym_nested_identifier, + STATE(1502), 2, + sym_generic_type, + sym_type_query, + [97211] = 4, ACTIONS(3), 1, sym_comment, - STATE(2165), 1, + STATE(2151), 1, aux_sym_object_type_repeat1, - ACTIONS(2825), 2, + ACTIONS(2861), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(4568), 3, + ACTIONS(4581), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [97179] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4573), 1, - anon_sym_BQUOTE, - ACTIONS(4575), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4570), 2, - sym__template_chars, - sym_escape_sequence, - STATE(2151), 2, - sym_template_substitution, - aux_sym_template_string_repeat1, - [97197] = 7, + [97227] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2157), 1, - anon_sym_LPAREN, - ACTIONS(4215), 1, - anon_sym_LT, - ACTIONS(4578), 1, - sym_identifier, - ACTIONS(4580), 1, - anon_sym_LBRACK, - STATE(1577), 1, - sym_arguments, - STATE(2946), 1, - sym_type_arguments, - [97219] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4584), 1, - anon_sym_BQUOTE, - ACTIONS(4586), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4582), 2, - sym__template_chars, - sym_escape_sequence, - STATE(2151), 2, - sym_template_substitution, - aux_sym_template_string_repeat1, - [97237] = 4, - ACTIONS(3), 1, - sym_comment, - STATE(2217), 1, + STATE(2151), 1, aux_sym_object_type_repeat1, - ACTIONS(4590), 2, + ACTIONS(2847), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(4588), 3, + ACTIONS(4583), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [97253] = 7, + [97243] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1691), 1, - anon_sym_LT, - ACTIONS(4432), 1, - anon_sym_LPAREN, - ACTIONS(4592), 1, - sym_identifier, - STATE(2157), 1, - sym_formal_parameters, - STATE(2850), 1, - sym_type_parameters, - STATE(2920), 1, - sym__call_signature, - [97275] = 5, + STATE(2155), 1, + aux_sym_object_type_repeat1, + ACTIONS(2847), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(4583), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [97259] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4594), 1, - anon_sym_default, - ACTIONS(4596), 1, + STATE(2250), 1, + aux_sym_object_type_repeat1, + ACTIONS(4587), 2, anon_sym_RBRACE, - ACTIONS(4598), 1, - anon_sym_case, - STATE(2148), 3, - sym_switch_case, - sym_switch_default, - aux_sym_switch_body_repeat1, - [97293] = 4, + anon_sym_PIPE_RBRACE, + ACTIONS(4585), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [97275] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4554), 1, - anon_sym_COLON, - ACTIONS(4374), 2, - anon_sym_LBRACE, - anon_sym_EQ_GT, - STATE(2876), 3, - sym_type_annotation, - sym_asserts, - sym_type_predicate_annotation, - [97309] = 7, + STATE(2156), 1, + aux_sym_object_type_repeat1, + ACTIONS(4591), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(4589), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [97291] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1691), 1, - anon_sym_LT, - ACTIONS(2306), 1, - anon_sym_LPAREN, - ACTIONS(4600), 1, - anon_sym_QMARK, - STATE(2020), 1, - sym_formal_parameters, - STATE(2310), 1, - sym__call_signature, - STATE(2862), 1, - sym_type_parameters, - [97331] = 7, + ACTIONS(4239), 1, + anon_sym_AMP, + ACTIONS(4241), 1, + anon_sym_PIPE, + ACTIONS(4243), 1, + anon_sym_extends, + ACTIONS(4593), 1, + anon_sym_COMMA, + ACTIONS(4595), 1, + anon_sym_GT, + STATE(2770), 1, + aux_sym_implements_clause_repeat1, + [97313] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(845), 1, - anon_sym_DQUOTE, - ACTIONS(847), 1, - anon_sym_SQUOTE, - ACTIONS(4528), 1, + ACTIONS(2700), 1, + anon_sym_typeof, + ACTIONS(4597), 1, sym_identifier, - STATE(516), 1, + STATE(483), 1, + sym_nested_type_identifier, + STATE(3123), 1, sym_nested_identifier, - STATE(523), 1, - sym_string, - STATE(615), 1, - sym__module, - [97353] = 6, + STATE(439), 2, + sym_generic_type, + sym_type_query, + [97333] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4602), 1, + ACTIONS(4454), 1, + anon_sym_LBRACE, + ACTIONS(4456), 1, + anon_sym_LBRACK, + ACTIONS(4577), 1, sym_identifier, - ACTIONS(4604), 1, - anon_sym_COMMA, - ACTIONS(4606), 1, - anon_sym_RBRACE, - STATE(2766), 1, - sym__import_export_specifier, - ACTIONS(4608), 2, - anon_sym_type, - anon_sym_typeof, - [97373] = 7, + STATE(2114), 1, + sym_array, + STATE(2116), 1, + sym_object, + STATE(2492), 1, + sym_variable_declarator, + [97355] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2157), 1, - anon_sym_LPAREN, - ACTIONS(4215), 1, - anon_sym_LT, - ACTIONS(4610), 1, - sym_identifier, - ACTIONS(4612), 1, + ACTIONS(4454), 1, + anon_sym_LBRACE, + ACTIONS(4456), 1, anon_sym_LBRACK, - STATE(1520), 1, - sym_arguments, - STATE(2834), 1, - sym_type_arguments, - [97395] = 7, + ACTIONS(4577), 1, + sym_identifier, + STATE(2114), 1, + sym_array, + STATE(2116), 1, + sym_object, + STATE(2494), 1, + sym_variable_declarator, + [97377] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1691), 1, + ACTIONS(1678), 1, anon_sym_LT, - ACTIONS(4432), 1, + ACTIONS(2332), 1, anon_sym_LPAREN, - ACTIONS(4614), 1, - sym_identifier, - STATE(2157), 1, + ACTIONS(4599), 1, + anon_sym_QMARK, + STATE(2015), 1, sym_formal_parameters, - STATE(2791), 1, + STATE(2277), 1, sym__call_signature, - STATE(2850), 1, + STATE(2918), 1, sym_type_parameters, + [97399] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2238), 1, + anon_sym_COLON, + ACTIONS(4601), 1, + anon_sym_DASH_QMARK_COLON, + ACTIONS(4603), 1, + anon_sym_QMARK_COLON, + STATE(2275), 3, + sym_omitting_type_annotation, + sym_opting_type_annotation, + sym_type_annotation, [97417] = 4, ACTIONS(3), 1, sym_comment, - STATE(2165), 1, + STATE(2151), 1, aux_sym_object_type_repeat1, - ACTIONS(2841), 2, + ACTIONS(2845), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(4616), 3, + ACTIONS(4605), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, [97433] = 4, ACTIONS(3), 1, sym_comment, - STATE(2165), 1, + STATE(2151), 1, aux_sym_object_type_repeat1, - ACTIONS(2829), 2, + ACTIONS(2841), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(4618), 3, + ACTIONS(4607), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, [97449] = 4, ACTIONS(3), 1, sym_comment, - STATE(2165), 1, + STATE(2151), 1, aux_sym_object_type_repeat1, - ACTIONS(4623), 2, + ACTIONS(2849), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(4620), 3, + ACTIONS(4609), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [97465] = 4, + [97465] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1678), 1, + anon_sym_LT, + ACTIONS(2332), 1, + anon_sym_LPAREN, + ACTIONS(4611), 1, + anon_sym_QMARK, + STATE(2015), 1, + sym_formal_parameters, + STATE(2266), 1, + sym__call_signature, + STATE(2918), 1, + sym_type_parameters, + [97487] = 4, ACTIONS(3), 1, sym_comment, - STATE(2245), 1, + STATE(2167), 1, aux_sym_object_type_repeat1, - ACTIONS(4627), 2, + ACTIONS(2849), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(4625), 3, + ACTIONS(4609), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [97481] = 6, + [97503] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4602), 1, - sym_identifier, - ACTIONS(4629), 1, + ACTIONS(4239), 1, + anon_sym_AMP, + ACTIONS(4241), 1, + anon_sym_PIPE, + ACTIONS(4243), 1, + anon_sym_extends, + ACTIONS(4613), 1, + anon_sym_LBRACE, + ACTIONS(4615), 1, anon_sym_COMMA, - ACTIONS(4631), 1, - anon_sym_RBRACE, - STATE(2667), 1, - sym__import_export_specifier, - ACTIONS(4608), 2, - anon_sym_type, - anon_sym_typeof, - [97501] = 4, + STATE(2783), 1, + aux_sym_implements_clause_repeat1, + [97525] = 6, ACTIONS(3), 1, sym_comment, - STATE(2165), 1, + ACTIONS(2413), 1, + anon_sym_COMMA, + ACTIONS(4231), 1, + anon_sym_LT, + STATE(372), 1, + sym_type_arguments, + STATE(2520), 1, + aux_sym_extends_clause_repeat1, + ACTIONS(3212), 2, + anon_sym_LBRACE, + anon_sym_implements, + [97545] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1678), 1, + anon_sym_LT, + ACTIONS(2332), 1, + anon_sym_LPAREN, + ACTIONS(4617), 1, + anon_sym_QMARK, + STATE(2015), 1, + sym_formal_parameters, + STATE(2701), 1, + sym__call_signature, + STATE(2918), 1, + sym_type_parameters, + [97567] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1678), 1, + anon_sym_LT, + ACTIONS(4444), 1, + anon_sym_LPAREN, + ACTIONS(4619), 1, + sym_identifier, + STATE(2253), 1, + sym_formal_parameters, + STATE(2827), 1, + sym_type_parameters, + STATE(2931), 1, + sym__call_signature, + [97589] = 4, + ACTIONS(3), 1, + sym_comment, + STATE(2168), 1, aux_sym_object_type_repeat1, - ACTIONS(2847), 2, + ACTIONS(4623), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(4633), 3, + ACTIONS(4621), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [97517] = 2, + [97605] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4635), 6, - sym__automatic_semicolon, - anon_sym_LBRACE, + ACTIONS(4239), 1, + anon_sym_AMP, + ACTIONS(4241), 1, + anon_sym_PIPE, + ACTIONS(4243), 1, + anon_sym_extends, + ACTIONS(4625), 1, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [97529] = 2, + ACTIONS(4627), 1, + anon_sym_GT, + STATE(2709), 1, + aux_sym_implements_clause_repeat1, + [97627] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4637), 6, - sym__automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [97541] = 4, + ACTIONS(2555), 1, + anon_sym_typeof, + ACTIONS(4629), 1, + sym_identifier, + STATE(1004), 1, + sym_nested_type_identifier, + STATE(3046), 1, + sym_nested_identifier, + STATE(1095), 2, + sym_generic_type, + sym_type_query, + [97647] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4634), 1, + anon_sym_BQUOTE, + ACTIONS(4636), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4631), 2, + sym__template_chars, + sym_escape_sequence, + STATE(2178), 2, + sym_template_substitution, + aux_sym_template_string_repeat1, + [97665] = 4, ACTIONS(3), 1, sym_comment, - STATE(2165), 1, + STATE(2151), 1, aux_sym_object_type_repeat1, - ACTIONS(2851), 2, + ACTIONS(2853), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, ACTIONS(4639), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [97557] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1691), 1, - anon_sym_LT, - ACTIONS(2306), 1, - anon_sym_LPAREN, - ACTIONS(4641), 1, - anon_sym_QMARK, - STATE(2020), 1, - sym_formal_parameters, - STATE(2138), 1, - sym__call_signature, - STATE(2862), 1, - sym_type_parameters, - [97579] = 2, + [97681] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2788), 6, + ACTIONS(3108), 1, + anon_sym_COLON, + ACTIONS(4490), 1, anon_sym_EQ, + STATE(2553), 1, + sym_type_annotation, + STATE(2972), 1, + sym__initializer, + ACTIONS(4641), 2, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - [97591] = 7, + anon_sym_RPAREN, + [97701] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1691), 1, - anon_sym_LT, - ACTIONS(2306), 1, - anon_sym_LPAREN, - ACTIONS(4643), 1, - anon_sym_QMARK, - STATE(2020), 1, - sym_formal_parameters, - STATE(2335), 1, - sym__call_signature, - STATE(2862), 1, - sym_type_parameters, - [97613] = 7, + STATE(2151), 1, + aux_sym_object_type_repeat1, + ACTIONS(2865), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(4643), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [97717] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1691), 1, - anon_sym_LT, - ACTIONS(2306), 1, - anon_sym_LPAREN, - ACTIONS(4645), 1, - anon_sym_QMARK, - STATE(2020), 1, - sym_formal_parameters, - STATE(2117), 1, - sym__call_signature, - STATE(2862), 1, - sym_type_parameters, - [97635] = 7, + STATE(2179), 1, + aux_sym_object_type_repeat1, + ACTIONS(2865), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(4643), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [97733] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1691), 1, - anon_sym_LT, - ACTIONS(2306), 1, - anon_sym_LPAREN, + ACTIONS(4645), 1, + anon_sym_default, ACTIONS(4647), 1, - anon_sym_QMARK, - STATE(2020), 1, - sym_formal_parameters, - STATE(2125), 1, - sym__call_signature, - STATE(2862), 1, - sym_type_parameters, - [97657] = 7, + anon_sym_RBRACE, + ACTIONS(4649), 1, + anon_sym_case, + STATE(2211), 3, + sym_switch_case, + sym_switch_default, + aux_sym_switch_body_repeat1, + [97751] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1691), 1, + ACTIONS(1678), 1, anon_sym_LT, - ACTIONS(2306), 1, + ACTIONS(4444), 1, anon_sym_LPAREN, - ACTIONS(4649), 1, - anon_sym_QMARK, - STATE(2020), 1, + ACTIONS(4651), 1, + sym_identifier, + STATE(2253), 1, sym_formal_parameters, - STATE(2363), 1, - sym__call_signature, - STATE(2862), 1, + STATE(2827), 1, sym_type_parameters, - [97679] = 4, + STATE(2988), 1, + sym__call_signature, + [97773] = 4, ACTIONS(3), 1, sym_comment, - STATE(2164), 1, + STATE(2181), 1, aux_sym_object_type_repeat1, - ACTIONS(2849), 2, + ACTIONS(4655), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(4651), 3, + ACTIONS(4653), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [97695] = 7, + [97789] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1691), 1, - anon_sym_LT, - ACTIONS(4432), 1, - anon_sym_LPAREN, - ACTIONS(4653), 1, - anon_sym_QMARK, - STATE(2157), 1, - sym_formal_parameters, - STATE(2850), 1, - sym_type_parameters, - STATE(2975), 1, - sym__call_signature, - [97717] = 7, + ACTIONS(4454), 1, + anon_sym_LBRACE, + ACTIONS(4456), 1, + anon_sym_LBRACK, + ACTIONS(4577), 1, + sym_identifier, + STATE(2114), 1, + sym_array, + STATE(2116), 1, + sym_object, + STATE(2756), 1, + sym_variable_declarator, + [97811] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1691), 1, - anon_sym_LT, - ACTIONS(2306), 1, + ACTIONS(2177), 1, anon_sym_LPAREN, - ACTIONS(4655), 1, - anon_sym_QMARK, - STATE(2020), 1, - sym_formal_parameters, - STATE(2124), 1, - sym__call_signature, - STATE(2862), 1, - sym_type_parameters, - [97739] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1691), 1, + ACTIONS(4231), 1, anon_sym_LT, - ACTIONS(2306), 1, - anon_sym_LPAREN, ACTIONS(4657), 1, - anon_sym_QMARK, - STATE(2020), 1, - sym_formal_parameters, - STATE(2134), 1, - sym__call_signature, - STATE(2862), 1, - sym_type_parameters, - [97761] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1691), 1, - anon_sym_LT, - ACTIONS(4432), 1, - anon_sym_LPAREN, - ACTIONS(4659), 1, sym_identifier, - STATE(2157), 1, - sym_formal_parameters, - STATE(2850), 1, - sym_type_parameters, - STATE(2955), 1, - sym__call_signature, - [97783] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2198), 1, - anon_sym_COLON, - ACTIONS(4661), 1, - anon_sym_DASH_QMARK_COLON, - ACTIONS(4663), 1, - anon_sym_QMARK_COLON, - STATE(2418), 3, - sym_omitting_type_annotation, - sym_opting_type_annotation, - sym_type_annotation, - [97801] = 5, + ACTIONS(4659), 1, + anon_sym_LBRACK, + STATE(1701), 1, + sym_arguments, + STATE(2895), 1, + sym_type_arguments, + [97833] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2198), 1, - anon_sym_COLON, ACTIONS(4661), 1, - anon_sym_DASH_QMARK_COLON, - ACTIONS(4663), 1, - anon_sym_QMARK_COLON, - STATE(2413), 3, - sym_omitting_type_annotation, - sym_opting_type_annotation, - sym_type_annotation, - [97819] = 4, - ACTIONS(3), 1, - sym_comment, - STATE(2190), 1, - aux_sym_object_type_repeat1, - ACTIONS(4667), 2, + anon_sym_default, + ACTIONS(4664), 1, anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(4665), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [97835] = 5, + ACTIONS(4666), 1, + anon_sym_case, + STATE(2188), 3, + sym_switch_case, + sym_switch_default, + aux_sym_switch_body_repeat1, + [97851] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2198), 1, - anon_sym_COLON, - ACTIONS(4661), 1, - anon_sym_DASH_QMARK_COLON, - ACTIONS(4663), 1, - anon_sym_QMARK_COLON, - STATE(2368), 3, - sym_omitting_type_annotation, - sym_opting_type_annotation, - sym_type_annotation, - [97853] = 7, + ACTIONS(4560), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4671), 1, + anon_sym_BQUOTE, + ACTIONS(4669), 2, + sym__template_chars, + sym_escape_sequence, + STATE(2178), 2, + sym_template_substitution, + aux_sym_template_string_repeat1, + [97869] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1691), 1, + ACTIONS(1678), 1, anon_sym_LT, - ACTIONS(4432), 1, + ACTIONS(4444), 1, anon_sym_LPAREN, - ACTIONS(4669), 1, - anon_sym_QMARK, - STATE(2157), 1, + ACTIONS(4673), 1, + sym_identifier, + STATE(2253), 1, sym_formal_parameters, - STATE(2847), 1, - sym__call_signature, - STATE(2850), 1, + STATE(2827), 1, sym_type_parameters, - [97875] = 7, + STATE(3001), 1, + sym__call_signature, + [97891] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1691), 1, - anon_sym_LT, - ACTIONS(4432), 1, - anon_sym_LPAREN, - ACTIONS(4671), 1, + ACTIONS(4239), 1, + anon_sym_AMP, + ACTIONS(4241), 1, + anon_sym_PIPE, + ACTIONS(4243), 1, + anon_sym_extends, + ACTIONS(4675), 1, + anon_sym_COMMA, + ACTIONS(4677), 1, + anon_sym_GT, + STATE(2616), 1, + aux_sym_implements_clause_repeat1, + [97913] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2593), 1, + anon_sym_typeof, + ACTIONS(4679), 1, sym_identifier, - STATE(2157), 1, - sym_formal_parameters, - STATE(2850), 1, - sym_type_parameters, - STATE(2955), 1, - sym__call_signature, - [97897] = 7, + STATE(1944), 1, + sym_nested_type_identifier, + STATE(3017), 1, + sym_nested_identifier, + STATE(1974), 2, + sym_generic_type, + sym_type_query, + [97933] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1691), 1, + ACTIONS(1678), 1, anon_sym_LT, - ACTIONS(4432), 1, + ACTIONS(2332), 1, anon_sym_LPAREN, - ACTIONS(4673), 1, + ACTIONS(4681), 1, anon_sym_QMARK, - STATE(2157), 1, + STATE(2015), 1, sym_formal_parameters, - STATE(2782), 1, + STATE(2145), 1, sym__call_signature, - STATE(2850), 1, + STATE(2918), 1, sym_type_parameters, - [97919] = 4, + [97955] = 2, ACTIONS(3), 1, sym_comment, - STATE(2165), 1, - aux_sym_object_type_repeat1, - ACTIONS(2849), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(4651), 3, + ACTIONS(4683), 6, sym__automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [97935] = 7, + anon_sym_PIPE_RBRACE, + [97967] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1691), 1, + ACTIONS(1678), 1, anon_sym_LT, - ACTIONS(4432), 1, + ACTIONS(4444), 1, anon_sym_LPAREN, - ACTIONS(4675), 1, + ACTIONS(4685), 1, sym_identifier, - STATE(2157), 1, + STATE(2253), 1, sym_formal_parameters, - STATE(2850), 1, + STATE(2827), 1, sym_type_parameters, - STATE(2955), 1, + STATE(2858), 1, sym__call_signature, - [97957] = 7, + [97989] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4687), 1, + sym_identifier, + ACTIONS(4689), 1, + anon_sym_COMMA, + ACTIONS(4691), 1, + anon_sym_RBRACE, + STATE(2668), 1, + sym__import_export_specifier, + ACTIONS(4693), 2, + anon_sym_type, + anon_sym_typeof, + [98009] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4695), 6, + sym__automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [98021] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1691), 1, + ACTIONS(1678), 1, anon_sym_LT, - ACTIONS(2306), 1, + ACTIONS(4444), 1, anon_sym_LPAREN, - ACTIONS(4677), 1, + ACTIONS(4697), 1, anon_sym_QMARK, - STATE(2020), 1, + STATE(2253), 1, sym_formal_parameters, - STATE(2409), 1, - sym__call_signature, - STATE(2862), 1, + STATE(2827), 1, sym_type_parameters, - [97979] = 5, + STATE(2887), 1, + sym__call_signature, + [98043] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2198), 1, - anon_sym_COLON, - ACTIONS(4661), 1, - anon_sym_DASH_QMARK_COLON, - ACTIONS(4663), 1, - anon_sym_QMARK_COLON, - STATE(2344), 3, - sym_omitting_type_annotation, - sym_opting_type_annotation, - sym_type_annotation, - [97997] = 7, + ACTIONS(2451), 1, + anon_sym_COMMA, + ACTIONS(3180), 1, + anon_sym_LBRACE, + ACTIONS(3212), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(4699), 1, + anon_sym_LT, + STATE(2605), 1, + aux_sym_extends_clause_repeat1, + STATE(2702), 1, + sym_type_arguments, + [98065] = 7, ACTIONS(3), 1, sym_comment, + ACTIONS(2177), 1, + anon_sym_LPAREN, ACTIONS(4231), 1, - anon_sym_AMP, - ACTIONS(4233), 1, - anon_sym_PIPE, - ACTIONS(4235), 1, - anon_sym_extends, - ACTIONS(4679), 1, - anon_sym_COMMA, - ACTIONS(4681), 1, - anon_sym_GT, - STATE(2672), 1, - aux_sym_implements_clause_repeat1, - [98019] = 7, + anon_sym_LT, + ACTIONS(4701), 1, + sym_identifier, + ACTIONS(4703), 1, + anon_sym_LBRACK, + STATE(1703), 1, + sym_arguments, + STATE(2914), 1, + sym_type_arguments, + [98087] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4436), 1, - anon_sym_LBRACE, - ACTIONS(4438), 1, - anon_sym_LBRACK, - ACTIONS(4556), 1, - sym_identifier, - STATE(2082), 1, - sym_array, - STATE(2105), 1, - sym_object, - STATE(2545), 1, - sym_variable_declarator, - [98041] = 4, + ACTIONS(1678), 1, + anon_sym_LT, + ACTIONS(2332), 1, + anon_sym_LPAREN, + ACTIONS(4705), 1, + anon_sym_QMARK, + STATE(2015), 1, + sym_formal_parameters, + STATE(2140), 1, + sym__call_signature, + STATE(2918), 1, + sym_type_parameters, + [98109] = 2, ACTIONS(3), 1, sym_comment, - STATE(2171), 1, - aux_sym_object_type_repeat1, - ACTIONS(4685), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(4683), 3, + ACTIONS(4488), 6, sym__automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [98057] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(815), 1, - anon_sym_typeof, - ACTIONS(4687), 1, - sym_identifier, - STATE(1912), 1, - sym_nested_type_identifier, - STATE(2999), 1, - sym_nested_identifier, - STATE(425), 2, - sym_generic_type, - sym_type_query, - [98077] = 5, + anon_sym_PIPE_RBRACE, + [98121] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2198), 1, - anon_sym_COLON, - ACTIONS(4661), 1, - anon_sym_DASH_QMARK_COLON, - ACTIONS(4663), 1, - anon_sym_QMARK_COLON, - STATE(2367), 3, - sym_omitting_type_annotation, - sym_opting_type_annotation, - sym_type_annotation, - [98095] = 6, + ACTIONS(4560), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4709), 1, + anon_sym_BQUOTE, + ACTIONS(4707), 2, + sym__template_chars, + sym_escape_sequence, + STATE(2189), 2, + sym_template_substitution, + aux_sym_template_string_repeat1, + [98139] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2462), 1, + ACTIONS(815), 1, anon_sym_typeof, - ACTIONS(4689), 1, + ACTIONS(4711), 1, sym_identifier, - STATE(995), 1, + STATE(1916), 1, sym_nested_type_identifier, - STATE(3027), 1, + STATE(3123), 1, sym_nested_identifier, - STATE(1014), 2, + STATE(439), 2, sym_generic_type, - sym_type_query, - [98115] = 4, - ACTIONS(3), 1, - sym_comment, - STATE(2163), 1, - aux_sym_object_type_repeat1, - ACTIONS(2843), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(4691), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [98131] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4231), 1, - anon_sym_AMP, - ACTIONS(4233), 1, - anon_sym_PIPE, - ACTIONS(4235), 1, - anon_sym_extends, - ACTIONS(4693), 3, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - [98149] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(845), 1, - anon_sym_DQUOTE, - ACTIONS(847), 1, - anon_sym_SQUOTE, - ACTIONS(4528), 1, - sym_identifier, - STATE(516), 1, - sym_nested_identifier, - STATE(523), 1, - sym_string, - STATE(551), 1, - sym__module, - [98171] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4231), 1, - anon_sym_AMP, - ACTIONS(4233), 1, - anon_sym_PIPE, - ACTIONS(4235), 1, - anon_sym_extends, - ACTIONS(4695), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_GT, - [98189] = 4, + sym_type_query, + [98159] = 7, ACTIONS(3), 1, sym_comment, - STATE(2168), 1, - aux_sym_object_type_repeat1, - ACTIONS(2851), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(4639), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [98205] = 7, + ACTIONS(1678), 1, + anon_sym_LT, + ACTIONS(2332), 1, + anon_sym_LPAREN, + ACTIONS(4713), 1, + anon_sym_QMARK, + STATE(2015), 1, + sym_formal_parameters, + STATE(2130), 1, + sym__call_signature, + STATE(2918), 1, + sym_type_parameters, + [98181] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1691), 1, + ACTIONS(1678), 1, anon_sym_LT, - ACTIONS(4432), 1, + ACTIONS(4444), 1, anon_sym_LPAREN, - ACTIONS(4697), 1, + ACTIONS(4715), 1, sym_identifier, - STATE(2157), 1, + STATE(2253), 1, sym_formal_parameters, - STATE(2850), 1, + STATE(2827), 1, sym_type_parameters, - STATE(2976), 1, + STATE(2931), 1, sym__call_signature, - [98227] = 5, + [98203] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4586), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4701), 1, - anon_sym_BQUOTE, - ACTIONS(4699), 2, - sym__template_chars, - sym_escape_sequence, - STATE(2231), 2, - sym_template_substitution, - aux_sym_template_string_repeat1, - [98245] = 7, + ACTIONS(1678), 1, + anon_sym_LT, + ACTIONS(4444), 1, + anon_sym_LPAREN, + ACTIONS(4717), 1, + anon_sym_QMARK, + STATE(2253), 1, + sym_formal_parameters, + STATE(2827), 1, + sym_type_parameters, + STATE(2833), 1, + sym__call_signature, + [98225] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1691), 1, + ACTIONS(1678), 1, anon_sym_LT, - ACTIONS(4432), 1, + ACTIONS(2332), 1, anon_sym_LPAREN, - ACTIONS(4703), 1, - sym_identifier, - STATE(2157), 1, + ACTIONS(4719), 1, + anon_sym_QMARK, + STATE(2015), 1, sym_formal_parameters, - STATE(2850), 1, - sym_type_parameters, - STATE(2976), 1, + STATE(2122), 1, sym__call_signature, - [98267] = 7, + STATE(2918), 1, + sym_type_parameters, + [98247] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1691), 1, + ACTIONS(1678), 1, anon_sym_LT, - ACTIONS(2306), 1, + ACTIONS(2332), 1, anon_sym_LPAREN, - ACTIONS(4705), 1, + ACTIONS(4721), 1, anon_sym_QMARK, - STATE(2020), 1, + STATE(2015), 1, sym_formal_parameters, - STATE(2395), 1, + STATE(2080), 1, sym__call_signature, - STATE(2862), 1, + STATE(2918), 1, sym_type_parameters, - [98289] = 7, + [98269] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2161), 1, + ACTIONS(4723), 6, + sym__automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [98281] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4645), 1, + anon_sym_default, + ACTIONS(4649), 1, + anon_sym_case, + ACTIONS(4725), 1, + anon_sym_RBRACE, + STATE(2188), 3, + sym_switch_case, + sym_switch_default, + aux_sym_switch_body_repeat1, + [98299] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3585), 6, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(4215), 1, anon_sym_LT, - ACTIONS(4707), 1, - sym_identifier, - ACTIONS(4709), 1, - anon_sym_LBRACK, - STATE(1636), 1, - sym_arguments, - STATE(2885), 1, - sym_type_arguments, + anon_sym_QMARK, [98311] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2198), 1, + ACTIONS(2238), 1, anon_sym_COLON, - ACTIONS(4661), 1, + ACTIONS(4601), 1, anon_sym_DASH_QMARK_COLON, - ACTIONS(4663), 1, + ACTIONS(4603), 1, anon_sym_QMARK_COLON, - STATE(2393), 3, + STATE(2466), 3, sym_omitting_type_annotation, sym_opting_type_annotation, sym_type_annotation, [98329] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2198), 1, + ACTIONS(2238), 1, anon_sym_COLON, - ACTIONS(4661), 1, + ACTIONS(4601), 1, anon_sym_DASH_QMARK_COLON, - ACTIONS(4663), 1, + ACTIONS(4603), 1, anon_sym_QMARK_COLON, - STATE(2389), 3, + STATE(2464), 3, sym_omitting_type_annotation, sym_opting_type_annotation, sym_type_annotation, - [98347] = 5, + [98347] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2198), 1, - anon_sym_COLON, - ACTIONS(4661), 1, - anon_sym_DASH_QMARK_COLON, - ACTIONS(4663), 1, - anon_sym_QMARK_COLON, - STATE(2289), 3, - sym_omitting_type_annotation, - sym_opting_type_annotation, - sym_type_annotation, - [98365] = 7, + STATE(2151), 1, + aux_sym_object_type_repeat1, + ACTIONS(2851), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(4727), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [98363] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1691), 1, + ACTIONS(1678), 1, anon_sym_LT, - ACTIONS(2306), 1, + ACTIONS(2332), 1, anon_sym_LPAREN, - ACTIONS(4711), 1, + ACTIONS(4729), 1, anon_sym_QMARK, - STATE(2020), 1, + STATE(2015), 1, sym_formal_parameters, - STATE(2287), 1, + STATE(2450), 1, sym__call_signature, - STATE(2862), 1, + STATE(2918), 1, sym_type_parameters, - [98387] = 6, + [98385] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2418), 1, - anon_sym_COMMA, - ACTIONS(4215), 1, + ACTIONS(1678), 1, anon_sym_LT, - STATE(301), 1, - sym_type_arguments, - STATE(2523), 1, - aux_sym_extends_clause_repeat1, - ACTIONS(3072), 2, - anon_sym_LBRACE, - anon_sym_implements, + ACTIONS(2332), 1, + anon_sym_LPAREN, + ACTIONS(4731), 1, + anon_sym_QMARK, + STATE(2015), 1, + sym_formal_parameters, + STATE(2481), 1, + sym__call_signature, + STATE(2918), 1, + sym_type_parameters, [98407] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1691), 1, + ACTIONS(1678), 1, anon_sym_LT, - ACTIONS(4432), 1, + ACTIONS(4444), 1, anon_sym_LPAREN, - ACTIONS(4713), 1, + ACTIONS(4733), 1, anon_sym_QMARK, - STATE(2157), 1, + STATE(2253), 1, sym_formal_parameters, STATE(2827), 1, - sym__call_signature, - STATE(2850), 1, sym_type_parameters, - [98429] = 7, + STATE(2946), 1, + sym__call_signature, + [98429] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4231), 1, - anon_sym_AMP, - ACTIONS(4233), 1, - anon_sym_PIPE, - ACTIONS(4235), 1, - anon_sym_extends, - ACTIONS(4715), 1, - anon_sym_LBRACE, - ACTIONS(4717), 1, + ACTIONS(2776), 6, + anon_sym_EQ, anon_sym_COMMA, - STATE(2656), 1, - aux_sym_implements_clause_repeat1, - [98451] = 4, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + [98441] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2238), 1, + anon_sym_COLON, + ACTIONS(4601), 1, + anon_sym_DASH_QMARK_COLON, + ACTIONS(4603), 1, + anon_sym_QMARK_COLON, + STATE(2479), 3, + sym_omitting_type_annotation, + sym_opting_type_annotation, + sym_type_annotation, + [98459] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2238), 1, + anon_sym_COLON, + ACTIONS(4601), 1, + anon_sym_DASH_QMARK_COLON, + ACTIONS(4603), 1, + anon_sym_QMARK_COLON, + STATE(2476), 3, + sym_omitting_type_annotation, + sym_opting_type_annotation, + sym_type_annotation, + [98477] = 7, ACTIONS(3), 1, sym_comment, - STATE(2165), 1, + ACTIONS(1678), 1, + anon_sym_LT, + ACTIONS(2332), 1, + anon_sym_LPAREN, + ACTIONS(4735), 1, + anon_sym_QMARK, + STATE(2015), 1, + sym_formal_parameters, + STATE(2302), 1, + sym__call_signature, + STATE(2918), 1, + sym_type_parameters, + [98499] = 4, + ACTIONS(3), 1, + sym_comment, + STATE(2166), 1, aux_sym_object_type_repeat1, - ACTIONS(2827), 2, + ACTIONS(2863), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(4719), 3, + ACTIONS(4737), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [98467] = 6, + [98515] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3068), 1, - anon_sym_COLON, - ACTIONS(4460), 1, - anon_sym_EQ, - STATE(2491), 1, - sym_type_annotation, - STATE(2870), 1, - sym__initializer, - ACTIONS(4721), 2, + ACTIONS(4454), 1, + anon_sym_LBRACE, + ACTIONS(4456), 1, + anon_sym_LBRACK, + ACTIONS(4577), 1, + sym_identifier, + STATE(2114), 1, + sym_array, + STATE(2116), 1, + sym_object, + STATE(2587), 1, + sym_variable_declarator, + [98537] = 4, + ACTIONS(3), 1, + sym_comment, + STATE(2151), 1, + aux_sym_object_type_repeat1, + ACTIONS(2855), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(4739), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RPAREN, - [98487] = 7, + anon_sym_SEMI, + [98553] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1691), 1, + ACTIONS(1678), 1, anon_sym_LT, - ACTIONS(2306), 1, + ACTIONS(4444), 1, anon_sym_LPAREN, - ACTIONS(4723), 1, + ACTIONS(4741), 1, anon_sym_QMARK, - STATE(2020), 1, + STATE(2253), 1, sym_formal_parameters, - STATE(2350), 1, + STATE(2813), 1, sym__call_signature, - STATE(2862), 1, + STATE(2827), 1, sym_type_parameters, - [98509] = 4, + [98575] = 4, ACTIONS(3), 1, sym_comment, - STATE(2150), 1, + STATE(2215), 1, aux_sym_object_type_repeat1, - ACTIONS(2827), 2, + ACTIONS(2855), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(4719), 3, + ACTIONS(4739), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [98525] = 7, + [98591] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1691), 1, + ACTIONS(1678), 1, anon_sym_LT, - ACTIONS(2306), 1, + ACTIONS(2332), 1, anon_sym_LPAREN, - ACTIONS(4725), 1, + ACTIONS(4743), 1, anon_sym_QMARK, - STATE(2020), 1, + STATE(2015), 1, sym_formal_parameters, - STATE(2383), 1, + STATE(2460), 1, sym__call_signature, - STATE(2862), 1, + STATE(2918), 1, sym_type_parameters, - [98547] = 6, + [98613] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2556), 1, - anon_sym_typeof, - ACTIONS(4727), 1, + ACTIONS(845), 1, + anon_sym_DQUOTE, + ACTIONS(847), 1, + anon_sym_SQUOTE, + ACTIONS(4478), 1, sym_identifier, - STATE(1940), 1, - sym_nested_type_identifier, - STATE(2998), 1, + STATE(513), 1, sym_nested_identifier, - STATE(1967), 2, - sym_generic_type, - sym_type_query, - [98567] = 7, + STATE(528), 1, + sym_string, + STATE(564), 1, + sym__module, + [98635] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1678), 1, + anon_sym_LT, + ACTIONS(4444), 1, + anon_sym_LPAREN, + ACTIONS(4745), 1, + sym_identifier, + STATE(2253), 1, + sym_formal_parameters, + STATE(2827), 1, + sym_type_parameters, + STATE(2898), 1, + sym__call_signature, + [98657] = 7, ACTIONS(3), 1, sym_comment, + ACTIONS(2173), 1, + anon_sym_LPAREN, ACTIONS(4231), 1, - anon_sym_AMP, - ACTIONS(4233), 1, - anon_sym_PIPE, - ACTIONS(4235), 1, - anon_sym_extends, - ACTIONS(4729), 1, - anon_sym_COMMA, - ACTIONS(4731), 1, - anon_sym_GT, - STATE(2612), 1, - aux_sym_implements_clause_repeat1, - [98589] = 2, + anon_sym_LT, + ACTIONS(4747), 1, + sym_identifier, + ACTIONS(4749), 1, + anon_sym_LBRACK, + STATE(1584), 1, + sym_arguments, + STATE(2989), 1, + sym_type_arguments, + [98679] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3572), 6, - anon_sym_EQ, + ACTIONS(4687), 1, + sym_identifier, + ACTIONS(4751), 1, anon_sym_COMMA, + ACTIONS(4753), 1, anon_sym_RBRACE, - anon_sym_LPAREN, + STATE(2737), 1, + sym__import_export_specifier, + ACTIONS(4693), 2, + anon_sym_type, + anon_sym_typeof, + [98699] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1678), 1, anon_sym_LT, + ACTIONS(2332), 1, + anon_sym_LPAREN, + ACTIONS(4755), 1, anon_sym_QMARK, - [98601] = 5, + STATE(2015), 1, + sym_formal_parameters, + STATE(2442), 1, + sym__call_signature, + STATE(2918), 1, + sym_type_parameters, + [98721] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4586), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4735), 1, - anon_sym_BQUOTE, - ACTIONS(4733), 2, - sym__template_chars, - sym_escape_sequence, - STATE(2230), 2, - sym_template_substitution, - aux_sym_template_string_repeat1, - [98619] = 5, + ACTIONS(2238), 1, + anon_sym_COLON, + ACTIONS(4601), 1, + anon_sym_DASH_QMARK_COLON, + ACTIONS(4603), 1, + anon_sym_QMARK_COLON, + STATE(2438), 3, + sym_omitting_type_annotation, + sym_opting_type_annotation, + sym_type_annotation, + [98739] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4239), 1, + anon_sym_AMP, + ACTIONS(4241), 1, + anon_sym_PIPE, + ACTIONS(4243), 1, + anon_sym_extends, + ACTIONS(4757), 1, + anon_sym_COMMA, + ACTIONS(4759), 1, + anon_sym_GT, + STATE(2721), 1, + aux_sym_implements_clause_repeat1, + [98761] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2198), 1, + ACTIONS(2238), 1, anon_sym_COLON, - ACTIONS(4661), 1, + ACTIONS(4601), 1, anon_sym_DASH_QMARK_COLON, - ACTIONS(4663), 1, + ACTIONS(4603), 1, anon_sym_QMARK_COLON, - STATE(2374), 3, + STATE(2427), 3, sym_omitting_type_annotation, sym_opting_type_annotation, sym_type_annotation, - [98637] = 7, + [98779] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2395), 1, - anon_sym_COMMA, - ACTIONS(3072), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(3168), 1, - anon_sym_LBRACE, - ACTIONS(4737), 1, + ACTIONS(1678), 1, anon_sym_LT, - STATE(2564), 1, - aux_sym_extends_clause_repeat1, - STATE(2705), 1, - sym_type_arguments, - [98659] = 7, + ACTIONS(4444), 1, + anon_sym_LPAREN, + ACTIONS(4761), 1, + anon_sym_QMARK, + STATE(2253), 1, + sym_formal_parameters, + STATE(2821), 1, + sym__call_signature, + STATE(2827), 1, + sym_type_parameters, + [98801] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2145), 1, - anon_sym_LPAREN, - ACTIONS(4215), 1, + ACTIONS(4239), 1, + anon_sym_AMP, + ACTIONS(4241), 1, + anon_sym_PIPE, + ACTIONS(4243), 1, + anon_sym_extends, + ACTIONS(4763), 3, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_GT, + [98819] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4560), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4767), 1, + anon_sym_BQUOTE, + ACTIONS(4765), 2, + sym__template_chars, + sym_escape_sequence, + STATE(2259), 2, + sym_template_substitution, + aux_sym_template_string_repeat1, + [98837] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1678), 1, anon_sym_LT, - ACTIONS(4739), 1, + ACTIONS(4444), 1, + anon_sym_LPAREN, + ACTIONS(4769), 1, sym_identifier, - ACTIONS(4741), 1, - anon_sym_LBRACK, - STATE(1159), 1, - sym_arguments, - STATE(2990), 1, - sym_type_arguments, - [98681] = 7, + STATE(2253), 1, + sym_formal_parameters, + STATE(2827), 1, + sym_type_parameters, + STATE(2886), 1, + sym__call_signature, + [98859] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2318), 1, + ACTIONS(845), 1, anon_sym_DQUOTE, - ACTIONS(2320), 1, + ACTIONS(847), 1, anon_sym_SQUOTE, - ACTIONS(4466), 1, + ACTIONS(4478), 1, sym_identifier, - STATE(2066), 1, + STATE(513), 1, sym_nested_identifier, - STATE(2078), 1, + STATE(528), 1, sym_string, - STATE(2373), 1, + STATE(581), 1, sym__module, - [98703] = 5, + [98881] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4586), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4743), 1, - anon_sym_BQUOTE, - ACTIONS(4582), 2, - sym__template_chars, - sym_escape_sequence, - STATE(2151), 2, - sym_template_substitution, - aux_sym_template_string_repeat1, - [98721] = 5, + ACTIONS(4771), 1, + anon_sym_COLON, + ACTIONS(4380), 2, + anon_sym_LBRACE, + anon_sym_EQ_GT, + STATE(2905), 3, + sym_type_annotation, + sym_asserts, + sym_type_predicate_annotation, + [98897] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4586), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4745), 1, - anon_sym_BQUOTE, - ACTIONS(4582), 2, - sym__template_chars, - sym_escape_sequence, - STATE(2151), 2, - sym_template_substitution, - aux_sym_template_string_repeat1, - [98739] = 7, + ACTIONS(2344), 1, + anon_sym_DQUOTE, + ACTIONS(2346), 1, + anon_sym_SQUOTE, + ACTIONS(4512), 1, + sym_identifier, + STATE(2073), 1, + sym_nested_identifier, + STATE(2079), 1, + sym_string, + STATE(2435), 1, + sym__module, + [98919] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2145), 1, - anon_sym_LPAREN, - ACTIONS(4215), 1, + ACTIONS(4239), 1, + anon_sym_AMP, + ACTIONS(4241), 1, + anon_sym_PIPE, + ACTIONS(4243), 1, + anon_sym_extends, + ACTIONS(4773), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_GT, + [98937] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1678), 1, anon_sym_LT, - ACTIONS(4747), 1, + ACTIONS(4444), 1, + anon_sym_LPAREN, + ACTIONS(4775), 1, sym_identifier, - ACTIONS(4749), 1, - anon_sym_LBRACK, - STATE(1132), 1, - sym_arguments, - STATE(2894), 1, - sym_type_arguments, - [98761] = 7, + STATE(2253), 1, + sym_formal_parameters, + STATE(2827), 1, + sym_type_parameters, + STATE(2931), 1, + sym__call_signature, + [98959] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(2161), 1, anon_sym_LPAREN, - ACTIONS(4215), 1, + ACTIONS(4231), 1, anon_sym_LT, - ACTIONS(4751), 1, + ACTIONS(4777), 1, sym_identifier, - ACTIONS(4753), 1, + ACTIONS(4779), 1, anon_sym_LBRACK, - STATE(1656), 1, + STATE(1122), 1, sym_arguments, - STATE(2797), 1, + STATE(2955), 1, sym_type_arguments, - [98783] = 7, + [98981] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2318), 1, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(4566), 1, + anon_sym_abstract, + ACTIONS(4781), 1, + anon_sym_export, + ACTIONS(4783), 1, + anon_sym_class, + STATE(1877), 1, + aux_sym_export_statement_repeat1, + STATE(1890), 1, + sym_decorator, + [99003] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2344), 1, anon_sym_DQUOTE, - ACTIONS(2320), 1, + ACTIONS(2346), 1, anon_sym_SQUOTE, - ACTIONS(4466), 1, + ACTIONS(4512), 1, sym_identifier, - STATE(2066), 1, + STATE(2073), 1, sym_nested_identifier, - STATE(2078), 1, + STATE(2079), 1, sym_string, - STATE(2455), 1, + STATE(2458), 1, sym__module, - [98805] = 2, + [99025] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4755), 6, + STATE(2225), 1, + aux_sym_object_type_repeat1, + ACTIONS(4787), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(4785), 3, sym__automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [98817] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4436), 1, - anon_sym_LBRACE, - ACTIONS(4438), 1, - anon_sym_LBRACK, - ACTIONS(4556), 1, - sym_identifier, - STATE(2082), 1, - sym_array, - STATE(2105), 1, - sym_object, - STATE(2773), 1, - sym_variable_declarator, - [98839] = 4, + [99041] = 4, ACTIONS(3), 1, sym_comment, - STATE(2250), 1, + STATE(2151), 1, aux_sym_object_type_repeat1, - ACTIONS(4759), 2, + ACTIONS(2863), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(4757), 3, + ACTIONS(4737), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [98855] = 5, + [99057] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4586), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4763), 1, - anon_sym_BQUOTE, - ACTIONS(4761), 2, - sym__template_chars, - sym_escape_sequence, - STATE(2153), 2, - sym_template_substitution, - aux_sym_template_string_repeat1, - [98873] = 5, + ACTIONS(1678), 1, + anon_sym_LT, + ACTIONS(2332), 1, + anon_sym_LPAREN, + ACTIONS(4789), 1, + anon_sym_QMARK, + STATE(2015), 1, + sym_formal_parameters, + STATE(2713), 1, + sym__call_signature, + STATE(2918), 1, + sym_type_parameters, + [99079] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4594), 1, - anon_sym_default, - ACTIONS(4598), 1, - anon_sym_case, - ACTIONS(4765), 1, - anon_sym_RBRACE, - STATE(2156), 3, - sym_switch_case, - sym_switch_default, - aux_sym_switch_body_repeat1, - [98891] = 7, + ACTIONS(1678), 1, + anon_sym_LT, + ACTIONS(2332), 1, + anon_sym_LPAREN, + ACTIONS(4791), 1, + anon_sym_QMARK, + STATE(2015), 1, + sym_formal_parameters, + STATE(2289), 1, + sym__call_signature, + STATE(2918), 1, + sym_type_parameters, + [99101] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4771), 1, + anon_sym_COLON, + ACTIONS(4368), 2, + anon_sym_LBRACE, + anon_sym_EQ_GT, + STATE(2991), 3, + sym_type_annotation, + sym_asserts, + sym_type_predicate_annotation, + [99117] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1691), 1, + ACTIONS(2173), 1, + anon_sym_LPAREN, + ACTIONS(4231), 1, anon_sym_LT, - ACTIONS(2306), 1, + ACTIONS(4793), 1, + sym_identifier, + ACTIONS(4795), 1, + anon_sym_LBRACK, + STATE(1534), 1, + sym_arguments, + STATE(2864), 1, + sym_type_arguments, + [99139] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1678), 1, + anon_sym_LT, + ACTIONS(2332), 1, anon_sym_LPAREN, - ACTIONS(4767), 1, + ACTIONS(4797), 1, anon_sym_QMARK, - STATE(2020), 1, + STATE(2015), 1, sym_formal_parameters, - STATE(2706), 1, + STATE(2397), 1, sym__call_signature, - STATE(2862), 1, + STATE(2918), 1, sym_type_parameters, - [98913] = 2, + [99161] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4450), 6, - sym__automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [98925] = 7, + ACTIONS(2161), 1, + anon_sym_LPAREN, + ACTIONS(4231), 1, + anon_sym_LT, + ACTIONS(4799), 1, + sym_identifier, + ACTIONS(4801), 1, + anon_sym_LBRACK, + STATE(1166), 1, + sym_arguments, + STATE(2995), 1, + sym_type_arguments, + [99183] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1691), 1, + ACTIONS(1678), 1, anon_sym_LT, - ACTIONS(2306), 1, + ACTIONS(4444), 1, anon_sym_LPAREN, - ACTIONS(4769), 1, - anon_sym_QMARK, - STATE(2020), 1, + ACTIONS(4803), 1, + sym_identifier, + STATE(2253), 1, sym_formal_parameters, - STATE(2377), 1, - sym__call_signature, - STATE(2862), 1, + STATE(2827), 1, sym_type_parameters, - [98947] = 7, + STATE(2858), 1, + sym__call_signature, + [99205] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4436), 1, - anon_sym_LBRACE, - ACTIONS(4438), 1, - anon_sym_LBRACK, - ACTIONS(4556), 1, - sym_identifier, - STATE(2082), 1, - sym_array, - STATE(2105), 1, - sym_object, - STATE(2595), 1, - sym_variable_declarator, - [98969] = 7, + ACTIONS(4560), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4805), 1, + anon_sym_BQUOTE, + ACTIONS(4669), 2, + sym__template_chars, + sym_escape_sequence, + STATE(2178), 2, + sym_template_substitution, + aux_sym_template_string_repeat1, + [99223] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4560), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4807), 1, + anon_sym_BQUOTE, + ACTIONS(4669), 2, + sym__template_chars, + sym_escape_sequence, + STATE(2178), 2, + sym_template_substitution, + aux_sym_template_string_repeat1, + [99241] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1691), 1, + ACTIONS(1678), 1, anon_sym_LT, - ACTIONS(2306), 1, + ACTIONS(4444), 1, anon_sym_LPAREN, - ACTIONS(4771), 1, - anon_sym_QMARK, - STATE(2020), 1, + ACTIONS(4809), 1, + sym_identifier, + STATE(2253), 1, sym_formal_parameters, - STATE(2294), 1, - sym__call_signature, - STATE(2862), 1, + STATE(2827), 1, sym_type_parameters, - [98991] = 4, + STATE(2858), 1, + sym__call_signature, + [99263] = 5, ACTIONS(3), 1, sym_comment, - STATE(2165), 1, - aux_sym_object_type_repeat1, - ACTIONS(2843), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(4691), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [99007] = 7, + ACTIONS(2238), 1, + anon_sym_COLON, + ACTIONS(4601), 1, + anon_sym_DASH_QMARK_COLON, + ACTIONS(4603), 1, + anon_sym_QMARK_COLON, + STATE(2391), 3, + sym_omitting_type_annotation, + sym_opting_type_annotation, + sym_type_annotation, + [99281] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4231), 1, + ACTIONS(4239), 1, anon_sym_AMP, - ACTIONS(4233), 1, + ACTIONS(4241), 1, anon_sym_PIPE, - ACTIONS(4235), 1, + ACTIONS(4243), 1, anon_sym_extends, - ACTIONS(4773), 1, + ACTIONS(4811), 1, anon_sym_COMMA, - ACTIONS(4775), 1, + ACTIONS(4813), 1, anon_sym_GT, - STATE(2682), 1, + STATE(2634), 1, aux_sym_implements_clause_repeat1, - [99029] = 6, + [99303] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2514), 1, + ACTIONS(2478), 1, anon_sym_typeof, - ACTIONS(4777), 1, + ACTIONS(4815), 1, sym_identifier, - STATE(1272), 1, + STATE(1237), 1, sym_nested_type_identifier, - STATE(3131), 1, + STATE(3130), 1, sym_nested_identifier, - STATE(1469), 2, + STATE(1314), 2, sym_generic_type, sym_type_query, - [99049] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4436), 1, - anon_sym_LBRACE, - ACTIONS(4438), 1, - anon_sym_LBRACK, - ACTIONS(4556), 1, - sym_identifier, - STATE(2082), 1, - sym_array, - STATE(2105), 1, - sym_object, - STATE(2600), 1, - sym_variable_declarator, - [99071] = 4, - ACTIONS(3), 1, - sym_comment, - STATE(2252), 1, - aux_sym_object_type_repeat1, - ACTIONS(2837), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(4779), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [99087] = 4, - ACTIONS(3), 1, - sym_comment, - STATE(2165), 1, - aux_sym_object_type_repeat1, - ACTIONS(2837), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(4779), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [99103] = 7, + [99323] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1691), 1, + ACTIONS(1678), 1, anon_sym_LT, - ACTIONS(4432), 1, + ACTIONS(2332), 1, anon_sym_LPAREN, - ACTIONS(4781), 1, + ACTIONS(4817), 1, anon_sym_QMARK, - STATE(2157), 1, + STATE(2015), 1, sym_formal_parameters, - STATE(2850), 1, - sym_type_parameters, - STATE(2922), 1, + STATE(2386), 1, sym__call_signature, - [99125] = 4, + STATE(2918), 1, + sym_type_parameters, + [99345] = 5, ACTIONS(3), 1, sym_comment, - STATE(2165), 1, - aux_sym_object_type_repeat1, - ACTIONS(2853), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(4783), 3, + ACTIONS(2238), 1, + anon_sym_COLON, + ACTIONS(4601), 1, + anon_sym_DASH_QMARK_COLON, + ACTIONS(4603), 1, + anon_sym_QMARK_COLON, + STATE(2428), 3, + sym_omitting_type_annotation, + sym_opting_type_annotation, + sym_type_annotation, + [99363] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4819), 1, + anon_sym_LBRACE, + STATE(1834), 1, + sym_statement_block, + ACTIONS(4544), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [99141] = 7, + [99378] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1691), 1, + ACTIONS(1678), 1, anon_sym_LT, - ACTIONS(2306), 1, + ACTIONS(2332), 1, anon_sym_LPAREN, - ACTIONS(4785), 1, - anon_sym_QMARK, - STATE(2020), 1, + STATE(2015), 1, sym_formal_parameters, - STATE(2657), 1, + STATE(2468), 1, sym__call_signature, - STATE(2862), 1, + STATE(2918), 1, sym_type_parameters, - [99163] = 7, + [99397] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4231), 1, - anon_sym_AMP, - ACTIONS(4233), 1, - anon_sym_PIPE, - ACTIONS(4235), 1, - anon_sym_extends, - ACTIONS(4787), 1, + ACTIONS(4821), 5, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(4789), 1, - anon_sym_GT, - STATE(2781), 1, - aux_sym_implements_clause_repeat1, - [99185] = 6, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [99408] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2586), 1, - anon_sym_typeof, - ACTIONS(4791), 1, - sym_identifier, - STATE(1354), 1, - sym_nested_type_identifier, - STATE(3043), 1, - sym_nested_identifier, - STATE(1528), 2, - sym_generic_type, - sym_type_query, - [99205] = 2, + ACTIONS(4823), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [99419] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2039), 5, + ACTIONS(981), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [99216] = 2, + [99430] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2019), 5, + ACTIONS(2055), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [99227] = 4, + [99441] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4239), 1, - anon_sym_EQ, - STATE(2654), 1, - sym__initializer, - ACTIONS(4793), 3, + ACTIONS(2023), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [99242] = 4, + anon_sym_PIPE_RBRACE, + [99452] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4239), 1, - anon_sym_EQ, - STATE(2660), 1, - sym__initializer, - ACTIONS(4795), 3, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(4825), 1, + anon_sym_class, + ACTIONS(4827), 1, + anon_sym_abstract, + STATE(1877), 1, + aux_sym_export_statement_repeat1, + STATE(1890), 1, + sym_decorator, + [99471] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2015), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [99257] = 4, + anon_sym_PIPE_RBRACE, + [99482] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4797), 1, - anon_sym_LBRACE, - STATE(1844), 1, - sym_statement_block, - ACTIONS(4538), 3, + ACTIONS(4829), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [99272] = 4, + anon_sym_PIPE_RBRACE, + [99493] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4554), 1, - anon_sym_COLON, - ACTIONS(4799), 1, - anon_sym_EQ_GT, - STATE(2968), 3, - sym_type_annotation, - sym_asserts, - sym_type_predicate_annotation, - [99287] = 4, + ACTIONS(1678), 1, + anon_sym_LT, + ACTIONS(2332), 1, + anon_sym_LPAREN, + STATE(2015), 1, + sym_formal_parameters, + STATE(2381), 1, + sym__call_signature, + STATE(2918), 1, + sym_type_parameters, + [99512] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4215), 1, - anon_sym_LT, - STATE(301), 1, - sym_type_arguments, - ACTIONS(3339), 3, - anon_sym_LBRACE, + ACTIONS(4544), 5, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_implements, - [99302] = 4, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [99523] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4239), 1, + ACTIONS(4261), 1, anon_sym_EQ, - STATE(2771), 1, + STATE(2617), 1, sym__initializer, - ACTIONS(4801), 3, + ACTIONS(4831), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [99317] = 2, + [99538] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1907), 5, + ACTIONS(4239), 1, + anon_sym_AMP, + ACTIONS(4241), 1, + anon_sym_PIPE, + ACTIONS(4243), 1, + anon_sym_extends, + ACTIONS(1764), 2, + anon_sym_else, + anon_sym_while, + [99555] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1975), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [99328] = 2, + [99566] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2055), 5, + ACTIONS(4833), 5, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_implements, + anon_sym_extends, + [99577] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1871), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [99339] = 2, + [99588] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2059), 5, + ACTIONS(1678), 1, + anon_sym_LT, + ACTIONS(4444), 1, + anon_sym_LPAREN, + STATE(2253), 1, + sym_formal_parameters, + STATE(2827), 1, + sym_type_parameters, + STATE(2949), 1, + sym__call_signature, + [99607] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4819), 1, + anon_sym_LBRACE, + STATE(1844), 1, + sym_statement_block, + ACTIONS(4500), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [99350] = 2, + [99622] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1975), 5, + ACTIONS(1839), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [99361] = 2, + [99633] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1843), 5, + ACTIONS(959), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [99372] = 2, + [99644] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1678), 1, + anon_sym_LT, + ACTIONS(2332), 1, + anon_sym_LPAREN, + STATE(2015), 1, + sym_formal_parameters, + STATE(2304), 1, + sym__call_signature, + STATE(2918), 1, + sym_type_parameters, + [99663] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 5, + ACTIONS(1907), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [99383] = 2, + [99674] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2043), 5, + ACTIONS(4819), 1, + anon_sym_LBRACE, + STATE(1837), 1, + sym_statement_block, + ACTIONS(4546), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [99394] = 5, + [99689] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3337), 1, - anon_sym_LBRACE, - ACTIONS(4737), 1, - anon_sym_LT, - STATE(2705), 1, - sym_type_arguments, - ACTIONS(3339), 2, + ACTIONS(2895), 5, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - [99411] = 4, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [99700] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4239), 1, + ACTIONS(4835), 5, anon_sym_EQ, - STATE(2770), 1, - sym__initializer, - ACTIONS(4803), 3, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_implements, + anon_sym_extends, + [99711] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4528), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [99426] = 4, + anon_sym_PIPE_RBRACE, + [99722] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4554), 1, + ACTIONS(4771), 1, anon_sym_COLON, - ACTIONS(4805), 1, + ACTIONS(4837), 1, anon_sym_EQ_GT, - STATE(2968), 3, + STATE(2905), 3, sym_type_annotation, sym_asserts, sym_type_predicate_annotation, - [99441] = 6, + [99737] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1691), 1, - anon_sym_LT, - ACTIONS(2306), 1, - anon_sym_LPAREN, - STATE(2020), 1, - sym_formal_parameters, - STATE(2514), 1, - sym__call_signature, - STATE(2862), 1, - sym_type_parameters, - [99460] = 2, + ACTIONS(2901), 5, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [99748] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2889), 5, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [99759] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1063), 5, + ACTIONS(4839), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [99471] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4231), 1, - anon_sym_AMP, - ACTIONS(4233), 1, - anon_sym_PIPE, - ACTIONS(4235), 1, - anon_sym_extends, - ACTIONS(4400), 2, - anon_sym_LBRACE, - anon_sym_EQ_GT, - [99488] = 4, + [99770] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4797), 1, - anon_sym_LBRACE, - STATE(1846), 1, - sym_statement_block, - ACTIONS(4506), 3, + ACTIONS(4841), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [99503] = 6, + anon_sym_PIPE_RBRACE, + [99781] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1691), 1, + ACTIONS(1678), 1, anon_sym_LT, - ACTIONS(4432), 1, + ACTIONS(4444), 1, anon_sym_LPAREN, - STATE(2157), 1, + STATE(2253), 1, sym_formal_parameters, - STATE(2850), 1, + STATE(2827), 1, sym_type_parameters, - STATE(2908), 1, + STATE(2848), 1, sym__call_signature, - [99522] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4554), 1, - anon_sym_COLON, - ACTIONS(4807), 1, - anon_sym_EQ_GT, - STATE(2876), 3, - sym_type_annotation, - sym_asserts, - sym_type_predicate_annotation, - [99537] = 2, + [99800] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4809), 5, + ACTIONS(1835), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [99548] = 2, + [99811] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4811), 5, - anon_sym_EQ, - anon_sym_LBRACE, + ACTIONS(1678), 1, + anon_sym_LT, + ACTIONS(2332), 1, anon_sym_LPAREN, - anon_sym_implements, - anon_sym_extends, - [99559] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4426), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [99570] = 2, + STATE(2015), 1, + sym_formal_parameters, + STATE(2566), 1, + sym__call_signature, + STATE(2918), 1, + sym_type_parameters, + [99830] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2031), 5, + ACTIONS(1847), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [99581] = 2, + [99841] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(937), 5, + ACTIONS(4546), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [99592] = 2, + [99852] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2083), 5, + ACTIONS(1879), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [99603] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(4813), 1, - anon_sym_export, - ACTIONS(4815), 1, - anon_sym_class, - STATE(1874), 1, - aux_sym_export_statement_repeat1, - STATE(1905), 1, - sym_decorator, - [99622] = 4, + [99863] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4797), 1, + ACTIONS(4819), 1, anon_sym_LBRACE, - STATE(1838), 1, + STATE(1833), 1, sym_statement_block, - ACTIONS(4536), 3, + ACTIONS(4522), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [99637] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1691), 1, - anon_sym_LT, - ACTIONS(2306), 1, - anon_sym_LPAREN, - STATE(2020), 1, - sym_formal_parameters, - STATE(2306), 1, - sym__call_signature, - STATE(2862), 1, - sym_type_parameters, - [99656] = 2, + [99878] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4817), 5, + ACTIONS(1895), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [99667] = 2, + [99889] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2095), 5, + ACTIONS(2079), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [99678] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4239), 1, - anon_sym_EQ, - STATE(2778), 1, - sym__initializer, - ACTIONS(4819), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [99693] = 2, + [99900] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2071), 5, + ACTIONS(1061), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [99704] = 6, + [99911] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1691), 1, + ACTIONS(1678), 1, anon_sym_LT, - ACTIONS(2306), 1, + ACTIONS(2332), 1, anon_sym_LPAREN, - STATE(2020), 1, + STATE(2015), 1, sym_formal_parameters, - STATE(2329), 1, + STATE(2317), 1, sym__call_signature, - STATE(2862), 1, + STATE(2918), 1, sym_type_parameters, - [99723] = 2, + [99930] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4508), 5, + ACTIONS(1967), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [99734] = 2, + [99941] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2284), 5, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [99745] = 2, + ACTIONS(1678), 1, + anon_sym_LT, + ACTIONS(2332), 1, + anon_sym_LPAREN, + STATE(2015), 1, + sym_formal_parameters, + STATE(2393), 1, + sym__call_signature, + STATE(2918), 1, + sym_type_parameters, + [99960] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2099), 5, + ACTIONS(1971), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [99756] = 2, + [99971] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4821), 5, + ACTIONS(4552), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [99767] = 2, + [99982] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4823), 5, + ACTIONS(2003), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [99778] = 2, + [99993] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4825), 5, + ACTIONS(1851), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [99789] = 4, + [100004] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4239), 1, + ACTIONS(4261), 1, anon_sym_EQ, - STATE(2618), 1, + STATE(2615), 1, sym__initializer, - ACTIONS(4827), 3, + ACTIONS(4843), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [99804] = 2, + [100019] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4829), 5, + ACTIONS(4261), 1, anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_implements, - anon_sym_extends, - [99815] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1987), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [99826] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4554), 1, - anon_sym_COLON, - ACTIONS(4831), 1, - anon_sym_EQ_GT, - STATE(2968), 3, - sym_type_annotation, - sym_asserts, - sym_type_predicate_annotation, - [99841] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2901), 5, + STATE(2681), 1, + sym__initializer, + ACTIONS(4845), 3, sym__automatic_semicolon, - anon_sym_EQ, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_COLON, - [99852] = 2, + [100034] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1855), 5, + ACTIONS(4522), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [99863] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4797), 1, - anon_sym_LBRACE, - STATE(1827), 1, - sym_statement_block, - ACTIONS(4426), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [99878] = 2, + [100045] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1819), 5, + ACTIONS(1823), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [99889] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1691), 1, - anon_sym_LT, - ACTIONS(2306), 1, - anon_sym_LPAREN, - STATE(2020), 1, - sym_formal_parameters, - STATE(2347), 1, - sym__call_signature, - STATE(2862), 1, - sym_type_parameters, - [99908] = 2, + [100056] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1023), 5, + ACTIONS(1887), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [99919] = 4, + [100067] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4797), 1, - anon_sym_LBRACE, - STATE(1828), 1, - sym_statement_block, - ACTIONS(4508), 3, + ACTIONS(4847), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [99934] = 4, + anon_sym_PIPE_RBRACE, + [100078] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4239), 1, + ACTIONS(4261), 1, anon_sym_EQ, - STATE(2689), 1, + STATE(2630), 1, sym__initializer, - ACTIONS(4833), 3, + ACTIONS(4849), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [99949] = 4, + [100093] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4239), 1, + ACTIONS(4261), 1, anon_sym_EQ, - STATE(2693), 1, + STATE(2755), 1, sym__initializer, - ACTIONS(4835), 3, + ACTIONS(4851), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [99964] = 4, + [100108] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1089), 1, - anon_sym_DOT, - ACTIONS(1413), 1, + ACTIONS(1678), 1, + anon_sym_LT, + ACTIONS(2332), 1, + anon_sym_LPAREN, + STATE(2015), 1, + sym_formal_parameters, + STATE(2692), 1, + sym__call_signature, + STATE(2918), 1, + sym_type_parameters, + [100127] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3363), 1, anon_sym_LBRACE, - ACTIONS(1411), 3, - anon_sym_COMMA, + ACTIONS(4699), 1, anon_sym_LT, + STATE(2702), 1, + sym_type_arguments, + ACTIONS(3347), 2, + anon_sym_COMMA, anon_sym_LBRACE_PIPE, - [99979] = 6, + [100144] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1691), 1, + ACTIONS(1678), 1, anon_sym_LT, - ACTIONS(2306), 1, + ACTIONS(2332), 1, anon_sym_LPAREN, - STATE(2020), 1, + STATE(2015), 1, sym_formal_parameters, - STATE(2694), 1, + STATE(2531), 1, sym__call_signature, - STATE(2862), 1, + STATE(2918), 1, sym_type_parameters, - [99998] = 6, + [100163] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4771), 1, + anon_sym_COLON, + ACTIONS(4853), 1, + anon_sym_EQ_GT, + STATE(2991), 3, + sym_type_annotation, + sym_asserts, + sym_type_predicate_annotation, + [100178] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1691), 1, + ACTIONS(1678), 1, anon_sym_LT, - ACTIONS(4432), 1, + ACTIONS(4444), 1, anon_sym_LPAREN, - STATE(2157), 1, + STATE(2253), 1, sym_formal_parameters, - STATE(2850), 1, + STATE(2827), 1, sym_type_parameters, STATE(2930), 1, sym__call_signature, - [100017] = 2, + [100197] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2724), 5, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [100208] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1043), 5, + ACTIONS(2067), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [100028] = 2, + [100219] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1863), 5, + ACTIONS(4261), 1, + anon_sym_EQ, + STATE(2694), 1, + sym__initializer, + ACTIONS(4855), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [100039] = 2, + [100234] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(981), 5, + ACTIONS(1843), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [100050] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1691), 1, - anon_sym_LT, - ACTIONS(4432), 1, - anon_sym_LPAREN, - STATE(2157), 1, - sym_formal_parameters, - STATE(2850), 1, - sym_type_parameters, - STATE(2923), 1, - sym__call_signature, - [100069] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1691), 1, - anon_sym_LT, - ACTIONS(4432), 1, - anon_sym_LPAREN, - STATE(2157), 1, - sym_formal_parameters, - STATE(2850), 1, - sym_type_parameters, - STATE(2966), 1, - sym__call_signature, - [100088] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1691), 1, - anon_sym_LT, - ACTIONS(4432), 1, - anon_sym_LPAREN, - STATE(2157), 1, - sym_formal_parameters, - STATE(2850), 1, - sym_type_parameters, - STATE(2979), 1, - sym__call_signature, - [100107] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4837), 5, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [100118] = 2, + [100245] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1875), 5, + ACTIONS(969), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [100129] = 2, + [100256] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1955), 5, + ACTIONS(1041), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [100140] = 2, + [100267] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4839), 5, + ACTIONS(913), 5, anon_sym_EQ, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, anon_sym_QMARK, - [100151] = 6, + [100278] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(4841), 1, - anon_sym_export, - ACTIONS(4843), 1, - anon_sym_class, - STATE(1874), 1, - aux_sym_export_statement_repeat1, - STATE(1905), 1, - sym_decorator, - [100170] = 2, + ACTIONS(2927), 5, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [100289] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4623), 5, + ACTIONS(949), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [100181] = 2, + [100300] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4845), 5, + ACTIONS(1939), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [100192] = 2, + [100311] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4510), 5, + ACTIONS(1071), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [100203] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1691), 1, - anon_sym_LT, - ACTIONS(4432), 1, - anon_sym_LPAREN, - STATE(2157), 1, - sym_formal_parameters, - STATE(2850), 1, - sym_type_parameters, - STATE(2895), 1, - sym__call_signature, - [100222] = 2, + [100322] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4486), 5, - sym__automatic_semicolon, + ACTIONS(4490), 1, + anon_sym_EQ, + ACTIONS(4857), 1, anon_sym_COMMA, + ACTIONS(4859), 1, anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [100233] = 2, + STATE(2724), 1, + aux_sym_enum_body_repeat1, + STATE(2844), 1, + sym__initializer, + [100341] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1971), 5, - sym__automatic_semicolon, + ACTIONS(3680), 5, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [100244] = 2, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [100352] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2897), 5, - sym__automatic_semicolon, + ACTIONS(2905), 5, anon_sym_EQ, anon_sym_COMMA, - anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_COLON, - [100255] = 6, + anon_sym_QMARK, + [100363] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(497), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(929), 1, + anon_sym_LBRACE, + ACTIONS(4486), 1, + anon_sym_extends, + STATE(572), 1, + sym_object_type, + STATE(2675), 1, + sym_extends_clause, + [100382] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1691), 1, + ACTIONS(1678), 1, anon_sym_LT, - ACTIONS(2306), 1, + ACTIONS(2332), 1, anon_sym_LPAREN, - STATE(2020), 1, + STATE(2015), 1, sym_formal_parameters, - STATE(2375), 1, + STATE(2612), 1, sym__call_signature, - STATE(2862), 1, + STATE(2918), 1, sym_type_parameters, - [100274] = 2, + [100401] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4518), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [100285] = 3, + ACTIONS(4861), 5, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_implements, + anon_sym_extends, + [100412] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2692), 1, + ACTIONS(3682), 5, anon_sym_EQ, - ACTIONS(3572), 4, - anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_COLON, - anon_sym_LT, anon_sym_QMARK, - [100298] = 2, + [100423] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4847), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [100309] = 2, + ACTIONS(4771), 1, + anon_sym_COLON, + ACTIONS(4863), 1, + anon_sym_EQ_GT, + STATE(2905), 3, + sym_type_annotation, + sym_asserts, + sym_type_predicate_annotation, + [100438] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1967), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [100320] = 2, + ACTIONS(4771), 1, + anon_sym_COLON, + ACTIONS(4865), 1, + anon_sym_EQ_GT, + STATE(2991), 3, + sym_type_annotation, + sym_asserts, + sym_type_predicate_annotation, + [100453] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1963), 5, + ACTIONS(1947), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [100331] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4231), 1, - anon_sym_AMP, - ACTIONS(4233), 1, - anon_sym_PIPE, - ACTIONS(4235), 1, - anon_sym_extends, - ACTIONS(1762), 2, - anon_sym_else, - anon_sym_while, - [100348] = 2, + [100464] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2893), 5, - sym__automatic_semicolon, + ACTIONS(1724), 5, anon_sym_EQ, anon_sym_COMMA, - anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_COLON, - [100359] = 2, + anon_sym_QMARK, + [100475] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1951), 5, + ACTIONS(1943), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [100370] = 4, + [100486] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4819), 1, + anon_sym_LBRACE, + STATE(1838), 1, + sym_statement_block, + ACTIONS(4552), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [100501] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4554), 1, + ACTIONS(4771), 1, anon_sym_COLON, - ACTIONS(4849), 1, + ACTIONS(4867), 1, anon_sym_EQ_GT, - STATE(2968), 3, + STATE(2991), 3, sym_type_annotation, sym_asserts, sym_type_predicate_annotation, - [100385] = 2, + [100516] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4851), 5, + ACTIONS(1931), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [100396] = 2, + [100527] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1053), 5, + ACTIONS(1903), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [100407] = 2, + [100538] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4853), 5, + ACTIONS(1935), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [100418] = 4, + [100549] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4797), 1, - anon_sym_LBRACE, - STATE(1839), 1, - sym_statement_block, - ACTIONS(4510), 3, + ACTIONS(4869), 5, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [100560] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4871), 5, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [100571] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4341), 5, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [100582] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2308), 5, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [100593] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2895), 5, sym__automatic_semicolon, + anon_sym_EQ, anon_sym_COMMA, anon_sym_SEMI, - [100433] = 2, + anon_sym_COLON, + [100604] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2047), 5, @@ -149004,3404 +149491,3447 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [100444] = 6, + [100615] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1691), 1, + ACTIONS(1678), 1, anon_sym_LT, - ACTIONS(2306), 1, + ACTIONS(4444), 1, anon_sym_LPAREN, - STATE(2020), 1, + STATE(2253), 1, sym_formal_parameters, - STATE(2381), 1, + STATE(2827), 1, + sym_type_parameters, + STATE(2872), 1, + sym__call_signature, + [100634] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1678), 1, + anon_sym_LT, + ACTIONS(4444), 1, + anon_sym_LPAREN, + STATE(2253), 1, + sym_formal_parameters, + STATE(2802), 1, sym__call_signature, - STATE(2862), 1, + STATE(2827), 1, sym_type_parameters, - [100463] = 4, + [100653] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4797), 1, - anon_sym_LBRACE, - STATE(1841), 1, - sym_statement_block, - ACTIONS(4518), 3, - sym__automatic_semicolon, + ACTIONS(2909), 5, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_SEMI, - [100478] = 6, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [100664] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1691), 1, + ACTIONS(1678), 1, anon_sym_LT, - ACTIONS(4432), 1, + ACTIONS(2332), 1, anon_sym_LPAREN, - STATE(2157), 1, + STATE(2015), 1, sym_formal_parameters, - STATE(2850), 1, - sym_type_parameters, - STATE(2865), 1, + STATE(2571), 1, sym__call_signature, - [100497] = 4, + STATE(2918), 1, + sym_type_parameters, + [100683] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4239), 1, + ACTIONS(4261), 1, anon_sym_EQ, - STATE(2728), 1, + STATE(2761), 1, sym__initializer, - ACTIONS(4855), 3, + ACTIONS(4873), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [100512] = 2, + [100698] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1033), 5, + ACTIONS(2051), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [100523] = 6, + [100709] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1691), 1, + ACTIONS(1678), 1, anon_sym_LT, - ACTIONS(4432), 1, + ACTIONS(4444), 1, anon_sym_LPAREN, - STATE(2157), 1, + STATE(2253), 1, sym_formal_parameters, - STATE(2849), 1, - sym__call_signature, - STATE(2850), 1, + STATE(2827), 1, sym_type_parameters, - [100542] = 6, + STATE(2876), 1, + sym__call_signature, + [100728] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1691), 1, + ACTIONS(1678), 1, anon_sym_LT, - ACTIONS(4432), 1, + ACTIONS(4444), 1, anon_sym_LPAREN, - STATE(2157), 1, + STATE(2253), 1, sym_formal_parameters, - STATE(2833), 1, - sym__call_signature, - STATE(2850), 1, + STATE(2827), 1, sym_type_parameters, - [100561] = 4, + STATE(2877), 1, + sym__call_signature, + [100747] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4239), 1, - anon_sym_EQ, - STATE(2744), 1, - sym__initializer, - ACTIONS(4857), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [100576] = 2, + ACTIONS(1678), 1, + anon_sym_LT, + ACTIONS(4444), 1, + anon_sym_LPAREN, + STATE(2253), 1, + sym_formal_parameters, + STATE(2827), 1, + sym_type_parameters, + STATE(2942), 1, + sym__call_signature, + [100766] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1999), 5, + ACTIONS(2075), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [100587] = 6, + [100777] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(497), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(929), 1, - anon_sym_LBRACE, - ACTIONS(4472), 1, + ACTIONS(4239), 1, + anon_sym_AMP, + ACTIONS(4241), 1, + anon_sym_PIPE, + ACTIONS(4243), 1, anon_sym_extends, - STATE(600), 1, - sym_object_type, - STATE(2753), 1, - sym_extends_clause, - [100606] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2051), 5, - sym__automatic_semicolon, + ACTIONS(4875), 2, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [100617] = 6, + anon_sym_GT, + [100794] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1691), 1, + ACTIONS(1678), 1, anon_sym_LT, - ACTIONS(2306), 1, + ACTIONS(4444), 1, anon_sym_LPAREN, - STATE(2020), 1, + STATE(2253), 1, sym_formal_parameters, - STATE(2734), 1, - sym__call_signature, - STATE(2862), 1, + STATE(2827), 1, sym_type_parameters, - [100636] = 6, + STATE(2979), 1, + sym__call_signature, + [100813] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(747), 1, + ACTIONS(2901), 5, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_COLON, + [100824] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(765), 1, anon_sym_LBRACE_PIPE, - ACTIONS(2554), 1, + ACTIONS(2591), 1, anon_sym_LBRACE, - ACTIONS(4472), 1, + ACTIONS(4486), 1, anon_sym_extends, - STATE(2270), 1, + STATE(2350), 1, sym_object_type, - STATE(2603), 1, + STATE(2739), 1, sym_extends_clause, - [100655] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1691), 1, - anon_sym_LT, - ACTIONS(4432), 1, - anon_sym_LPAREN, - STATE(2157), 1, - sym_formal_parameters, - STATE(2805), 1, - sym__call_signature, - STATE(2850), 1, - sym_type_parameters, - [100674] = 2, + [100843] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4536), 5, + ACTIONS(4261), 1, + anon_sym_EQ, + STATE(2759), 1, + sym__initializer, + ACTIONS(4877), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [100685] = 2, + [100858] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1728), 5, - anon_sym_EQ, + ACTIONS(4231), 1, + anon_sym_LT, + STATE(372), 1, + sym_type_arguments, + ACTIONS(3347), 3, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [100696] = 6, + anon_sym_implements, + [100873] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1691), 1, - anon_sym_LT, - ACTIONS(4432), 1, + ACTIONS(2724), 1, + anon_sym_EQ, + ACTIONS(3585), 4, anon_sym_LPAREN, - STATE(2157), 1, - sym_formal_parameters, - STATE(2811), 1, - sym__call_signature, - STATE(2850), 1, - sym_type_parameters, - [100715] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1691), 1, + anon_sym_COLON, anon_sym_LT, - ACTIONS(4432), 1, - anon_sym_LPAREN, - STATE(2157), 1, - sym_formal_parameters, - STATE(2850), 1, - sym_type_parameters, - STATE(2949), 1, - sym__call_signature, - [100734] = 2, + anon_sym_QMARK, + [100886] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4859), 5, + ACTIONS(2889), 5, sym__automatic_semicolon, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [100745] = 2, + anon_sym_COLON, + [100897] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4861), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [100756] = 2, + ACTIONS(1678), 1, + anon_sym_LT, + ACTIONS(2332), 1, + anon_sym_LPAREN, + STATE(2015), 1, + sym_formal_parameters, + STATE(2529), 1, + sym__call_signature, + STATE(2918), 1, + sym_type_parameters, + [100916] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2063), 5, + ACTIONS(4542), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [100767] = 2, + [100927] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(999), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [100778] = 4, + ACTIONS(1678), 1, + anon_sym_LT, + ACTIONS(4444), 1, + anon_sym_LPAREN, + STATE(2253), 1, + sym_formal_parameters, + STATE(2827), 1, + sym_type_parameters, + STATE(2997), 1, + sym__call_signature, + [100946] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4554), 1, + ACTIONS(4771), 1, anon_sym_COLON, - ACTIONS(4863), 1, + ACTIONS(4879), 1, anon_sym_EQ_GT, - STATE(2876), 3, + STATE(2991), 3, sym_type_annotation, sym_asserts, sym_type_predicate_annotation, - [100793] = 2, + [100961] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3709), 5, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [100804] = 2, + ACTIONS(1678), 1, + anon_sym_LT, + ACTIONS(2332), 1, + anon_sym_LPAREN, + STATE(2015), 1, + sym_formal_parameters, + STATE(2493), 1, + sym__call_signature, + STATE(2918), 1, + sym_type_parameters, + [100980] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1111), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [100815] = 2, + ACTIONS(1678), 1, + anon_sym_LT, + ACTIONS(2332), 1, + anon_sym_LPAREN, + STATE(2015), 1, + sym_formal_parameters, + STATE(2440), 1, + sym__call_signature, + STATE(2918), 1, + sym_type_parameters, + [100999] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4865), 5, + ACTIONS(4526), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [100826] = 2, + [101010] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1678), 1, + anon_sym_LT, + ACTIONS(4444), 1, + anon_sym_LPAREN, + STATE(2253), 1, + sym_formal_parameters, + STATE(2827), 1, + sym_type_parameters, + STATE(2980), 1, + sym__call_signature, + [101029] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4520), 5, + ACTIONS(4881), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [100837] = 6, + [101040] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1691), 1, + ACTIONS(1678), 1, anon_sym_LT, - ACTIONS(2306), 1, + ACTIONS(4444), 1, anon_sym_LPAREN, - STATE(2020), 1, + STATE(2253), 1, sym_formal_parameters, - STATE(2388), 1, - sym__call_signature, - STATE(2862), 1, + STATE(2827), 1, sym_type_parameters, - [100856] = 2, + STATE(2951), 1, + sym__call_signature, + [101059] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4516), 5, + ACTIONS(1081), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [100867] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3699), 5, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [100878] = 2, + [101070] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4867), 5, + ACTIONS(4883), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [100889] = 2, + [101081] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1943), 5, + ACTIONS(1979), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [100900] = 4, + [101092] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4797), 1, + ACTIONS(4819), 1, anon_sym_LBRACE, - STATE(1823), 1, + STATE(1835), 1, sym_statement_block, - ACTIONS(4520), 3, + ACTIONS(4542), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [100915] = 6, + [101107] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4687), 1, + sym_identifier, + ACTIONS(4885), 1, + anon_sym_RBRACE, + STATE(2900), 1, + sym__import_export_specifier, + ACTIONS(4693), 2, + anon_sym_type, + anon_sym_typeof, + [101124] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1691), 1, + ACTIONS(1678), 1, anon_sym_LT, - ACTIONS(2306), 1, + ACTIONS(2332), 1, anon_sym_LPAREN, - STATE(2020), 1, + STATE(2015), 1, sym_formal_parameters, - STATE(2400), 1, + STATE(2456), 1, sym__call_signature, - STATE(2862), 1, + STATE(2918), 1, sym_type_parameters, - [100934] = 4, + [101143] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4797), 1, - anon_sym_LBRACE, - STATE(1824), 1, - sym_statement_block, - ACTIONS(4516), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [100949] = 4, + ACTIONS(1678), 1, + anon_sym_LT, + ACTIONS(4444), 1, + anon_sym_LPAREN, + STATE(2253), 1, + sym_formal_parameters, + STATE(2827), 1, + sym_type_parameters, + STATE(2890), 1, + sym__call_signature, + [101162] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4239), 1, - anon_sym_EQ, - STATE(2741), 1, - sym__initializer, - ACTIONS(4869), 3, + ACTIONS(4819), 1, + anon_sym_LBRACE, + STATE(1840), 1, + sym_statement_block, + ACTIONS(4526), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [100964] = 2, + [101177] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4538), 5, + ACTIONS(1991), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [100975] = 2, + [101188] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2901), 5, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [100986] = 2, + ACTIONS(1678), 1, + anon_sym_LT, + ACTIONS(4444), 1, + anon_sym_LPAREN, + STATE(2253), 1, + sym_formal_parameters, + STATE(2827), 1, + sym_type_parameters, + STATE(2953), 1, + sym__call_signature, + [101207] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4871), 5, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_implements, - anon_sym_extends, - [100997] = 2, + ACTIONS(4687), 1, + sym_identifier, + ACTIONS(4887), 1, + anon_sym_RBRACE, + STATE(2860), 1, + sym__import_export_specifier, + ACTIONS(4693), 2, + anon_sym_type, + anon_sym_typeof, + [101224] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4526), 5, + ACTIONS(1827), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [101008] = 2, + [101235] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4873), 5, + ACTIONS(4889), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [101019] = 2, + [101246] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2897), 5, + ACTIONS(4261), 1, anon_sym_EQ, + STATE(2793), 1, + sym__initializer, + ACTIONS(4891), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [101030] = 2, + anon_sym_SEMI, + [101261] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1678), 1, + anon_sym_LT, + ACTIONS(4444), 1, + anon_sym_LPAREN, + STATE(2253), 1, + sym_formal_parameters, + STATE(2794), 1, + sym__call_signature, + STATE(2827), 1, + sym_type_parameters, + [101280] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2893), 5, - anon_sym_EQ, + ACTIONS(4500), 5, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [101041] = 5, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [101291] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4334), 1, + ACTIONS(4352), 1, anon_sym_AMP, - ACTIONS(4338), 1, + ACTIONS(4356), 1, anon_sym_extends, - ACTIONS(4877), 1, + ACTIONS(4895), 1, anon_sym_PIPE, - ACTIONS(4875), 2, + ACTIONS(4893), 2, sym__automatic_semicolon, anon_sym_SEMI, - [101058] = 2, + [101308] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4879), 5, + ACTIONS(4897), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [101069] = 6, + [101319] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1691), 1, - anon_sym_LT, - ACTIONS(2306), 1, - anon_sym_LPAREN, - STATE(2020), 1, - sym_formal_parameters, - STATE(2420), 1, - sym__call_signature, - STATE(2862), 1, - sym_type_parameters, - [101088] = 2, + ACTIONS(913), 5, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_COLON, + [101330] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4532), 5, + ACTIONS(2059), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [101099] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4602), 1, - sym_identifier, - ACTIONS(4881), 1, - anon_sym_RBRACE, - STATE(2817), 1, - sym__import_export_specifier, - ACTIONS(4608), 2, - anon_sym_type, - anon_sym_typeof, - [101116] = 6, + [101341] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1691), 1, + ACTIONS(1678), 1, anon_sym_LT, - ACTIONS(2306), 1, + ACTIONS(2332), 1, anon_sym_LPAREN, - STATE(2020), 1, + STATE(2015), 1, sym_formal_parameters, - STATE(2550), 1, + STATE(2495), 1, sym__call_signature, - STATE(2862), 1, + STATE(2918), 1, sym_type_parameters, - [101135] = 6, + [101360] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1691), 1, + ACTIONS(1678), 1, anon_sym_LT, - ACTIONS(4432), 1, + ACTIONS(4444), 1, anon_sym_LPAREN, - STATE(2157), 1, + STATE(2253), 1, sym_formal_parameters, - STATE(2801), 1, - sym__call_signature, - STATE(2850), 1, + STATE(2827), 1, sym_type_parameters, - [101154] = 6, + STATE(2896), 1, + sym__call_signature, + [101379] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1691), 1, + ACTIONS(1678), 1, anon_sym_LT, - ACTIONS(2306), 1, + ACTIONS(4444), 1, anon_sym_LPAREN, - STATE(2020), 1, + STATE(2253), 1, sym_formal_parameters, - STATE(2112), 1, - sym__call_signature, - STATE(2862), 1, + STATE(2827), 1, sym_type_parameters, - [101173] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4797), 1, - anon_sym_LBRACE, - STATE(1842), 1, - sym_statement_block, - ACTIONS(4526), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [101188] = 6, + STATE(2967), 1, + sym__call_signature, + [101398] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1691), 1, + ACTIONS(1678), 1, anon_sym_LT, - ACTIONS(2306), 1, + ACTIONS(4444), 1, anon_sym_LPAREN, - STATE(2020), 1, + STATE(2253), 1, sym_formal_parameters, - STATE(2131), 1, - sym__call_signature, - STATE(2862), 1, + STATE(2827), 1, sym_type_parameters, - [101207] = 6, + STATE(2889), 1, + sym__call_signature, + [101417] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1691), 1, - anon_sym_LT, - ACTIONS(2306), 1, - anon_sym_LPAREN, - STATE(2020), 1, - sym_formal_parameters, - STATE(2422), 1, - sym__call_signature, - STATE(2862), 1, - sym_type_parameters, - [101226] = 6, + ACTIONS(4261), 1, + anon_sym_EQ, + STATE(2791), 1, + sym__initializer, + ACTIONS(4899), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [101432] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1691), 1, - anon_sym_LT, - ACTIONS(2306), 1, - anon_sym_LPAREN, - STATE(2020), 1, - sym_formal_parameters, - STATE(2495), 1, - sym__call_signature, - STATE(2862), 1, - sym_type_parameters, - [101245] = 6, + ACTIONS(2019), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [101443] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4239), 1, + anon_sym_AMP, + ACTIONS(4241), 1, + anon_sym_PIPE, + ACTIONS(4243), 1, + anon_sym_extends, + ACTIONS(4420), 2, + anon_sym_LBRACE, + anon_sym_EQ_GT, + [101460] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1691), 1, + ACTIONS(1678), 1, anon_sym_LT, - ACTIONS(4432), 1, + ACTIONS(2332), 1, anon_sym_LPAREN, - STATE(2157), 1, + STATE(2015), 1, sym_formal_parameters, - STATE(2837), 1, + STATE(2789), 1, sym__call_signature, - STATE(2850), 1, + STATE(2918), 1, sym_type_parameters, - [101264] = 4, + [101479] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4554), 1, - anon_sym_COLON, - ACTIONS(4883), 1, - anon_sym_EQ_GT, - STATE(2876), 3, - sym_type_annotation, - sym_asserts, - sym_type_predicate_annotation, - [101279] = 2, + ACTIONS(2007), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [101490] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4885), 5, + ACTIONS(1999), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [101290] = 6, + [101501] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1691), 1, + ACTIONS(1678), 1, anon_sym_LT, - ACTIONS(2306), 1, + ACTIONS(4444), 1, anon_sym_LPAREN, - STATE(2020), 1, + STATE(2253), 1, sym_formal_parameters, - STATE(2128), 1, - sym__call_signature, - STATE(2862), 1, + STATE(2827), 1, sym_type_parameters, - [101309] = 6, + STATE(2832), 1, + sym__call_signature, + [101520] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1691), 1, + ACTIONS(1678), 1, anon_sym_LT, - ACTIONS(4432), 1, + ACTIONS(2332), 1, anon_sym_LPAREN, - STATE(2157), 1, + STATE(2015), 1, sym_formal_parameters, - STATE(2842), 1, + STATE(2124), 1, sym__call_signature, - STATE(2850), 1, + STATE(2918), 1, sym_type_parameters, - [101328] = 4, + [101539] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4797), 1, - anon_sym_LBRACE, - STATE(1837), 1, - sym_statement_block, - ACTIONS(4532), 3, + ACTIONS(4352), 1, + anon_sym_AMP, + ACTIONS(4356), 1, + anon_sym_extends, + ACTIONS(4895), 1, + anon_sym_PIPE, + ACTIONS(4901), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [101343] = 2, + [101556] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2692), 5, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [101354] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1691), 1, + ACTIONS(1678), 1, anon_sym_LT, - ACTIONS(2306), 1, + ACTIONS(4444), 1, anon_sym_LPAREN, - STATE(2020), 1, + STATE(2253), 1, sym_formal_parameters, - STATE(2121), 1, + STATE(2799), 1, sym__call_signature, - STATE(2862), 1, + STATE(2827), 1, sym_type_parameters, - [101373] = 6, + [101575] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(4566), 1, + anon_sym_abstract, + ACTIONS(4903), 1, + anon_sym_class, + STATE(1877), 1, + aux_sym_export_statement_repeat1, + STATE(1890), 1, + sym_decorator, + [101594] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4771), 1, + anon_sym_COLON, + ACTIONS(4905), 1, + anon_sym_EQ_GT, + STATE(2905), 3, + sym_type_annotation, + sym_asserts, + sym_type_predicate_annotation, + [101609] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1691), 1, + ACTIONS(1678), 1, anon_sym_LT, - ACTIONS(2306), 1, + ACTIONS(2332), 1, anon_sym_LPAREN, - STATE(2020), 1, + STATE(2015), 1, sym_formal_parameters, - STATE(2070), 1, + STATE(2139), 1, sym__call_signature, - STATE(2862), 1, + STATE(2918), 1, sym_type_parameters, - [101392] = 2, + [101628] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4887), 5, + ACTIONS(4907), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [101403] = 2, + [101639] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(913), 5, - anon_sym_EQ, + ACTIONS(4909), 5, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [101414] = 5, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [101650] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4231), 1, + ACTIONS(4352), 1, anon_sym_AMP, - ACTIONS(4233), 1, - anon_sym_PIPE, - ACTIONS(4235), 1, + ACTIONS(4356), 1, anon_sym_extends, - ACTIONS(4889), 2, + ACTIONS(4895), 1, + anon_sym_PIPE, + ACTIONS(4911), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [101667] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4771), 1, + anon_sym_COLON, + ACTIONS(4913), 1, + anon_sym_EQ_GT, + STATE(2905), 3, + sym_type_annotation, + sym_asserts, + sym_type_predicate_annotation, + [101682] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1867), 5, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_GT, - [101431] = 6, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [101693] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1691), 1, + ACTIONS(995), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [101704] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1678), 1, anon_sym_LT, - ACTIONS(4432), 1, + ACTIONS(4444), 1, anon_sym_LPAREN, - STATE(2157), 1, + STATE(2253), 1, sym_formal_parameters, - STATE(2793), 1, + STATE(2827), 1, + sym_type_parameters, + STATE(2881), 1, sym__call_signature, - STATE(2850), 1, + [101723] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1678), 1, + anon_sym_LT, + ACTIONS(4444), 1, + anon_sym_LPAREN, + STATE(2253), 1, + sym_formal_parameters, + STATE(2827), 1, sym_type_parameters, - [101450] = 2, + STATE(2873), 1, + sym__call_signature, + [101742] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2882), 5, - anon_sym_EQ, + ACTIONS(1111), 5, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [101461] = 2, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [101753] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4891), 5, + ACTIONS(1927), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [101472] = 2, + [101764] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2876), 5, + ACTIONS(2724), 5, + sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_SEMI, anon_sym_COLON, - anon_sym_QMARK, - [101483] = 2, + [101775] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4500), 5, + ACTIONS(4915), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [101494] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1691), 1, - anon_sym_LT, - ACTIONS(4432), 1, - anon_sym_LPAREN, - STATE(2157), 1, - sym_formal_parameters, - STATE(2839), 1, - sym__call_signature, - STATE(2850), 1, - sym_type_parameters, - [101513] = 4, + [101786] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4797), 1, + ACTIONS(1728), 1, anon_sym_LBRACE, - STATE(1836), 1, - sym_statement_block, - ACTIONS(4500), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [101528] = 2, + ACTIONS(4018), 1, + anon_sym_LBRACK, + ACTIONS(4917), 1, + sym_identifier, + STATE(3153), 1, + sym_object, + STATE(3154), 1, + sym_array, + [101805] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2011), 5, + ACTIONS(4524), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [101539] = 6, + [101816] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1691), 1, + ACTIONS(1678), 1, anon_sym_LT, - ACTIONS(2306), 1, + ACTIONS(2332), 1, anon_sym_LPAREN, - STATE(2020), 1, + STATE(2015), 1, sym_formal_parameters, - STATE(2282), 1, + STATE(2475), 1, sym__call_signature, - STATE(2862), 1, + STATE(2918), 1, sym_type_parameters, - [101558] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4334), 1, - anon_sym_AMP, - ACTIONS(4338), 1, - anon_sym_extends, - ACTIONS(4877), 1, - anon_sym_PIPE, - ACTIONS(4893), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [101575] = 2, + [101835] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1093), 5, + ACTIONS(4518), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [101586] = 6, + [101846] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4687), 1, + sym_identifier, + ACTIONS(4919), 1, + anon_sym_RBRACE, + STATE(2900), 1, + sym__import_export_specifier, + ACTIONS(4693), 2, + anon_sym_type, + anon_sym_typeof, + [101863] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1691), 1, + ACTIONS(1678), 1, anon_sym_LT, - ACTIONS(4432), 1, + ACTIONS(2332), 1, anon_sym_LPAREN, - STATE(2157), 1, + STATE(2015), 1, sym_formal_parameters, - STATE(2850), 1, - sym_type_parameters, - STATE(2868), 1, + STATE(2126), 1, sym__call_signature, - [101605] = 6, + STATE(2918), 1, + sym_type_parameters, + [101882] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1691), 1, + ACTIONS(1678), 1, anon_sym_LT, - ACTIONS(4432), 1, + ACTIONS(2332), 1, anon_sym_LPAREN, - STATE(2157), 1, + STATE(2015), 1, sym_formal_parameters, - STATE(2850), 1, - sym_type_parameters, - STATE(2877), 1, + STATE(2554), 1, sym__call_signature, - [101624] = 2, + STATE(2918), 1, + sym_type_parameters, + [101901] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1911), 5, + ACTIONS(2927), 5, sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [101635] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2905), 5, anon_sym_EQ, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_SEMI, anon_sym_COLON, - anon_sym_QMARK, - [101646] = 2, + [101912] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1093), 5, - sym__automatic_semicolon, + ACTIONS(4490), 1, + anon_sym_EQ, + ACTIONS(4921), 1, anon_sym_COMMA, + ACTIONS(4923), 1, anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [101657] = 6, + STATE(2782), 1, + aux_sym_enum_body_repeat1, + STATE(2844), 1, + sym__initializer, + [101931] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1691), 1, + ACTIONS(1678), 1, anon_sym_LT, - ACTIONS(2306), 1, + ACTIONS(4444), 1, anon_sym_LPAREN, - STATE(2020), 1, + STATE(2253), 1, sym_formal_parameters, - STATE(2502), 1, - sym__call_signature, - STATE(2862), 1, + STATE(2827), 1, sym_type_parameters, - [101676] = 6, + STATE(2828), 1, + sym__call_signature, + [101950] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4460), 1, - anon_sym_EQ, - ACTIONS(4895), 1, - anon_sym_COMMA, - ACTIONS(4897), 1, - anon_sym_RBRACE, - STATE(2776), 1, - aux_sym_enum_body_repeat1, - STATE(2806), 1, - sym__initializer, - [101695] = 2, + ACTIONS(1678), 1, + anon_sym_LT, + ACTIONS(2332), 1, + anon_sym_LPAREN, + STATE(2015), 1, + sym_formal_parameters, + STATE(2109), 1, + sym__call_signature, + STATE(2918), 1, + sym_type_parameters, + [101969] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4899), 5, + ACTIONS(4819), 1, + anon_sym_LBRACE, + STATE(1846), 1, + sym_statement_block, + ACTIONS(4450), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [101706] = 2, + [101984] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4506), 5, + ACTIONS(1819), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [101717] = 6, + [101995] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1691), 1, + ACTIONS(945), 1, + anon_sym_DOT, + ACTIONS(1457), 1, + anon_sym_LBRACE, + ACTIONS(1455), 3, + anon_sym_COMMA, anon_sym_LT, - ACTIONS(4432), 1, - anon_sym_LPAREN, - STATE(2157), 1, - sym_formal_parameters, - STATE(2850), 1, - sym_type_parameters, - STATE(2918), 1, - sym__call_signature, - [101736] = 6, + anon_sym_LBRACE_PIPE, + [102010] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1691), 1, + ACTIONS(1678), 1, anon_sym_LT, - ACTIONS(4432), 1, + ACTIONS(4444), 1, anon_sym_LPAREN, - STATE(2157), 1, + STATE(2253), 1, sym_formal_parameters, - STATE(2850), 1, - sym_type_parameters, - STATE(2871), 1, + STATE(2815), 1, sym__call_signature, - [101755] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1691), 1, - anon_sym_LT, - ACTIONS(4432), 1, - anon_sym_LPAREN, - STATE(2157), 1, - sym_formal_parameters, - STATE(2850), 1, + STATE(2827), 1, sym_type_parameters, - STATE(2872), 1, - sym__call_signature, - [101774] = 6, + [102029] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1691), 1, + ACTIONS(1678), 1, anon_sym_LT, - ACTIONS(2306), 1, + ACTIONS(4444), 1, anon_sym_LPAREN, - STATE(2020), 1, + STATE(2253), 1, sym_formal_parameters, - STATE(2509), 1, - sym__call_signature, - STATE(2862), 1, + STATE(2827), 1, sym_type_parameters, - [101793] = 2, + STATE(2838), 1, + sym__call_signature, + [102048] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2003), 5, + ACTIONS(4925), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [101804] = 6, + [102059] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4819), 1, + anon_sym_LBRACE, + STATE(1842), 1, + sym_statement_block, + ACTIONS(4524), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [102074] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1691), 1, + ACTIONS(1678), 1, anon_sym_LT, - ACTIONS(4432), 1, + ACTIONS(2332), 1, anon_sym_LPAREN, - STATE(2157), 1, + STATE(2015), 1, sym_formal_parameters, - STATE(2850), 1, - sym_type_parameters, - STATE(2943), 1, + STATE(2486), 1, sym__call_signature, - [101823] = 2, + STATE(2918), 1, + sym_type_parameters, + [102093] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2905), 5, + ACTIONS(1915), 5, sym__automatic_semicolon, - anon_sym_EQ, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COLON, - [101834] = 2, + anon_sym_PIPE_RBRACE, + [102104] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1995), 5, + ACTIONS(4927), 1, sym__automatic_semicolon, + ACTIONS(1051), 4, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [101845] = 3, + [102117] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4901), 1, + ACTIONS(4819), 1, + anon_sym_LBRACE, + STATE(1843), 1, + sym_statement_block, + ACTIONS(4518), 3, sym__automatic_semicolon, - ACTIONS(1101), 4, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [101858] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1691), 1, - anon_sym_LT, - ACTIONS(2306), 1, - anon_sym_LPAREN, - STATE(2020), 1, - sym_formal_parameters, - STATE(2522), 1, - sym__call_signature, - STATE(2862), 1, - sym_type_parameters, - [101877] = 5, + [102132] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4602), 1, - sym_identifier, - ACTIONS(4903), 1, + ACTIONS(4929), 1, + sym__automatic_semicolon, + ACTIONS(1023), 4, + anon_sym_COMMA, anon_sym_RBRACE, - STATE(2875), 1, - sym__import_export_specifier, - ACTIONS(4608), 2, - anon_sym_type, - anon_sym_typeof, - [101894] = 5, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [102145] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4334), 1, + ACTIONS(4352), 1, anon_sym_AMP, - ACTIONS(4338), 1, + ACTIONS(4356), 1, anon_sym_extends, - ACTIONS(4877), 1, + ACTIONS(4895), 1, anon_sym_PIPE, - ACTIONS(4905), 2, + ACTIONS(4931), 2, sym__automatic_semicolon, anon_sym_SEMI, - [101911] = 5, + [102162] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4602), 1, + ACTIONS(4687), 1, sym_identifier, - ACTIONS(4907), 1, + ACTIONS(4933), 1, anon_sym_RBRACE, - STATE(2875), 1, + STATE(2860), 1, sym__import_export_specifier, - ACTIONS(4608), 2, + ACTIONS(4693), 2, anon_sym_type, anon_sym_typeof, - [101928] = 6, + [102179] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1691), 1, - anon_sym_LT, - ACTIONS(4432), 1, - anon_sym_LPAREN, - STATE(2157), 1, - sym_formal_parameters, - STATE(2828), 1, - sym__call_signature, - STATE(2850), 1, - sym_type_parameters, - [101947] = 5, + ACTIONS(4935), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [102190] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4334), 1, - anon_sym_AMP, - ACTIONS(4338), 1, - anon_sym_extends, - ACTIONS(4877), 1, - anon_sym_PIPE, - ACTIONS(4909), 2, + ACTIONS(4261), 1, + anon_sym_EQ, + STATE(2778), 1, + sym__initializer, + ACTIONS(4937), 3, sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - [101964] = 6, + [102205] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1691), 1, - anon_sym_LT, - ACTIONS(2306), 1, - anon_sym_LPAREN, - STATE(2020), 1, - sym_formal_parameters, - STATE(2535), 1, - sym__call_signature, - STATE(2862), 1, - sym_type_parameters, - [101983] = 6, + ACTIONS(4939), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [102216] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4448), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [102227] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1722), 1, + ACTIONS(4819), 1, anon_sym_LBRACE, - ACTIONS(4014), 1, - anon_sym_LBRACK, - ACTIONS(4911), 1, - sym_identifier, - STATE(3075), 1, - sym_object, - STATE(3155), 1, - sym_array, - [102002] = 2, + STATE(1828), 1, + sym_statement_block, + ACTIONS(4448), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [102242] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1033), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [102253] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1899), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [102264] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4571), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [102275] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4330), 5, + ACTIONS(4941), 5, anon_sym_EQ, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, anon_sym_QMARK, - [102013] = 2, + [102286] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2905), 5, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_COLON, + [102297] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1859), 5, + ACTIONS(1033), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [102024] = 2, + [102308] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1867), 5, + ACTIONS(4506), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [102035] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1691), 1, - anon_sym_LT, - ACTIONS(4432), 1, - anon_sym_LPAREN, - STATE(2157), 1, - sym_formal_parameters, - STATE(2819), 1, - sym__call_signature, - STATE(2850), 1, - sym_type_parameters, - [102054] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1691), 1, - anon_sym_LT, - ACTIONS(4432), 1, - anon_sym_LPAREN, - STATE(2157), 1, - sym_formal_parameters, - STATE(2850), 1, - sym_type_parameters, - STATE(2921), 1, - sym__call_signature, - [102073] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1691), 1, - anon_sym_LT, - ACTIONS(2306), 1, - anon_sym_LPAREN, - STATE(2020), 1, - sym_formal_parameters, - STATE(2517), 1, - sym__call_signature, - STATE(2862), 1, - sym_type_parameters, - [102092] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4460), 1, - anon_sym_EQ, - ACTIONS(4913), 1, - anon_sym_COMMA, - ACTIONS(4915), 1, - anon_sym_RBRACE, - STATE(2630), 1, - aux_sym_enum_body_repeat1, - STATE(2806), 1, - sym__initializer, - [102111] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4602), 1, - sym_identifier, - ACTIONS(4917), 1, - anon_sym_RBRACE, - STATE(2817), 1, - sym__import_export_specifier, - ACTIONS(4608), 2, - anon_sym_type, - anon_sym_typeof, - [102128] = 2, + [102319] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1959), 5, + ACTIONS(4943), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [102139] = 2, + [102330] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2876), 5, + ACTIONS(2909), 5, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, anon_sym_SEMI, anon_sym_COLON, - [102150] = 2, + [102341] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2882), 5, - sym__automatic_semicolon, + ACTIONS(4945), 5, anon_sym_EQ, anon_sym_COMMA, - anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_COLON, - [102161] = 2, + anon_sym_QMARK, + [102352] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(913), 5, + ACTIONS(4947), 5, sym__automatic_semicolon, - anon_sym_EQ, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COLON, - [102172] = 3, + anon_sym_PIPE_RBRACE, + [102363] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4919), 1, + ACTIONS(1678), 1, + anon_sym_LT, + ACTIONS(2332), 1, + anon_sym_LPAREN, + STATE(2015), 1, + sym_formal_parameters, + STATE(2467), 1, + sym__call_signature, + STATE(2918), 1, + sym_type_parameters, + [102382] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4450), 5, sym__automatic_semicolon, - ACTIONS(951), 4, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [102185] = 3, + [102393] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4921), 1, + ACTIONS(4949), 1, sym__automatic_semicolon, - ACTIONS(971), 4, + ACTIONS(1091), 4, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [102198] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4554), 1, - anon_sym_COLON, - ACTIONS(4923), 1, - anon_sym_EQ_GT, - STATE(2876), 3, - sym_type_annotation, - sym_asserts, - sym_type_predicate_annotation, - [102213] = 2, + [102406] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2015), 5, + ACTIONS(4951), 1, sym__automatic_semicolon, + ACTIONS(1101), 4, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [102224] = 2, + [102419] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1991), 5, + ACTIONS(4953), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [102235] = 2, + [102430] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4925), 5, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [102246] = 2, + ACTIONS(1678), 1, + anon_sym_LT, + ACTIONS(4444), 1, + anon_sym_LPAREN, + STATE(2253), 1, + sym_formal_parameters, + STATE(2827), 1, + sym_type_parameters, + STATE(2947), 1, + sym__call_signature, + [102449] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4927), 5, - anon_sym_EQ, + ACTIONS(4819), 1, + anon_sym_LBRACE, + STATE(1845), 1, + sym_statement_block, + ACTIONS(4506), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [102257] = 2, + anon_sym_SEMI, + [102464] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4929), 5, + ACTIONS(4955), 5, anon_sym_EQ, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, anon_sym_QMARK, - [102268] = 2, + [102475] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4931), 5, + ACTIONS(4957), 5, anon_sym_EQ, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, anon_sym_QMARK, - [102279] = 3, + [102486] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4933), 1, - sym__automatic_semicolon, - ACTIONS(1013), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [102292] = 2, + ACTIONS(1678), 1, + anon_sym_LT, + ACTIONS(2332), 1, + anon_sym_LPAREN, + STATE(2015), 1, + sym_formal_parameters, + STATE(2078), 1, + sym__call_signature, + STATE(2918), 1, + sym_type_parameters, + [102505] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2692), 5, - sym__automatic_semicolon, - anon_sym_EQ, + ACTIONS(4687), 1, + sym_identifier, + STATE(2860), 1, + sym__import_export_specifier, + ACTIONS(4693), 2, + anon_sym_type, + anon_sym_typeof, + [102519] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4959), 1, anon_sym_COMMA, + STATE(2516), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(4961), 2, + sym__automatic_semicolon, anon_sym_SEMI, - anon_sym_COLON, - [102303] = 5, + [102533] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1691), 1, - anon_sym_LT, - ACTIONS(4432), 1, - anon_sym_LPAREN, - STATE(2942), 1, - sym_type_parameters, - STATE(3082), 1, - sym_formal_parameters, - [102319] = 3, + ACTIONS(4959), 1, + anon_sym_COMMA, + STATE(2564), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(4963), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [102547] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4935), 1, - anon_sym_EQ_GT, - ACTIONS(2788), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - [102331] = 4, + ACTIONS(4436), 1, + anon_sym_LBRACE, + STATE(2482), 1, + sym_statement_block, + ACTIONS(4965), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [102561] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4937), 1, + ACTIONS(4959), 1, anon_sym_COMMA, - STATE(2478), 1, + STATE(2572), 1, aux_sym_variable_declaration_repeat1, - ACTIONS(4940), 2, + ACTIONS(4967), 2, sym__automatic_semicolon, anon_sym_SEMI, - [102345] = 5, - ACTIONS(4942), 1, - anon_sym_SQUOTE, - ACTIONS(4944), 1, - aux_sym_string_token2, - ACTIONS(4946), 1, - sym_escape_sequence, - ACTIONS(4948), 1, + [102575] = 4, + ACTIONS(3), 1, sym_comment, - STATE(2486), 1, - aux_sym_string_repeat2, - [102361] = 5, - ACTIONS(4942), 1, - anon_sym_DQUOTE, - ACTIONS(4948), 1, + ACTIONS(4436), 1, + anon_sym_LBRACE, + STATE(527), 1, + sym_statement_block, + ACTIONS(4969), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [102589] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(4950), 1, + ACTIONS(4971), 1, + sym_identifier, + STATE(1514), 1, + sym_generic_type, + STATE(1518), 1, + sym_nested_identifier, + STATE(2812), 1, + sym_nested_type_identifier, + [102605] = 5, + ACTIONS(4973), 1, + anon_sym_DQUOTE, + ACTIONS(4975), 1, aux_sym_string_token1, - ACTIONS(4952), 1, + ACTIONS(4977), 1, sym_escape_sequence, - STATE(2483), 1, + ACTIONS(4979), 1, + sym_comment, + STATE(2568), 1, aux_sym_string_repeat1, - [102377] = 5, - ACTIONS(3), 1, + [102621] = 5, + ACTIONS(4979), 1, sym_comment, - ACTIONS(4231), 1, - anon_sym_AMP, - ACTIONS(4233), 1, - anon_sym_PIPE, - ACTIONS(4235), 1, - anon_sym_extends, - ACTIONS(4954), 1, - anon_sym_COLON, - [102393] = 5, + ACTIONS(4981), 1, + anon_sym_SQUOTE, + ACTIONS(4983), 1, + aux_sym_string_token2, + ACTIONS(4985), 1, + sym_escape_sequence, + STATE(2502), 1, + aux_sym_string_repeat2, + [102637] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4956), 1, - sym_identifier, - STATE(1505), 1, - sym_nested_identifier, - STATE(1509), 1, - sym_generic_type, - STATE(2917), 1, - sym_nested_type_identifier, - [102409] = 5, - ACTIONS(4948), 1, + ACTIONS(4987), 1, + anon_sym_EQ_GT, + ACTIONS(2776), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + [102649] = 5, + ACTIONS(4979), 1, sym_comment, - ACTIONS(4958), 1, + ACTIONS(4981), 1, anon_sym_DQUOTE, - ACTIONS(4960), 1, + ACTIONS(4989), 1, aux_sym_string_token1, - ACTIONS(4962), 1, + ACTIONS(4991), 1, sym_escape_sequence, - STATE(2548), 1, + STATE(2497), 1, aux_sym_string_repeat1, - [102425] = 5, + [102665] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4231), 1, + ACTIONS(4239), 1, anon_sym_AMP, - ACTIONS(4233), 1, + ACTIONS(4241), 1, anon_sym_PIPE, - ACTIONS(4235), 1, + ACTIONS(4243), 1, anon_sym_extends, - ACTIONS(4964), 1, - anon_sym_RBRACK, - [102441] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(4966), 1, - anon_sym_export, - STATE(1874), 1, - aux_sym_export_statement_repeat1, - STATE(1905), 1, - sym_decorator, - [102457] = 5, - ACTIONS(4948), 1, - sym_comment, - ACTIONS(4958), 1, + ACTIONS(4993), 1, + anon_sym_COLON, + [102681] = 5, + ACTIONS(4973), 1, anon_sym_SQUOTE, - ACTIONS(4968), 1, + ACTIONS(4979), 1, + sym_comment, + ACTIONS(4995), 1, aux_sym_string_token2, - ACTIONS(4970), 1, + ACTIONS(4997), 1, sym_escape_sequence, - STATE(2546), 1, + STATE(2569), 1, aux_sym_string_repeat2, - [102473] = 4, + [102697] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4972), 1, + ACTIONS(3108), 1, + anon_sym_COLON, + STATE(2998), 1, + sym_type_annotation, + ACTIONS(4999), 2, anon_sym_COMMA, - STATE(2487), 1, - aux_sym_array_repeat1, - ACTIONS(3322), 2, - anon_sym_RPAREN, anon_sym_RBRACK, - [102487] = 5, + [102711] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4231), 1, + ACTIONS(4687), 1, + sym_identifier, + STATE(2900), 1, + sym__import_export_specifier, + ACTIONS(4693), 2, + anon_sym_type, + anon_sym_typeof, + [102725] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4239), 1, anon_sym_AMP, - ACTIONS(4233), 1, + ACTIONS(4241), 1, anon_sym_PIPE, - ACTIONS(4235), 1, + ACTIONS(4243), 1, anon_sym_extends, - ACTIONS(4975), 1, - anon_sym_COLON, - [102503] = 3, + ACTIONS(5001), 1, + anon_sym_RBRACK, + [102741] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4114), 1, - anon_sym_EQ_GT, - ACTIONS(2788), 3, - anon_sym_LPAREN, - anon_sym_LT, + ACTIONS(5003), 1, anon_sym_QMARK, - [102515] = 5, + ACTIONS(2661), 3, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + [102753] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1691), 1, - anon_sym_LT, - ACTIONS(2306), 1, - anon_sym_LPAREN, - STATE(2069), 1, - sym_formal_parameters, - STATE(2941), 1, - sym_type_parameters, - [102531] = 4, + ACTIONS(4239), 1, + anon_sym_AMP, + ACTIONS(4241), 1, + anon_sym_PIPE, + ACTIONS(4243), 1, + anon_sym_extends, + ACTIONS(5005), 1, + anon_sym_COLON, + [102769] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4460), 1, + ACTIONS(4297), 1, anon_sym_EQ, - STATE(2913), 1, - sym__initializer, - ACTIONS(4977), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [102545] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2395), 1, + STATE(2992), 1, + sym_default_type, + ACTIONS(5007), 2, anon_sym_COMMA, - ACTIONS(3072), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(3168), 1, - anon_sym_LBRACE, - STATE(2564), 1, - aux_sym_extends_clause_repeat1, - [102561] = 5, + anon_sym_GT, + [102783] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4231), 1, + ACTIONS(5009), 1, + anon_sym_LBRACK, + ACTIONS(1543), 3, anon_sym_AMP, - ACTIONS(4233), 1, anon_sym_PIPE, - ACTIONS(4235), 1, anon_sym_extends, - ACTIONS(4979), 1, - anon_sym_COLON, - [102577] = 5, + [102795] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4231), 1, + ACTIONS(4239), 1, anon_sym_AMP, - ACTIONS(4233), 1, + ACTIONS(4241), 1, anon_sym_PIPE, - ACTIONS(4235), 1, + ACTIONS(4243), 1, anon_sym_extends, - ACTIONS(4981), 1, + ACTIONS(5011), 1, anon_sym_RPAREN, - [102593] = 4, + [102811] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4418), 1, - anon_sym_LBRACE, - STATE(529), 1, - sym_statement_block, - ACTIONS(4983), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [102607] = 3, + ACTIONS(4239), 1, + anon_sym_AMP, + ACTIONS(4241), 1, + anon_sym_PIPE, + ACTIONS(4243), 1, + anon_sym_extends, + ACTIONS(5013), 1, + anon_sym_RPAREN, + [102827] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4985), 1, - anon_sym_LBRACK, - ACTIONS(1599), 3, + ACTIONS(4239), 1, anon_sym_AMP, + ACTIONS(4241), 1, anon_sym_PIPE, + ACTIONS(4243), 1, anon_sym_extends, - [102619] = 5, + ACTIONS(5015), 1, + anon_sym_COLON, + [102843] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(4987), 1, - anon_sym_class, - STATE(1874), 1, - aux_sym_export_statement_repeat1, - STATE(1905), 1, - sym_decorator, - [102635] = 5, - ACTIONS(4948), 1, - sym_comment, - ACTIONS(4968), 1, - aux_sym_string_token2, - ACTIONS(4970), 1, - sym_escape_sequence, - ACTIONS(4989), 1, - anon_sym_SQUOTE, - STATE(2546), 1, - aux_sym_string_repeat2, - [102651] = 5, - ACTIONS(4948), 1, - sym_comment, - ACTIONS(4960), 1, - aux_sym_string_token1, - ACTIONS(4962), 1, - sym_escape_sequence, - ACTIONS(4989), 1, - anon_sym_DQUOTE, - STATE(2548), 1, - aux_sym_string_repeat1, - [102667] = 5, + ACTIONS(5017), 1, + sym_identifier, + STATE(1447), 1, + sym_generic_type, + STATE(1448), 1, + sym_nested_identifier, + STATE(2960), 1, + sym_nested_type_identifier, + [102859] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1691), 1, - anon_sym_LT, - ACTIONS(4432), 1, - anon_sym_LPAREN, - STATE(2892), 1, - sym_type_parameters, - STATE(3050), 1, - sym_formal_parameters, - [102683] = 4, + ACTIONS(4239), 1, + anon_sym_AMP, + ACTIONS(4241), 1, + anon_sym_PIPE, + ACTIONS(4243), 1, + anon_sym_extends, + ACTIONS(5019), 1, + anon_sym_QMARK, + [102875] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(2157), 1, - anon_sym_LPAREN, - STATE(1496), 2, - sym_template_string, - sym_arguments, - [102697] = 4, + ACTIONS(4239), 1, + anon_sym_AMP, + ACTIONS(4241), 1, + anon_sym_PIPE, + ACTIONS(4243), 1, + anon_sym_extends, + ACTIONS(5021), 1, + anon_sym_QMARK, + [102891] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4418), 1, - anon_sym_LBRACE, - STATE(2465), 1, - sym_statement_block, - ACTIONS(4991), 2, + ACTIONS(5023), 1, + anon_sym_COMMA, + STATE(2516), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(5026), 2, sym__automatic_semicolon, anon_sym_SEMI, - [102711] = 3, + [102905] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4993), 1, - anon_sym_LBRACK, - ACTIONS(1599), 3, + ACTIONS(4239), 1, anon_sym_AMP, + ACTIONS(4241), 1, anon_sym_PIPE, + ACTIONS(4243), 1, anon_sym_extends, - [102723] = 5, - ACTIONS(4948), 1, + ACTIONS(5028), 1, + anon_sym_QMARK, + [102921] = 5, + ACTIONS(4979), 1, sym_comment, - ACTIONS(4968), 1, + ACTIONS(4995), 1, aux_sym_string_token2, - ACTIONS(4970), 1, + ACTIONS(4997), 1, sym_escape_sequence, - ACTIONS(4995), 1, + ACTIONS(5030), 1, anon_sym_SQUOTE, - STATE(2546), 1, + STATE(2569), 1, aux_sym_string_repeat2, - [102739] = 5, - ACTIONS(4948), 1, - sym_comment, - ACTIONS(4960), 1, + [102937] = 5, + ACTIONS(4975), 1, aux_sym_string_token1, - ACTIONS(4962), 1, + ACTIONS(4977), 1, sym_escape_sequence, - ACTIONS(4995), 1, + ACTIONS(4979), 1, + sym_comment, + ACTIONS(5030), 1, anon_sym_DQUOTE, - STATE(2548), 1, + STATE(2568), 1, aux_sym_string_repeat1, - [102755] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4997), 1, - sym_identifier, - STATE(441), 1, - sym_generic_type, - STATE(481), 1, - sym_nested_identifier, - STATE(2940), 1, - sym_nested_type_identifier, - [102771] = 2, + [102953] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3027), 4, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - [102781] = 2, + ACTIONS(2413), 1, + anon_sym_COMMA, + STATE(2573), 1, + aux_sym_extends_clause_repeat1, + ACTIONS(5032), 2, + anon_sym_LBRACE, + anon_sym_implements, + [102967] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4999), 4, - sym__template_chars, - sym_escape_sequence, - anon_sym_BQUOTE, - anon_sym_DOLLAR_LBRACE, - [102791] = 4, + ACTIONS(4239), 1, + anon_sym_AMP, + ACTIONS(4241), 1, + anon_sym_PIPE, + ACTIONS(4243), 1, + anon_sym_extends, + ACTIONS(5034), 1, + anon_sym_QMARK, + [102983] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2957), 1, - anon_sym_LBRACE, - STATE(1338), 1, - sym_statement_block, - ACTIONS(4983), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [102805] = 5, + ACTIONS(5036), 1, + sym_identifier, + STATE(421), 1, + sym_generic_type, + STATE(491), 1, + sym_nested_identifier, + STATE(2816), 1, + sym_nested_type_identifier, + [102999] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4231), 1, + ACTIONS(4239), 1, anon_sym_AMP, - ACTIONS(4233), 1, + ACTIONS(4241), 1, anon_sym_PIPE, - ACTIONS(4235), 1, + ACTIONS(4243), 1, anon_sym_extends, - ACTIONS(5001), 1, - anon_sym_RBRACK, - [102821] = 5, + ACTIONS(5038), 1, + anon_sym_COLON, + [103015] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4231), 1, + ACTIONS(4239), 1, anon_sym_AMP, - ACTIONS(4233), 1, + ACTIONS(4241), 1, anon_sym_PIPE, - ACTIONS(4235), 1, + ACTIONS(4243), 1, anon_sym_extends, - ACTIONS(5003), 1, - anon_sym_QMARK, - [102837] = 4, + ACTIONS(5040), 1, + anon_sym_RBRACK, + [103031] = 5, + ACTIONS(4975), 1, + aux_sym_string_token1, + ACTIONS(4977), 1, + sym_escape_sequence, + ACTIONS(4979), 1, + sym_comment, + ACTIONS(5042), 1, + anon_sym_DQUOTE, + STATE(2568), 1, + aux_sym_string_repeat1, + [103047] = 5, + ACTIONS(4979), 1, + sym_comment, + ACTIONS(4995), 1, + aux_sym_string_token2, + ACTIONS(4997), 1, + sym_escape_sequence, + ACTIONS(5042), 1, + anon_sym_SQUOTE, + STATE(2569), 1, + aux_sym_string_repeat2, + [103063] = 5, + ACTIONS(4975), 1, + aux_sym_string_token1, + ACTIONS(4977), 1, + sym_escape_sequence, + ACTIONS(4979), 1, + sym_comment, + ACTIONS(5044), 1, + anon_sym_DQUOTE, + STATE(2568), 1, + aux_sym_string_repeat1, + [103079] = 5, + ACTIONS(4979), 1, + sym_comment, + ACTIONS(4995), 1, + aux_sym_string_token2, + ACTIONS(4997), 1, + sym_escape_sequence, + ACTIONS(5044), 1, + anon_sym_SQUOTE, + STATE(2569), 1, + aux_sym_string_repeat2, + [103095] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5005), 1, - anon_sym_COMMA, - STATE(2512), 1, - aux_sym_implements_clause_repeat1, - ACTIONS(4695), 2, + ACTIONS(3035), 1, anon_sym_LBRACE, - anon_sym_GT, - [102851] = 5, + STATE(1456), 1, + sym_statement_block, + ACTIONS(4969), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [103109] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4231), 1, + ACTIONS(4239), 1, anon_sym_AMP, - ACTIONS(4233), 1, + ACTIONS(4241), 1, anon_sym_PIPE, - ACTIONS(4235), 1, + ACTIONS(4243), 1, anon_sym_extends, - ACTIONS(5008), 1, + ACTIONS(5046), 1, anon_sym_RBRACK, - [102867] = 4, + [103125] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(921), 1, anon_sym_LBRACE, - STATE(72), 1, + STATE(92), 1, sym_statement_block, - ACTIONS(4983), 2, + ACTIONS(4969), 2, sym__automatic_semicolon, anon_sym_SEMI, - [102881] = 5, - ACTIONS(4948), 1, + [103139] = 5, + ACTIONS(4979), 1, sym_comment, - ACTIONS(5010), 1, + ACTIONS(5048), 1, anon_sym_SQUOTE, - ACTIONS(5012), 1, + ACTIONS(5050), 1, aux_sym_string_token2, - ACTIONS(5014), 1, + ACTIONS(5052), 1, sym_escape_sequence, - STATE(2498), 1, + STATE(2518), 1, aux_sym_string_repeat2, - [102897] = 5, - ACTIONS(4948), 1, + [103155] = 5, + ACTIONS(4979), 1, sym_comment, - ACTIONS(5010), 1, + ACTIONS(5048), 1, anon_sym_DQUOTE, - ACTIONS(5016), 1, + ACTIONS(5054), 1, aux_sym_string_token1, - ACTIONS(5018), 1, + ACTIONS(5056), 1, sym_escape_sequence, - STATE(2499), 1, + STATE(2519), 1, aux_sym_string_repeat1, - [102913] = 4, + [103171] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4418), 1, - anon_sym_LBRACE, - STATE(534), 1, - sym_statement_block, - ACTIONS(5020), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [102927] = 5, - ACTIONS(4948), 1, + ACTIONS(4239), 1, + anon_sym_AMP, + ACTIONS(4241), 1, + anon_sym_PIPE, + ACTIONS(4243), 1, + anon_sym_extends, + ACTIONS(5058), 1, + anon_sym_RBRACK, + [103187] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4239), 1, + anon_sym_AMP, + ACTIONS(4241), 1, + anon_sym_PIPE, + ACTIONS(4243), 1, + anon_sym_extends, + ACTIONS(5060), 1, + anon_sym_RBRACK, + [103203] = 5, + ACTIONS(4979), 1, sym_comment, - ACTIONS(5022), 1, + ACTIONS(5062), 1, anon_sym_DQUOTE, - ACTIONS(5024), 1, + ACTIONS(5064), 1, aux_sym_string_token1, - ACTIONS(5026), 1, + ACTIONS(5066), 1, sym_escape_sequence, - STATE(2566), 1, + STATE(2584), 1, aux_sym_string_repeat1, - [102943] = 5, - ACTIONS(4948), 1, + [103219] = 5, + ACTIONS(4979), 1, sym_comment, - ACTIONS(5022), 1, + ACTIONS(5062), 1, anon_sym_SQUOTE, - ACTIONS(5028), 1, + ACTIONS(5068), 1, aux_sym_string_token2, - ACTIONS(5030), 1, + ACTIONS(5070), 1, sym_escape_sequence, - STATE(2567), 1, + STATE(2585), 1, aux_sym_string_repeat2, - [102959] = 4, + [103235] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4287), 1, - anon_sym_EQ, - STATE(2963), 1, - sym_default_type, - ACTIONS(5032), 2, - anon_sym_COMMA, - anon_sym_GT, - [102973] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4231), 1, + ACTIONS(4239), 1, anon_sym_AMP, - ACTIONS(4233), 1, + ACTIONS(4241), 1, anon_sym_PIPE, - ACTIONS(4235), 1, + ACTIONS(4243), 1, anon_sym_extends, - ACTIONS(5034), 1, + ACTIONS(5072), 1, anon_sym_COLON, - [102989] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4418), 1, - anon_sym_LBRACE, - STATE(2444), 1, - sym_statement_block, - ACTIONS(5036), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [103003] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2418), 1, - anon_sym_COMMA, - STATE(2601), 1, - aux_sym_extends_clause_repeat1, - ACTIONS(5038), 2, - anon_sym_LBRACE, - anon_sym_implements, - [103017] = 4, + [103251] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2418), 1, - anon_sym_COMMA, - STATE(2601), 1, - aux_sym_extends_clause_repeat1, - ACTIONS(5040), 2, - anon_sym_LBRACE, - anon_sym_implements, - [103031] = 5, + ACTIONS(5074), 4, + sym__template_chars, + sym_escape_sequence, + anon_sym_BQUOTE, + anon_sym_DOLLAR_LBRACE, + [103261] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1691), 1, + ACTIONS(1678), 1, anon_sym_LT, - ACTIONS(4432), 1, + ACTIONS(4444), 1, anon_sym_LPAREN, - STATE(2807), 1, + STATE(2939), 1, sym_type_parameters, - STATE(3177), 1, + STATE(3228), 1, sym_formal_parameters, - [103047] = 5, + [103277] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5042), 1, - sym_identifier, - STATE(441), 1, - sym_generic_type, - STATE(1914), 1, - sym_nested_identifier, - STATE(2940), 1, - sym_nested_type_identifier, - [103063] = 5, + ACTIONS(5076), 1, + anon_sym_LBRACK, + ACTIONS(1543), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [103289] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4231), 1, + ACTIONS(4239), 1, anon_sym_AMP, - ACTIONS(4233), 1, + ACTIONS(4241), 1, anon_sym_PIPE, - ACTIONS(4235), 1, + ACTIONS(4243), 1, anon_sym_extends, - ACTIONS(5044), 1, + ACTIONS(5078), 1, anon_sym_RBRACK, - [103079] = 5, + [103305] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4231), 1, + ACTIONS(4239), 1, anon_sym_AMP, - ACTIONS(4233), 1, + ACTIONS(4241), 1, anon_sym_PIPE, - ACTIONS(4235), 1, + ACTIONS(4243), 1, anon_sym_extends, - ACTIONS(5046), 1, + ACTIONS(5080), 1, anon_sym_RBRACK, - [103095] = 5, + [103321] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4959), 1, + anon_sym_COMMA, + STATE(2597), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(5082), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [103335] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(91), 1, anon_sym_AT, - ACTIONS(5048), 1, + ACTIONS(5084), 1, anon_sym_class, - STATE(1874), 1, + STATE(1877), 1, aux_sym_export_statement_repeat1, - STATE(1905), 1, + STATE(1890), 1, sym_decorator, - [103111] = 5, + [103351] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4231), 1, - anon_sym_AMP, - ACTIONS(4233), 1, - anon_sym_PIPE, - ACTIONS(4235), 1, - anon_sym_extends, - ACTIONS(5050), 1, - anon_sym_RBRACK, - [103127] = 4, + ACTIONS(2451), 1, + anon_sym_COMMA, + ACTIONS(3180), 1, + anon_sym_LBRACE, + ACTIONS(3212), 1, + anon_sym_LBRACE_PIPE, + STATE(2605), 1, + aux_sym_extends_clause_repeat1, + [103367] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4460), 1, - anon_sym_EQ, - STATE(2880), 1, - sym__initializer, - ACTIONS(5052), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [103141] = 5, + ACTIONS(479), 1, + anon_sym_BQUOTE, + ACTIONS(2161), 1, + anon_sym_LPAREN, + STATE(1175), 2, + sym_template_string, + sym_arguments, + [103381] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(5086), 1, + anon_sym_export, + STATE(1877), 1, + aux_sym_export_statement_repeat1, + STATE(1890), 1, + sym_decorator, + [103397] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1691), 1, + ACTIONS(1678), 1, anon_sym_LT, - ACTIONS(4432), 1, + ACTIONS(4444), 1, anon_sym_LPAREN, - STATE(2988), 1, + STATE(2798), 1, sym_type_parameters, - STATE(3212), 1, + STATE(3233), 1, sym_formal_parameters, - [103157] = 3, + [103413] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5054), 1, - anon_sym_LBRACK, - ACTIONS(1599), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [103169] = 4, + ACTIONS(5088), 1, + anon_sym_from, + STATE(3008), 1, + sym__from_clause, + ACTIONS(5090), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [103427] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2413), 1, + anon_sym_COMMA, + STATE(2520), 1, + aux_sym_extends_clause_repeat1, + ACTIONS(3212), 2, + anon_sym_LBRACE, + anon_sym_implements, + [103441] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3068), 1, + ACTIONS(2993), 4, + anon_sym_RBRACE, + anon_sym_RPAREN, anon_sym_COLON, - STATE(2984), 1, - sym_type_annotation, - ACTIONS(5056), 2, + anon_sym_RBRACK, + [103451] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4490), 1, + anon_sym_EQ, + STATE(2855), 1, + sym__initializer, + ACTIONS(5092), 2, anon_sym_COMMA, anon_sym_RPAREN, - [103183] = 4, + [103465] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2957), 1, + ACTIONS(4436), 1, anon_sym_LBRACE, - STATE(1330), 1, + STATE(533), 1, sym_statement_block, - ACTIONS(5020), 2, + ACTIONS(5094), 2, sym__automatic_semicolon, anon_sym_SEMI, - [103197] = 5, + [103479] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1691), 1, + ACTIONS(1678), 1, anon_sym_LT, - ACTIONS(4432), 1, + ACTIONS(4444), 1, anon_sym_LPAREN, - STATE(2950), 1, + STATE(2945), 1, sym_type_parameters, - STATE(3020), 1, + STATE(3219), 1, sym_formal_parameters, - [103213] = 3, + [103495] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5058), 1, - anon_sym_LBRACK, - ACTIONS(1599), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [103225] = 5, + ACTIONS(3347), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(3363), 1, + anon_sym_LBRACE, + ACTIONS(5096), 1, + anon_sym_COMMA, + STATE(2556), 1, + aux_sym_extends_clause_repeat1, + [103511] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4231), 1, + ACTIONS(4239), 1, anon_sym_AMP, - ACTIONS(4233), 1, + ACTIONS(4241), 1, anon_sym_PIPE, - ACTIONS(4235), 1, + ACTIONS(4243), 1, anon_sym_extends, - ACTIONS(5060), 1, - anon_sym_RBRACK, - [103241] = 5, - ACTIONS(3), 1, + ACTIONS(5099), 1, + anon_sym_RPAREN, + [103527] = 5, + ACTIONS(4979), 1, sym_comment, - ACTIONS(4231), 1, - anon_sym_AMP, - ACTIONS(4233), 1, - anon_sym_PIPE, - ACTIONS(4235), 1, - anon_sym_extends, - ACTIONS(5062), 1, - anon_sym_RBRACK, - [103257] = 3, - ACTIONS(3), 1, + ACTIONS(4995), 1, + aux_sym_string_token2, + ACTIONS(4997), 1, + sym_escape_sequence, + ACTIONS(5101), 1, + anon_sym_SQUOTE, + STATE(2569), 1, + aux_sym_string_repeat2, + [103543] = 5, + ACTIONS(4975), 1, + aux_sym_string_token1, + ACTIONS(4977), 1, + sym_escape_sequence, + ACTIONS(4979), 1, sym_comment, - ACTIONS(5064), 1, - anon_sym_LBRACK, - ACTIONS(1599), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [103269] = 5, + ACTIONS(5101), 1, + anon_sym_DQUOTE, + STATE(2568), 1, + aux_sym_string_repeat1, + [103559] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1691), 1, + ACTIONS(1678), 1, anon_sym_LT, - ACTIONS(4432), 1, + ACTIONS(4444), 1, anon_sym_LPAREN, - STATE(2935), 1, + STATE(3000), 1, sym_type_parameters, - STATE(3213), 1, + STATE(3112), 1, sym_formal_parameters, - [103285] = 5, + [103575] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4231), 1, + ACTIONS(5103), 1, + sym_identifier, + STATE(421), 1, + sym_generic_type, + STATE(1919), 1, + sym_nested_identifier, + STATE(2816), 1, + sym_nested_type_identifier, + [103591] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5105), 1, + anon_sym_LBRACK, + ACTIONS(1543), 3, anon_sym_AMP, - ACTIONS(4233), 1, anon_sym_PIPE, - ACTIONS(4235), 1, anon_sym_extends, - ACTIONS(5066), 1, - anon_sym_RBRACK, - [103301] = 4, + [103603] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5068), 1, + ACTIONS(1678), 1, + anon_sym_LT, + ACTIONS(2332), 1, + anon_sym_LPAREN, + STATE(2087), 1, + sym_formal_parameters, + STATE(3009), 1, + sym_type_parameters, + [103619] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4959), 1, anon_sym_COMMA, - STATE(2592), 1, + STATE(2516), 1, aux_sym_variable_declaration_repeat1, - ACTIONS(5070), 2, + ACTIONS(5107), 2, sym__automatic_semicolon, anon_sym_SEMI, - [103315] = 5, + [103633] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4231), 1, - anon_sym_AMP, - ACTIONS(4233), 1, - anon_sym_PIPE, - ACTIONS(4235), 1, - anon_sym_extends, - ACTIONS(5072), 1, - anon_sym_RPAREN, - [103331] = 4, + ACTIONS(5109), 1, + sym_identifier, + STATE(1071), 1, + sym_nested_identifier, + STATE(1073), 1, + sym_generic_type, + STATE(2847), 1, + sym_nested_type_identifier, + [103649] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5068), 1, - anon_sym_COMMA, - STATE(2594), 1, - aux_sym_variable_declaration_repeat1, - ACTIONS(5074), 2, + ACTIONS(921), 1, + anon_sym_LBRACE, + STATE(88), 1, + sym_statement_block, + ACTIONS(5094), 2, sym__automatic_semicolon, anon_sym_SEMI, - [103345] = 5, - ACTIONS(4948), 1, - sym_comment, - ACTIONS(5076), 1, - anon_sym_SQUOTE, - ACTIONS(5078), 1, - aux_sym_string_token2, - ACTIONS(5081), 1, - sym_escape_sequence, - STATE(2546), 1, - aux_sym_string_repeat2, - [103361] = 5, + [103663] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4231), 1, - anon_sym_AMP, - ACTIONS(4233), 1, - anon_sym_PIPE, - ACTIONS(4235), 1, - anon_sym_extends, - ACTIONS(5084), 1, - anon_sym_RPAREN, - [103377] = 5, - ACTIONS(4948), 1, + ACTIONS(5111), 1, + sym_identifier, + STATE(1960), 1, + sym_nested_identifier, + STATE(2006), 1, + sym_generic_type, + STATE(2909), 1, + sym_nested_type_identifier, + [103679] = 5, + ACTIONS(4979), 1, sym_comment, - ACTIONS(5086), 1, + ACTIONS(5113), 1, anon_sym_DQUOTE, - ACTIONS(5088), 1, + ACTIONS(5115), 1, aux_sym_string_token1, - ACTIONS(5091), 1, + ACTIONS(5118), 1, sym_escape_sequence, - STATE(2548), 1, + STATE(2568), 1, aux_sym_string_repeat1, - [103393] = 5, + [103695] = 5, + ACTIONS(4979), 1, + sym_comment, + ACTIONS(5121), 1, + anon_sym_SQUOTE, + ACTIONS(5123), 1, + aux_sym_string_token2, + ACTIONS(5126), 1, + sym_escape_sequence, + STATE(2569), 1, + aux_sym_string_repeat2, + [103711] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5094), 1, - sym_identifier, - STATE(1960), 1, - sym_nested_identifier, - STATE(1973), 1, - sym_generic_type, - STATE(2783), 1, - sym_nested_type_identifier, - [103409] = 4, + ACTIONS(5129), 1, + anon_sym_COMMA, + STATE(2570), 1, + aux_sym_array_repeat1, + ACTIONS(3399), 2, + anon_sym_RPAREN, + anon_sym_RBRACK, + [103725] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(921), 1, + ACTIONS(4436), 1, anon_sym_LBRACE, - STATE(93), 1, + STATE(2459), 1, sym_statement_block, - ACTIONS(5020), 2, + ACTIONS(5132), 2, sym__automatic_semicolon, anon_sym_SEMI, - [103423] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(5096), 1, - anon_sym_class, - STATE(1874), 1, - aux_sym_export_statement_repeat1, - STATE(1905), 1, - sym_decorator, - [103439] = 4, + [103739] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5068), 1, + ACTIONS(4959), 1, anon_sym_COMMA, - STATE(2478), 1, + STATE(2516), 1, aux_sym_variable_declaration_repeat1, - ACTIONS(5098), 2, + ACTIONS(5134), 2, sym__automatic_semicolon, anon_sym_SEMI, - [103453] = 4, + [103753] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5068), 1, + ACTIONS(5136), 1, anon_sym_COMMA, - STATE(2478), 1, - aux_sym_variable_declaration_repeat1, - ACTIONS(5100), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [103467] = 5, + STATE(2573), 1, + aux_sym_extends_clause_repeat1, + ACTIONS(3347), 2, + anon_sym_LBRACE, + anon_sym_implements, + [103767] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2413), 1, + anon_sym_COMMA, + STATE(2573), 1, + aux_sym_extends_clause_repeat1, + ACTIONS(5139), 2, + anon_sym_LBRACE, + anon_sym_implements, + [103781] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(91), 1, anon_sym_AT, - ACTIONS(5102), 1, + ACTIONS(5141), 1, anon_sym_class, - STATE(1874), 1, + STATE(1877), 1, aux_sym_export_statement_repeat1, - STATE(1905), 1, + STATE(1890), 1, sym_decorator, - [103483] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4231), 1, - anon_sym_AMP, - ACTIONS(4233), 1, - anon_sym_PIPE, - ACTIONS(4235), 1, - anon_sym_extends, - ACTIONS(5104), 1, - anon_sym_QMARK, - [103499] = 5, - ACTIONS(4948), 1, + [103797] = 5, + ACTIONS(4979), 1, sym_comment, - ACTIONS(4968), 1, + ACTIONS(5143), 1, + anon_sym_SQUOTE, + ACTIONS(5145), 1, aux_sym_string_token2, - ACTIONS(4970), 1, + ACTIONS(5147), 1, sym_escape_sequence, - ACTIONS(5106), 1, - anon_sym_SQUOTE, - STATE(2546), 1, + STATE(2558), 1, aux_sym_string_repeat2, - [103515] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4460), 1, - anon_sym_EQ, - STATE(2806), 1, - sym__initializer, - ACTIONS(5108), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [103529] = 5, - ACTIONS(4948), 1, + [103813] = 5, + ACTIONS(4979), 1, sym_comment, - ACTIONS(4960), 1, + ACTIONS(5143), 1, + anon_sym_DQUOTE, + ACTIONS(5149), 1, aux_sym_string_token1, - ACTIONS(4962), 1, + ACTIONS(5151), 1, sym_escape_sequence, - ACTIONS(5106), 1, - anon_sym_DQUOTE, - STATE(2548), 1, + STATE(2559), 1, aux_sym_string_repeat1, - [103545] = 4, + [103829] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2418), 1, - anon_sym_COMMA, - STATE(2523), 1, - aux_sym_extends_clause_repeat1, - ACTIONS(3072), 2, - anon_sym_LBRACE, - anon_sym_implements, - [103559] = 5, - ACTIONS(4948), 1, - sym_comment, - ACTIONS(5110), 1, - anon_sym_DQUOTE, - ACTIONS(5112), 1, - aux_sym_string_token1, - ACTIONS(5114), 1, - sym_escape_sequence, - STATE(2580), 1, - aux_sym_string_repeat1, - [103575] = 5, - ACTIONS(4948), 1, + ACTIONS(4239), 1, + anon_sym_AMP, + ACTIONS(4241), 1, + anon_sym_PIPE, + ACTIONS(4243), 1, + anon_sym_extends, + ACTIONS(5153), 1, + anon_sym_RBRACK, + [103845] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(5110), 1, - anon_sym_SQUOTE, - ACTIONS(5116), 1, - aux_sym_string_token2, - ACTIONS(5118), 1, - sym_escape_sequence, - STATE(2578), 1, - aux_sym_string_repeat2, - [103591] = 5, + ACTIONS(4239), 1, + anon_sym_AMP, + ACTIONS(4241), 1, + anon_sym_PIPE, + ACTIONS(4243), 1, + anon_sym_extends, + ACTIONS(5155), 1, + anon_sym_RBRACK, + [103861] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5120), 1, - sym_identifier, - STATE(1041), 1, - sym_nested_identifier, - STATE(1042), 1, - sym_generic_type, - STATE(2947), 1, - sym_nested_type_identifier, - [103607] = 5, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(5157), 1, + anon_sym_class, + STATE(1877), 1, + aux_sym_export_statement_repeat1, + STATE(1890), 1, + sym_decorator, + [103877] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2395), 1, - anon_sym_COMMA, - ACTIONS(5040), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(5122), 1, - anon_sym_LBRACE, - STATE(2584), 1, - aux_sym_extends_clause_repeat1, - [103623] = 5, + ACTIONS(4239), 1, + anon_sym_AMP, + ACTIONS(4241), 1, + anon_sym_PIPE, + ACTIONS(4243), 1, + anon_sym_extends, + ACTIONS(5159), 1, + anon_sym_RBRACK, + [103893] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2395), 1, - anon_sym_COMMA, - ACTIONS(5038), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(5124), 1, - anon_sym_LBRACE, - STATE(2584), 1, - aux_sym_extends_clause_repeat1, - [103639] = 4, + ACTIONS(4239), 1, + anon_sym_AMP, + ACTIONS(4241), 1, + anon_sym_PIPE, + ACTIONS(4243), 1, + anon_sym_extends, + ACTIONS(5161), 1, + anon_sym_QMARK, + [103909] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(479), 1, - anon_sym_BQUOTE, - ACTIONS(2145), 1, + ACTIONS(1678), 1, + anon_sym_LT, + ACTIONS(4444), 1, anon_sym_LPAREN, - STATE(1169), 2, - sym_template_string, - sym_arguments, - [103653] = 5, - ACTIONS(4948), 1, - sym_comment, - ACTIONS(4960), 1, + STATE(2957), 1, + sym_type_parameters, + STATE(3162), 1, + sym_formal_parameters, + [103925] = 5, + ACTIONS(4975), 1, aux_sym_string_token1, - ACTIONS(4962), 1, + ACTIONS(4977), 1, sym_escape_sequence, - ACTIONS(5126), 1, + ACTIONS(4979), 1, + sym_comment, + ACTIONS(5163), 1, anon_sym_DQUOTE, - STATE(2548), 1, + STATE(2568), 1, aux_sym_string_repeat1, - [103669] = 5, - ACTIONS(4948), 1, + [103941] = 5, + ACTIONS(4979), 1, sym_comment, - ACTIONS(4968), 1, + ACTIONS(4995), 1, aux_sym_string_token2, - ACTIONS(4970), 1, + ACTIONS(4997), 1, sym_escape_sequence, - ACTIONS(5126), 1, + ACTIONS(5163), 1, anon_sym_SQUOTE, - STATE(2546), 1, + STATE(2569), 1, aux_sym_string_repeat2, - [103685] = 5, + [103957] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4231), 1, + ACTIONS(4239), 1, anon_sym_AMP, - ACTIONS(4233), 1, + ACTIONS(4241), 1, anon_sym_PIPE, - ACTIONS(4235), 1, + ACTIONS(4243), 1, anon_sym_extends, - ACTIONS(5128), 1, + ACTIONS(5165), 1, anon_sym_COLON, - [103701] = 5, - ACTIONS(4948), 1, - sym_comment, - ACTIONS(5130), 1, - anon_sym_SQUOTE, - ACTIONS(5132), 1, - aux_sym_string_token2, - ACTIONS(5134), 1, - sym_escape_sequence, - STATE(2556), 1, - aux_sym_string_repeat2, - [103717] = 3, + [103973] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5136), 1, - anon_sym_QMARK, - ACTIONS(2663), 3, + ACTIONS(4959), 1, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_RBRACK, - [103729] = 4, + STATE(2491), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(5167), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [103987] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3068), 1, - anon_sym_COLON, - STATE(2958), 1, - sym_type_annotation, - ACTIONS(5138), 2, + ACTIONS(1678), 1, + anon_sym_LT, + ACTIONS(4444), 1, + anon_sym_LPAREN, + STATE(2910), 1, + sym_type_parameters, + STATE(3042), 1, + sym_formal_parameters, + [104003] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4490), 1, + anon_sym_EQ, + STATE(2844), 1, + sym__initializer, + ACTIONS(5169), 2, anon_sym_COMMA, - anon_sym_RBRACK, - [103743] = 5, + anon_sym_RBRACE, + [104017] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(5140), 1, - anon_sym_class, - STATE(1874), 1, - aux_sym_export_statement_repeat1, - STATE(1905), 1, - sym_decorator, - [103759] = 5, - ACTIONS(4948), 1, + ACTIONS(2760), 1, + anon_sym_LBRACE, + ACTIONS(4392), 1, + anon_sym_STAR, + STATE(3045), 2, + sym_namespace_import, + sym_named_imports, + [104031] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(5130), 1, - anon_sym_DQUOTE, - ACTIONS(5142), 1, - aux_sym_string_token1, - ACTIONS(5144), 1, - sym_escape_sequence, - STATE(2558), 1, - aux_sym_string_repeat1, - [103775] = 4, + ACTIONS(4239), 1, + anon_sym_AMP, + ACTIONS(4241), 1, + anon_sym_PIPE, + ACTIONS(4243), 1, + anon_sym_extends, + ACTIONS(5171), 1, + anon_sym_RBRACK, + [104047] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(573), 1, + ACTIONS(715), 1, anon_sym_BQUOTE, - ACTIONS(2161), 1, + ACTIONS(2177), 1, anon_sym_LPAREN, - STATE(1667), 2, + STATE(1695), 2, sym_template_string, sym_arguments, - [103789] = 4, + [104061] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5146), 1, - anon_sym_from, - STATE(2869), 1, - sym__from_clause, - ACTIONS(5148), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [103803] = 4, + ACTIONS(5173), 1, + anon_sym_COMMA, + STATE(2593), 1, + aux_sym_implements_clause_repeat1, + ACTIONS(4773), 2, + anon_sym_LBRACE, + anon_sym_GT, + [104075] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2744), 1, - anon_sym_LBRACE, - ACTIONS(4372), 1, - anon_sym_STAR, - STATE(3160), 2, - sym_namespace_import, - sym_named_imports, - [103817] = 2, + ACTIONS(4088), 1, + anon_sym_EQ_GT, + ACTIONS(2776), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + [104087] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2499), 4, + ACTIONS(3108), 1, + anon_sym_COLON, + STATE(2880), 1, + sym_type_annotation, + ACTIONS(5176), 2, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - [103827] = 5, - ACTIONS(4948), 1, - sym_comment, - ACTIONS(4968), 1, - aux_sym_string_token2, - ACTIONS(4970), 1, - sym_escape_sequence, - ACTIONS(5150), 1, - anon_sym_SQUOTE, - STATE(2546), 1, - aux_sym_string_repeat2, - [103843] = 5, + [104101] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4231), 1, + ACTIONS(5178), 1, + anon_sym_LBRACK, + ACTIONS(1543), 3, anon_sym_AMP, - ACTIONS(4233), 1, anon_sym_PIPE, - ACTIONS(4235), 1, anon_sym_extends, - ACTIONS(5152), 1, - anon_sym_COLON, - [103859] = 5, - ACTIONS(4948), 1, - sym_comment, - ACTIONS(4960), 1, - aux_sym_string_token1, - ACTIONS(4962), 1, - sym_escape_sequence, - ACTIONS(5150), 1, - anon_sym_DQUOTE, - STATE(2548), 1, - aux_sym_string_repeat1, - [103875] = 4, + [104113] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5146), 1, - anon_sym_from, - STATE(2886), 1, - sym__from_clause, - ACTIONS(5154), 2, + ACTIONS(4959), 1, + anon_sym_COMMA, + STATE(2516), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(5180), 2, sym__automatic_semicolon, anon_sym_SEMI, - [103889] = 5, + [104127] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4231), 1, + ACTIONS(4239), 1, anon_sym_AMP, - ACTIONS(4233), 1, + ACTIONS(4241), 1, anon_sym_PIPE, - ACTIONS(4235), 1, + ACTIONS(4243), 1, anon_sym_extends, - ACTIONS(5156), 1, - anon_sym_RBRACK, - [103905] = 5, + ACTIONS(5182), 1, + anon_sym_RPAREN, + [104143] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4231), 1, + ACTIONS(5184), 1, + anon_sym_LBRACK, + ACTIONS(1543), 3, anon_sym_AMP, - ACTIONS(4233), 1, anon_sym_PIPE, - ACTIONS(4235), 1, anon_sym_extends, - ACTIONS(5158), 1, - anon_sym_RBRACK, - [103921] = 5, + [104155] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3337), 1, - anon_sym_LBRACE, - ACTIONS(3339), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(5160), 1, + ACTIONS(4490), 1, + anon_sym_EQ, + STATE(2986), 1, + sym__initializer, + ACTIONS(5186), 2, anon_sym_COMMA, - STATE(2584), 1, - aux_sym_extends_clause_repeat1, - [103937] = 5, + anon_sym_RPAREN, + [104169] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4231), 1, + ACTIONS(4239), 1, anon_sym_AMP, - ACTIONS(4233), 1, + ACTIONS(4241), 1, anon_sym_PIPE, - ACTIONS(4235), 1, + ACTIONS(4243), 1, anon_sym_extends, - ACTIONS(5163), 1, + ACTIONS(5188), 1, anon_sym_RBRACK, - [103953] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4602), 1, - sym_identifier, - STATE(2875), 1, - sym__import_export_specifier, - ACTIONS(4608), 2, - anon_sym_type, - anon_sym_typeof, - [103967] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4602), 1, - sym_identifier, - STATE(2817), 1, - sym__import_export_specifier, - ACTIONS(4608), 2, - anon_sym_type, - anon_sym_typeof, - [103981] = 5, + [104185] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4231), 1, + ACTIONS(4239), 1, anon_sym_AMP, - ACTIONS(4233), 1, + ACTIONS(4241), 1, anon_sym_PIPE, - ACTIONS(4235), 1, + ACTIONS(4243), 1, anon_sym_extends, - ACTIONS(5165), 1, - anon_sym_RPAREN, - [103997] = 5, - ACTIONS(4948), 1, + ACTIONS(5190), 1, + anon_sym_QMARK, + [104201] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5088), 1, + anon_sym_from, + STATE(2950), 1, + sym__from_clause, + ACTIONS(5192), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [104215] = 5, + ACTIONS(4979), 1, sym_comment, - ACTIONS(5167), 1, + ACTIONS(5194), 1, anon_sym_SQUOTE, - ACTIONS(5169), 1, + ACTIONS(5196), 1, aux_sym_string_token2, - ACTIONS(5171), 1, + ACTIONS(5198), 1, sym_escape_sequence, - STATE(2504), 1, + STATE(2526), 1, aux_sym_string_repeat2, - [104013] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4231), 1, - anon_sym_AMP, - ACTIONS(4233), 1, - anon_sym_PIPE, - ACTIONS(4235), 1, - anon_sym_extends, - ACTIONS(5173), 1, - anon_sym_QMARK, - [104029] = 5, + [104231] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4231), 1, - anon_sym_AMP, - ACTIONS(4233), 1, - anon_sym_PIPE, - ACTIONS(4235), 1, - anon_sym_extends, - ACTIONS(5175), 1, - anon_sym_RPAREN, - [104045] = 4, + ACTIONS(2451), 1, + anon_sym_COMMA, + ACTIONS(5032), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(5200), 1, + anon_sym_LBRACE, + STATE(2556), 1, + aux_sym_extends_clause_repeat1, + [104247] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5068), 1, + ACTIONS(2451), 1, anon_sym_COMMA, - STATE(2478), 1, - aux_sym_variable_declaration_repeat1, - ACTIONS(5177), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [104059] = 5, - ACTIONS(4948), 1, + ACTIONS(5139), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(5202), 1, + anon_sym_LBRACE, + STATE(2556), 1, + aux_sym_extends_clause_repeat1, + [104263] = 5, + ACTIONS(4979), 1, sym_comment, - ACTIONS(5167), 1, + ACTIONS(5204), 1, anon_sym_DQUOTE, - ACTIONS(5179), 1, + ACTIONS(5206), 1, aux_sym_string_token1, - ACTIONS(5181), 1, + ACTIONS(5208), 1, sym_escape_sequence, - STATE(2505), 1, + STATE(2527), 1, aux_sym_string_repeat1, - [104075] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5068), 1, - anon_sym_COMMA, - STATE(2478), 1, - aux_sym_variable_declaration_repeat1, - ACTIONS(5183), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [104089] = 4, + [104279] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5068), 1, + ACTIONS(2618), 4, anon_sym_COMMA, - STATE(2552), 1, - aux_sym_variable_declaration_repeat1, - ACTIONS(5185), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [104103] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5187), 1, - sym_identifier, - STATE(1452), 1, - sym_nested_identifier, - STATE(1454), 1, - sym_generic_type, - STATE(2932), 1, - sym_nested_type_identifier, - [104119] = 5, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + [104289] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4231), 1, + ACTIONS(4239), 1, anon_sym_AMP, - ACTIONS(4233), 1, + ACTIONS(4241), 1, anon_sym_PIPE, - ACTIONS(4235), 1, + ACTIONS(4243), 1, anon_sym_extends, - ACTIONS(5189), 1, - anon_sym_QMARK, - [104135] = 5, - ACTIONS(3), 1, + ACTIONS(5210), 1, + anon_sym_RPAREN, + [104305] = 5, + ACTIONS(4979), 1, sym_comment, - ACTIONS(4231), 1, - anon_sym_AMP, - ACTIONS(4233), 1, - anon_sym_PIPE, - ACTIONS(4235), 1, - anon_sym_extends, - ACTIONS(5191), 1, - anon_sym_QMARK, - [104151] = 5, + ACTIONS(5194), 1, + anon_sym_DQUOTE, + ACTIONS(5212), 1, + aux_sym_string_token1, + ACTIONS(5214), 1, + sym_escape_sequence, + STATE(2525), 1, + aux_sym_string_repeat1, + [104321] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4231), 1, - anon_sym_AMP, - ACTIONS(4233), 1, - anon_sym_PIPE, - ACTIONS(4235), 1, - anon_sym_extends, - ACTIONS(5193), 1, - anon_sym_QMARK, - [104167] = 4, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(2173), 1, + anon_sym_LPAREN, + STATE(1482), 2, + sym_template_string, + sym_arguments, + [104335] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5068), 1, - anon_sym_COMMA, - STATE(2553), 1, - aux_sym_variable_declaration_repeat1, - ACTIONS(5195), 2, + ACTIONS(3035), 1, + anon_sym_LBRACE, + STATE(1465), 1, + sym_statement_block, + ACTIONS(5094), 2, sym__automatic_semicolon, anon_sym_SEMI, - [104181] = 4, + [104349] = 5, + ACTIONS(4979), 1, + sym_comment, + ACTIONS(5204), 1, + anon_sym_SQUOTE, + ACTIONS(5216), 1, + aux_sym_string_token2, + ACTIONS(5218), 1, + sym_escape_sequence, + STATE(2528), 1, + aux_sym_string_repeat2, + [104365] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5197), 1, - anon_sym_COMMA, - STATE(2601), 1, - aux_sym_extends_clause_repeat1, - ACTIONS(3339), 2, + ACTIONS(4472), 3, anon_sym_LBRACE, - anon_sym_implements, - [104195] = 2, + anon_sym_COLON, + anon_sym_EQ_GT, + [104374] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3322), 3, + ACTIONS(5220), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - [104204] = 4, + anon_sym_SEMI, + [104383] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(747), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(2554), 1, - anon_sym_LBRACE, - STATE(2380), 1, - sym_object_type, - [104217] = 4, + ACTIONS(2646), 1, + anon_sym_GT, + ACTIONS(5222), 1, + anon_sym_COMMA, + STATE(2593), 1, + aux_sym_implements_clause_repeat1, + [104396] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3681), 1, - anon_sym_extends, - ACTIONS(4231), 1, - anon_sym_AMP, - ACTIONS(4233), 1, - anon_sym_PIPE, - [104230] = 4, + ACTIONS(5224), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [104405] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1143), 1, + ACTIONS(5226), 1, anon_sym_COMMA, - ACTIONS(5200), 1, - anon_sym_RBRACK, - STATE(2487), 1, + ACTIONS(5228), 1, + anon_sym_GT, + STATE(2744), 1, + aux_sym_type_parameters_repeat1, + [104418] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1133), 1, + anon_sym_COMMA, + ACTIONS(5230), 1, + anon_sym_RPAREN, + STATE(2570), 1, aux_sym_array_repeat1, - [104243] = 3, + [104431] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3337), 1, - anon_sym_LBRACE, - ACTIONS(3339), 2, + ACTIONS(5232), 1, + anon_sym_EQ, + ACTIONS(5234), 1, anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - [104254] = 4, + ACTIONS(5236), 1, + anon_sym_from, + [104444] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4231), 1, - anon_sym_AMP, - ACTIONS(4233), 1, - anon_sym_PIPE, - ACTIONS(5202), 1, - anon_sym_extends, - [104267] = 3, + ACTIONS(1793), 1, + anon_sym_while, + ACTIONS(5238), 1, + anon_sym_else, + STATE(600), 1, + sym_else_clause, + [104457] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5204), 1, - anon_sym_LBRACE, - ACTIONS(4829), 2, - anon_sym_extends, - anon_sym_LBRACE_PIPE, - [104278] = 4, + ACTIONS(5240), 1, + anon_sym_COMMA, + ACTIONS(5242), 1, + anon_sym_RPAREN, + STATE(2645), 1, + aux_sym_formal_parameters_repeat1, + [104470] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5206), 1, + ACTIONS(5244), 1, anon_sym_COMMA, - ACTIONS(5208), 1, + ACTIONS(5246), 1, anon_sym_RBRACK, - STATE(2627), 1, + STATE(2640), 1, aux_sym__tuple_type_body_repeat1, - [104291] = 4, + [104483] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3011), 1, - anon_sym_extends, - ACTIONS(4231), 1, - anon_sym_AMP, - ACTIONS(4233), 1, - anon_sym_PIPE, - [104304] = 4, + ACTIONS(5248), 1, + sym_identifier, + ACTIONS(5250), 1, + sym_this, + STATE(2911), 1, + sym_type_predicate, + [104496] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4231), 1, - anon_sym_AMP, - ACTIONS(4233), 1, - anon_sym_PIPE, - ACTIONS(4338), 1, - anon_sym_extends, - [104317] = 4, + ACTIONS(1133), 1, + anon_sym_COMMA, + ACTIONS(3355), 1, + anon_sym_RPAREN, + STATE(2650), 1, + aux_sym_array_repeat1, + [104509] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2656), 1, - anon_sym_GT, - ACTIONS(5210), 1, + ACTIONS(1133), 1, anon_sym_COMMA, - STATE(2512), 1, - aux_sym_implements_clause_repeat1, - [104330] = 4, + ACTIONS(3355), 1, + anon_sym_RPAREN, + STATE(2570), 1, + aux_sym_array_repeat1, + [104522] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3467), 1, + ACTIONS(5252), 1, + anon_sym_LBRACE, + ACTIONS(4861), 2, anon_sym_extends, - ACTIONS(4231), 1, - anon_sym_AMP, - ACTIONS(4233), 1, - anon_sym_PIPE, - [104343] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5212), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [104352] = 2, + anon_sym_LBRACE_PIPE, + [104533] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5214), 3, + ACTIONS(5254), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [104361] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5216), 1, - anon_sym_LPAREN, - ACTIONS(5218), 1, - anon_sym_await, - STATE(30), 1, - sym__for_header, - [104374] = 4, + [104542] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5220), 1, + ACTIONS(5256), 1, anon_sym_COMMA, - ACTIONS(5222), 1, - anon_sym_RPAREN, - STATE(2673), 1, - aux_sym_formal_parameters_repeat1, - [104387] = 2, + ACTIONS(5258), 1, + anon_sym_GT, + STATE(2686), 1, + aux_sym_type_parameters_repeat1, + [104555] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5224), 3, + ACTIONS(5260), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [104396] = 2, + [104564] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3339), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_implements, - [104405] = 4, + ACTIONS(5258), 1, + anon_sym_GT, + ACTIONS(5262), 1, + sym_identifier, + STATE(2912), 1, + sym_type_parameter, + [104577] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1143), 1, + ACTIONS(5244), 1, anon_sym_COMMA, - ACTIONS(3343), 1, - anon_sym_RPAREN, - STATE(2634), 1, - aux_sym_array_repeat1, - [104418] = 4, + ACTIONS(5264), 1, + anon_sym_RBRACK, + STATE(2763), 1, + aux_sym__tuple_type_body_repeat1, + [104590] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1143), 1, + ACTIONS(1133), 1, anon_sym_COMMA, - ACTIONS(3343), 1, - anon_sym_RPAREN, - STATE(2487), 1, + ACTIONS(5266), 1, + anon_sym_RBRACK, + STATE(2570), 1, aux_sym_array_repeat1, - [104431] = 4, + [104603] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1143), 1, + ACTIONS(2678), 1, + anon_sym_GT, + ACTIONS(5268), 1, anon_sym_COMMA, - ACTIONS(3324), 1, - anon_sym_RBRACK, - STATE(2675), 1, - aux_sym_array_repeat1, - [104444] = 3, + STATE(2593), 1, + aux_sym_implements_clause_repeat1, + [104616] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5226), 1, - sym_identifier, - ACTIONS(5228), 2, + ACTIONS(5270), 3, sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - [104455] = 3, + [104625] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5230), 1, - sym_identifier, - ACTIONS(5232), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [104466] = 4, + ACTIONS(5244), 1, + anon_sym_COMMA, + ACTIONS(5272), 1, + anon_sym_RBRACK, + STATE(2632), 1, + aux_sym__tuple_type_body_repeat1, + [104638] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3076), 3, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_EQ_GT, + [104647] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1143), 1, + ACTIONS(5169), 1, + anon_sym_RBRACE, + ACTIONS(5274), 1, anon_sym_COMMA, - ACTIONS(3324), 1, - anon_sym_RBRACK, - STATE(2487), 1, - aux_sym_array_repeat1, - [104479] = 4, + STATE(2638), 1, + aux_sym_enum_body_repeat1, + [104660] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4231), 1, - anon_sym_AMP, - ACTIONS(4233), 1, - anon_sym_PIPE, - ACTIONS(4235), 1, - anon_sym_extends, - [104492] = 4, + ACTIONS(5244), 1, + anon_sym_COMMA, + ACTIONS(5277), 1, + anon_sym_RBRACK, + STATE(2726), 1, + aux_sym__tuple_type_body_repeat1, + [104673] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5206), 1, + ACTIONS(5244), 1, anon_sym_COMMA, - ACTIONS(5234), 1, + ACTIONS(5279), 1, anon_sym_RBRACK, - STATE(2649), 1, + STATE(2763), 1, aux_sym__tuple_type_body_repeat1, - [104505] = 4, + [104686] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(113), 1, anon_sym_COMMA, - ACTIONS(5236), 1, + ACTIONS(5281), 1, anon_sym_RBRACE, - STATE(2666), 1, + STATE(2773), 1, aux_sym_object_repeat1, - [104518] = 2, + [104699] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5238), 3, - sym__automatic_semicolon, + ACTIONS(1133), 1, anon_sym_COMMA, - anon_sym_SEMI, - [104527] = 4, + ACTIONS(3361), 1, + anon_sym_RPAREN, + STATE(2570), 1, + aux_sym_array_repeat1, + [104712] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4164), 1, - anon_sym_RBRACE, - ACTIONS(5240), 1, + ACTIONS(1133), 1, anon_sym_COMMA, - STATE(2668), 1, - aux_sym_enum_body_repeat1, - [104540] = 4, + ACTIONS(3361), 1, + anon_sym_RPAREN, + STATE(2619), 1, + aux_sym_array_repeat1, + [104725] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5242), 1, + ACTIONS(1133), 1, + anon_sym_COMMA, + ACTIONS(3436), 1, + anon_sym_RPAREN, + STATE(2741), 1, + aux_sym_array_repeat1, + [104738] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4040), 1, + anon_sym_RPAREN, + ACTIONS(5283), 1, + anon_sym_COMMA, + STATE(2768), 1, + aux_sym_formal_parameters_repeat1, + [104751] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5285), 1, sym_identifier, - STATE(1752), 1, + STATE(1778), 1, sym_decorator_member_expression, - STATE(1817), 1, + STATE(1824), 1, sym_decorator_call_expression, - [104553] = 2, + [104764] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5244), 3, - sym__automatic_semicolon, - anon_sym_from, - anon_sym_SEMI, - [104562] = 4, + ACTIONS(1495), 1, + anon_sym_LBRACE, + ACTIONS(1493), 2, + anon_sym_COMMA, + anon_sym_LBRACE_PIPE, + [104775] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5246), 1, + ACTIONS(1133), 1, anon_sym_COMMA, - ACTIONS(5248), 1, - anon_sym_GT, - STATE(2684), 1, - aux_sym_type_parameters_repeat1, - [104575] = 4, + ACTIONS(3436), 1, + anon_sym_RPAREN, + STATE(2570), 1, + aux_sym_array_repeat1, + [104788] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(113), 1, + anon_sym_COMMA, + ACTIONS(5287), 1, + anon_sym_RBRACE, + STATE(2773), 1, + aux_sym_object_repeat1, + [104801] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1143), 1, + ACTIONS(1133), 1, anon_sym_COMMA, - ACTIONS(5250), 1, + ACTIONS(5289), 1, anon_sym_RPAREN, - STATE(2487), 1, + STATE(2570), 1, aux_sym_array_repeat1, - [104588] = 2, + [104814] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(113), 1, + anon_sym_COMMA, + ACTIONS(5291), 1, + anon_sym_RBRACE, + STATE(2773), 1, + aux_sym_object_repeat1, + [104827] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5252), 3, + ACTIONS(5293), 3, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + [104836] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5295), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [104597] = 4, + [104845] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5254), 1, - sym_identifier, - ACTIONS(5256), 1, - anon_sym_GT, - STATE(2859), 1, - sym_type_parameter, - [104610] = 4, + ACTIONS(4857), 1, + anon_sym_COMMA, + ACTIONS(4859), 1, + anon_sym_RBRACE, + STATE(2724), 1, + aux_sym_enum_body_repeat1, + [104858] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5206), 1, + ACTIONS(1133), 1, anon_sym_COMMA, - ACTIONS(5258), 1, + ACTIONS(5297), 1, anon_sym_RBRACK, - STATE(2727), 1, - aux_sym__tuple_type_body_repeat1, - [104623] = 2, + STATE(2570), 1, + aux_sym_array_repeat1, + [104871] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4474), 3, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - [104632] = 4, + ACTIONS(5299), 1, + anon_sym_as, + ACTIONS(5301), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [104882] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5256), 1, - anon_sym_GT, - ACTIONS(5260), 1, - anon_sym_COMMA, - STATE(2709), 1, - aux_sym_type_parameters_repeat1, - [104645] = 2, + ACTIONS(3706), 1, + anon_sym_extends, + ACTIONS(4239), 1, + anon_sym_AMP, + ACTIONS(4241), 1, + anon_sym_PIPE, + [104895] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4128), 3, - sym__automatic_semicolon, + ACTIONS(4022), 1, + anon_sym_RPAREN, + ACTIONS(5303), 1, anon_sym_COMMA, - anon_sym_SEMI, - [104654] = 2, + STATE(2711), 1, + aux_sym_formal_parameters_repeat1, + [104908] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5262), 3, - sym__automatic_semicolon, + ACTIONS(3347), 3, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_SEMI, - [104663] = 4, + anon_sym_implements, + [104917] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(113), 1, + ACTIONS(4022), 1, + anon_sym_RPAREN, + ACTIONS(5303), 1, anon_sym_COMMA, - ACTIONS(5264), 1, - anon_sym_RBRACE, - STATE(2751), 1, - aux_sym_object_repeat1, - [104676] = 2, + STATE(2768), 1, + aux_sym_formal_parameters_repeat1, + [104930] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5266), 3, + ACTIONS(4040), 1, + anon_sym_RPAREN, + ACTIONS(5283), 1, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_RBRACK, - [104685] = 4, + STATE(2666), 1, + aux_sym_formal_parameters_repeat1, + [104943] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(113), 1, - anon_sym_COMMA, - ACTIONS(5268), 1, - anon_sym_RBRACE, - STATE(2730), 1, - aux_sym_object_repeat1, - [104698] = 4, + ACTIONS(497), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(929), 1, + anon_sym_LBRACE, + STATE(568), 1, + sym_object_type, + [104956] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(113), 1, - anon_sym_COMMA, - ACTIONS(5270), 1, - anon_sym_RBRACE, - STATE(2730), 1, - aux_sym_object_repeat1, - [104711] = 4, + ACTIONS(5305), 1, + sym_identifier, + ACTIONS(5307), 1, + anon_sym_require, + STATE(2750), 1, + sym_nested_identifier, + [104969] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(113), 1, - anon_sym_COMMA, - ACTIONS(5264), 1, - anon_sym_RBRACE, - STATE(2730), 1, - aux_sym_object_repeat1, - [104724] = 2, + ACTIONS(1776), 1, + anon_sym_LBRACE, + ACTIONS(5309), 1, + anon_sym_LPAREN, + STATE(535), 1, + sym_statement_block, + [104982] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5272), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [104733] = 4, + ACTIONS(845), 1, + anon_sym_DQUOTE, + ACTIONS(847), 1, + anon_sym_SQUOTE, + STATE(3181), 1, + sym_string, + [104995] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1691), 1, - anon_sym_LT, - ACTIONS(5274), 1, - anon_sym_EQ, - STATE(3003), 1, - sym_type_parameters, - [104746] = 4, + ACTIONS(4050), 1, + anon_sym_RPAREN, + ACTIONS(5311), 1, + anon_sym_COMMA, + STATE(2768), 1, + aux_sym_formal_parameters_repeat1, + [105008] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5276), 1, + ACTIONS(3399), 3, anon_sym_COMMA, - ACTIONS(5279), 1, + anon_sym_RPAREN, anon_sym_RBRACK, - STATE(2649), 1, - aux_sym__tuple_type_body_repeat1, - [104759] = 4, + [105017] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5281), 1, - sym_identifier, - ACTIONS(5283), 1, - anon_sym_require, - STATE(2780), 1, - sym_nested_identifier, - [104772] = 2, + ACTIONS(5313), 1, + anon_sym_COMMA, + ACTIONS(5315), 1, + anon_sym_RBRACE, + STATE(2747), 1, + aux_sym_named_imports_repeat1, + [105030] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5285), 3, - sym__automatic_semicolon, + ACTIONS(5317), 1, anon_sym_COMMA, - anon_sym_SEMI, - [104781] = 2, + ACTIONS(5320), 1, + anon_sym_RBRACE, + STATE(2669), 1, + aux_sym_named_imports_repeat1, + [105043] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5287), 3, + ACTIONS(5322), 1, + sym_identifier, + ACTIONS(5324), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [104790] = 4, + [105054] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(113), 1, anon_sym_COMMA, - ACTIONS(5289), 1, + ACTIONS(5326), 1, anon_sym_RBRACE, - STATE(2679), 1, + STATE(2697), 1, aux_sym_object_repeat1, - [104803] = 2, + [105067] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5291), 3, - sym__automatic_semicolon, + ACTIONS(1133), 1, anon_sym_COMMA, - anon_sym_SEMI, - [104812] = 4, + ACTIONS(5328), 1, + anon_sym_RBRACK, + STATE(2570), 1, + aux_sym_array_repeat1, + [105080] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(113), 1, anon_sym_COMMA, - ACTIONS(5289), 1, + ACTIONS(5326), 1, anon_sym_RBRACE, - STATE(2730), 1, + STATE(2773), 1, aux_sym_object_repeat1, - [104825] = 4, + [105093] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4717), 1, - anon_sym_COMMA, - ACTIONS(5293), 1, - anon_sym_LBRACE, - STATE(2512), 1, - aux_sym_implements_clause_repeat1, - [104838] = 2, + ACTIONS(5330), 1, + sym_identifier, + ACTIONS(5332), 1, + sym_this, + STATE(2202), 1, + sym_type_predicate, + [105106] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5295), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [104847] = 2, + ACTIONS(497), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(929), 1, + anon_sym_LBRACE, + STATE(580), 1, + sym_object_type, + [105119] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5297), 3, + ACTIONS(5334), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [104856] = 4, + [105128] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(113), 1, - anon_sym_COMMA, - ACTIONS(5299), 1, + ACTIONS(4885), 1, anon_sym_RBRACE, - STATE(2730), 1, - aux_sym_object_repeat1, - [104869] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5301), 3, - sym__automatic_semicolon, + ACTIONS(5336), 1, anon_sym_COMMA, - anon_sym_SEMI, - [104878] = 4, + STATE(2738), 1, + aux_sym_export_clause_repeat1, + [105141] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1143), 1, + ACTIONS(1133), 1, anon_sym_COMMA, - ACTIONS(3356), 1, + ACTIONS(3406), 1, anon_sym_RBRACK, - STATE(2681), 1, + STATE(2672), 1, aux_sym_array_repeat1, - [104891] = 4, + [105154] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1143), 1, + ACTIONS(1133), 1, anon_sym_COMMA, - ACTIONS(3356), 1, + ACTIONS(3428), 1, anon_sym_RBRACK, - STATE(2487), 1, + STATE(2699), 1, aux_sym_array_repeat1, - [104904] = 4, + [105167] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5303), 1, - anon_sym_EQ, - ACTIONS(5305), 1, + ACTIONS(1133), 1, anon_sym_COMMA, - ACTIONS(5307), 1, - anon_sym_from, - [104917] = 2, + ACTIONS(3428), 1, + anon_sym_RBRACK, + STATE(2570), 1, + aux_sym_array_repeat1, + [105180] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5309), 3, + ACTIONS(5338), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [104926] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5311), 1, - anon_sym_LBRACE, - ACTIONS(4871), 2, - anon_sym_extends, - anon_sym_LBRACE_PIPE, - [104937] = 4, + [105189] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(113), 1, - anon_sym_COMMA, - ACTIONS(5313), 1, - anon_sym_RBRACE, - STATE(2730), 1, - aux_sym_object_repeat1, - [104950] = 4, + ACTIONS(5340), 3, + sym__automatic_semicolon, + anon_sym_from, + anon_sym_SEMI, + [105198] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5315), 1, + ACTIONS(1133), 1, anon_sym_COMMA, - ACTIONS(5317), 1, - anon_sym_RBRACE, - STATE(2769), 1, - aux_sym_named_imports_repeat1, - [104963] = 4, + ACTIONS(3414), 1, + anon_sym_RBRACK, + STATE(2570), 1, + aux_sym_array_repeat1, + [105211] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5108), 1, - anon_sym_RBRACE, - ACTIONS(5319), 1, - anon_sym_COMMA, - STATE(2668), 1, - aux_sym_enum_body_repeat1, - [104976] = 4, + ACTIONS(5262), 1, + sym_identifier, + ACTIONS(5342), 1, + anon_sym_GT, + STATE(2912), 1, + sym_type_parameter, + [105224] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(113), 1, anon_sym_COMMA, - ACTIONS(5236), 1, + ACTIONS(5344), 1, anon_sym_RBRACE, - STATE(2730), 1, + STATE(2773), 1, aux_sym_object_repeat1, - [104989] = 4, + [105237] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5305), 1, + ACTIONS(5346), 1, anon_sym_COMMA, - ACTIONS(5307), 1, - anon_sym_from, - ACTIONS(5322), 1, - anon_sym_EQ, - [105002] = 4, + ACTIONS(5349), 1, + anon_sym_GT, + STATE(2686), 1, + aux_sym_type_parameters_repeat1, + [105250] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1691), 1, - anon_sym_LT, - ACTIONS(5324), 1, - anon_sym_EQ, - STATE(3078), 1, - sym_type_parameters, - [105015] = 4, + ACTIONS(1133), 1, + anon_sym_COMMA, + ACTIONS(3414), 1, + anon_sym_RBRACK, + STATE(2633), 1, + aux_sym_array_repeat1, + [105263] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2628), 1, - anon_sym_GT, - ACTIONS(5326), 1, + ACTIONS(5351), 3, + sym__automatic_semicolon, anon_sym_COMMA, - STATE(2512), 1, - aux_sym_implements_clause_repeat1, - [105028] = 4, + anon_sym_SEMI, + [105272] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4030), 1, - anon_sym_RPAREN, - ACTIONS(5328), 1, + ACTIONS(113), 1, anon_sym_COMMA, - STATE(2762), 1, - aux_sym_formal_parameters_repeat1, - [105041] = 4, + ACTIONS(5353), 1, + anon_sym_RBRACE, + STATE(2773), 1, + aux_sym_object_repeat1, + [105285] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4030), 1, - anon_sym_RPAREN, - ACTIONS(5328), 1, - anon_sym_COMMA, - STATE(2737), 1, - aux_sym_formal_parameters_repeat1, - [105054] = 4, + ACTIONS(2344), 1, + anon_sym_DQUOTE, + ACTIONS(2346), 1, + anon_sym_SQUOTE, + STATE(2915), 1, + sym_string, + [105298] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1143), 1, + ACTIONS(1133), 1, anon_sym_COMMA, - ACTIONS(5330), 1, + ACTIONS(3406), 1, anon_sym_RBRACK, - STATE(2487), 1, + STATE(2570), 1, aux_sym_array_repeat1, - [105067] = 3, + [105311] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5355), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [105320] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1477), 1, + ACTIONS(4554), 3, anon_sym_LBRACE, - ACTIONS(1475), 2, + anon_sym_COLON, + anon_sym_EQ_GT, + [105329] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5357), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - [105078] = 4, + anon_sym_SEMI, + [105338] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5206), 1, + ACTIONS(5359), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(5332), 1, - anon_sym_RBRACK, - STATE(2738), 1, - aux_sym__tuple_type_body_repeat1, - [105091] = 4, + anon_sym_SEMI, + [105347] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(113), 1, anon_sym_COMMA, - ACTIONS(5334), 1, + ACTIONS(5361), 1, anon_sym_RBRACE, - STATE(2730), 1, + STATE(2773), 1, aux_sym_object_repeat1, - [105104] = 4, + [105360] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(113), 1, anon_sym_COMMA, - ACTIONS(5336), 1, + ACTIONS(5363), 1, anon_sym_RBRACE, - STATE(2730), 1, + STATE(2773), 1, aux_sym_object_repeat1, - [105117] = 2, + [105373] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2983), 3, + ACTIONS(3363), 1, anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - [105126] = 4, + ACTIONS(3347), 2, + anon_sym_COMMA, + anon_sym_LBRACE_PIPE, + [105384] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1143), 1, + ACTIONS(1133), 1, anon_sym_COMMA, - ACTIONS(5338), 1, + ACTIONS(5365), 1, anon_sym_RBRACK, - STATE(2487), 1, + STATE(2570), 1, aux_sym_array_repeat1, - [105139] = 4, + [105397] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2654), 1, - anon_sym_GT, - ACTIONS(5340), 1, + ACTIONS(5367), 3, + sym__automatic_semicolon, anon_sym_COMMA, - STATE(2512), 1, - aux_sym_implements_clause_repeat1, - [105152] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5254), 1, - sym_identifier, - ACTIONS(5342), 1, - anon_sym_GT, - STATE(2859), 1, - sym_type_parameter, - [105165] = 4, + anon_sym_SEMI, + [105406] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5342), 1, - anon_sym_GT, - ACTIONS(5344), 1, + ACTIONS(5369), 3, + sym__automatic_semicolon, anon_sym_COMMA, - STATE(2709), 1, - aux_sym_type_parameters_repeat1, - [105178] = 3, + anon_sym_SEMI, + [105415] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1491), 1, @@ -152409,5933 +152939,5951 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(1489), 2, anon_sym_COMMA, anon_sym_LBRACE_PIPE, - [105189] = 4, + [105426] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5346), 1, - anon_sym_COMMA, - ACTIONS(5348), 1, - anon_sym_RPAREN, - STATE(2704), 1, - aux_sym_formal_parameters_repeat1, - [105202] = 4, + ACTIONS(765), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(2591), 1, + anon_sym_LBRACE, + STATE(2353), 1, + sym_object_type, + [105439] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5206), 1, + ACTIONS(4438), 1, + anon_sym_DOT, + ACTIONS(5371), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [105450] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5244), 1, anon_sym_COMMA, - ACTIONS(5350), 1, + ACTIONS(5373), 1, anon_sym_RBRACK, - STATE(2701), 1, + STATE(2719), 1, aux_sym__tuple_type_body_repeat1, - [105215] = 2, + [105463] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5352), 3, - sym__automatic_semicolon, + ACTIONS(113), 1, anon_sym_COMMA, - anon_sym_SEMI, - [105224] = 2, + ACTIONS(5375), 1, + anon_sym_RBRACE, + STATE(2773), 1, + aux_sym_object_repeat1, + [105476] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5354), 3, + ACTIONS(5377), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [105233] = 4, + [105485] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1143), 1, + ACTIONS(5379), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(3333), 1, - anon_sym_RBRACK, - STATE(2487), 1, - aux_sym_array_repeat1, - [105246] = 4, + anon_sym_SEMI, + [105494] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2672), 1, + ACTIONS(2680), 1, anon_sym_GT, - ACTIONS(5356), 1, + ACTIONS(5381), 1, anon_sym_COMMA, - STATE(2512), 1, + STATE(2593), 1, aux_sym_implements_clause_repeat1, - [105259] = 4, + [105507] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1143), 1, + ACTIONS(113), 1, anon_sym_COMMA, - ACTIONS(3333), 1, - anon_sym_RBRACK, - STATE(2605), 1, - aux_sym_array_repeat1, - [105272] = 2, + ACTIONS(5375), 1, + anon_sym_RBRACE, + STATE(2649), 1, + aux_sym_object_repeat1, + [105520] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5358), 3, - sym__automatic_semicolon, + ACTIONS(4042), 1, + anon_sym_RPAREN, + ACTIONS(5383), 1, anon_sym_COMMA, - anon_sym_SEMI, - [105281] = 2, + STATE(2768), 1, + aux_sym_formal_parameters_repeat1, + [105533] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5360), 3, - sym__automatic_semicolon, + ACTIONS(1487), 1, + anon_sym_LBRACE, + ACTIONS(1485), 2, anon_sym_COMMA, - anon_sym_SEMI, - [105290] = 2, + anon_sym_LBRACE_PIPE, + [105544] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5362), 3, + ACTIONS(5385), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [105299] = 4, + [105553] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1143), 1, + ACTIONS(1133), 1, anon_sym_COMMA, - ACTIONS(3360), 1, + ACTIONS(3426), 1, anon_sym_RPAREN, - STATE(2707), 1, + STATE(2725), 1, aux_sym_array_repeat1, - [105312] = 4, + [105566] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1143), 1, + ACTIONS(1133), 1, anon_sym_COMMA, - ACTIONS(3360), 1, + ACTIONS(3426), 1, anon_sym_RPAREN, - STATE(2487), 1, + STATE(2570), 1, aux_sym_array_repeat1, - [105325] = 4, + [105579] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(497), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(929), 1, - anon_sym_LBRACE, - STATE(603), 1, - sym_object_type, - [105338] = 4, + ACTIONS(5387), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [105588] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(113), 1, + ACTIONS(5389), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(5268), 1, - anon_sym_RBRACE, - STATE(2745), 1, - aux_sym_object_repeat1, - [105351] = 3, + anon_sym_SEMI, + [105597] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1463), 1, - anon_sym_LBRACE, - ACTIONS(1461), 2, - anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - [105362] = 4, + ACTIONS(5391), 1, + sym_identifier, + ACTIONS(5393), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [105608] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5206), 1, + ACTIONS(5244), 1, anon_sym_COMMA, - ACTIONS(5364), 1, + ACTIONS(5395), 1, anon_sym_RBRACK, - STATE(2649), 1, + STATE(2763), 1, aux_sym__tuple_type_body_repeat1, - [105375] = 4, + [105621] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(747), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(2554), 1, - anon_sym_LBRACE, - STATE(2265), 1, - sym_object_type, - [105388] = 2, + ACTIONS(5397), 1, + anon_sym_LPAREN, + ACTIONS(5399), 1, + anon_sym_await, + STATE(31), 1, + sym__for_header, + [105634] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4448), 3, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - [105397] = 4, + ACTIONS(2656), 1, + anon_sym_GT, + ACTIONS(5401), 1, + anon_sym_COMMA, + STATE(2593), 1, + aux_sym_implements_clause_repeat1, + [105647] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4018), 1, - anon_sym_RPAREN, - ACTIONS(5366), 1, - anon_sym_COMMA, - STATE(2762), 1, - aux_sym_formal_parameters_repeat1, - [105410] = 3, + ACTIONS(5403), 1, + anon_sym_LPAREN, + ACTIONS(5405), 1, + anon_sym_await, + STATE(40), 1, + sym__for_header, + [105660] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1467), 1, + ACTIONS(5407), 1, anon_sym_LBRACE, - ACTIONS(1465), 2, - anon_sym_COMMA, + ACTIONS(4835), 2, + anon_sym_extends, anon_sym_LBRACE_PIPE, - [105421] = 2, + [105671] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5368), 3, - sym__automatic_semicolon, + ACTIONS(4188), 1, + anon_sym_RBRACE, + ACTIONS(5409), 1, anon_sym_COMMA, - anon_sym_SEMI, - [105430] = 4, + STATE(2638), 1, + aux_sym_enum_body_repeat1, + [105684] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1143), 1, + ACTIONS(1133), 1, anon_sym_COMMA, - ACTIONS(5370), 1, + ACTIONS(5411), 1, anon_sym_RPAREN, - STATE(2487), 1, + STATE(2570), 1, aux_sym_array_repeat1, - [105443] = 3, + [105697] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1471), 1, - anon_sym_LBRACE, - ACTIONS(1469), 2, + ACTIONS(5244), 1, anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - [105454] = 4, + ACTIONS(5413), 1, + anon_sym_RBRACK, + STATE(2763), 1, + aux_sym__tuple_type_body_repeat1, + [105710] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5372), 1, - anon_sym_COMMA, - ACTIONS(5375), 1, - anon_sym_GT, - STATE(2709), 1, - aux_sym_type_parameters_repeat1, - [105467] = 4, + ACTIONS(5415), 3, + sym__automatic_semicolon, + anon_sym_from, + anon_sym_SEMI, + [105719] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5254), 1, - sym_identifier, - ACTIONS(5377), 1, - anon_sym_GT, - STATE(2859), 1, - sym_type_parameter, - [105480] = 4, + ACTIONS(5417), 1, + anon_sym_LBRACE, + ACTIONS(4833), 2, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + [105730] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1143), 1, - anon_sym_COMMA, - ACTIONS(3400), 1, - anon_sym_RPAREN, - STATE(2747), 1, - aux_sym_array_repeat1, - [105493] = 4, + ACTIONS(4358), 1, + anon_sym_is, + ACTIONS(4488), 2, + anon_sym_LBRACE, + anon_sym_EQ_GT, + [105741] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1143), 1, + ACTIONS(4152), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(3400), 1, - anon_sym_RPAREN, - STATE(2487), 1, - aux_sym_array_repeat1, - [105506] = 4, + anon_sym_SEMI, + [105750] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1143), 1, - anon_sym_COMMA, - ACTIONS(3402), 1, - anon_sym_RPAREN, - STATE(2757), 1, - aux_sym_array_repeat1, - [105519] = 4, + ACTIONS(4446), 3, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_EQ_GT, + [105759] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4018), 1, - anon_sym_RPAREN, - ACTIONS(5366), 1, - anon_sym_COMMA, - STATE(2758), 1, - aux_sym_formal_parameters_repeat1, - [105532] = 4, + ACTIONS(5262), 1, + sym_identifier, + ACTIONS(5419), 1, + anon_sym_GT, + STATE(2912), 1, + sym_type_parameter, + [105772] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1143), 1, + ACTIONS(5421), 1, + anon_sym_as, + ACTIONS(5423), 2, anon_sym_COMMA, - ACTIONS(3402), 1, - anon_sym_RPAREN, - STATE(2487), 1, - aux_sym_array_repeat1, - [105545] = 4, + anon_sym_RBRACE, + [105783] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(113), 1, anon_sym_COMMA, - ACTIONS(5379), 1, + ACTIONS(5425), 1, anon_sym_RBRACE, - STATE(2740), 1, + STATE(2758), 1, aux_sym_object_repeat1, - [105558] = 4, + [105796] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1781), 1, - anon_sym_LBRACE, - ACTIONS(5381), 1, - anon_sym_LPAREN, - STATE(536), 1, - sym_statement_block, - [105571] = 4, + ACTIONS(5427), 3, + sym__automatic_semicolon, + anon_sym_from, + anon_sym_SEMI, + [105805] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(113), 1, anon_sym_COMMA, - ACTIONS(5379), 1, + ACTIONS(5425), 1, anon_sym_RBRACE, - STATE(2730), 1, + STATE(2773), 1, aux_sym_object_repeat1, - [105584] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5383), 1, - sym_identifier, - ACTIONS(5385), 1, - sym_this, - STATE(2824), 1, - sym_type_predicate, - [105597] = 4, + [105818] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1143), 1, + ACTIONS(5429), 1, anon_sym_COMMA, - ACTIONS(3416), 1, - anon_sym_RBRACK, - STATE(2755), 1, - aux_sym_array_repeat1, - [105610] = 4, + ACTIONS(5431), 1, + anon_sym_RBRACE, + STATE(2677), 1, + aux_sym_export_clause_repeat1, + [105831] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1143), 1, + ACTIONS(5433), 1, anon_sym_COMMA, - ACTIONS(3416), 1, - anon_sym_RBRACK, - STATE(2487), 1, - aux_sym_array_repeat1, - [105623] = 4, + ACTIONS(5436), 1, + anon_sym_RBRACE, + STATE(2738), 1, + aux_sym_export_clause_repeat1, + [105844] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5387), 1, - sym_identifier, - ACTIONS(5389), 1, - sym_this, - STATE(2241), 1, - sym_type_predicate, - [105636] = 2, + ACTIONS(765), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(2591), 1, + anon_sym_LBRACE, + STATE(2311), 1, + sym_object_type, + [105857] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5391), 3, - sym__automatic_semicolon, - anon_sym_from, - anon_sym_SEMI, - [105645] = 4, + ACTIONS(4921), 1, + anon_sym_COMMA, + ACTIONS(4923), 1, + anon_sym_RBRACE, + STATE(2782), 1, + aux_sym_enum_body_repeat1, + [105870] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1143), 1, + ACTIONS(1133), 1, anon_sym_COMMA, - ACTIONS(3373), 1, - anon_sym_RBRACK, - STATE(2742), 1, + ACTIONS(5438), 1, + anon_sym_RPAREN, + STATE(2570), 1, aux_sym_array_repeat1, - [105658] = 4, + [105883] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1143), 1, + ACTIONS(1133), 1, anon_sym_COMMA, - ACTIONS(3373), 1, + ACTIONS(3410), 1, anon_sym_RBRACK, - STATE(2487), 1, + STATE(2760), 1, aux_sym_array_repeat1, - [105671] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5393), 1, - anon_sym_as, - ACTIONS(5395), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [105682] = 4, + [105896] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5206), 1, + ACTIONS(1133), 1, anon_sym_COMMA, - ACTIONS(5397), 1, + ACTIONS(3410), 1, anon_sym_RBRACK, - STATE(2649), 1, - aux_sym__tuple_type_body_repeat1, - [105695] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5399), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [105704] = 4, + STATE(2570), 1, + aux_sym_array_repeat1, + [105909] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5401), 1, + ACTIONS(5440), 1, anon_sym_COMMA, - ACTIONS(5403), 1, + ACTIONS(5442), 1, anon_sym_GT, - STATE(2639), 1, + STATE(2686), 1, aux_sym_type_parameters_repeat1, - [105717] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5405), 1, - anon_sym_COMMA, - ACTIONS(5408), 1, - anon_sym_RBRACE, - STATE(2730), 1, - aux_sym_object_repeat1, - [105730] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5410), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [105739] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4388), 1, - anon_sym_implements, - ACTIONS(5412), 1, - anon_sym_LBRACE, - STATE(3101), 1, - sym_implements_clause, - [105752] = 2, + [105922] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5414), 3, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_RBRACK, - [105761] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5416), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [105770] = 3, + ACTIONS(1678), 1, + anon_sym_LT, + ACTIONS(5444), 1, + anon_sym_EQ, + STATE(3039), 1, + sym_type_parameters, + [105935] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4420), 1, - anon_sym_DOT, - ACTIONS(5418), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [105781] = 4, + ACTIONS(4404), 1, + anon_sym_implements, + ACTIONS(5446), 1, + anon_sym_LBRACE, + STATE(3164), 1, + sym_implements_clause, + [105948] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4881), 1, + ACTIONS(4933), 1, anon_sym_RBRACE, - ACTIONS(5420), 1, + ACTIONS(5448), 1, anon_sym_COMMA, - STATE(2774), 1, - aux_sym_export_clause_repeat1, - [105794] = 4, + STATE(2669), 1, + aux_sym_named_imports_repeat1, + [105961] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4024), 1, - anon_sym_RPAREN, - ACTIONS(5422), 1, + ACTIONS(5450), 1, anon_sym_COMMA, - STATE(2762), 1, - aux_sym_formal_parameters_repeat1, - [105807] = 4, + ACTIONS(5452), 1, + anon_sym_GT, + STATE(2629), 1, + aux_sym_type_parameters_repeat1, + [105974] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5206), 1, + ACTIONS(113), 1, anon_sym_COMMA, - ACTIONS(5424), 1, - anon_sym_RBRACK, - STATE(2649), 1, - aux_sym__tuple_type_body_repeat1, - [105820] = 4, + ACTIONS(5454), 1, + anon_sym_RBRACE, + STATE(2685), 1, + aux_sym_object_repeat1, + [105987] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4438), 1, + anon_sym_DOT, + ACTIONS(5456), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [105998] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(113), 1, anon_sym_COMMA, - ACTIONS(5426), 1, + ACTIONS(5454), 1, anon_sym_RBRACE, - STATE(2730), 1, + STATE(2773), 1, aux_sym_object_repeat1, - [105833] = 4, + [106011] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5262), 1, + sym_identifier, + ACTIONS(5442), 1, + anon_sym_GT, + STATE(2912), 1, + sym_type_parameter, + [106024] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(113), 1, anon_sym_COMMA, - ACTIONS(5428), 1, + ACTIONS(5458), 1, anon_sym_RBRACE, - STATE(2730), 1, + STATE(2773), 1, aux_sym_object_repeat1, - [105846] = 2, + [106037] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5430), 3, + ACTIONS(5460), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [105855] = 4, + [106046] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1143), 1, + ACTIONS(5462), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(5432), 1, - anon_sym_RBRACK, - STATE(2487), 1, - aux_sym_array_repeat1, - [105868] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5254), 1, - sym_identifier, - ACTIONS(5434), 1, - anon_sym_GT, - STATE(2859), 1, - sym_type_parameter, - [105881] = 2, + anon_sym_SEMI, + [106055] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5436), 3, + ACTIONS(5026), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [105890] = 4, + [106064] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(113), 1, anon_sym_COMMA, - ACTIONS(5438), 1, + ACTIONS(5464), 1, anon_sym_RBRACE, - STATE(2730), 1, + STATE(2773), 1, aux_sym_object_repeat1, - [105903] = 4, + [106077] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4895), 1, + ACTIONS(113), 1, anon_sym_COMMA, - ACTIONS(4897), 1, + ACTIONS(5466), 1, anon_sym_RBRACE, - STATE(2776), 1, - aux_sym_enum_body_repeat1, - [105916] = 4, + STATE(2773), 1, + aux_sym_object_repeat1, + [106090] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1143), 1, + ACTIONS(5468), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(5440), 1, - anon_sym_RPAREN, - STATE(2487), 1, - aux_sym_array_repeat1, - [105929] = 4, + anon_sym_SEMI, + [106099] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5206), 1, + ACTIONS(1133), 1, anon_sym_COMMA, - ACTIONS(5442), 1, + ACTIONS(5470), 1, anon_sym_RBRACK, - STATE(2759), 1, - aux_sym__tuple_type_body_repeat1, - [105942] = 2, + STATE(2570), 1, + aux_sym_array_repeat1, + [106112] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4452), 3, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - [105951] = 4, + ACTIONS(5472), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [106121] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1789), 1, - anon_sym_while, - ACTIONS(5444), 1, - anon_sym_else, - STATE(546), 1, - sym_else_clause, - [105964] = 4, + ACTIONS(5474), 3, + sym__automatic_semicolon, + anon_sym_from, + anon_sym_SEMI, + [106130] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(113), 1, + ACTIONS(5476), 1, anon_sym_COMMA, - ACTIONS(5446), 1, - anon_sym_RBRACE, - STATE(2730), 1, - aux_sym_object_repeat1, - [105977] = 4, + ACTIONS(5479), 1, + anon_sym_RBRACK, + STATE(2763), 1, + aux_sym__tuple_type_body_repeat1, + [106143] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2640), 1, - anon_sym_GT, - ACTIONS(5448), 1, + ACTIONS(5481), 3, + sym__automatic_semicolon, anon_sym_COMMA, - STATE(2512), 1, - aux_sym_implements_clause_repeat1, - [105990] = 4, + anon_sym_SEMI, + [106152] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(497), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(929), 1, + ACTIONS(4520), 3, anon_sym_LBRACE, - STATE(571), 1, - sym_object_type, - [106003] = 4, + anon_sym_COLON, + anon_sym_EQ_GT, + [106161] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(845), 1, - anon_sym_DQUOTE, - ACTIONS(847), 1, - anon_sym_SQUOTE, - STATE(3149), 1, - sym_string, - [106016] = 4, + ACTIONS(5244), 1, + anon_sym_COMMA, + ACTIONS(5483), 1, + anon_sym_RBRACK, + STATE(2777), 1, + aux_sym__tuple_type_body_repeat1, + [106174] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1143), 1, + ACTIONS(1133), 1, anon_sym_COMMA, - ACTIONS(5450), 1, + ACTIONS(3397), 1, anon_sym_RBRACK, - STATE(2487), 1, + STATE(2570), 1, aux_sym_array_repeat1, - [106029] = 4, + [106187] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4913), 1, + ACTIONS(5485), 1, anon_sym_COMMA, - ACTIONS(4915), 1, - anon_sym_RBRACE, - STATE(2630), 1, - aux_sym_enum_body_repeat1, - [106042] = 4, + ACTIONS(5488), 1, + anon_sym_RPAREN, + STATE(2768), 1, + aux_sym_formal_parameters_repeat1, + [106200] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1143), 1, + ACTIONS(1133), 1, anon_sym_COMMA, - ACTIONS(5452), 1, - anon_sym_RPAREN, - STATE(2487), 1, + ACTIONS(3397), 1, + anon_sym_RBRACK, + STATE(2655), 1, aux_sym_array_repeat1, - [106055] = 4, + [106213] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4020), 1, - anon_sym_RPAREN, - ACTIONS(5454), 1, + ACTIONS(2654), 1, + anon_sym_GT, + ACTIONS(5490), 1, anon_sym_COMMA, - STATE(2762), 1, - aux_sym_formal_parameters_repeat1, - [106068] = 4, + STATE(2593), 1, + aux_sym_implements_clause_repeat1, + [106226] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5206), 1, + ACTIONS(4239), 1, + anon_sym_AMP, + ACTIONS(4241), 1, + anon_sym_PIPE, + ACTIONS(5492), 1, + anon_sym_extends, + [106239] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2642), 1, + anon_sym_GT, + ACTIONS(5494), 1, anon_sym_COMMA, - ACTIONS(5456), 1, - anon_sym_RBRACK, - STATE(2649), 1, - aux_sym__tuple_type_body_repeat1, - [106081] = 4, + STATE(2593), 1, + aux_sym_implements_clause_repeat1, + [106252] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5458), 1, + ACTIONS(5496), 1, anon_sym_COMMA, - ACTIONS(5461), 1, + ACTIONS(5499), 1, anon_sym_RBRACE, - STATE(2760), 1, - aux_sym_named_imports_repeat1, - [106094] = 3, + STATE(2773), 1, + aux_sym_object_repeat1, + [106265] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5463), 1, - anon_sym_LBRACE, - ACTIONS(4811), 2, - anon_sym_extends, - anon_sym_LBRACE_PIPE, - [106105] = 4, + ACTIONS(5234), 1, + anon_sym_COMMA, + ACTIONS(5236), 1, + anon_sym_from, + ACTIONS(5501), 1, + anon_sym_EQ, + [106278] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5465), 1, + ACTIONS(5503), 1, anon_sym_COMMA, - ACTIONS(5468), 1, + ACTIONS(5505), 1, anon_sym_RPAREN, - STATE(2762), 1, + STATE(2660), 1, aux_sym_formal_parameters_repeat1, - [106118] = 4, + [106291] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2318), 1, - anon_sym_DQUOTE, - ACTIONS(2320), 1, - anon_sym_SQUOTE, - STATE(2965), 1, - sym_string, - [106131] = 2, + ACTIONS(1483), 1, + anon_sym_LBRACE, + ACTIONS(1481), 2, + anon_sym_COMMA, + anon_sym_LBRACE_PIPE, + [106302] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5470), 3, - sym__automatic_semicolon, - anon_sym_from, - anon_sym_SEMI, - [106140] = 3, + ACTIONS(5244), 1, + anon_sym_COMMA, + ACTIONS(5507), 1, + anon_sym_RBRACK, + STATE(2763), 1, + aux_sym__tuple_type_body_repeat1, + [106315] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5472), 1, - anon_sym_as, - ACTIONS(5474), 2, + ACTIONS(5509), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, - [106151] = 4, + anon_sym_SEMI, + [106324] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5476), 1, + ACTIONS(5511), 3, anon_sym_COMMA, - ACTIONS(5478), 1, - anon_sym_RBRACE, - STATE(2736), 1, - aux_sym_export_clause_repeat1, - [106164] = 3, + anon_sym_COLON, + anon_sym_RBRACK, + [106333] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4384), 1, - anon_sym_is, - ACTIONS(4450), 2, - anon_sym_LBRACE, - anon_sym_EQ_GT, - [106175] = 2, + ACTIONS(4239), 1, + anon_sym_AMP, + ACTIONS(4241), 1, + anon_sym_PIPE, + ACTIONS(4243), 1, + anon_sym_extends, + [106346] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4484), 3, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - [106184] = 4, + ACTIONS(113), 1, + anon_sym_COMMA, + ACTIONS(5513), 1, + anon_sym_RBRACE, + STATE(2773), 1, + aux_sym_object_repeat1, + [106359] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4907), 1, + ACTIONS(4190), 1, anon_sym_RBRACE, - ACTIONS(5480), 1, + ACTIONS(5515), 1, anon_sym_COMMA, - STATE(2760), 1, - aux_sym_named_imports_repeat1, - [106197] = 2, + STATE(2638), 1, + aux_sym_enum_body_repeat1, + [106372] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5482), 3, - sym__automatic_semicolon, + ACTIONS(4615), 1, anon_sym_COMMA, - anon_sym_SEMI, - [106206] = 2, + ACTIONS(5517), 1, + anon_sym_LBRACE, + STATE(2593), 1, + aux_sym_implements_clause_repeat1, + [106385] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5484), 3, - sym__automatic_semicolon, + ACTIONS(1467), 1, + anon_sym_LBRACE, + ACTIONS(1465), 2, anon_sym_COMMA, - anon_sym_SEMI, - [106215] = 4, + anon_sym_LBRACE_PIPE, + [106396] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(113), 1, anon_sym_COMMA, - ACTIONS(5486), 1, + ACTIONS(5458), 1, anon_sym_RBRACE, - STATE(2730), 1, + STATE(2781), 1, aux_sym_object_repeat1, - [106228] = 2, + [106409] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4940), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [106237] = 4, + ACTIONS(2937), 1, + anon_sym_extends, + ACTIONS(4239), 1, + anon_sym_AMP, + ACTIONS(4241), 1, + anon_sym_PIPE, + [106422] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5488), 1, - anon_sym_COMMA, - ACTIONS(5491), 1, - anon_sym_RBRACE, - STATE(2774), 1, - aux_sym_export_clause_repeat1, - [106250] = 4, + ACTIONS(4239), 1, + anon_sym_AMP, + ACTIONS(4241), 1, + anon_sym_PIPE, + ACTIONS(4356), 1, + anon_sym_extends, + [106435] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5493), 1, - anon_sym_LPAREN, - ACTIONS(5495), 1, - anon_sym_await, - STATE(29), 1, - sym__for_header, - [106263] = 4, + ACTIONS(3553), 1, + anon_sym_extends, + ACTIONS(4239), 1, + anon_sym_AMP, + ACTIONS(4241), 1, + anon_sym_PIPE, + [106448] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4154), 1, - anon_sym_RBRACE, - ACTIONS(5497), 1, + ACTIONS(5519), 3, + sym__automatic_semicolon, anon_sym_COMMA, - STATE(2668), 1, - aux_sym_enum_body_repeat1, - [106276] = 2, + anon_sym_SEMI, + [106457] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5499), 3, - sym__automatic_semicolon, - anon_sym_from, - anon_sym_SEMI, - [106285] = 2, + ACTIONS(1678), 1, + anon_sym_LT, + ACTIONS(5521), 1, + anon_sym_EQ, + STATE(3098), 1, + sym_type_parameters, + [106470] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5501), 3, + ACTIONS(5523), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [106294] = 2, + [106479] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5503), 3, + ACTIONS(5525), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [106303] = 3, + [106488] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4420), 1, - anon_sym_DOT, - ACTIONS(5505), 2, + ACTIONS(5527), 3, sym__automatic_semicolon, - anon_sym_SEMI, - [106314] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2632), 1, - anon_sym_GT, - ACTIONS(5507), 1, anon_sym_COMMA, - STATE(2512), 1, - aux_sym_implements_clause_repeat1, - [106327] = 3, + anon_sym_SEMI, + [106497] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1781), 1, + ACTIONS(3035), 1, anon_sym_LBRACE, - STATE(2843), 1, + STATE(1468), 1, sym_statement_block, - [106337] = 3, + [106507] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4249), 1, - anon_sym_LT, - STATE(1999), 1, - sym_type_arguments, - [106347] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5509), 1, - anon_sym_LBRACE, - STATE(548), 1, - sym_enum_body, - [106357] = 3, + ACTIONS(4110), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [106515] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5511), 1, - anon_sym_LPAREN, - STATE(43), 1, - sym_parenthesized_expression, - [106367] = 2, + ACTIONS(4078), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [106523] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5408), 2, + ACTIONS(4136), 2, anon_sym_COMMA, anon_sym_RBRACE, - [106375] = 3, + [106531] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5511), 1, + ACTIONS(4444), 1, anon_sym_LPAREN, - STATE(2933), 1, - sym_parenthesized_expression, - [106385] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4366), 1, - anon_sym_LBRACE, - STATE(1679), 1, - sym_class_body, - [106395] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4358), 1, - anon_sym_LBRACE, - STATE(1204), 1, - sym_class_body, - [106405] = 3, + STATE(3030), 1, + sym_formal_parameters, + [106541] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5513), 1, + ACTIONS(1776), 1, anon_sym_LBRACE, - STATE(1684), 1, + STATE(2796), 1, sym_statement_block, - [106415] = 3, + [106551] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5513), 1, - anon_sym_LBRACE, - STATE(1688), 1, - sym_statement_block, - [106425] = 2, + ACTIONS(4132), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [106559] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5032), 2, + ACTIONS(4124), 2, anon_sym_COMMA, - anon_sym_GT, - [106433] = 3, + anon_sym_RBRACE, + [106567] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2985), 1, + ACTIONS(1776), 1, anon_sym_LBRACE, - STATE(1150), 1, + STATE(2800), 1, sym_statement_block, - [106443] = 3, + [106577] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5511), 1, + ACTIONS(5529), 1, anon_sym_LPAREN, - STATE(31), 1, + STATE(46), 1, sym_parenthesized_expression, - [106453] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5515), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [106461] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1781), 1, - anon_sym_LBRACE, - STATE(484), 1, - sym_statement_block, - [106471] = 3, + [106587] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2161), 1, + ACTIONS(5529), 1, anon_sym_LPAREN, - STATE(1692), 1, - sym_arguments, - [106481] = 3, + STATE(2857), 1, + sym_parenthesized_expression, + [106597] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4386), 1, - anon_sym_LBRACE, - STATE(2353), 1, - sym_class_body, - [106491] = 3, + ACTIONS(5007), 2, + anon_sym_COMMA, + anon_sym_GT, + [106605] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4366), 1, - anon_sym_LBRACE, - STATE(1694), 1, - sym_class_body, - [106501] = 3, + ACTIONS(4120), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [106613] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5511), 1, + ACTIONS(5529), 1, anon_sym_LPAREN, - STATE(46), 1, + STATE(37), 1, sym_parenthesized_expression, - [106511] = 3, + [106623] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(921), 1, + ACTIONS(1776), 1, anon_sym_LBRACE, - STATE(80), 1, + STATE(493), 1, sym_statement_block, - [106521] = 2, + [106633] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5529), 1, + anon_sym_LPAREN, + STATE(35), 1, + sym_parenthesized_expression, + [106643] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5517), 2, + ACTIONS(5531), 2, sym__automatic_semicolon, anon_sym_SEMI, - [106529] = 3, + [106651] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4398), 1, - anon_sym_LBRACE, - STATE(576), 1, - sym_class_body, - [106539] = 3, + ACTIONS(5533), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [106659] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4366), 1, - anon_sym_LBRACE, - STATE(1697), 1, - sym_class_body, - [106549] = 3, + ACTIONS(5535), 1, + anon_sym_LT, + STATE(1629), 1, + sym_type_arguments, + [106669] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5513), 1, + ACTIONS(1776), 1, anon_sym_LBRACE, - STATE(1705), 1, + STATE(2801), 1, sym_statement_block, - [106559] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5519), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [106567] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4432), 1, - anon_sym_LPAREN, - STATE(3019), 1, - sym_formal_parameters, - [106577] = 3, + [106679] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4392), 1, - anon_sym_LBRACE, - STATE(82), 1, - sym_class_body, - [106587] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5521), 2, + ACTIONS(4116), 2, anon_sym_COMMA, anon_sym_RBRACE, - [106595] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5513), 1, - anon_sym_LBRACE, - STATE(1708), 1, - sym_statement_block, - [106605] = 3, + [106687] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4418), 1, + ACTIONS(1776), 1, anon_sym_LBRACE, - STATE(517), 1, + STATE(2806), 1, sym_statement_block, - [106615] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4386), 1, - anon_sym_LBRACE, - STATE(525), 1, - sym_class_body, - [106625] = 3, + [106697] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4346), 1, - anon_sym_LBRACE, - STATE(1356), 1, - sym_class_body, - [106635] = 2, + ACTIONS(4231), 1, + anon_sym_LT, + STATE(372), 1, + sym_type_arguments, + [106707] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4080), 2, + ACTIONS(4102), 2, anon_sym_COMMA, anon_sym_RBRACE, - [106643] = 3, + [106715] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4346), 1, + ACTIONS(4426), 1, anon_sym_LBRACE, - STATE(1499), 1, + STATE(558), 1, sym_class_body, - [106653] = 3, + [106725] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4392), 1, - anon_sym_LBRACE, - STATE(83), 1, - sym_class_body, - [106663] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5523), 2, + ACTIONS(5169), 2, anon_sym_COMMA, anon_sym_RBRACE, - [106671] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5511), 1, - anon_sym_LPAREN, - STATE(33), 1, - sym_parenthesized_expression, - [106681] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1781), 1, - anon_sym_LBRACE, - STATE(2904), 1, - sym_statement_block, - [106691] = 2, + [106733] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5525), 2, + ACTIONS(2129), 2, sym__automatic_semicolon, anon_sym_SEMI, - [106699] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5511), 1, - anon_sym_LPAREN, - STATE(39), 1, - sym_parenthesized_expression, - [106709] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5511), 1, - anon_sym_LPAREN, - STATE(40), 1, - sym_parenthesized_expression, - [106719] = 2, + [106741] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4084), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [106727] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4450), 2, - anon_sym_LBRACE, - anon_sym_EQ_GT, - [106735] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4386), 1, - anon_sym_LBRACE, - STATE(527), 1, - sym_class_body, - [106745] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5509), 1, - anon_sym_LBRACE, - STATE(591), 1, - sym_enum_body, - [106755] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1781), 1, - anon_sym_LBRACE, - STATE(2910), 1, - sym_statement_block, - [106765] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2957), 1, + ACTIONS(1776), 1, anon_sym_LBRACE, - STATE(1555), 1, + STATE(2797), 1, sym_statement_block, - [106775] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4346), 1, - anon_sym_LBRACE, - STATE(1552), 1, - sym_class_body, - [106785] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4366), 1, - anon_sym_LBRACE, - STATE(1706), 1, - sym_class_body, - [106795] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4366), 1, - anon_sym_LBRACE, - STATE(1704), 1, - sym_class_body, - [106805] = 3, + [106751] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5146), 1, - anon_sym_from, - STATE(2886), 1, - sym__from_clause, - [106815] = 3, + ACTIONS(5537), 1, + anon_sym_in, + ACTIONS(5539), 1, + anon_sym_COLON, + [106761] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5513), 1, + ACTIONS(1776), 1, anon_sym_LBRACE, - STATE(1702), 1, + STATE(536), 1, sym_statement_block, - [106825] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2157), 1, - anon_sym_LPAREN, - STATE(1510), 1, - sym_arguments, - [106835] = 3, + [106771] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1781), 1, + ACTIONS(1776), 1, anon_sym_LBRACE, - STATE(530), 1, + STATE(534), 1, sym_statement_block, - [106845] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2125), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [106853] = 3, + [106781] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4418), 1, + ACTIONS(1776), 1, anon_sym_LBRACE, STATE(532), 1, sym_statement_block, - [106863] = 3, + [106791] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4386), 1, - anon_sym_LBRACE, - STATE(518), 1, - sym_class_body, - [106873] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2957), 1, - anon_sym_LBRACE, - STATE(1352), 1, - sym_statement_block, - [106883] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1781), 1, - anon_sym_LBRACE, - STATE(531), 1, - sym_statement_block, - [106893] = 3, + ACTIONS(3342), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [106799] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5527), 1, - sym_identifier, - ACTIONS(5529), 1, - anon_sym_STAR, - [106903] = 3, + ACTIONS(4444), 1, + anon_sym_LPAREN, + STATE(2242), 1, + sym_formal_parameters, + [106809] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1781), 1, + ACTIONS(1776), 1, anon_sym_LBRACE, - STATE(2814), 1, + STATE(2817), 1, sym_statement_block, - [106913] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4108), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [106921] = 2, + [106819] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3379), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [106929] = 3, + ACTIONS(5088), 1, + anon_sym_from, + STATE(3008), 1, + sym__from_clause, + [106829] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1781), 1, - anon_sym_LBRACE, - STATE(533), 1, - sym_statement_block, - [106939] = 3, + ACTIONS(5541), 1, + sym_identifier, + ACTIONS(5543), 1, + anon_sym_STAR, + [106839] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4358), 1, + ACTIONS(4362), 1, anon_sym_LBRACE, - STATE(1138), 1, + STATE(1596), 1, sym_class_body, - [106949] = 3, + [106849] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1781), 1, + ACTIONS(3035), 1, anon_sym_LBRACE, - STATE(2823), 1, + STATE(1597), 1, sym_statement_block, - [106959] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5531), 1, - anon_sym_LPAREN, - STATE(47), 1, - sym__for_header, - [106969] = 3, + [106859] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5513), 1, + ACTIONS(1776), 1, anon_sym_LBRACE, - STATE(1701), 1, + STATE(2814), 1, sym_statement_block, - [106979] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4432), 1, - anon_sym_LPAREN, - STATE(2146), 1, - sym_formal_parameters, - [106989] = 3, + [106869] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5146), 1, - anon_sym_from, - STATE(2869), 1, - sym__from_clause, - [106999] = 2, + ACTIONS(4098), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [106877] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5533), 2, + ACTIONS(4094), 2, anon_sym_COMMA, - anon_sym_RPAREN, - [107007] = 3, + anon_sym_RBRACE, + [106885] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5254), 1, - sym_identifier, - STATE(2633), 1, - sym_type_parameter, - [107017] = 3, + ACTIONS(5529), 1, + anon_sym_LPAREN, + STATE(32), 1, + sym_parenthesized_expression, + [106895] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4386), 1, + ACTIONS(4414), 1, anon_sym_LBRACE, - STATE(526), 1, + STATE(519), 1, sym_class_body, - [107027] = 3, + [106905] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2985), 1, + ACTIONS(4436), 1, anon_sym_LBRACE, - STATE(1143), 1, + STATE(526), 1, sym_statement_block, - [107037] = 3, + [106915] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4432), 1, + ACTIONS(5529), 1, anon_sym_LPAREN, - STATE(3034), 1, - sym_formal_parameters, - [107047] = 3, + STATE(44), 1, + sym_parenthesized_expression, + [106925] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5535), 1, - sym_identifier, - ACTIONS(5537), 1, - anon_sym_STAR, - [107057] = 3, + ACTIONS(5529), 1, + anon_sym_LPAREN, + STATE(43), 1, + sym_parenthesized_expression, + [106935] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4366), 1, + ACTIONS(5545), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [106943] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4426), 1, anon_sym_LBRACE, - STATE(1700), 1, + STATE(552), 1, sym_class_body, - [107067] = 2, + [106953] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5375), 2, - anon_sym_COMMA, - anon_sym_GT, - [107075] = 3, + ACTIONS(4402), 1, + anon_sym_LBRACE, + STATE(74), 1, + sym_class_body, + [106963] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4432), 1, - anon_sym_LPAREN, - STATE(2273), 1, - sym_formal_parameters, - [107085] = 3, + ACTIONS(5547), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [106971] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4358), 1, + ACTIONS(4426), 1, anon_sym_LBRACE, - STATE(1200), 1, + STATE(592), 1, sym_class_body, - [107095] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2306), 1, - anon_sym_LPAREN, - STATE(2015), 1, - sym_formal_parameters, - [107105] = 3, + [106981] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4418), 1, + ACTIONS(4362), 1, anon_sym_LBRACE, - STATE(2443), 1, - sym_statement_block, - [107115] = 3, + STATE(1593), 1, + sym_class_body, + [106991] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5539), 1, - anon_sym_in, - ACTIONS(5541), 1, - anon_sym_COLON, - [107125] = 3, + ACTIONS(5549), 1, + anon_sym_LT, + STATE(1091), 1, + sym_type_arguments, + [107001] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5513), 1, + ACTIONS(921), 1, anon_sym_LBRACE, - STATE(1698), 1, + STATE(85), 1, sym_statement_block, - [107135] = 3, + [107011] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5543), 1, - anon_sym_LBRACE, - STATE(2423), 1, - sym_enum_body, - [107145] = 3, + ACTIONS(5262), 1, + sym_identifier, + STATE(2912), 1, + sym_type_parameter, + [107021] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4346), 1, - anon_sym_LBRACE, - STATE(1507), 1, - sym_class_body, - [107155] = 3, + ACTIONS(5088), 1, + anon_sym_from, + STATE(2950), 1, + sym__from_clause, + [107031] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2985), 1, - anon_sym_LBRACE, - STATE(1199), 1, - sym_statement_block, - [107165] = 2, + ACTIONS(5479), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [107039] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2550), 2, + ACTIONS(2149), 2, sym__automatic_semicolon, anon_sym_SEMI, - [107173] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5545), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [107181] = 3, + [107047] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2957), 1, - anon_sym_LBRACE, - STATE(1508), 1, - sym_statement_block, - [107191] = 3, + ACTIONS(5088), 1, + anon_sym_from, + STATE(2922), 1, + sym__from_clause, + [107057] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2957), 1, + ACTIONS(3035), 1, anon_sym_LBRACE, - STATE(1511), 1, + STATE(1595), 1, sym_statement_block, - [107201] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4346), 1, - anon_sym_LBRACE, - STATE(1542), 1, - sym_class_body, - [107211] = 3, + [107067] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4366), 1, - anon_sym_LBRACE, - STATE(1696), 1, - sym_class_body, - [107221] = 2, + ACTIONS(5551), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [107075] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5547), 2, + ACTIONS(5553), 2, anon_sym_COMMA, - anon_sym_RBRACE, - [107229] = 2, + anon_sym_RPAREN, + [107083] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4755), 2, + ACTIONS(5555), 1, anon_sym_LBRACE, - anon_sym_EQ_GT, - [107237] = 3, + STATE(585), 1, + sym_switch_body, + [107093] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2985), 1, + ACTIONS(3035), 1, anon_sym_LBRACE, - STATE(1198), 1, + STATE(1477), 1, sym_statement_block, - [107247] = 3, + [107103] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4358), 1, - anon_sym_LBRACE, - STATE(1197), 1, - sym_class_body, - [107257] = 3, + ACTIONS(5557), 1, + anon_sym_LPAREN, + STATE(33), 1, + sym__for_header, + [107113] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5254), 1, - sym_identifier, - STATE(2859), 1, - sym_type_parameter, - [107267] = 2, + ACTIONS(5559), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [107121] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5549), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [107275] = 3, + ACTIONS(5561), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [107129] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4386), 1, - anon_sym_LBRACE, - STATE(2316), 1, - sym_class_body, - [107285] = 3, + ACTIONS(5563), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [107137] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2198), 1, - anon_sym_COLON, - STATE(2779), 1, - sym_type_annotation, - [107295] = 3, + ACTIONS(3424), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [107145] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4739), 1, - sym_identifier, - ACTIONS(4741), 1, - anon_sym_LBRACK, - [107305] = 3, + ACTIONS(2173), 1, + anon_sym_LPAREN, + STATE(1603), 1, + sym_arguments, + [107155] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4578), 1, - sym_identifier, - ACTIONS(4580), 1, - anon_sym_LBRACK, - [107315] = 3, + ACTIONS(1776), 1, + anon_sym_LBRACE, + STATE(577), 1, + sym_statement_block, + [107165] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2161), 1, + ACTIONS(5557), 1, anon_sym_LPAREN, - STATE(1672), 1, - sym_arguments, - [107325] = 2, + STATE(34), 1, + sym__for_header, + [107175] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2578), 2, + ACTIONS(3420), 2, sym__automatic_semicolon, anon_sym_SEMI, - [107333] = 3, + [107183] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4386), 1, - anon_sym_LBRACE, - STATE(2309), 1, - sym_class_body, - [107343] = 3, + ACTIONS(5565), 1, + anon_sym_LPAREN, + STATE(2996), 1, + sym_parenthesized_expression, + [107193] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4392), 1, + ACTIONS(4362), 1, anon_sym_LBRACE, - STATE(73), 1, + STATE(1580), 1, sym_class_body, - [107353] = 3, + [107203] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4346), 1, + ACTIONS(4396), 1, anon_sym_LBRACE, - STATE(1554), 1, + STATE(1656), 1, sym_class_body, - [107363] = 3, + [107213] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4751), 1, + ACTIONS(5262), 1, sym_identifier, - ACTIONS(4753), 1, - anon_sym_LBRACK, - [107373] = 3, + STATE(2748), 1, + sym_type_parameter, + [107223] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5567), 1, + anon_sym_LBRACE, + STATE(1657), 1, + sym_statement_block, + [107233] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1781), 1, + ACTIONS(3035), 1, anon_sym_LBRACE, - STATE(586), 1, + STATE(1578), 1, sym_statement_block, - [107383] = 3, + [107243] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4432), 1, + ACTIONS(4444), 1, anon_sym_LPAREN, - STATE(3065), 1, + STATE(3040), 1, sym_formal_parameters, - [107393] = 3, + [107253] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4358), 1, + ACTIONS(4396), 1, anon_sym_LBRACE, - STATE(1196), 1, + STATE(1659), 1, sym_class_body, - [107403] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2145), 1, - anon_sym_LPAREN, - STATE(1171), 1, - sym_arguments, - [107413] = 3, + [107263] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2957), 1, + ACTIONS(5567), 1, anon_sym_LBRACE, - STATE(1538), 1, + STATE(1662), 1, sym_statement_block, - [107423] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5551), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [107431] = 3, + [107273] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5146), 1, - anon_sym_from, - STATE(2820), 1, - sym__from_clause, - [107441] = 3, + ACTIONS(5567), 1, + anon_sym_LBRACE, + STATE(1664), 1, + sym_statement_block, + [107283] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4346), 1, + ACTIONS(4396), 1, anon_sym_LBRACE, - STATE(1343), 1, + STATE(1665), 1, sym_class_body, - [107451] = 3, + [107293] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5513), 1, + ACTIONS(4396), 1, anon_sym_LBRACE, - STATE(1645), 1, - sym_statement_block, - [107461] = 2, + STATE(1667), 1, + sym_class_body, + [107303] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5108), 2, + ACTIONS(5569), 2, anon_sym_COMMA, - anon_sym_RBRACE, - [107469] = 3, + anon_sym_RPAREN, + [107311] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2957), 1, + ACTIONS(3035), 1, anon_sym_LBRACE, - STATE(1500), 1, + STATE(1577), 1, sym_statement_block, - [107479] = 2, + [107321] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5279), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [107487] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5553), 2, + ACTIONS(5571), 2, anon_sym_COMMA, anon_sym_RPAREN, - [107495] = 2, + [107329] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4112), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [107503] = 3, + ACTIONS(5262), 1, + sym_identifier, + STATE(2618), 1, + sym_type_parameter, + [107339] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4432), 1, - anon_sym_LPAREN, - STATE(2303), 1, - sym_formal_parameters, - [107513] = 2, + ACTIONS(4362), 1, + anon_sym_LBRACE, + STATE(1574), 1, + sym_class_body, + [107349] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5555), 2, + ACTIONS(2993), 2, sym__automatic_semicolon, anon_sym_SEMI, - [107521] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5557), 1, - sym_identifier, - STATE(2735), 1, - sym_nested_identifier, - [107531] = 3, + [107357] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1781), 1, + ACTIONS(5567), 1, anon_sym_LBRACE, - STATE(2980), 1, + STATE(1670), 1, sym_statement_block, - [107541] = 3, + [107367] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1781), 1, + ACTIONS(1776), 1, anon_sym_LBRACE, - STATE(2919), 1, + STATE(2834), 1, sym_statement_block, - [107551] = 2, + [107377] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4118), 2, + ACTIONS(4106), 2, anon_sym_COMMA, anon_sym_RBRACE, - [107559] = 3, + [107385] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4386), 1, + ACTIONS(1776), 1, anon_sym_LBRACE, - STATE(2292), 1, - sym_class_body, - [107569] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5559), 1, - sym_identifier, - ACTIONS(5561), 1, - anon_sym_STAR, - [107579] = 2, + STATE(2835), 1, + sym_statement_block, + [107395] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5563), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [107587] = 3, + ACTIONS(5567), 1, + anon_sym_LBRACE, + STATE(1672), 1, + sym_statement_block, + [107405] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5543), 1, + ACTIONS(4396), 1, anon_sym_LBRACE, - STATE(2305), 1, - sym_enum_body, - [107597] = 3, + STATE(1674), 1, + sym_class_body, + [107415] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4346), 1, + ACTIONS(4414), 1, anon_sym_LBRACE, - STATE(1534), 1, + STATE(531), 1, sym_class_body, - [107607] = 3, + [107425] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4392), 1, + ACTIONS(4444), 1, + anon_sym_LPAREN, + STATE(2430), 1, + sym_formal_parameters, + [107435] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4396), 1, anon_sym_LBRACE, - STATE(81), 1, + STATE(1676), 1, sym_class_body, - [107617] = 3, + [107445] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5565), 1, - anon_sym_LT, - STATE(1601), 1, - sym_type_arguments, - [107627] = 3, + ACTIONS(2177), 1, + anon_sym_LPAREN, + STATE(1677), 1, + sym_arguments, + [107455] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2957), 1, + ACTIONS(4436), 1, anon_sym_LBRACE, - STATE(1333), 1, + STATE(524), 1, sym_statement_block, - [107637] = 2, + [107465] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4136), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [107645] = 3, + ACTIONS(4414), 1, + anon_sym_LBRACE, + STATE(517), 1, + sym_class_body, + [107475] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2985), 1, + ACTIONS(5567), 1, anon_sym_LBRACE, - STATE(1194), 1, + STATE(1680), 1, sym_statement_block, - [107655] = 3, + [107485] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1781), 1, + ACTIONS(5573), 1, anon_sym_LBRACE, - STATE(2985), 1, - sym_statement_block, - [107665] = 3, + STATE(601), 1, + sym_enum_body, + [107495] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1781), 1, - anon_sym_LBRACE, - STATE(2977), 1, - sym_statement_block, - [107675] = 3, + ACTIONS(5575), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [107503] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4418), 1, + ACTIONS(5567), 1, anon_sym_LBRACE, - STATE(2466), 1, + STATE(1683), 1, sym_statement_block, - [107685] = 3, + [107513] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4346), 1, + ACTIONS(4396), 1, anon_sym_LBRACE, - STATE(1312), 1, + STATE(1685), 1, sym_class_body, - [107695] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5567), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [107703] = 3, + [107523] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5146), 1, - anon_sym_from, - STATE(2896), 1, - sym__from_clause, - [107713] = 2, + ACTIONS(4695), 2, + anon_sym_LBRACE, + anon_sym_EQ_GT, + [107531] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4100), 2, + ACTIONS(5577), 2, anon_sym_COMMA, anon_sym_RBRACE, - [107721] = 2, + [107539] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2129), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [107729] = 3, + ACTIONS(4683), 2, + anon_sym_LBRACE, + anon_sym_EQ_GT, + [107547] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5569), 1, - sym_identifier, - ACTIONS(5571), 1, - anon_sym_STAR, - [107739] = 3, + ACTIONS(4362), 1, + anon_sym_LBRACE, + STATE(1533), 1, + sym_class_body, + [107557] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4418), 1, + ACTIONS(4402), 1, anon_sym_LBRACE, - STATE(2474), 1, - sym_statement_block, - [107749] = 3, + STATE(90), 1, + sym_class_body, + [107567] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4366), 1, + ACTIONS(4362), 1, anon_sym_LBRACE, - STATE(1641), 1, + STATE(1606), 1, sym_class_body, - [107759] = 3, + [107577] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5573), 1, + ACTIONS(4255), 1, anon_sym_LT, - STATE(1472), 1, + STATE(1973), 1, sym_type_arguments, - [107769] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5575), 1, - anon_sym_LBRACE, - STATE(582), 1, - sym_switch_body, - [107779] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5531), 1, - anon_sym_LPAREN, - STATE(44), 1, - sym__for_header, - [107789] = 3, + [107587] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4432), 1, + ACTIONS(4444), 1, anon_sym_LPAREN, - STATE(3205), 1, + STATE(3013), 1, sym_formal_parameters, - [107799] = 3, + [107597] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4398), 1, + ACTIONS(4488), 2, anon_sym_LBRACE, - STATE(607), 1, - sym_class_body, - [107809] = 3, + anon_sym_EQ_GT, + [107605] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5577), 1, - sym_identifier, - STATE(2780), 1, - sym_nested_identifier, - [107819] = 3, + ACTIONS(5349), 2, + anon_sym_COMMA, + anon_sym_GT, + [107613] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4432), 1, + ACTIONS(4444), 1, anon_sym_LPAREN, - STATE(3206), 1, + STATE(2425), 1, sym_formal_parameters, - [107829] = 3, + [107623] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2957), 1, - anon_sym_LBRACE, - STATE(1616), 1, - sym_statement_block, - [107839] = 3, + ACTIONS(2177), 1, + anon_sym_LPAREN, + STATE(1693), 1, + sym_arguments, + [107633] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4215), 1, - anon_sym_LT, - STATE(301), 1, - sym_type_arguments, - [107849] = 3, + ACTIONS(5579), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [107641] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2306), 1, + ACTIONS(4444), 1, anon_sym_LPAREN, - STATE(2108), 1, + STATE(3172), 1, sym_formal_parameters, - [107859] = 3, + [107651] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5581), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [107659] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4432), 1, + ACTIONS(2332), 1, anon_sym_LPAREN, - STATE(3107), 1, + STATE(2019), 1, sym_formal_parameters, - [107869] = 3, + [107669] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2238), 1, + anon_sym_COLON, + STATE(2754), 1, + sym_type_annotation, + [107679] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2985), 1, + ACTIONS(4657), 1, + sym_identifier, + ACTIONS(4659), 1, + anon_sym_LBRACK, + [107689] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4402), 1, anon_sym_LBRACE, - STATE(1192), 1, - sym_statement_block, - [107879] = 3, + STATE(73), 1, + sym_class_body, + [107699] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4432), 1, - anon_sym_LPAREN, - STATE(3106), 1, - sym_formal_parameters, - [107889] = 3, + ACTIONS(5583), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [107707] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4358), 1, + ACTIONS(5088), 1, + anon_sym_from, + STATE(2958), 1, + sym__from_clause, + [107717] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5585), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [107725] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4426), 1, anon_sym_LBRACE, - STATE(1190), 1, + STATE(547), 1, sym_class_body, - [107899] = 3, + [107735] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2157), 1, - anon_sym_LPAREN, - STATE(1530), 1, - sym_arguments, - [107909] = 3, + ACTIONS(5587), 1, + sym_identifier, + STATE(2704), 1, + sym_nested_identifier, + [107745] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5579), 1, - anon_sym_LT, - STATE(1055), 1, - sym_type_arguments, - [107919] = 2, + ACTIONS(4362), 1, + anon_sym_LBRACE, + STATE(1556), 1, + sym_class_body, + [107755] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4104), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [107927] = 3, + ACTIONS(5589), 1, + sym_identifier, + ACTIONS(5591), 1, + anon_sym_STAR, + [107765] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1781), 1, + ACTIONS(5567), 1, anon_sym_LBRACE, - STATE(2927), 1, + STATE(1707), 1, sym_statement_block, - [107937] = 3, + [107775] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4432), 1, - anon_sym_LPAREN, - STATE(3008), 1, - sym_formal_parameters, - [107947] = 2, + ACTIONS(921), 1, + anon_sym_LBRACE, + STATE(93), 1, + sym_statement_block, + [107785] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4122), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [107955] = 3, + ACTIONS(3035), 1, + anon_sym_LBRACE, + STATE(1517), 1, + sym_statement_block, + [107795] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4346), 1, + ACTIONS(4402), 1, anon_sym_LBRACE, - STATE(1351), 1, + STATE(89), 1, sym_class_body, - [107965] = 3, + [107805] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4432), 1, - anon_sym_LPAREN, - STATE(3016), 1, - sym_formal_parameters, - [107975] = 2, + ACTIONS(5593), 1, + sym_identifier, + ACTIONS(5595), 1, + anon_sym_STAR, + [107815] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5581), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [107983] = 3, + ACTIONS(4376), 1, + anon_sym_LBRACE, + STATE(1154), 1, + sym_class_body, + [107825] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2957), 1, + ACTIONS(3033), 1, anon_sym_LBRACE, - STATE(1540), 1, + STATE(1157), 1, sym_statement_block, - [107993] = 3, + [107835] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4346), 1, + ACTIONS(4396), 1, anon_sym_LBRACE, - STATE(1626), 1, + STATE(1712), 1, sym_class_body, - [108003] = 3, + [107845] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4386), 1, + ACTIONS(3035), 1, anon_sym_LBRACE, - STATE(2269), 1, - sym_class_body, - [108013] = 2, + STATE(1552), 1, + sym_statement_block, + [107855] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5583), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [108021] = 3, + ACTIONS(4436), 1, + anon_sym_LBRACE, + STATE(2419), 1, + sym_statement_block, + [107865] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4432), 1, + ACTIONS(4444), 1, anon_sym_LPAREN, - STATE(3171), 1, + STATE(3223), 1, sym_formal_parameters, - [108031] = 2, + [107875] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5585), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [108039] = 3, + ACTIONS(4414), 1, + anon_sym_LBRACE, + STATE(529), 1, + sym_class_body, + [107885] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4358), 1, + ACTIONS(4444), 1, + anon_sym_LPAREN, + STATE(3225), 1, + sym_formal_parameters, + [107895] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4436), 1, anon_sym_LBRACE, - STATE(1188), 1, - sym_class_body, - [108049] = 3, + STATE(2483), 1, + sym_statement_block, + [107905] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5597), 1, + anon_sym_LBRACE, + STATE(2415), 1, + sym_enum_body, + [107915] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4799), 1, + sym_identifier, + ACTIONS(4801), 1, + anon_sym_LBRACK, + [107925] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4444), 1, + anon_sym_LPAREN, + STATE(3226), 1, + sym_formal_parameters, + [107935] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1776), 1, + anon_sym_LBRACE, + STATE(2888), 1, + sym_statement_block, + [107945] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5254), 1, - sym_identifier, - STATE(2729), 1, - sym_type_parameter, - [108059] = 2, + ACTIONS(1776), 1, + anon_sym_LBRACE, + STATE(2795), 1, + sym_statement_block, + [107955] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5587), 2, + ACTIONS(4128), 2, anon_sym_COMMA, - anon_sym_GT, - [108067] = 2, + anon_sym_RBRACE, + [107963] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5589), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [108075] = 2, + ACTIONS(4436), 1, + anon_sym_LBRACE, + STATE(2461), 1, + sym_statement_block, + [107973] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5591), 2, + ACTIONS(2585), 2, sym__automatic_semicolon, anon_sym_SEMI, - [108083] = 3, + [107981] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(921), 1, + ACTIONS(3033), 1, anon_sym_LBRACE, - STATE(74), 1, + STATE(1112), 1, sym_statement_block, - [108093] = 3, + [107991] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4346), 1, + ACTIONS(4362), 1, anon_sym_LBRACE, - STATE(1495), 1, + STATE(1618), 1, sym_class_body, - [108103] = 2, + [108001] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4637), 2, + ACTIONS(3035), 1, anon_sym_LBRACE, - anon_sym_EQ_GT, - [108111] = 2, + STATE(1626), 1, + sym_statement_block, + [108011] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4635), 2, - anon_sym_LBRACE, - anon_sym_EQ_GT, - [108119] = 3, + ACTIONS(4444), 1, + anon_sym_LPAREN, + STATE(3224), 1, + sym_formal_parameters, + [108021] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4386), 1, + ACTIONS(2161), 1, + anon_sym_LPAREN, + STATE(1183), 1, + sym_arguments, + [108031] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5597), 1, anon_sym_LBRACE, - STATE(2339), 1, - sym_class_body, - [108129] = 3, + STATE(2361), 1, + sym_enum_body, + [108041] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4432), 1, + ACTIONS(4444), 1, anon_sym_LPAREN, - STATE(2343), 1, + STATE(3167), 1, sym_formal_parameters, - [108139] = 3, + [108051] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4432), 1, - anon_sym_LPAREN, - STATE(2261), 1, - sym_formal_parameters, - [108149] = 3, + ACTIONS(5599), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [108059] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5593), 1, + ACTIONS(4444), 1, anon_sym_LPAREN, - STATE(2906), 1, - sym_parenthesized_expression, - [108159] = 2, + STATE(3165), 1, + sym_formal_parameters, + [108069] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3420), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [108167] = 3, + ACTIONS(5601), 1, + anon_sym_LT, + STATE(1392), 1, + sym_type_arguments, + [108079] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1781), 1, + ACTIONS(1776), 1, anon_sym_LBRACE, - STATE(2948), 1, + STATE(588), 1, sym_statement_block, - [108177] = 3, + [108089] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2957), 1, + ACTIONS(4362), 1, anon_sym_LBRACE, - STATE(1476), 1, - sym_statement_block, - [108187] = 2, + STATE(1458), 1, + sym_class_body, + [108099] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4060), 2, + ACTIONS(5603), 2, anon_sym_COMMA, - anon_sym_RBRACE, - [108195] = 2, + anon_sym_RPAREN, + [108107] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3418), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [108203] = 3, + ACTIONS(4414), 1, + anon_sym_LBRACE, + STATE(2305), 1, + sym_class_body, + [108117] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1781), 1, + ACTIONS(1776), 1, anon_sym_LBRACE, - STATE(2951), 1, + STATE(2948), 1, sym_statement_block, - [108213] = 2, + [108127] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4056), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [108221] = 2, + ACTIONS(4376), 1, + anon_sym_LBRACE, + STATE(1103), 1, + sym_class_body, + [108137] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5595), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [108229] = 3, + ACTIONS(3033), 1, + anon_sym_LBRACE, + STATE(1104), 1, + sym_statement_block, + [108147] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4432), 1, - anon_sym_LPAREN, - STATE(3208), 1, - sym_formal_parameters, - [108239] = 2, + ACTIONS(4414), 1, + anon_sym_LBRACE, + STATE(2286), 1, + sym_class_body, + [108157] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5597), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [108247] = 2, + ACTIONS(4414), 1, + anon_sym_LBRACE, + STATE(2282), 1, + sym_class_body, + [108167] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5599), 2, + ACTIONS(4362), 1, + anon_sym_LBRACE, + STATE(1469), 1, + sym_class_body, + [108177] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4414), 1, + anon_sym_LBRACE, + STATE(2274), 1, + sym_class_body, + [108187] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5605), 2, anon_sym_COMMA, anon_sym_RPAREN, - [108255] = 2, + [108195] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4132), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [108263] = 2, + ACTIONS(5607), 1, + sym_identifier, + STATE(2750), 1, + sym_nested_identifier, + [108205] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3027), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [108271] = 2, + ACTIONS(5573), 1, + anon_sym_LBRACE, + STATE(593), 1, + sym_enum_body, + [108215] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5601), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [108279] = 3, + ACTIONS(4376), 1, + anon_sym_LBRACE, + STATE(1202), 1, + sym_class_body, + [108225] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4432), 1, - anon_sym_LPAREN, - STATE(3182), 1, - sym_formal_parameters, - [108289] = 3, + ACTIONS(5499), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [108233] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1781), 1, - anon_sym_LBRACE, - STATE(565), 1, - sym_statement_block, - [108299] = 3, + ACTIONS(4793), 1, + sym_identifier, + ACTIONS(4795), 1, + anon_sym_LBRACK, + [108243] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2145), 1, - anon_sym_LPAREN, - STATE(1184), 1, - sym_arguments, - [108309] = 3, + ACTIONS(4376), 1, + anon_sym_LBRACE, + STATE(1111), 1, + sym_class_body, + [108253] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2985), 1, + ACTIONS(3033), 1, anon_sym_LBRACE, - STATE(1181), 1, + STATE(1148), 1, sym_statement_block, - [108319] = 3, + [108263] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2985), 1, + ACTIONS(3033), 1, anon_sym_LBRACE, - STATE(1178), 1, + STATE(1113), 1, sym_statement_block, - [108329] = 3, + [108273] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4358), 1, + ACTIONS(4376), 1, anon_sym_LBRACE, - STATE(1095), 1, + STATE(1114), 1, sym_class_body, - [108339] = 2, + [108283] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5412), 1, + ACTIONS(4414), 1, anon_sym_LBRACE, - [108346] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3448), 1, - anon_sym_COLON, - [108353] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4863), 1, - anon_sym_EQ_GT, - [108360] = 2, + STATE(2338), 1, + sym_class_body, + [108293] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4707), 1, - sym_identifier, - [108367] = 2, + ACTIONS(4414), 1, + anon_sym_LBRACE, + STATE(2307), 1, + sym_class_body, + [108303] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4251), 1, - anon_sym_DOT, - [108374] = 2, + ACTIONS(4376), 1, + anon_sym_LBRACE, + STATE(1116), 1, + sym_class_body, + [108313] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4219), 1, - anon_sym_DOT, - [108381] = 2, + ACTIONS(4362), 1, + anon_sym_LBRACE, + STATE(1462), 1, + sym_class_body, + [108323] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3252), 1, + ACTIONS(5609), 2, + anon_sym_COMMA, anon_sym_RPAREN, - [108388] = 2, + [108331] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5603), 1, - anon_sym_while, - [108395] = 2, + ACTIONS(3033), 1, + anon_sym_LBRACE, + STATE(1199), 1, + sym_statement_block, + [108341] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5605), 1, - anon_sym_EQ_GT, - [108402] = 2, + ACTIONS(3033), 1, + anon_sym_LBRACE, + STATE(1193), 1, + sym_statement_block, + [108351] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5607), 1, - anon_sym_EQ, - [108409] = 2, + ACTIONS(2173), 1, + anon_sym_LPAREN, + STATE(1496), 1, + sym_arguments, + [108361] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5609), 1, - sym_identifier, - [108416] = 2, + ACTIONS(4444), 1, + anon_sym_LPAREN, + STATE(2293), 1, + sym_formal_parameters, + [108371] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5611), 1, + ACTIONS(4723), 2, + anon_sym_LBRACE, anon_sym_EQ_GT, - [108423] = 2, + [108379] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5613), 1, - anon_sym_EQ_GT, - [108430] = 2, + ACTIONS(5611), 2, + anon_sym_COMMA, + anon_sym_GT, + [108387] = 3, ACTIONS(3), 1, sym_comment, + ACTIONS(5613), 1, + sym_identifier, ACTIONS(5615), 1, - anon_sym_EQ_GT, - [108437] = 2, + anon_sym_STAR, + [108397] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5617), 1, - anon_sym_EQ_GT, - [108444] = 2, + ACTIONS(4414), 1, + anon_sym_LBRACE, + STATE(2314), 1, + sym_class_body, + [108407] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5619), 1, - sym_identifier, - [108451] = 2, + ACTIONS(2161), 1, + anon_sym_LPAREN, + STATE(1203), 1, + sym_arguments, + [108417] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5621), 1, - sym_identifier, - [108458] = 2, + ACTIONS(5617), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [108425] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5623), 1, - anon_sym_SLASH2, - [108465] = 2, + ACTIONS(3035), 1, + anon_sym_LBRACE, + STATE(1461), 1, + sym_statement_block, + [108435] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5625), 1, - sym_number, - [108472] = 2, + ACTIONS(5619), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [108443] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3539), 1, - anon_sym_RBRACK, - [108479] = 2, + ACTIONS(4444), 1, + anon_sym_LPAREN, + STATE(2346), 1, + sym_formal_parameters, + [108453] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3320), 1, - anon_sym_RPAREN, - [108486] = 2, + ACTIONS(4444), 1, + anon_sym_LPAREN, + STATE(3121), 1, + sym_formal_parameters, + [108463] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5627), 1, - anon_sym_RPAREN, - [108493] = 2, + ACTIONS(3033), 1, + anon_sym_LBRACE, + STATE(1124), 1, + sym_statement_block, + [108473] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5629), 1, - anon_sym_EQ_GT, - [108500] = 2, + ACTIONS(4376), 1, + anon_sym_LBRACE, + STATE(1168), 1, + sym_class_body, + [108483] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5631), 1, - sym_identifier, - [108507] = 2, + ACTIONS(5621), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [108491] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5633), 1, - sym_identifier, - [108514] = 2, + ACTIONS(4362), 1, + anon_sym_LBRACE, + STATE(1441), 1, + sym_class_body, + [108501] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4805), 1, - anon_sym_EQ_GT, - [108521] = 2, + ACTIONS(4414), 1, + anon_sym_LBRACE, + STATE(2336), 1, + sym_class_body, + [108511] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5635), 1, - anon_sym_EQ_GT, - [108528] = 2, - ACTIONS(4948), 1, + ACTIONS(4376), 1, + anon_sym_LBRACE, + STATE(1150), 1, + sym_class_body, + [108521] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(5637), 1, - sym_regex_pattern, - [108535] = 2, + ACTIONS(4444), 1, + anon_sym_LPAREN, + STATE(3115), 1, + sym_formal_parameters, + [108531] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3546), 1, - anon_sym_RBRACK, - [108542] = 2, + ACTIONS(2634), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [108539] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5639), 1, - sym_number, + ACTIONS(2332), 1, + anon_sym_LPAREN, + STATE(2131), 1, + sym_formal_parameters, [108549] = 2, - ACTIONS(4948), 1, + ACTIONS(3), 1, sym_comment, - ACTIONS(5641), 1, - sym_regex_pattern, + ACTIONS(5431), 1, + anon_sym_RBRACE, [108556] = 2, - ACTIONS(3), 1, + ACTIONS(4979), 1, sym_comment, - ACTIONS(3162), 1, - anon_sym_RPAREN, + ACTIONS(5623), 1, + sym_regex_pattern, [108563] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5643), 1, - sym_number, + ACTIONS(5625), 1, + sym_identifier, [108570] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2872), 1, - anon_sym_DOT, + ACTIONS(5627), 1, + anon_sym_EQ_GT, [108577] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3554), 1, + ACTIONS(5629), 1, anon_sym_RBRACK, [108584] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5645), 1, - anon_sym_EQ_GT, + ACTIONS(5631), 1, + sym_identifier, [108591] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4883), 1, - anon_sym_EQ_GT, + ACTIONS(5633), 1, + anon_sym_LBRACK, [108598] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5647), 1, - anon_sym_LBRACK, + ACTIONS(4257), 1, + anon_sym_DOT, [108605] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5649), 1, - sym_identifier, + ACTIONS(5635), 1, + anon_sym_EQ_GT, [108612] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4114), 1, - anon_sym_EQ_GT, + ACTIONS(5637), 1, + sym_number, [108619] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5651), 1, + ACTIONS(5639), 1, anon_sym_EQ_GT, [108626] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3589), 1, - anon_sym_RBRACK, + ACTIONS(5641), 1, + anon_sym_class, [108633] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5653), 1, - anon_sym_DOT, + ACTIONS(3501), 1, + anon_sym_RBRACK, [108640] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4935), 1, + ACTIONS(5643), 1, anon_sym_EQ_GT, [108647] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5655), 1, - sym_identifier, + ACTIONS(5645), 1, + anon_sym_EQ_GT, [108654] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5657), 1, + ACTIONS(5647), 1, sym_identifier, [108661] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5659), 1, - anon_sym_SLASH2, + ACTIONS(5649), 1, + anon_sym_EQ, [108668] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5661), 1, - anon_sym_RPAREN, + ACTIONS(3574), 1, + anon_sym_RBRACK, [108675] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5663), 1, - anon_sym_EQ_GT, + ACTIONS(5651), 1, + sym_identifier, [108682] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3510), 1, - anon_sym_DOT, + ACTIONS(5653), 1, + sym_identifier, [108689] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5665), 1, - anon_sym_RBRACK, + ACTIONS(4905), 1, + anon_sym_EQ_GT, [108696] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5667), 1, - anon_sym_target, + ACTIONS(3555), 1, + anon_sym_RBRACK, [108703] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5669), 1, - sym_identifier, + ACTIONS(3445), 1, + anon_sym_RBRACK, [108710] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3577), 1, - anon_sym_RBRACK, + ACTIONS(5655), 1, + anon_sym_COLON, [108717] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5671), 1, + ACTIONS(5657), 1, sym_identifier, [108724] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5673), 1, + ACTIONS(5659), 1, sym_identifier, [108731] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5675), 1, - anon_sym_EQ_GT, + ACTIONS(5661), 1, + sym_identifier, [108738] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5677), 1, - sym_identifier, + ACTIONS(5663), 1, + anon_sym_EQ, [108745] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3520), 1, - anon_sym_RBRACK, + ACTIONS(5665), 1, + anon_sym_EQ, [108752] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5679), 1, - anon_sym_RBRACE, + ACTIONS(5667), 1, + anon_sym_EQ, [108759] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3508), 1, - anon_sym_RBRACE, + ACTIONS(5669), 1, + anon_sym_EQ_GT, [108766] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5681), 1, - anon_sym_class, + ACTIONS(5671), 1, + sym_identifier, [108773] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5683), 1, - anon_sym_from, + ACTIONS(5673), 1, + anon_sym_EQ_GT, [108780] = 2, - ACTIONS(3), 1, + ACTIONS(4979), 1, sym_comment, - ACTIONS(5685), 1, - anon_sym_from, + ACTIONS(5675), 1, + sym_regex_pattern, [108787] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5687), 1, - sym_identifier, + ACTIONS(5677), 1, + anon_sym_COLON, [108794] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5689), 1, - anon_sym_EQ_GT, + ACTIONS(5679), 1, + anon_sym_from, [108801] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5691), 1, - anon_sym_RBRACK, + ACTIONS(2920), 1, + anon_sym_DOT, [108808] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5693), 1, - anon_sym_EQ_GT, + ACTIONS(5681), 1, + anon_sym_LPAREN, [108815] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5307), 1, - anon_sym_from, + ACTIONS(5683), 1, + anon_sym_RPAREN, [108822] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5695), 1, - anon_sym_EQ_GT, + ACTIONS(5685), 1, + sym_identifier, [108829] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5697), 1, - anon_sym_namespace, + ACTIONS(5687), 1, + anon_sym_require, [108836] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5699), 1, - anon_sym_EQ_GT, + ACTIONS(5689), 1, + anon_sym_from, [108843] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5701), 1, - anon_sym_RPAREN, + ACTIONS(5691), 1, + sym_identifier, [108850] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5703), 1, - anon_sym_SLASH2, + ACTIONS(5693), 1, + anon_sym_from, [108857] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5705), 1, - anon_sym_RPAREN, + ACTIONS(3493), 1, + anon_sym_RBRACK, [108864] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5707), 1, - anon_sym_EQ_GT, + ACTIONS(5695), 1, + anon_sym_DOT, [108871] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3506), 1, - anon_sym_RPAREN, + ACTIONS(5697), 1, + anon_sym_from, [108878] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5709), 1, - anon_sym_EQ_GT, + ACTIONS(4701), 1, + sym_identifier, [108885] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5711), 1, - anon_sym_EQ_GT, + ACTIONS(3610), 1, + anon_sym_RPAREN, [108892] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5713), 1, - anon_sym_COLON, + ACTIONS(3590), 1, + anon_sym_RBRACK, [108899] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5715), 1, + ACTIONS(4793), 1, sym_identifier, [108906] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5717), 1, - anon_sym_RPAREN, + ACTIONS(5699), 1, + sym_identifier, [108913] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5719), 1, - anon_sym_EQ, + ACTIONS(3443), 1, + anon_sym_DOT, [108920] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5721), 1, + ACTIONS(3137), 1, anon_sym_RPAREN, [108927] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5723), 1, - anon_sym_EQ, + ACTIONS(5701), 1, + sym_number, [108934] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4578), 1, - sym_identifier, + ACTIONS(4853), 1, + anon_sym_EQ_GT, [108941] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5725), 1, - anon_sym_COLON, + ACTIONS(4799), 1, + sym_identifier, [108948] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5727), 1, - sym_identifier, + ACTIONS(5703), 1, + anon_sym_target, [108955] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5729), 1, - anon_sym_EQ_GT, + ACTIONS(5705), 1, + anon_sym_target, [108962] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5731), 1, - anon_sym_EQ_GT, + ACTIONS(5707), 1, + anon_sym_SLASH2, [108969] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5733), 1, + ACTIONS(5709), 1, anon_sym_EQ_GT, [108976] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5735), 1, - anon_sym_as, + ACTIONS(5711), 1, + anon_sym_EQ_GT, [108983] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5737), 1, - anon_sym_EQ, + ACTIONS(5713), 1, + anon_sym_EQ_GT, [108990] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3522), 1, - anon_sym_RPAREN, + ACTIONS(5715), 1, + anon_sym_EQ_GT, [108997] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5739), 1, - sym_number, + ACTIONS(5717), 1, + anon_sym_class, [109004] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5741), 1, - sym_identifier, + ACTIONS(4987), 1, + anon_sym_EQ_GT, [109011] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5743), 1, - sym_identifier, + ACTIONS(5719), 1, + anon_sym_EQ_GT, [109018] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5745), 1, - anon_sym_target, + ACTIONS(5721), 1, + sym_identifier, [109025] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3524), 1, - anon_sym_RPAREN, + ACTIONS(5723), 1, + anon_sym_EQ_GT, [109032] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3268), 1, - anon_sym_RPAREN, + ACTIONS(5725), 1, + anon_sym_SLASH2, [109039] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4751), 1, - sym_identifier, + ACTIONS(4088), 1, + anon_sym_EQ_GT, [109046] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5747), 1, - sym_identifier, + ACTIONS(5727), 1, + anon_sym_EQ_GT, [109053] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3526), 1, - anon_sym_RPAREN, + ACTIONS(5729), 1, + anon_sym_EQ_GT, [109060] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5749), 1, - sym_identifier, + ACTIONS(5731), 1, + anon_sym_namespace, [109067] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3528), 1, - anon_sym_RPAREN, + ACTIONS(5733), 1, + anon_sym_RBRACE, [109074] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3530), 1, + ACTIONS(3298), 1, anon_sym_RPAREN, [109081] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3473), 1, - anon_sym_RBRACK, + ACTIONS(5735), 1, + anon_sym_from, [109088] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5751), 1, - anon_sym_LBRACE, + ACTIONS(5737), 1, + sym_identifier, [109095] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3469), 1, - anon_sym_RBRACK, + ACTIONS(5739), 1, + anon_sym_EQ_GT, [109102] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5753), 1, - anon_sym_LPAREN, + ACTIONS(5741), 1, + anon_sym_EQ_GT, [109109] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5755), 1, - sym_identifier, + ACTIONS(5743), 1, + anon_sym_EQ_GT, [109116] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5757), 1, + ACTIONS(5745), 1, anon_sym_EQ_GT, [109123] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5759), 1, + ACTIONS(5747), 1, anon_sym_EQ_GT, [109130] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5761), 1, - anon_sym_EQ_GT, + ACTIONS(5446), 1, + anon_sym_LBRACE, [109137] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5763), 1, - sym_identifier, + ACTIONS(3559), 1, + anon_sym_RBRACK, [109144] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5765), 1, - sym_identifier, + ACTIONS(5749), 1, + anon_sym_class, [109151] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5767), 1, - sym_identifier, + ACTIONS(5751), 1, + anon_sym_EQ, [109158] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5769), 1, - anon_sym_from, + ACTIONS(5753), 1, + anon_sym_target, [109165] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5771), 1, - sym_identifier, + ACTIONS(5755), 1, + anon_sym_EQ, [109172] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5773), 1, - anon_sym_RBRACK, + ACTIONS(5757), 1, + sym_identifier, [109179] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5775), 1, + ACTIONS(5759), 1, sym_identifier, [109186] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5777), 1, + ACTIONS(5761), 1, anon_sym_COLON, [109193] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5779), 1, - anon_sym_EQ_GT, + ACTIONS(4657), 1, + sym_identifier, [109200] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5478), 1, - anon_sym_RBRACE, + ACTIONS(4777), 1, + sym_identifier, [109207] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5781), 1, - sym_identifier, + ACTIONS(5763), 1, + anon_sym_SLASH2, [109214] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5783), 1, + ACTIONS(5765), 1, sym_identifier, [109221] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4739), 1, - sym_identifier, + ACTIONS(3599), 1, + anon_sym_RBRACK, [109228] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4747), 1, - sym_identifier, + ACTIONS(5767), 1, + anon_sym_RBRACK, [109235] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5785), 1, - anon_sym_EQ, + ACTIONS(5769), 1, + sym_identifier, [109242] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5787), 1, - anon_sym_function, + ACTIONS(5771), 1, + sym_identifier, [109249] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5789), 1, - sym_identifier, + ACTIONS(4358), 1, + anon_sym_is, [109256] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4610), 1, - sym_identifier, + ACTIONS(5773), 1, + anon_sym_RPAREN, [109263] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5791), 1, - sym_identifier, + ACTIONS(4865), 1, + anon_sym_EQ_GT, [109270] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5793), 1, + ACTIONS(5775), 1, sym_identifier, [109277] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5795), 1, - anon_sym_target, + ACTIONS(5777), 1, + sym_identifier, [109284] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5797), 1, - anon_sym_from, + ACTIONS(4863), 1, + anon_sym_EQ_GT, [109291] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5799), 1, - anon_sym_namespace, + ACTIONS(5779), 1, + sym_identifier, [109298] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3389), 1, - anon_sym_DOT, + ACTIONS(5781), 1, + sym_identifier, [109305] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5801), 1, - anon_sym_EQ_GT, + ACTIONS(3601), 1, + anon_sym_RBRACK, [109312] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5803), 1, - sym_readonly, + ACTIONS(3608), 1, + anon_sym_RBRACK, [109319] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5805), 1, - anon_sym_EQ_GT, + ACTIONS(5783), 1, + anon_sym_RPAREN, [109326] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5807), 1, + ACTIONS(4837), 1, anon_sym_EQ_GT, [109333] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3548), 1, - anon_sym_RBRACK, + ACTIONS(4867), 1, + anon_sym_EQ_GT, [109340] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5809), 1, - anon_sym_from, + ACTIONS(4235), 1, + anon_sym_DOT, [109347] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5811), 1, - anon_sym_COLON, + ACTIONS(5785), 1, + sym_identifier, [109354] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5813), 1, - sym_identifier, + ACTIONS(5787), 1, + anon_sym_EQ_GT, [109361] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5815), 1, - anon_sym_require, + ACTIONS(5789), 1, + sym_number, [109368] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5817), 1, - sym_identifier, + ACTIONS(3491), 1, + anon_sym_RBRACK, [109375] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5819), 1, + ACTIONS(5791), 1, sym_identifier, [109382] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5821), 1, - sym_identifier, + ACTIONS(5793), 1, + anon_sym_COLON, [109389] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3541), 1, - anon_sym_RPAREN, + ACTIONS(3371), 1, + anon_sym_DOT, [109396] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5823), 1, - anon_sym_EQ_GT, + ACTIONS(5795), 1, + sym_identifier, [109403] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3552), 1, - anon_sym_RPAREN, + ACTIONS(5797), 1, + anon_sym_from, [109410] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3561), 1, - anon_sym_RPAREN, + ACTIONS(5799), 1, + anon_sym_EQ_GT, [109417] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3565), 1, - anon_sym_RPAREN, + ACTIONS(5801), 1, + sym_identifier, [109424] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5825), 1, - anon_sym_RPAREN, + ACTIONS(3480), 1, + anon_sym_RBRACK, [109431] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, - ts_builtin_sym_end, + ACTIONS(3475), 1, + anon_sym_RBRACE, [109438] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5829), 1, - sym_identifier, + ACTIONS(5803), 1, + anon_sym_while, [109445] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5831), 1, - anon_sym_from, + ACTIONS(3256), 1, + anon_sym_RPAREN, [109452] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5833), 1, - sym_identifier, + ACTIONS(3508), 1, + anon_sym_COLON, [109459] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5835), 1, - sym_identifier, + ACTIONS(3540), 1, + anon_sym_RPAREN, [109466] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5837), 1, + ACTIONS(3551), 1, anon_sym_RPAREN, [109473] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5839), 1, - anon_sym_SLASH2, + ACTIONS(3549), 1, + anon_sym_RPAREN, [109480] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4384), 1, - anon_sym_is, + ACTIONS(3106), 1, + anon_sym_RPAREN, [109487] = 2, - ACTIONS(4948), 1, + ACTIONS(3), 1, sym_comment, - ACTIONS(5841), 1, - sym_regex_pattern, + ACTIONS(5805), 1, + sym_identifier, [109494] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5843), 1, - anon_sym_EQ_GT, + ACTIONS(3544), 1, + anon_sym_RPAREN, [109501] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, - anon_sym_from, + ACTIONS(5807), 1, + sym_number, [109508] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5847), 1, - sym_identifier, + ACTIONS(5809), 1, + anon_sym_EQ_GT, [109515] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5849), 1, - anon_sym_COLON, + ACTIONS(5811), 1, + sym_identifier, [109522] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5851), 1, - sym_identifier, + ACTIONS(3438), 1, + anon_sym_RPAREN, [109529] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5853), 1, - sym_identifier, + ACTIONS(5813), 1, + anon_sym_SLASH2, [109536] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3471), 1, - anon_sym_RBRACK, + ACTIONS(5815), 1, + sym_readonly, [109543] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5855), 1, - anon_sym_class, + ACTIONS(5817), 1, + anon_sym_RPAREN, [109550] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5857), 1, - sym_identifier, + ACTIONS(5819), 1, + anon_sym_RPAREN, [109557] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5859), 1, - sym_identifier, + ACTIONS(5821), 1, + anon_sym_RPAREN, [109564] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5861), 1, - sym_identifier, + ACTIONS(5236), 1, + anon_sym_from, [109571] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5863), 1, - anon_sym_EQ_GT, + ACTIONS(5823), 1, + sym_identifier, [109578] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4849), 1, - anon_sym_EQ_GT, + ACTIONS(5825), 1, + sym_identifier, [109585] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5865), 1, - anon_sym_EQ_GT, + ACTIONS(5827), 1, + sym_identifier, [109592] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5867), 1, - anon_sym_EQ_GT, + ACTIONS(5829), 1, + sym_identifier, [109599] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5869), 1, - anon_sym_EQ_GT, + ACTIONS(5831), 1, + anon_sym_as, [109606] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5871), 1, - anon_sym_EQ_GT, + ACTIONS(5833), 1, + sym_identifier, [109613] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5873), 1, - sym_number, + ACTIONS(5835), 1, + anon_sym_EQ_GT, [109620] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4923), 1, - anon_sym_EQ_GT, + ACTIONS(5837), 1, + sym_identifier, [109627] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5875), 1, - sym_identifier, + ACTIONS(5839), 1, + anon_sym_LBRACE, [109634] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5877), 1, - sym_identifier, + ACTIONS(5841), 1, + anon_sym_EQ_GT, [109641] = 2, - ACTIONS(3), 1, + ACTIONS(4979), 1, sym_comment, - ACTIONS(5879), 1, - sym_identifier, + ACTIONS(5843), 1, + sym_regex_pattern, [109648] = 2, - ACTIONS(4948), 1, + ACTIONS(3), 1, sym_comment, - ACTIONS(5881), 1, - sym_regex_pattern, + ACTIONS(5845), 1, + anon_sym_EQ_GT, [109655] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4831), 1, - anon_sym_EQ_GT, + ACTIONS(5847), 1, + sym_identifier, [109662] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5883), 1, - sym_identifier, + ACTIONS(3292), 1, + anon_sym_RPAREN, [109669] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5885), 1, - sym_identifier, + ACTIONS(5849), 1, + sym_number, [109676] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5887), 1, - sym_identifier, + ACTIONS(5851), 1, + anon_sym_EQ_GT, [109683] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5889), 1, - sym_identifier, + ACTIONS(4913), 1, + anon_sym_EQ_GT, [109690] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5891), 1, - anon_sym_function, + ACTIONS(5853), 1, + sym_identifier, [109697] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5893), 1, - sym_identifier, + ACTIONS(5855), 1, + anon_sym_from, [109704] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5895), 1, + ACTIONS(5857), 1, sym_identifier, [109711] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3450), 1, - anon_sym_RBRACK, + ACTIONS(5859), 1, + anon_sym_function, [109718] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5897), 1, + ACTIONS(5861), 1, sym_identifier, [109725] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5899), 1, + ACTIONS(4747), 1, sym_identifier, [109732] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4253), 1, - anon_sym_is, + ACTIONS(5863), 1, + sym_identifier, [109739] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5901), 1, + ACTIONS(5865), 1, sym_identifier, [109746] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5903), 1, - sym_identifier, + ACTIONS(5867), 1, + anon_sym_RPAREN, [109753] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5905), 1, - sym_identifier, + ACTIONS(3503), 1, + anon_sym_RPAREN, [109760] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5907), 1, - sym_identifier, + ACTIONS(5869), 1, + anon_sym_namespace, [109767] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5909), 1, + ACTIONS(5871), 1, sym_identifier, [109774] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5911), 1, + ACTIONS(5873), 1, sym_identifier, [109781] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5913), 1, + ACTIONS(5875), 1, sym_identifier, [109788] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3475), 1, - anon_sym_RBRACK, + ACTIONS(3487), 1, + anon_sym_RPAREN, [109795] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5915), 1, - sym_identifier, + ACTIONS(3485), 1, + anon_sym_RPAREN, [109802] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5917), 1, + ACTIONS(5877), 1, sym_identifier, [109809] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5919), 1, - anon_sym_EQ, + ACTIONS(5879), 1, + anon_sym_EQ_GT, [109816] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5921), 1, - anon_sym_EQ_GT, + ACTIONS(5881), 1, + sym_identifier, [109823] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5923), 1, + ACTIONS(5883), 1, anon_sym_EQ_GT, [109830] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5925), 1, - sym_identifier, + ACTIONS(5885), 1, + anon_sym_EQ_GT, [109837] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4799), 1, + ACTIONS(5887), 1, anon_sym_EQ_GT, [109844] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3066), 1, - anon_sym_RPAREN, + ACTIONS(5889), 1, + sym_identifier, [109851] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5927), 1, - sym_identifier, + ACTIONS(5891), 1, + anon_sym_EQ_GT, [109858] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5929), 1, + ACTIONS(5893), 1, sym_identifier, [109865] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4807), 1, - anon_sym_EQ_GT, + ACTIONS(5895), 1, + ts_builtin_sym_end, [109872] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5931), 1, - anon_sym_EQ_GT, + ACTIONS(5897), 1, + sym_identifier, [109879] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5899), 1, + sym_identifier, + [109886] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5901), 1, + anon_sym_class, + [109893] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5903), 1, + anon_sym_COLON, + [109900] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5905), 1, + sym_identifier, + [109907] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5907), 1, + anon_sym_RBRACK, + [109914] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5909), 1, + sym_identifier, + [109921] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5911), 1, + sym_identifier, + [109928] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5913), 1, + anon_sym_function, + [109935] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5915), 1, + sym_identifier, + [109942] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5917), 1, + sym_identifier, + [109949] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5919), 1, + sym_identifier, + [109956] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5921), 1, + sym_identifier, + [109963] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5923), 1, + sym_identifier, + [109970] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5925), 1, + sym_identifier, + [109977] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5927), 1, + sym_identifier, + [109984] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5929), 1, + sym_identifier, + [109991] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5931), 1, + sym_identifier, + [109998] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5933), 1, anon_sym_RPAREN, + [110005] = 2, + ACTIONS(4979), 1, + sym_comment, + ACTIONS(5935), 1, + sym_regex_pattern, + [110012] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5937), 1, + anon_sym_EQ_GT, + [110019] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5939), 1, + sym_identifier, + [110026] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3489), 1, + anon_sym_RPAREN, + [110033] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5941), 1, + sym_identifier, + [110040] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5943), 1, + anon_sym_EQ_GT, + [110047] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5945), 1, + anon_sym_EQ_GT, + [110054] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5947), 1, + anon_sym_EQ_GT, + [110061] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5949), 1, + anon_sym_EQ_GT, + [110068] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5951), 1, + sym_identifier, + [110075] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5953), 1, + anon_sym_EQ_GT, + [110082] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5955), 1, + sym_identifier, + [110089] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4259), 1, + anon_sym_is, + [110096] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5957), 1, + sym_identifier, + [110103] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5959), 1, + sym_identifier, + [110110] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4879), 1, + anon_sym_EQ_GT, + [110117] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5961), 1, + anon_sym_RPAREN, }; static uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(635)] = 0, - [SMALL_STATE(636)] = 95, - [SMALL_STATE(637)] = 198, - [SMALL_STATE(638)] = 301, - [SMALL_STATE(639)] = 403, - [SMALL_STATE(640)] = 497, - [SMALL_STATE(641)] = 593, - [SMALL_STATE(642)] = 695, - [SMALL_STATE(643)] = 791, - [SMALL_STATE(644)] = 887, - [SMALL_STATE(645)] = 985, - [SMALL_STATE(646)] = 1081, - [SMALL_STATE(647)] = 1176, - [SMALL_STATE(648)] = 1269, - [SMALL_STATE(649)] = 1368, - [SMALL_STATE(650)] = 1465, - [SMALL_STATE(651)] = 1558, - [SMALL_STATE(652)] = 1652, - [SMALL_STATE(653)] = 1744, - [SMALL_STATE(654)] = 1836, - [SMALL_STATE(655)] = 1922, - [SMALL_STATE(656)] = 2016, - [SMALL_STATE(657)] = 2111, - [SMALL_STATE(658)] = 2178, - [SMALL_STATE(659)] = 2271, - [SMALL_STATE(660)] = 2362, - [SMALL_STATE(661)] = 2451, - [SMALL_STATE(662)] = 2546, - [SMALL_STATE(663)] = 2635, - [SMALL_STATE(664)] = 2722, - [SMALL_STATE(665)] = 2789, - [SMALL_STATE(666)] = 2856, - [SMALL_STATE(667)] = 2943, - [SMALL_STATE(668)] = 3030, - [SMALL_STATE(669)] = 3105, - [SMALL_STATE(670)] = 3172, - [SMALL_STATE(671)] = 3263, - [SMALL_STATE(672)] = 3350, - [SMALL_STATE(673)] = 3417, - [SMALL_STATE(674)] = 3492, - [SMALL_STATE(675)] = 3583, - [SMALL_STATE(676)] = 3650, - [SMALL_STATE(677)] = 3717, - [SMALL_STATE(678)] = 3784, - [SMALL_STATE(679)] = 3851, - [SMALL_STATE(680)] = 3937, - [SMALL_STATE(681)] = 4025, - [SMALL_STATE(682)] = 4113, - [SMALL_STATE(683)] = 4201, - [SMALL_STATE(684)] = 4323, - [SMALL_STATE(685)] = 4407, - [SMALL_STATE(686)] = 4491, - [SMALL_STATE(687)] = 4579, - [SMALL_STATE(688)] = 4665, - [SMALL_STATE(689)] = 4753, - [SMALL_STATE(690)] = 4841, - [SMALL_STATE(691)] = 4927, - [SMALL_STATE(692)] = 5015, - [SMALL_STATE(693)] = 5092, - [SMALL_STATE(694)] = 5223, - [SMALL_STATE(695)] = 5354, - [SMALL_STATE(696)] = 5435, - [SMALL_STATE(697)] = 5566, - [SMALL_STATE(698)] = 5657, - [SMALL_STATE(699)] = 5742, - [SMALL_STATE(700)] = 5827, - [SMALL_STATE(701)] = 5912, - [SMALL_STATE(702)] = 5997, - [SMALL_STATE(703)] = 6086, - [SMALL_STATE(704)] = 6217, - [SMALL_STATE(705)] = 6302, - [SMALL_STATE(706)] = 6387, - [SMALL_STATE(707)] = 6468, - [SMALL_STATE(708)] = 6553, - [SMALL_STATE(709)] = 6626, - [SMALL_STATE(710)] = 6699, - [SMALL_STATE(711)] = 6784, - [SMALL_STATE(712)] = 6869, - [SMALL_STATE(713)] = 7000, - [SMALL_STATE(714)] = 7087, - [SMALL_STATE(715)] = 7170, - [SMALL_STATE(716)] = 7301, - [SMALL_STATE(717)] = 7388, - [SMALL_STATE(718)] = 7471, - [SMALL_STATE(719)] = 7548, - [SMALL_STATE(720)] = 7679, - [SMALL_STATE(721)] = 7764, - [SMALL_STATE(722)] = 7849, - [SMALL_STATE(723)] = 7936, - [SMALL_STATE(724)] = 8058, - [SMALL_STATE(725)] = 8134, - [SMALL_STATE(726)] = 8214, - [SMALL_STATE(727)] = 8290, - [SMALL_STATE(728)] = 8372, - [SMALL_STATE(729)] = 8456, - [SMALL_STATE(730)] = 8520, - [SMALL_STATE(731)] = 8604, - [SMALL_STATE(732)] = 8676, - [SMALL_STATE(733)] = 8760, - [SMALL_STATE(734)] = 8840, - [SMALL_STATE(735)] = 8922, - [SMALL_STATE(736)] = 9002, - [SMALL_STATE(737)] = 9082, - [SMALL_STATE(738)] = 9146, - [SMALL_STATE(739)] = 9226, - [SMALL_STATE(740)] = 9300, - [SMALL_STATE(741)] = 9422, - [SMALL_STATE(742)] = 9486, - [SMALL_STATE(743)] = 9558, - [SMALL_STATE(744)] = 9680, - [SMALL_STATE(745)] = 9758, - [SMALL_STATE(746)] = 9840, - [SMALL_STATE(747)] = 9924, - [SMALL_STATE(748)] = 9988, - [SMALL_STATE(749)] = 10052, - [SMALL_STATE(750)] = 10130, - [SMALL_STATE(751)] = 10252, - [SMALL_STATE(752)] = 10330, - [SMALL_STATE(753)] = 10394, - [SMALL_STATE(754)] = 10472, - [SMALL_STATE(755)] = 10550, - [SMALL_STATE(756)] = 10618, - [SMALL_STATE(757)] = 10696, - [SMALL_STATE(758)] = 10760, - [SMALL_STATE(759)] = 10882, - [SMALL_STATE(760)] = 10946, - [SMALL_STATE(761)] = 11032, - [SMALL_STATE(762)] = 11116, - [SMALL_STATE(763)] = 11180, - [SMALL_STATE(764)] = 11262, - [SMALL_STATE(765)] = 11335, - [SMALL_STATE(766)] = 11416, - [SMALL_STATE(767)] = 11535, - [SMALL_STATE(768)] = 11616, - [SMALL_STATE(769)] = 11693, - [SMALL_STATE(770)] = 11812, - [SMALL_STATE(771)] = 11931, - [SMALL_STATE(772)] = 12050, - [SMALL_STATE(773)] = 12117, - [SMALL_STATE(774)] = 12236, - [SMALL_STATE(775)] = 12355, - [SMALL_STATE(776)] = 12426, - [SMALL_STATE(777)] = 12497, - [SMALL_STATE(778)] = 12616, - [SMALL_STATE(779)] = 12735, - [SMALL_STATE(780)] = 12812, - [SMALL_STATE(781)] = 12931, - [SMALL_STATE(782)] = 13050, - [SMALL_STATE(783)] = 13169, - [SMALL_STATE(784)] = 13240, - [SMALL_STATE(785)] = 13359, - [SMALL_STATE(786)] = 13478, - [SMALL_STATE(787)] = 13557, - [SMALL_STATE(788)] = 13676, - [SMALL_STATE(789)] = 13795, - [SMALL_STATE(790)] = 13866, - [SMALL_STATE(791)] = 13985, - [SMALL_STATE(792)] = 14104, - [SMALL_STATE(793)] = 14223, - [SMALL_STATE(794)] = 14304, - [SMALL_STATE(795)] = 14379, - [SMALL_STATE(796)] = 14458, - [SMALL_STATE(797)] = 14529, - [SMALL_STATE(798)] = 14600, - [SMALL_STATE(799)] = 14679, - [SMALL_STATE(800)] = 14750, - [SMALL_STATE(801)] = 14869, - [SMALL_STATE(802)] = 14988, - [SMALL_STATE(803)] = 15107, - [SMALL_STATE(804)] = 15226, - [SMALL_STATE(805)] = 15301, - [SMALL_STATE(806)] = 15376, - [SMALL_STATE(807)] = 15495, - [SMALL_STATE(808)] = 15566, - [SMALL_STATE(809)] = 15637, - [SMALL_STATE(810)] = 15712, - [SMALL_STATE(811)] = 15774, - [SMALL_STATE(812)] = 15890, - [SMALL_STATE(813)] = 16006, - [SMALL_STATE(814)] = 16122, - [SMALL_STATE(815)] = 16238, - [SMALL_STATE(816)] = 16354, - [SMALL_STATE(817)] = 16470, - [SMALL_STATE(818)] = 16586, - [SMALL_STATE(819)] = 16702, - [SMALL_STATE(820)] = 16818, - [SMALL_STATE(821)] = 16934, - [SMALL_STATE(822)] = 17008, - [SMALL_STATE(823)] = 17124, - [SMALL_STATE(824)] = 17240, - [SMALL_STATE(825)] = 17356, - [SMALL_STATE(826)] = 17472, - [SMALL_STATE(827)] = 17588, - [SMALL_STATE(828)] = 17654, - [SMALL_STATE(829)] = 17726, - [SMALL_STATE(830)] = 17842, - [SMALL_STATE(831)] = 17958, - [SMALL_STATE(832)] = 18074, - [SMALL_STATE(833)] = 18190, - [SMALL_STATE(834)] = 18306, - [SMALL_STATE(835)] = 18422, - [SMALL_STATE(836)] = 18538, - [SMALL_STATE(837)] = 18654, - [SMALL_STATE(838)] = 18718, - [SMALL_STATE(839)] = 18834, - [SMALL_STATE(840)] = 18950, - [SMALL_STATE(841)] = 19066, - [SMALL_STATE(842)] = 19182, - [SMALL_STATE(843)] = 19298, - [SMALL_STATE(844)] = 19414, - [SMALL_STATE(845)] = 19530, - [SMALL_STATE(846)] = 19646, - [SMALL_STATE(847)] = 19762, - [SMALL_STATE(848)] = 19878, - [SMALL_STATE(849)] = 19994, - [SMALL_STATE(850)] = 20110, - [SMALL_STATE(851)] = 20226, - [SMALL_STATE(852)] = 20288, - [SMALL_STATE(853)] = 20404, - [SMALL_STATE(854)] = 20520, - [SMALL_STATE(855)] = 20636, - [SMALL_STATE(856)] = 20752, - [SMALL_STATE(857)] = 20868, - [SMALL_STATE(858)] = 20988, - [SMALL_STATE(859)] = 21104, - [SMALL_STATE(860)] = 21220, - [SMALL_STATE(861)] = 21336, - [SMALL_STATE(862)] = 21398, - [SMALL_STATE(863)] = 21514, - [SMALL_STATE(864)] = 21630, - [SMALL_STATE(865)] = 21746, - [SMALL_STATE(866)] = 21862, - [SMALL_STATE(867)] = 21978, - [SMALL_STATE(868)] = 22094, - [SMALL_STATE(869)] = 22210, - [SMALL_STATE(870)] = 22326, - [SMALL_STATE(871)] = 22442, - [SMALL_STATE(872)] = 22558, - [SMALL_STATE(873)] = 22674, - [SMALL_STATE(874)] = 22742, - [SMALL_STATE(875)] = 22858, - [SMALL_STATE(876)] = 22974, - [SMALL_STATE(877)] = 23050, - [SMALL_STATE(878)] = 23166, - [SMALL_STATE(879)] = 23228, - [SMALL_STATE(880)] = 23344, - [SMALL_STATE(881)] = 23460, - [SMALL_STATE(882)] = 23576, - [SMALL_STATE(883)] = 23642, - [SMALL_STATE(884)] = 23758, - [SMALL_STATE(885)] = 23874, - [SMALL_STATE(886)] = 23936, - [SMALL_STATE(887)] = 24052, - [SMALL_STATE(888)] = 24126, - [SMALL_STATE(889)] = 24246, - [SMALL_STATE(890)] = 24362, - [SMALL_STATE(891)] = 24478, - [SMALL_STATE(892)] = 24540, - [SMALL_STATE(893)] = 24656, - [SMALL_STATE(894)] = 24734, - [SMALL_STATE(895)] = 24850, - [SMALL_STATE(896)] = 24966, - [SMALL_STATE(897)] = 25082, - [SMALL_STATE(898)] = 25198, - [SMALL_STATE(899)] = 25314, - [SMALL_STATE(900)] = 25430, - [SMALL_STATE(901)] = 25546, - [SMALL_STATE(902)] = 25662, - [SMALL_STATE(903)] = 25778, - [SMALL_STATE(904)] = 25854, - [SMALL_STATE(905)] = 25970, - [SMALL_STATE(906)] = 26086, - [SMALL_STATE(907)] = 26202, - [SMALL_STATE(908)] = 26318, - [SMALL_STATE(909)] = 26434, - [SMALL_STATE(910)] = 26550, - [SMALL_STATE(911)] = 26612, - [SMALL_STATE(912)] = 26728, - [SMALL_STATE(913)] = 26844, - [SMALL_STATE(914)] = 26960, - [SMALL_STATE(915)] = 27022, - [SMALL_STATE(916)] = 27138, - [SMALL_STATE(917)] = 27254, - [SMALL_STATE(918)] = 27370, - [SMALL_STATE(919)] = 27486, - [SMALL_STATE(920)] = 27602, - [SMALL_STATE(921)] = 27718, - [SMALL_STATE(922)] = 27790, - [SMALL_STATE(923)] = 27906, - [SMALL_STATE(924)] = 28022, - [SMALL_STATE(925)] = 28090, - [SMALL_STATE(926)] = 28206, - [SMALL_STATE(927)] = 28280, - [SMALL_STATE(928)] = 28396, - [SMALL_STATE(929)] = 28512, - [SMALL_STATE(930)] = 28628, - [SMALL_STATE(931)] = 28702, - [SMALL_STATE(932)] = 28818, - [SMALL_STATE(933)] = 28934, - [SMALL_STATE(934)] = 29012, - [SMALL_STATE(935)] = 29128, - [SMALL_STATE(936)] = 29244, - [SMALL_STATE(937)] = 29360, - [SMALL_STATE(938)] = 29476, - [SMALL_STATE(939)] = 29592, - [SMALL_STATE(940)] = 29654, - [SMALL_STATE(941)] = 29716, - [SMALL_STATE(942)] = 29832, - [SMALL_STATE(943)] = 29948, - [SMALL_STATE(944)] = 30010, - [SMALL_STATE(945)] = 30126, - [SMALL_STATE(946)] = 30203, - [SMALL_STATE(947)] = 30268, - [SMALL_STATE(948)] = 30345, - [SMALL_STATE(949)] = 30416, - [SMALL_STATE(950)] = 30481, - [SMALL_STATE(951)] = 30558, - [SMALL_STATE(952)] = 30635, - [SMALL_STATE(953)] = 30706, - [SMALL_STATE(954)] = 30780, - [SMALL_STATE(955)] = 30848, - [SMALL_STATE(956)] = 30922, - [SMALL_STATE(957)] = 30990, - [SMALL_STATE(958)] = 31065, - [SMALL_STATE(959)] = 31171, - [SMALL_STATE(960)] = 31277, - [SMALL_STATE(961)] = 31383, - [SMALL_STATE(962)] = 31491, - [SMALL_STATE(963)] = 31599, - [SMALL_STATE(964)] = 31707, - [SMALL_STATE(965)] = 31815, - [SMALL_STATE(966)] = 31921, - [SMALL_STATE(967)] = 32027, - [SMALL_STATE(968)] = 32134, - [SMALL_STATE(969)] = 32239, - [SMALL_STATE(970)] = 32341, - [SMALL_STATE(971)] = 32443, - [SMALL_STATE(972)] = 32545, - [SMALL_STATE(973)] = 32647, - [SMALL_STATE(974)] = 32749, - [SMALL_STATE(975)] = 32851, - [SMALL_STATE(976)] = 32953, - [SMALL_STATE(977)] = 33055, - [SMALL_STATE(978)] = 33157, - [SMALL_STATE(979)] = 33259, - [SMALL_STATE(980)] = 33361, - [SMALL_STATE(981)] = 33463, - [SMALL_STATE(982)] = 33565, - [SMALL_STATE(983)] = 33667, - [SMALL_STATE(984)] = 33769, - [SMALL_STATE(985)] = 33822, - [SMALL_STATE(986)] = 33891, - [SMALL_STATE(987)] = 33960, - [SMALL_STATE(988)] = 34023, - [SMALL_STATE(989)] = 34076, - [SMALL_STATE(990)] = 34133, - [SMALL_STATE(991)] = 34191, - [SMALL_STATE(992)] = 34243, - [SMALL_STATE(993)] = 34341, - [SMALL_STATE(994)] = 34393, - [SMALL_STATE(995)] = 34491, - [SMALL_STATE(996)] = 34545, - [SMALL_STATE(997)] = 34601, - [SMALL_STATE(998)] = 34699, - [SMALL_STATE(999)] = 34797, - [SMALL_STATE(1000)] = 34853, - [SMALL_STATE(1001)] = 34905, - [SMALL_STATE(1002)] = 35003, - [SMALL_STATE(1003)] = 35055, - [SMALL_STATE(1004)] = 35111, - [SMALL_STATE(1005)] = 35209, - [SMALL_STATE(1006)] = 35265, - [SMALL_STATE(1007)] = 35317, - [SMALL_STATE(1008)] = 35369, - [SMALL_STATE(1009)] = 35435, - [SMALL_STATE(1010)] = 35487, - [SMALL_STATE(1011)] = 35543, - [SMALL_STATE(1012)] = 35595, - [SMALL_STATE(1013)] = 35653, - [SMALL_STATE(1014)] = 35704, - [SMALL_STATE(1015)] = 35755, - [SMALL_STATE(1016)] = 35850, - [SMALL_STATE(1017)] = 35945, - [SMALL_STATE(1018)] = 36040, - [SMALL_STATE(1019)] = 36135, - [SMALL_STATE(1020)] = 36230, - [SMALL_STATE(1021)] = 36291, - [SMALL_STATE(1022)] = 36386, - [SMALL_STATE(1023)] = 36443, - [SMALL_STATE(1024)] = 36498, - [SMALL_STATE(1025)] = 36549, - [SMALL_STATE(1026)] = 36600, - [SMALL_STATE(1027)] = 36671, - [SMALL_STATE(1028)] = 36742, - [SMALL_STATE(1029)] = 36793, - [SMALL_STATE(1030)] = 36846, - [SMALL_STATE(1031)] = 36897, - [SMALL_STATE(1032)] = 36954, - [SMALL_STATE(1033)] = 37009, - [SMALL_STATE(1034)] = 37060, - [SMALL_STATE(1035)] = 37111, - [SMALL_STATE(1036)] = 37164, - [SMALL_STATE(1037)] = 37215, - [SMALL_STATE(1038)] = 37266, - [SMALL_STATE(1039)] = 37319, - [SMALL_STATE(1040)] = 37370, - [SMALL_STATE(1041)] = 37465, - [SMALL_STATE(1042)] = 37518, - [SMALL_STATE(1043)] = 37569, - [SMALL_STATE(1044)] = 37620, - [SMALL_STATE(1045)] = 37715, - [SMALL_STATE(1046)] = 37768, - [SMALL_STATE(1047)] = 37819, - [SMALL_STATE(1048)] = 37870, - [SMALL_STATE(1049)] = 37921, - [SMALL_STATE(1050)] = 38012, - [SMALL_STATE(1051)] = 38063, - [SMALL_STATE(1052)] = 38114, - [SMALL_STATE(1053)] = 38185, - [SMALL_STATE(1054)] = 38262, - [SMALL_STATE(1055)] = 38357, - [SMALL_STATE(1056)] = 38408, - [SMALL_STATE(1057)] = 38461, - [SMALL_STATE(1058)] = 38512, - [SMALL_STATE(1059)] = 38563, - [SMALL_STATE(1060)] = 38614, - [SMALL_STATE(1061)] = 38701, - [SMALL_STATE(1062)] = 38758, - [SMALL_STATE(1063)] = 38809, - [SMALL_STATE(1064)] = 38860, - [SMALL_STATE(1065)] = 38911, - [SMALL_STATE(1066)] = 38962, - [SMALL_STATE(1067)] = 39013, - [SMALL_STATE(1068)] = 39064, - [SMALL_STATE(1069)] = 39119, - [SMALL_STATE(1070)] = 39170, - [SMALL_STATE(1071)] = 39227, - [SMALL_STATE(1072)] = 39278, - [SMALL_STATE(1073)] = 39329, - [SMALL_STATE(1074)] = 39380, - [SMALL_STATE(1075)] = 39435, - [SMALL_STATE(1076)] = 39488, - [SMALL_STATE(1077)] = 39571, - [SMALL_STATE(1078)] = 39634, - [SMALL_STATE(1079)] = 39697, - [SMALL_STATE(1080)] = 39776, - [SMALL_STATE(1081)] = 39873, - [SMALL_STATE(1082)] = 39930, - [SMALL_STATE(1083)] = 40003, - [SMALL_STATE(1084)] = 40098, - [SMALL_STATE(1085)] = 40151, - [SMALL_STATE(1086)] = 40222, - [SMALL_STATE(1087)] = 40317, - [SMALL_STATE(1088)] = 40388, - [SMALL_STATE(1089)] = 40443, - [SMALL_STATE(1090)] = 40498, - [SMALL_STATE(1091)] = 40593, - [SMALL_STATE(1092)] = 40688, - [SMALL_STATE(1093)] = 40757, - [SMALL_STATE(1094)] = 40852, - [SMALL_STATE(1095)] = 40947, - [SMALL_STATE(1096)] = 40997, - [SMALL_STATE(1097)] = 41047, - [SMALL_STATE(1098)] = 41113, - [SMALL_STATE(1099)] = 41213, - [SMALL_STATE(1100)] = 41263, - [SMALL_STATE(1101)] = 41361, - [SMALL_STATE(1102)] = 41417, - [SMALL_STATE(1103)] = 41511, - [SMALL_STATE(1104)] = 41577, - [SMALL_STATE(1105)] = 41645, - [SMALL_STATE(1106)] = 41695, - [SMALL_STATE(1107)] = 41755, - [SMALL_STATE(1108)] = 41811, - [SMALL_STATE(1109)] = 41865, - [SMALL_STATE(1110)] = 41915, - [SMALL_STATE(1111)] = 42009, - [SMALL_STATE(1112)] = 42103, - [SMALL_STATE(1113)] = 42157, - [SMALL_STATE(1114)] = 42207, - [SMALL_STATE(1115)] = 42279, - [SMALL_STATE(1116)] = 42373, - [SMALL_STATE(1117)] = 42423, - [SMALL_STATE(1118)] = 42473, - [SMALL_STATE(1119)] = 42551, - [SMALL_STATE(1120)] = 42637, - [SMALL_STATE(1121)] = 42713, - [SMALL_STATE(1122)] = 42783, - [SMALL_STATE(1123)] = 42873, - [SMALL_STATE(1124)] = 42967, - [SMALL_STATE(1125)] = 43061, - [SMALL_STATE(1126)] = 43155, - [SMALL_STATE(1127)] = 43249, - [SMALL_STATE(1128)] = 43343, - [SMALL_STATE(1129)] = 43393, - [SMALL_STATE(1130)] = 43487, - [SMALL_STATE(1131)] = 43537, - [SMALL_STATE(1132)] = 43587, - [SMALL_STATE(1133)] = 43637, - [SMALL_STATE(1134)] = 43731, - [SMALL_STATE(1135)] = 43831, - [SMALL_STATE(1136)] = 43901, - [SMALL_STATE(1137)] = 43951, - [SMALL_STATE(1138)] = 44051, - [SMALL_STATE(1139)] = 44101, - [SMALL_STATE(1140)] = 44151, - [SMALL_STATE(1141)] = 44201, - [SMALL_STATE(1142)] = 44251, - [SMALL_STATE(1143)] = 44333, - [SMALL_STATE(1144)] = 44383, - [SMALL_STATE(1145)] = 44481, - [SMALL_STATE(1146)] = 44531, - [SMALL_STATE(1147)] = 44629, - [SMALL_STATE(1148)] = 44679, - [SMALL_STATE(1149)] = 44729, - [SMALL_STATE(1150)] = 44823, - [SMALL_STATE(1151)] = 44873, - [SMALL_STATE(1152)] = 44923, - [SMALL_STATE(1153)] = 45021, - [SMALL_STATE(1154)] = 45071, - [SMALL_STATE(1155)] = 45121, - [SMALL_STATE(1156)] = 45219, - [SMALL_STATE(1157)] = 45269, - [SMALL_STATE(1158)] = 45319, - [SMALL_STATE(1159)] = 45369, - [SMALL_STATE(1160)] = 45419, - [SMALL_STATE(1161)] = 45469, - [SMALL_STATE(1162)] = 45519, - [SMALL_STATE(1163)] = 45569, - [SMALL_STATE(1164)] = 45669, - [SMALL_STATE(1165)] = 45763, - [SMALL_STATE(1166)] = 45857, - [SMALL_STATE(1167)] = 45907, - [SMALL_STATE(1168)] = 45957, - [SMALL_STATE(1169)] = 46051, - [SMALL_STATE(1170)] = 46101, - [SMALL_STATE(1171)] = 46151, - [SMALL_STATE(1172)] = 46201, - [SMALL_STATE(1173)] = 46251, - [SMALL_STATE(1174)] = 46301, - [SMALL_STATE(1175)] = 46351, - [SMALL_STATE(1176)] = 46451, - [SMALL_STATE(1177)] = 46501, - [SMALL_STATE(1178)] = 46571, - [SMALL_STATE(1179)] = 46621, - [SMALL_STATE(1180)] = 46671, - [SMALL_STATE(1181)] = 46721, - [SMALL_STATE(1182)] = 46771, - [SMALL_STATE(1183)] = 46821, - [SMALL_STATE(1184)] = 46871, - [SMALL_STATE(1185)] = 46921, - [SMALL_STATE(1186)] = 46971, - [SMALL_STATE(1187)] = 47021, - [SMALL_STATE(1188)] = 47071, - [SMALL_STATE(1189)] = 47121, - [SMALL_STATE(1190)] = 47171, - [SMALL_STATE(1191)] = 47221, - [SMALL_STATE(1192)] = 47271, - [SMALL_STATE(1193)] = 47321, - [SMALL_STATE(1194)] = 47371, - [SMALL_STATE(1195)] = 47421, - [SMALL_STATE(1196)] = 47471, - [SMALL_STATE(1197)] = 47521, - [SMALL_STATE(1198)] = 47571, - [SMALL_STATE(1199)] = 47621, - [SMALL_STATE(1200)] = 47671, - [SMALL_STATE(1201)] = 47721, - [SMALL_STATE(1202)] = 47771, - [SMALL_STATE(1203)] = 47871, - [SMALL_STATE(1204)] = 47965, - [SMALL_STATE(1205)] = 48015, - [SMALL_STATE(1206)] = 48096, - [SMALL_STATE(1207)] = 48189, - [SMALL_STATE(1208)] = 48286, - [SMALL_STATE(1209)] = 48335, - [SMALL_STATE(1210)] = 48404, - [SMALL_STATE(1211)] = 48473, - [SMALL_STATE(1212)] = 48568, - [SMALL_STATE(1213)] = 48663, - [SMALL_STATE(1214)] = 48760, - [SMALL_STATE(1215)] = 48825, - [SMALL_STATE(1216)] = 48890, - [SMALL_STATE(1217)] = 48987, - [SMALL_STATE(1218)] = 49054, - [SMALL_STATE(1219)] = 49149, - [SMALL_STATE(1220)] = 49208, - [SMALL_STATE(1221)] = 49261, - [SMALL_STATE(1222)] = 49356, - [SMALL_STATE(1223)] = 49451, - [SMALL_STATE(1224)] = 49548, - [SMALL_STATE(1225)] = 49597, - [SMALL_STATE(1226)] = 49648, - [SMALL_STATE(1227)] = 49743, - [SMALL_STATE(1228)] = 49838, - [SMALL_STATE(1229)] = 49933, - [SMALL_STATE(1230)] = 50004, - [SMALL_STATE(1231)] = 50081, - [SMALL_STATE(1232)] = 50162, - [SMALL_STATE(1233)] = 50247, - [SMALL_STATE(1234)] = 50322, - [SMALL_STATE(1235)] = 50391, - [SMALL_STATE(1236)] = 50484, - [SMALL_STATE(1237)] = 50577, - [SMALL_STATE(1238)] = 50666, - [SMALL_STATE(1239)] = 50761, - [SMALL_STATE(1240)] = 50858, - [SMALL_STATE(1241)] = 50907, - [SMALL_STATE(1242)] = 50962, - [SMALL_STATE(1243)] = 51015, - [SMALL_STATE(1244)] = 51108, - [SMALL_STATE(1245)] = 51201, - [SMALL_STATE(1246)] = 51250, - [SMALL_STATE(1247)] = 51347, - [SMALL_STATE(1248)] = 51442, - [SMALL_STATE(1249)] = 51537, - [SMALL_STATE(1250)] = 51630, - [SMALL_STATE(1251)] = 51723, - [SMALL_STATE(1252)] = 51818, - [SMALL_STATE(1253)] = 51915, - [SMALL_STATE(1254)] = 52008, - [SMALL_STATE(1255)] = 52059, - [SMALL_STATE(1256)] = 52154, - [SMALL_STATE(1257)] = 52225, - [SMALL_STATE(1258)] = 52322, - [SMALL_STATE(1259)] = 52399, - [SMALL_STATE(1260)] = 52494, - [SMALL_STATE(1261)] = 52587, - [SMALL_STATE(1262)] = 52682, - [SMALL_STATE(1263)] = 52777, - [SMALL_STATE(1264)] = 52870, - [SMALL_STATE(1265)] = 52963, - [SMALL_STATE(1266)] = 53058, - [SMALL_STATE(1267)] = 53143, - [SMALL_STATE(1268)] = 53218, - [SMALL_STATE(1269)] = 53315, - [SMALL_STATE(1270)] = 53384, - [SMALL_STATE(1271)] = 53473, - [SMALL_STATE(1272)] = 53524, - [SMALL_STATE(1273)] = 53575, - [SMALL_STATE(1274)] = 53668, - [SMALL_STATE(1275)] = 53721, - [SMALL_STATE(1276)] = 53814, - [SMALL_STATE(1277)] = 53869, - [SMALL_STATE(1278)] = 53962, - [SMALL_STATE(1279)] = 54015, - [SMALL_STATE(1280)] = 54112, - [SMALL_STATE(1281)] = 54163, - [SMALL_STATE(1282)] = 54212, - [SMALL_STATE(1283)] = 54305, - [SMALL_STATE(1284)] = 54398, - [SMALL_STATE(1285)] = 54491, - [SMALL_STATE(1286)] = 54584, - [SMALL_STATE(1287)] = 54677, - [SMALL_STATE(1288)] = 54736, - [SMALL_STATE(1289)] = 54833, - [SMALL_STATE(1290)] = 54930, - [SMALL_STATE(1291)] = 55025, - [SMALL_STATE(1292)] = 55078, - [SMALL_STATE(1293)] = 55171, - [SMALL_STATE(1294)] = 55232, - [SMALL_STATE(1295)] = 55285, - [SMALL_STATE(1296)] = 55346, - [SMALL_STATE(1297)] = 55403, - [SMALL_STATE(1298)] = 55460, - [SMALL_STATE(1299)] = 55529, - [SMALL_STATE(1300)] = 55598, - [SMALL_STATE(1301)] = 55691, - [SMALL_STATE(1302)] = 55784, - [SMALL_STATE(1303)] = 55851, - [SMALL_STATE(1304)] = 55948, - [SMALL_STATE(1305)] = 56045, - [SMALL_STATE(1306)] = 56140, - [SMALL_STATE(1307)] = 56203, - [SMALL_STATE(1308)] = 56298, - [SMALL_STATE(1309)] = 56347, - [SMALL_STATE(1310)] = 56439, - [SMALL_STATE(1311)] = 56533, - [SMALL_STATE(1312)] = 56627, - [SMALL_STATE(1313)] = 56679, - [SMALL_STATE(1314)] = 56731, - [SMALL_STATE(1315)] = 56781, - [SMALL_STATE(1316)] = 56841, - [SMALL_STATE(1317)] = 56933, - [SMALL_STATE(1318)] = 57025, - [SMALL_STATE(1319)] = 57079, - [SMALL_STATE(1320)] = 57173, - [SMALL_STATE(1321)] = 57221, - [SMALL_STATE(1322)] = 57269, - [SMALL_STATE(1323)] = 57321, - [SMALL_STATE(1324)] = 57413, - [SMALL_STATE(1325)] = 57467, - [SMALL_STATE(1326)] = 57519, - [SMALL_STATE(1327)] = 57613, - [SMALL_STATE(1328)] = 57707, - [SMALL_STATE(1329)] = 57801, - [SMALL_STATE(1330)] = 57849, - [SMALL_STATE(1331)] = 57901, - [SMALL_STATE(1332)] = 57949, - [SMALL_STATE(1333)] = 58001, - [SMALL_STATE(1334)] = 58053, - [SMALL_STATE(1335)] = 58119, - [SMALL_STATE(1336)] = 58171, - [SMALL_STATE(1337)] = 58219, - [SMALL_STATE(1338)] = 58311, - [SMALL_STATE(1339)] = 58363, - [SMALL_STATE(1340)] = 58413, - [SMALL_STATE(1341)] = 58505, - [SMALL_STATE(1342)] = 58573, - [SMALL_STATE(1343)] = 58641, - [SMALL_STATE(1344)] = 58693, - [SMALL_STATE(1345)] = 58747, - [SMALL_STATE(1346)] = 58795, - [SMALL_STATE(1347)] = 58843, - [SMALL_STATE(1348)] = 58895, - [SMALL_STATE(1349)] = 58989, - [SMALL_STATE(1350)] = 59041, - [SMALL_STATE(1351)] = 59133, - [SMALL_STATE(1352)] = 59185, - [SMALL_STATE(1353)] = 59237, - [SMALL_STATE(1354)] = 59331, - [SMALL_STATE(1355)] = 59381, - [SMALL_STATE(1356)] = 59433, - [SMALL_STATE(1357)] = 59485, - [SMALL_STATE(1358)] = 59539, - [SMALL_STATE(1359)] = 59591, - [SMALL_STATE(1360)] = 59639, - [SMALL_STATE(1361)] = 59691, - [SMALL_STATE(1362)] = 59743, - [SMALL_STATE(1363)] = 59791, - [SMALL_STATE(1364)] = 59841, - [SMALL_STATE(1365)] = 59889, - [SMALL_STATE(1366)] = 59937, - [SMALL_STATE(1367)] = 59985, - [SMALL_STATE(1368)] = 60039, - [SMALL_STATE(1369)] = 60087, - [SMALL_STATE(1370)] = 60135, - [SMALL_STATE(1371)] = 60229, - [SMALL_STATE(1372)] = 60277, - [SMALL_STATE(1373)] = 60329, - [SMALL_STATE(1374)] = 60421, - [SMALL_STATE(1375)] = 60515, - [SMALL_STATE(1376)] = 60607, - [SMALL_STATE(1377)] = 60699, - [SMALL_STATE(1378)] = 60793, - [SMALL_STATE(1379)] = 60885, - [SMALL_STATE(1380)] = 60979, - [SMALL_STATE(1381)] = 61071, - [SMALL_STATE(1382)] = 61165, - [SMALL_STATE(1383)] = 61257, - [SMALL_STATE(1384)] = 61319, - [SMALL_STATE(1385)] = 61413, - [SMALL_STATE(1386)] = 61505, - [SMALL_STATE(1387)] = 61597, - [SMALL_STATE(1388)] = 61685, - [SMALL_STATE(1389)] = 61753, - [SMALL_STATE(1390)] = 61827, - [SMALL_STATE(1391)] = 61875, - [SMALL_STATE(1392)] = 61959, - [SMALL_STATE(1393)] = 62039, - [SMALL_STATE(1394)] = 62115, - [SMALL_STATE(1395)] = 62163, - [SMALL_STATE(1396)] = 62233, - [SMALL_STATE(1397)] = 62325, - [SMALL_STATE(1398)] = 62379, - [SMALL_STATE(1399)] = 62427, - [SMALL_STATE(1400)] = 62475, - [SMALL_STATE(1401)] = 62527, - [SMALL_STATE(1402)] = 62577, - [SMALL_STATE(1403)] = 62625, - [SMALL_STATE(1404)] = 62717, - [SMALL_STATE(1405)] = 62809, - [SMALL_STATE(1406)] = 62901, - [SMALL_STATE(1407)] = 62993, - [SMALL_STATE(1408)] = 63085, - [SMALL_STATE(1409)] = 63135, - [SMALL_STATE(1410)] = 63227, - [SMALL_STATE(1411)] = 63319, - [SMALL_STATE(1412)] = 63413, - [SMALL_STATE(1413)] = 63507, - [SMALL_STATE(1414)] = 63573, - [SMALL_STATE(1415)] = 63667, - [SMALL_STATE(1416)] = 63761, - [SMALL_STATE(1417)] = 63853, - [SMALL_STATE(1418)] = 63945, - [SMALL_STATE(1419)] = 64037, - [SMALL_STATE(1420)] = 64129, - [SMALL_STATE(1421)] = 64223, - [SMALL_STATE(1422)] = 64317, - [SMALL_STATE(1423)] = 64409, - [SMALL_STATE(1424)] = 64463, - [SMALL_STATE(1425)] = 64531, - [SMALL_STATE(1426)] = 64599, - [SMALL_STATE(1427)] = 64691, - [SMALL_STATE(1428)] = 64783, - [SMALL_STATE(1429)] = 64875, - [SMALL_STATE(1430)] = 64967, - [SMALL_STATE(1431)] = 65059, - [SMALL_STATE(1432)] = 65151, - [SMALL_STATE(1433)] = 65221, - [SMALL_STATE(1434)] = 65277, - [SMALL_STATE(1435)] = 65371, - [SMALL_STATE(1436)] = 65427, - [SMALL_STATE(1437)] = 65521, - [SMALL_STATE(1438)] = 65615, - [SMALL_STATE(1439)] = 65669, - [SMALL_STATE(1440)] = 65763, - [SMALL_STATE(1441)] = 65829, - [SMALL_STATE(1442)] = 65881, - [SMALL_STATE(1443)] = 65973, - [SMALL_STATE(1444)] = 66065, - [SMALL_STATE(1445)] = 66139, - [SMALL_STATE(1446)] = 66215, - [SMALL_STATE(1447)] = 66265, - [SMALL_STATE(1448)] = 66319, - [SMALL_STATE(1449)] = 66387, - [SMALL_STATE(1450)] = 66435, - [SMALL_STATE(1451)] = 66495, - [SMALL_STATE(1452)] = 66583, - [SMALL_STATE(1453)] = 66633, - [SMALL_STATE(1454)] = 66693, - [SMALL_STATE(1455)] = 66741, - [SMALL_STATE(1456)] = 66833, - [SMALL_STATE(1457)] = 66881, - [SMALL_STATE(1458)] = 66961, - [SMALL_STATE(1459)] = 67053, - [SMALL_STATE(1460)] = 67103, - [SMALL_STATE(1461)] = 67151, - [SMALL_STATE(1462)] = 67203, - [SMALL_STATE(1463)] = 67287, - [SMALL_STATE(1464)] = 67335, - [SMALL_STATE(1465)] = 67383, - [SMALL_STATE(1466)] = 67431, - [SMALL_STATE(1467)] = 67479, - [SMALL_STATE(1468)] = 67571, - [SMALL_STATE(1469)] = 67665, - [SMALL_STATE(1470)] = 67713, - [SMALL_STATE(1471)] = 67773, - [SMALL_STATE(1472)] = 67831, - [SMALL_STATE(1473)] = 67879, - [SMALL_STATE(1474)] = 67926, - [SMALL_STATE(1475)] = 67973, - [SMALL_STATE(1476)] = 68020, - [SMALL_STATE(1477)] = 68067, - [SMALL_STATE(1478)] = 68114, - [SMALL_STATE(1479)] = 68163, - [SMALL_STATE(1480)] = 68210, - [SMALL_STATE(1481)] = 68257, - [SMALL_STATE(1482)] = 68304, - [SMALL_STATE(1483)] = 68353, - [SMALL_STATE(1484)] = 68400, - [SMALL_STATE(1485)] = 68447, - [SMALL_STATE(1486)] = 68538, - [SMALL_STATE(1487)] = 68629, - [SMALL_STATE(1488)] = 68676, - [SMALL_STATE(1489)] = 68723, - [SMALL_STATE(1490)] = 68770, - [SMALL_STATE(1491)] = 68853, - [SMALL_STATE(1492)] = 68912, - [SMALL_STATE(1493)] = 68995, - [SMALL_STATE(1494)] = 69042, - [SMALL_STATE(1495)] = 69133, - [SMALL_STATE(1496)] = 69180, - [SMALL_STATE(1497)] = 69227, - [SMALL_STATE(1498)] = 69274, - [SMALL_STATE(1499)] = 69327, - [SMALL_STATE(1500)] = 69374, - [SMALL_STATE(1501)] = 69421, - [SMALL_STATE(1502)] = 69480, - [SMALL_STATE(1503)] = 69571, - [SMALL_STATE(1504)] = 69628, - [SMALL_STATE(1505)] = 69675, - [SMALL_STATE(1506)] = 69724, - [SMALL_STATE(1507)] = 69783, - [SMALL_STATE(1508)] = 69830, - [SMALL_STATE(1509)] = 69877, - [SMALL_STATE(1510)] = 69924, - [SMALL_STATE(1511)] = 69971, - [SMALL_STATE(1512)] = 70018, - [SMALL_STATE(1513)] = 70065, - [SMALL_STATE(1514)] = 70148, - [SMALL_STATE(1515)] = 70239, - [SMALL_STATE(1516)] = 70324, - [SMALL_STATE(1517)] = 70371, - [SMALL_STATE(1518)] = 70418, - [SMALL_STATE(1519)] = 70465, - [SMALL_STATE(1520)] = 70514, - [SMALL_STATE(1521)] = 70561, - [SMALL_STATE(1522)] = 70608, - [SMALL_STATE(1523)] = 70655, - [SMALL_STATE(1524)] = 70702, - [SMALL_STATE(1525)] = 70785, - [SMALL_STATE(1526)] = 70832, - [SMALL_STATE(1527)] = 70879, - [SMALL_STATE(1528)] = 70926, - [SMALL_STATE(1529)] = 70973, - [SMALL_STATE(1530)] = 71020, - [SMALL_STATE(1531)] = 71067, - [SMALL_STATE(1532)] = 71122, - [SMALL_STATE(1533)] = 71179, - [SMALL_STATE(1534)] = 71236, - [SMALL_STATE(1535)] = 71283, - [SMALL_STATE(1536)] = 71330, - [SMALL_STATE(1537)] = 71385, - [SMALL_STATE(1538)] = 71432, - [SMALL_STATE(1539)] = 71479, - [SMALL_STATE(1540)] = 71526, - [SMALL_STATE(1541)] = 71573, - [SMALL_STATE(1542)] = 71658, - [SMALL_STATE(1543)] = 71705, - [SMALL_STATE(1544)] = 71752, - [SMALL_STATE(1545)] = 71809, - [SMALL_STATE(1546)] = 71856, - [SMALL_STATE(1547)] = 71913, - [SMALL_STATE(1548)] = 71960, - [SMALL_STATE(1549)] = 72013, - [SMALL_STATE(1550)] = 72072, - [SMALL_STATE(1551)] = 72127, - [SMALL_STATE(1552)] = 72174, - [SMALL_STATE(1553)] = 72221, - [SMALL_STATE(1554)] = 72268, - [SMALL_STATE(1555)] = 72315, - [SMALL_STATE(1556)] = 72362, - [SMALL_STATE(1557)] = 72413, - [SMALL_STATE(1558)] = 72464, - [SMALL_STATE(1559)] = 72511, - [SMALL_STATE(1560)] = 72560, - [SMALL_STATE(1561)] = 72607, - [SMALL_STATE(1562)] = 72654, - [SMALL_STATE(1563)] = 72703, - [SMALL_STATE(1564)] = 72750, - [SMALL_STATE(1565)] = 72797, - [SMALL_STATE(1566)] = 72852, - [SMALL_STATE(1567)] = 72935, - [SMALL_STATE(1568)] = 72982, - [SMALL_STATE(1569)] = 73029, - [SMALL_STATE(1570)] = 73090, - [SMALL_STATE(1571)] = 73173, - [SMALL_STATE(1572)] = 73234, - [SMALL_STATE(1573)] = 73281, - [SMALL_STATE(1574)] = 73328, - [SMALL_STATE(1575)] = 73389, - [SMALL_STATE(1576)] = 73436, - [SMALL_STATE(1577)] = 73483, - [SMALL_STATE(1578)] = 73530, - [SMALL_STATE(1579)] = 73613, - [SMALL_STATE(1580)] = 73670, - [SMALL_STATE(1581)] = 73717, - [SMALL_STATE(1582)] = 73764, - [SMALL_STATE(1583)] = 73811, - [SMALL_STATE(1584)] = 73858, - [SMALL_STATE(1585)] = 73909, - [SMALL_STATE(1586)] = 73964, - [SMALL_STATE(1587)] = 74019, - [SMALL_STATE(1588)] = 74066, - [SMALL_STATE(1589)] = 74113, - [SMALL_STATE(1590)] = 74196, - [SMALL_STATE(1591)] = 74243, - [SMALL_STATE(1592)] = 74290, - [SMALL_STATE(1593)] = 74337, - [SMALL_STATE(1594)] = 74384, - [SMALL_STATE(1595)] = 74431, - [SMALL_STATE(1596)] = 74484, - [SMALL_STATE(1597)] = 74535, - [SMALL_STATE(1598)] = 74582, - [SMALL_STATE(1599)] = 74641, - [SMALL_STATE(1600)] = 74726, - [SMALL_STATE(1601)] = 74773, - [SMALL_STATE(1602)] = 74820, - [SMALL_STATE(1603)] = 74867, - [SMALL_STATE(1604)] = 74958, - [SMALL_STATE(1605)] = 75043, - [SMALL_STATE(1606)] = 75090, - [SMALL_STATE(1607)] = 75149, - [SMALL_STATE(1608)] = 75196, - [SMALL_STATE(1609)] = 75243, - [SMALL_STATE(1610)] = 75296, - [SMALL_STATE(1611)] = 75343, - [SMALL_STATE(1612)] = 75390, - [SMALL_STATE(1613)] = 75437, - [SMALL_STATE(1614)] = 75522, - [SMALL_STATE(1615)] = 75613, - [SMALL_STATE(1616)] = 75666, - [SMALL_STATE(1617)] = 75713, - [SMALL_STATE(1618)] = 75762, - [SMALL_STATE(1619)] = 75845, - [SMALL_STATE(1620)] = 75896, - [SMALL_STATE(1621)] = 75979, - [SMALL_STATE(1622)] = 76028, - [SMALL_STATE(1623)] = 76087, - [SMALL_STATE(1624)] = 76134, - [SMALL_STATE(1625)] = 76183, - [SMALL_STATE(1626)] = 76232, - [SMALL_STATE(1627)] = 76279, - [SMALL_STATE(1628)] = 76362, - [SMALL_STATE(1629)] = 76445, - [SMALL_STATE(1630)] = 76528, - [SMALL_STATE(1631)] = 76619, - [SMALL_STATE(1632)] = 76683, - [SMALL_STATE(1633)] = 76729, - [SMALL_STATE(1634)] = 76775, - [SMALL_STATE(1635)] = 76863, - [SMALL_STATE(1636)] = 76909, - [SMALL_STATE(1637)] = 76955, - [SMALL_STATE(1638)] = 77001, - [SMALL_STATE(1639)] = 77047, - [SMALL_STATE(1640)] = 77113, - [SMALL_STATE(1641)] = 77167, - [SMALL_STATE(1642)] = 77213, - [SMALL_STATE(1643)] = 77259, - [SMALL_STATE(1644)] = 77305, - [SMALL_STATE(1645)] = 77351, - [SMALL_STATE(1646)] = 77397, - [SMALL_STATE(1647)] = 77443, - [SMALL_STATE(1648)] = 77489, - [SMALL_STATE(1649)] = 77535, - [SMALL_STATE(1650)] = 77603, - [SMALL_STATE(1651)] = 77669, - [SMALL_STATE(1652)] = 77715, - [SMALL_STATE(1653)] = 77761, - [SMALL_STATE(1654)] = 77829, - [SMALL_STATE(1655)] = 77883, - [SMALL_STATE(1656)] = 77929, - [SMALL_STATE(1657)] = 77975, - [SMALL_STATE(1658)] = 78039, - [SMALL_STATE(1659)] = 78085, - [SMALL_STATE(1660)] = 78131, - [SMALL_STATE(1661)] = 78177, - [SMALL_STATE(1662)] = 78223, - [SMALL_STATE(1663)] = 78303, - [SMALL_STATE(1664)] = 78349, - [SMALL_STATE(1665)] = 78415, - [SMALL_STATE(1666)] = 78461, - [SMALL_STATE(1667)] = 78525, - [SMALL_STATE(1668)] = 78571, - [SMALL_STATE(1669)] = 78617, - [SMALL_STATE(1670)] = 78663, - [SMALL_STATE(1671)] = 78709, - [SMALL_STATE(1672)] = 78763, - [SMALL_STATE(1673)] = 78809, - [SMALL_STATE(1674)] = 78877, - [SMALL_STATE(1675)] = 78923, - [SMALL_STATE(1676)] = 78969, - [SMALL_STATE(1677)] = 79035, - [SMALL_STATE(1678)] = 79089, - [SMALL_STATE(1679)] = 79135, - [SMALL_STATE(1680)] = 79181, - [SMALL_STATE(1681)] = 79227, - [SMALL_STATE(1682)] = 79273, - [SMALL_STATE(1683)] = 79325, - [SMALL_STATE(1684)] = 79413, - [SMALL_STATE(1685)] = 79459, - [SMALL_STATE(1686)] = 79505, - [SMALL_STATE(1687)] = 79593, - [SMALL_STATE(1688)] = 79639, - [SMALL_STATE(1689)] = 79685, - [SMALL_STATE(1690)] = 79753, - [SMALL_STATE(1691)] = 79799, - [SMALL_STATE(1692)] = 79845, - [SMALL_STATE(1693)] = 79891, - [SMALL_STATE(1694)] = 79955, - [SMALL_STATE(1695)] = 80001, - [SMALL_STATE(1696)] = 80047, - [SMALL_STATE(1697)] = 80093, - [SMALL_STATE(1698)] = 80139, - [SMALL_STATE(1699)] = 80185, - [SMALL_STATE(1700)] = 80231, - [SMALL_STATE(1701)] = 80277, - [SMALL_STATE(1702)] = 80323, - [SMALL_STATE(1703)] = 80369, - [SMALL_STATE(1704)] = 80415, - [SMALL_STATE(1705)] = 80461, - [SMALL_STATE(1706)] = 80507, - [SMALL_STATE(1707)] = 80553, - [SMALL_STATE(1708)] = 80599, - [SMALL_STATE(1709)] = 80645, - [SMALL_STATE(1710)] = 80704, - [SMALL_STATE(1711)] = 80761, - [SMALL_STATE(1712)] = 80828, - [SMALL_STATE(1713)] = 80887, - [SMALL_STATE(1714)] = 80950, - [SMALL_STATE(1715)] = 81013, - [SMALL_STATE(1716)] = 81070, - [SMALL_STATE(1717)] = 81135, - [SMALL_STATE(1718)] = 81194, - [SMALL_STATE(1719)] = 81251, - [SMALL_STATE(1720)] = 81308, - [SMALL_STATE(1721)] = 81371, - [SMALL_STATE(1722)] = 81430, - [SMALL_STATE(1723)] = 81488, - [SMALL_STATE(1724)] = 81546, - [SMALL_STATE(1725)] = 81608, - [SMALL_STATE(1726)] = 81670, - [SMALL_STATE(1727)] = 81730, - [SMALL_STATE(1728)] = 81788, - [SMALL_STATE(1729)] = 81834, - [SMALL_STATE(1730)] = 81892, - [SMALL_STATE(1731)] = 81950, - [SMALL_STATE(1732)] = 82010, - [SMALL_STATE(1733)] = 82068, - [SMALL_STATE(1734)] = 82126, - [SMALL_STATE(1735)] = 82188, - [SMALL_STATE(1736)] = 82248, - [SMALL_STATE(1737)] = 82308, - [SMALL_STATE(1738)] = 82366, - [SMALL_STATE(1739)] = 82428, - [SMALL_STATE(1740)] = 82486, - [SMALL_STATE(1741)] = 82546, - [SMALL_STATE(1742)] = 82606, - [SMALL_STATE(1743)] = 82664, - [SMALL_STATE(1744)] = 82726, - [SMALL_STATE(1745)] = 82784, - [SMALL_STATE(1746)] = 82844, - [SMALL_STATE(1747)] = 82902, - [SMALL_STATE(1748)] = 82967, - [SMALL_STATE(1749)] = 83032, - [SMALL_STATE(1750)] = 83081, - [SMALL_STATE(1751)] = 83148, - [SMALL_STATE(1752)] = 83201, - [SMALL_STATE(1753)] = 83250, - [SMALL_STATE(1754)] = 83319, - [SMALL_STATE(1755)] = 83372, - [SMALL_STATE(1756)] = 83425, - [SMALL_STATE(1757)] = 83478, - [SMALL_STATE(1758)] = 83531, - [SMALL_STATE(1759)] = 83584, - [SMALL_STATE(1760)] = 83657, - [SMALL_STATE(1761)] = 83730, - [SMALL_STATE(1762)] = 83795, - [SMALL_STATE(1763)] = 83848, - [SMALL_STATE(1764)] = 83921, - [SMALL_STATE(1765)] = 83994, - [SMALL_STATE(1766)] = 84059, - [SMALL_STATE(1767)] = 84112, - [SMALL_STATE(1768)] = 84181, - [SMALL_STATE(1769)] = 84248, - [SMALL_STATE(1770)] = 84321, - [SMALL_STATE(1771)] = 84374, - [SMALL_STATE(1772)] = 84427, - [SMALL_STATE(1773)] = 84496, - [SMALL_STATE(1774)] = 84549, - [SMALL_STATE(1775)] = 84602, - [SMALL_STATE(1776)] = 84675, - [SMALL_STATE(1777)] = 84728, - [SMALL_STATE(1778)] = 84795, - [SMALL_STATE(1779)] = 84844, - [SMALL_STATE(1780)] = 84913, - [SMALL_STATE(1781)] = 84966, - [SMALL_STATE(1782)] = 85033, - [SMALL_STATE(1783)] = 85100, - [SMALL_STATE(1784)] = 85149, - [SMALL_STATE(1785)] = 85222, - [SMALL_STATE(1786)] = 85295, - [SMALL_STATE(1787)] = 85348, - [SMALL_STATE(1788)] = 85397, - [SMALL_STATE(1789)] = 85466, - [SMALL_STATE(1790)] = 85539, - [SMALL_STATE(1791)] = 85604, - [SMALL_STATE(1792)] = 85666, - [SMALL_STATE(1793)] = 85736, - [SMALL_STATE(1794)] = 85796, - [SMALL_STATE(1795)] = 85860, - [SMALL_STATE(1796)] = 85920, - [SMALL_STATE(1797)] = 85968, - [SMALL_STATE(1798)] = 86010, - [SMALL_STATE(1799)] = 86080, - [SMALL_STATE(1800)] = 86140, - [SMALL_STATE(1801)] = 86200, - [SMALL_STATE(1802)] = 86260, - [SMALL_STATE(1803)] = 86330, - [SMALL_STATE(1804)] = 86400, - [SMALL_STATE(1805)] = 86460, - [SMALL_STATE(1806)] = 86515, - [SMALL_STATE(1807)] = 86594, - [SMALL_STATE(1808)] = 86673, - [SMALL_STATE(1809)] = 86752, - [SMALL_STATE(1810)] = 86831, - [SMALL_STATE(1811)] = 86910, - [SMALL_STATE(1812)] = 86989, - [SMALL_STATE(1813)] = 87039, - [SMALL_STATE(1814)] = 87089, - [SMALL_STATE(1815)] = 87139, - [SMALL_STATE(1816)] = 87189, - [SMALL_STATE(1817)] = 87229, - [SMALL_STATE(1818)] = 87269, - [SMALL_STATE(1819)] = 87309, - [SMALL_STATE(1820)] = 87349, - [SMALL_STATE(1821)] = 87389, - [SMALL_STATE(1822)] = 87439, - [SMALL_STATE(1823)] = 87484, - [SMALL_STATE(1824)] = 87522, - [SMALL_STATE(1825)] = 87560, - [SMALL_STATE(1826)] = 87614, - [SMALL_STATE(1827)] = 87668, - [SMALL_STATE(1828)] = 87706, - [SMALL_STATE(1829)] = 87744, - [SMALL_STATE(1830)] = 87782, - [SMALL_STATE(1831)] = 87834, - [SMALL_STATE(1832)] = 87890, - [SMALL_STATE(1833)] = 87930, - [SMALL_STATE(1834)] = 87970, - [SMALL_STATE(1835)] = 88022, - [SMALL_STATE(1836)] = 88060, - [SMALL_STATE(1837)] = 88098, - [SMALL_STATE(1838)] = 88136, - [SMALL_STATE(1839)] = 88174, - [SMALL_STATE(1840)] = 88212, - [SMALL_STATE(1841)] = 88262, - [SMALL_STATE(1842)] = 88300, - [SMALL_STATE(1843)] = 88338, - [SMALL_STATE(1844)] = 88378, - [SMALL_STATE(1845)] = 88416, - [SMALL_STATE(1846)] = 88468, - [SMALL_STATE(1847)] = 88506, - [SMALL_STATE(1848)] = 88553, - [SMALL_STATE(1849)] = 88600, - [SMALL_STATE(1850)] = 88647, - [SMALL_STATE(1851)] = 88694, - [SMALL_STATE(1852)] = 88741, - [SMALL_STATE(1853)] = 88788, - [SMALL_STATE(1854)] = 88835, - [SMALL_STATE(1855)] = 88882, - [SMALL_STATE(1856)] = 88929, - [SMALL_STATE(1857)] = 88976, - [SMALL_STATE(1858)] = 89023, - [SMALL_STATE(1859)] = 89070, - [SMALL_STATE(1860)] = 89117, - [SMALL_STATE(1861)] = 89164, - [SMALL_STATE(1862)] = 89211, - [SMALL_STATE(1863)] = 89258, - [SMALL_STATE(1864)] = 89305, - [SMALL_STATE(1865)] = 89352, - [SMALL_STATE(1866)] = 89400, - [SMALL_STATE(1867)] = 89448, - [SMALL_STATE(1868)] = 89484, - [SMALL_STATE(1869)] = 89532, - [SMALL_STATE(1870)] = 89580, - [SMALL_STATE(1871)] = 89628, - [SMALL_STATE(1872)] = 89676, - [SMALL_STATE(1873)] = 89732, - [SMALL_STATE(1874)] = 89769, - [SMALL_STATE(1875)] = 89810, - [SMALL_STATE(1876)] = 89863, - [SMALL_STATE(1877)] = 89916, - [SMALL_STATE(1878)] = 89969, - [SMALL_STATE(1879)] = 90014, - [SMALL_STATE(1880)] = 90063, - [SMALL_STATE(1881)] = 90112, - [SMALL_STATE(1882)] = 90154, - [SMALL_STATE(1883)] = 90196, - [SMALL_STATE(1884)] = 90238, - [SMALL_STATE(1885)] = 90280, - [SMALL_STATE(1886)] = 90322, - [SMALL_STATE(1887)] = 90364, - [SMALL_STATE(1888)] = 90406, - [SMALL_STATE(1889)] = 90448, - [SMALL_STATE(1890)] = 90490, - [SMALL_STATE(1891)] = 90532, - [SMALL_STATE(1892)] = 90574, - [SMALL_STATE(1893)] = 90616, - [SMALL_STATE(1894)] = 90658, - [SMALL_STATE(1895)] = 90700, - [SMALL_STATE(1896)] = 90742, - [SMALL_STATE(1897)] = 90784, - [SMALL_STATE(1898)] = 90826, - [SMALL_STATE(1899)] = 90868, - [SMALL_STATE(1900)] = 90910, - [SMALL_STATE(1901)] = 90952, - [SMALL_STATE(1902)] = 90994, - [SMALL_STATE(1903)] = 91036, - [SMALL_STATE(1904)] = 91078, - [SMALL_STATE(1905)] = 91120, - [SMALL_STATE(1906)] = 91153, - [SMALL_STATE(1907)] = 91195, - [SMALL_STATE(1908)] = 91225, - [SMALL_STATE(1909)] = 91257, - [SMALL_STATE(1910)] = 91289, - [SMALL_STATE(1911)] = 91321, - [SMALL_STATE(1912)] = 91348, - [SMALL_STATE(1913)] = 91377, - [SMALL_STATE(1914)] = 91406, - [SMALL_STATE(1915)] = 91432, - [SMALL_STATE(1916)] = 91456, - [SMALL_STATE(1917)] = 91480, - [SMALL_STATE(1918)] = 91501, - [SMALL_STATE(1919)] = 91522, - [SMALL_STATE(1920)] = 91543, - [SMALL_STATE(1921)] = 91564, - [SMALL_STATE(1922)] = 91585, - [SMALL_STATE(1923)] = 91612, - [SMALL_STATE(1924)] = 91641, - [SMALL_STATE(1925)] = 91670, - [SMALL_STATE(1926)] = 91691, - [SMALL_STATE(1927)] = 91733, - [SMALL_STATE(1928)] = 91775, - [SMALL_STATE(1929)] = 91805, - [SMALL_STATE(1930)] = 91847, - [SMALL_STATE(1931)] = 91875, - [SMALL_STATE(1932)] = 91903, - [SMALL_STATE(1933)] = 91945, - [SMALL_STATE(1934)] = 91987, - [SMALL_STATE(1935)] = 92015, - [SMALL_STATE(1936)] = 92057, - [SMALL_STATE(1937)] = 92080, - [SMALL_STATE(1938)] = 92115, - [SMALL_STATE(1939)] = 92150, - [SMALL_STATE(1940)] = 92173, - [SMALL_STATE(1941)] = 92198, - [SMALL_STATE(1942)] = 92235, - [SMALL_STATE(1943)] = 92270, - [SMALL_STATE(1944)] = 92305, - [SMALL_STATE(1945)] = 92340, - [SMALL_STATE(1946)] = 92375, - [SMALL_STATE(1947)] = 92410, - [SMALL_STATE(1948)] = 92435, - [SMALL_STATE(1949)] = 92470, - [SMALL_STATE(1950)] = 92502, - [SMALL_STATE(1951)] = 92538, - [SMALL_STATE(1952)] = 92574, - [SMALL_STATE(1953)] = 92602, - [SMALL_STATE(1954)] = 92634, - [SMALL_STATE(1955)] = 92670, - [SMALL_STATE(1956)] = 92706, - [SMALL_STATE(1957)] = 92738, - [SMALL_STATE(1958)] = 92770, - [SMALL_STATE(1959)] = 92806, - [SMALL_STATE(1960)] = 92838, - [SMALL_STATE(1961)] = 92860, - [SMALL_STATE(1962)] = 92886, - [SMALL_STATE(1963)] = 92918, - [SMALL_STATE(1964)] = 92954, - [SMALL_STATE(1965)] = 92986, - [SMALL_STATE(1966)] = 93018, - [SMALL_STATE(1967)] = 93041, - [SMALL_STATE(1968)] = 93060, - [SMALL_STATE(1969)] = 93079, - [SMALL_STATE(1970)] = 93098, - [SMALL_STATE(1971)] = 93119, - [SMALL_STATE(1972)] = 93138, - [SMALL_STATE(1973)] = 93157, - [SMALL_STATE(1974)] = 93176, - [SMALL_STATE(1975)] = 93197, - [SMALL_STATE(1976)] = 93216, - [SMALL_STATE(1977)] = 93235, - [SMALL_STATE(1978)] = 93256, - [SMALL_STATE(1979)] = 93275, - [SMALL_STATE(1980)] = 93296, - [SMALL_STATE(1981)] = 93315, - [SMALL_STATE(1982)] = 93334, - [SMALL_STATE(1983)] = 93353, - [SMALL_STATE(1984)] = 93372, - [SMALL_STATE(1985)] = 93391, - [SMALL_STATE(1986)] = 93412, - [SMALL_STATE(1987)] = 93431, - [SMALL_STATE(1988)] = 93448, - [SMALL_STATE(1989)] = 93467, - [SMALL_STATE(1990)] = 93486, - [SMALL_STATE(1991)] = 93503, - [SMALL_STATE(1992)] = 93522, - [SMALL_STATE(1993)] = 93541, - [SMALL_STATE(1994)] = 93560, - [SMALL_STATE(1995)] = 93579, - [SMALL_STATE(1996)] = 93598, - [SMALL_STATE(1997)] = 93619, - [SMALL_STATE(1998)] = 93640, - [SMALL_STATE(1999)] = 93659, - [SMALL_STATE(2000)] = 93678, - [SMALL_STATE(2001)] = 93697, - [SMALL_STATE(2002)] = 93716, - [SMALL_STATE(2003)] = 93737, - [SMALL_STATE(2004)] = 93758, - [SMALL_STATE(2005)] = 93781, - [SMALL_STATE(2006)] = 93800, - [SMALL_STATE(2007)] = 93819, - [SMALL_STATE(2008)] = 93838, - [SMALL_STATE(2009)] = 93857, - [SMALL_STATE(2010)] = 93879, - [SMALL_STATE(2011)] = 93913, - [SMALL_STATE(2012)] = 93947, - [SMALL_STATE(2013)] = 93981, - [SMALL_STATE(2014)] = 93999, - [SMALL_STATE(2015)] = 94033, - [SMALL_STATE(2016)] = 94053, - [SMALL_STATE(2017)] = 94073, - [SMALL_STATE(2018)] = 94107, - [SMALL_STATE(2019)] = 94141, - [SMALL_STATE(2020)] = 94171, - [SMALL_STATE(2021)] = 94191, - [SMALL_STATE(2022)] = 94225, - [SMALL_STATE(2023)] = 94259, - [SMALL_STATE(2024)] = 94293, - [SMALL_STATE(2025)] = 94327, - [SMALL_STATE(2026)] = 94351, - [SMALL_STATE(2027)] = 94382, - [SMALL_STATE(2028)] = 94413, - [SMALL_STATE(2029)] = 94444, - [SMALL_STATE(2030)] = 94469, - [SMALL_STATE(2031)] = 94486, - [SMALL_STATE(2032)] = 94509, - [SMALL_STATE(2033)] = 94526, - [SMALL_STATE(2034)] = 94545, - [SMALL_STATE(2035)] = 94570, - [SMALL_STATE(2036)] = 94601, - [SMALL_STATE(2037)] = 94632, - [SMALL_STATE(2038)] = 94649, - [SMALL_STATE(2039)] = 94680, - [SMALL_STATE(2040)] = 94697, - [SMALL_STATE(2041)] = 94728, - [SMALL_STATE(2042)] = 94749, - [SMALL_STATE(2043)] = 94774, - [SMALL_STATE(2044)] = 94799, - [SMALL_STATE(2045)] = 94818, - [SMALL_STATE(2046)] = 94843, - [SMALL_STATE(2047)] = 94862, - [SMALL_STATE(2048)] = 94893, - [SMALL_STATE(2049)] = 94924, - [SMALL_STATE(2050)] = 94955, - [SMALL_STATE(2051)] = 94986, - [SMALL_STATE(2052)] = 95017, - [SMALL_STATE(2053)] = 95048, - [SMALL_STATE(2054)] = 95073, - [SMALL_STATE(2055)] = 95104, - [SMALL_STATE(2056)] = 95135, - [SMALL_STATE(2057)] = 95160, - [SMALL_STATE(2058)] = 95191, - [SMALL_STATE(2059)] = 95213, - [SMALL_STATE(2060)] = 95235, - [SMALL_STATE(2061)] = 95257, - [SMALL_STATE(2062)] = 95277, - [SMALL_STATE(2063)] = 95299, - [SMALL_STATE(2064)] = 95321, - [SMALL_STATE(2065)] = 95345, - [SMALL_STATE(2066)] = 95367, - [SMALL_STATE(2067)] = 95387, - [SMALL_STATE(2068)] = 95407, - [SMALL_STATE(2069)] = 95427, - [SMALL_STATE(2070)] = 95444, - [SMALL_STATE(2071)] = 95461, - [SMALL_STATE(2072)] = 95486, - [SMALL_STATE(2073)] = 95511, - [SMALL_STATE(2074)] = 95536, - [SMALL_STATE(2075)] = 95561, - [SMALL_STATE(2076)] = 95586, - [SMALL_STATE(2077)] = 95611, - [SMALL_STATE(2078)] = 95636, - [SMALL_STATE(2079)] = 95653, - [SMALL_STATE(2080)] = 95674, - [SMALL_STATE(2081)] = 95699, - [SMALL_STATE(2082)] = 95714, - [SMALL_STATE(2083)] = 95735, - [SMALL_STATE(2084)] = 95748, - [SMALL_STATE(2085)] = 95773, - [SMALL_STATE(2086)] = 95794, - [SMALL_STATE(2087)] = 95809, - [SMALL_STATE(2088)] = 95834, - [SMALL_STATE(2089)] = 95847, - [SMALL_STATE(2090)] = 95872, - [SMALL_STATE(2091)] = 95897, - [SMALL_STATE(2092)] = 95914, - [SMALL_STATE(2093)] = 95939, - [SMALL_STATE(2094)] = 95964, - [SMALL_STATE(2095)] = 95987, - [SMALL_STATE(2096)] = 96012, - [SMALL_STATE(2097)] = 96037, - [SMALL_STATE(2098)] = 96062, - [SMALL_STATE(2099)] = 96087, - [SMALL_STATE(2100)] = 96108, - [SMALL_STATE(2101)] = 96121, - [SMALL_STATE(2102)] = 96146, - [SMALL_STATE(2103)] = 96171, - [SMALL_STATE(2104)] = 96196, - [SMALL_STATE(2105)] = 96221, - [SMALL_STATE(2106)] = 96242, - [SMALL_STATE(2107)] = 96255, - [SMALL_STATE(2108)] = 96280, - [SMALL_STATE(2109)] = 96297, - [SMALL_STATE(2110)] = 96322, - [SMALL_STATE(2111)] = 96347, - [SMALL_STATE(2112)] = 96372, - [SMALL_STATE(2113)] = 96389, - [SMALL_STATE(2114)] = 96414, - [SMALL_STATE(2115)] = 96439, - [SMALL_STATE(2116)] = 96452, - [SMALL_STATE(2117)] = 96469, - [SMALL_STATE(2118)] = 96486, - [SMALL_STATE(2119)] = 96511, - [SMALL_STATE(2120)] = 96532, - [SMALL_STATE(2121)] = 96557, - [SMALL_STATE(2122)] = 96574, - [SMALL_STATE(2123)] = 96599, - [SMALL_STATE(2124)] = 96624, - [SMALL_STATE(2125)] = 96641, - [SMALL_STATE(2126)] = 96658, - [SMALL_STATE(2127)] = 96683, - [SMALL_STATE(2128)] = 96708, - [SMALL_STATE(2129)] = 96725, - [SMALL_STATE(2130)] = 96750, - [SMALL_STATE(2131)] = 96775, - [SMALL_STATE(2132)] = 96792, - [SMALL_STATE(2133)] = 96817, - [SMALL_STATE(2134)] = 96842, - [SMALL_STATE(2135)] = 96859, - [SMALL_STATE(2136)] = 96872, - [SMALL_STATE(2137)] = 96897, - [SMALL_STATE(2138)] = 96922, - [SMALL_STATE(2139)] = 96939, - [SMALL_STATE(2140)] = 96956, - [SMALL_STATE(2141)] = 96977, - [SMALL_STATE(2142)] = 96999, - [SMALL_STATE(2143)] = 97021, - [SMALL_STATE(2144)] = 97043, - [SMALL_STATE(2145)] = 97063, - [SMALL_STATE(2146)] = 97085, - [SMALL_STATE(2147)] = 97101, - [SMALL_STATE(2148)] = 97123, - [SMALL_STATE(2149)] = 97141, - [SMALL_STATE(2150)] = 97163, - [SMALL_STATE(2151)] = 97179, - [SMALL_STATE(2152)] = 97197, - [SMALL_STATE(2153)] = 97219, - [SMALL_STATE(2154)] = 97237, - [SMALL_STATE(2155)] = 97253, - [SMALL_STATE(2156)] = 97275, - [SMALL_STATE(2157)] = 97293, - [SMALL_STATE(2158)] = 97309, - [SMALL_STATE(2159)] = 97331, - [SMALL_STATE(2160)] = 97353, - [SMALL_STATE(2161)] = 97373, - [SMALL_STATE(2162)] = 97395, - [SMALL_STATE(2163)] = 97417, - [SMALL_STATE(2164)] = 97433, - [SMALL_STATE(2165)] = 97449, - [SMALL_STATE(2166)] = 97465, - [SMALL_STATE(2167)] = 97481, - [SMALL_STATE(2168)] = 97501, - [SMALL_STATE(2169)] = 97517, - [SMALL_STATE(2170)] = 97529, - [SMALL_STATE(2171)] = 97541, - [SMALL_STATE(2172)] = 97557, - [SMALL_STATE(2173)] = 97579, - [SMALL_STATE(2174)] = 97591, - [SMALL_STATE(2175)] = 97613, - [SMALL_STATE(2176)] = 97635, - [SMALL_STATE(2177)] = 97657, - [SMALL_STATE(2178)] = 97679, - [SMALL_STATE(2179)] = 97695, - [SMALL_STATE(2180)] = 97717, - [SMALL_STATE(2181)] = 97739, - [SMALL_STATE(2182)] = 97761, - [SMALL_STATE(2183)] = 97783, - [SMALL_STATE(2184)] = 97801, - [SMALL_STATE(2185)] = 97819, - [SMALL_STATE(2186)] = 97835, - [SMALL_STATE(2187)] = 97853, - [SMALL_STATE(2188)] = 97875, - [SMALL_STATE(2189)] = 97897, - [SMALL_STATE(2190)] = 97919, - [SMALL_STATE(2191)] = 97935, - [SMALL_STATE(2192)] = 97957, - [SMALL_STATE(2193)] = 97979, - [SMALL_STATE(2194)] = 97997, - [SMALL_STATE(2195)] = 98019, - [SMALL_STATE(2196)] = 98041, - [SMALL_STATE(2197)] = 98057, - [SMALL_STATE(2198)] = 98077, - [SMALL_STATE(2199)] = 98095, - [SMALL_STATE(2200)] = 98115, - [SMALL_STATE(2201)] = 98131, - [SMALL_STATE(2202)] = 98149, - [SMALL_STATE(2203)] = 98171, - [SMALL_STATE(2204)] = 98189, - [SMALL_STATE(2205)] = 98205, - [SMALL_STATE(2206)] = 98227, - [SMALL_STATE(2207)] = 98245, - [SMALL_STATE(2208)] = 98267, - [SMALL_STATE(2209)] = 98289, - [SMALL_STATE(2210)] = 98311, - [SMALL_STATE(2211)] = 98329, - [SMALL_STATE(2212)] = 98347, - [SMALL_STATE(2213)] = 98365, - [SMALL_STATE(2214)] = 98387, - [SMALL_STATE(2215)] = 98407, - [SMALL_STATE(2216)] = 98429, - [SMALL_STATE(2217)] = 98451, - [SMALL_STATE(2218)] = 98467, - [SMALL_STATE(2219)] = 98487, - [SMALL_STATE(2220)] = 98509, - [SMALL_STATE(2221)] = 98525, - [SMALL_STATE(2222)] = 98547, - [SMALL_STATE(2223)] = 98567, - [SMALL_STATE(2224)] = 98589, - [SMALL_STATE(2225)] = 98601, - [SMALL_STATE(2226)] = 98619, - [SMALL_STATE(2227)] = 98637, - [SMALL_STATE(2228)] = 98659, - [SMALL_STATE(2229)] = 98681, - [SMALL_STATE(2230)] = 98703, - [SMALL_STATE(2231)] = 98721, - [SMALL_STATE(2232)] = 98739, - [SMALL_STATE(2233)] = 98761, - [SMALL_STATE(2234)] = 98783, - [SMALL_STATE(2235)] = 98805, - [SMALL_STATE(2236)] = 98817, - [SMALL_STATE(2237)] = 98839, - [SMALL_STATE(2238)] = 98855, - [SMALL_STATE(2239)] = 98873, - [SMALL_STATE(2240)] = 98891, - [SMALL_STATE(2241)] = 98913, - [SMALL_STATE(2242)] = 98925, - [SMALL_STATE(2243)] = 98947, - [SMALL_STATE(2244)] = 98969, - [SMALL_STATE(2245)] = 98991, - [SMALL_STATE(2246)] = 99007, - [SMALL_STATE(2247)] = 99029, - [SMALL_STATE(2248)] = 99049, - [SMALL_STATE(2249)] = 99071, - [SMALL_STATE(2250)] = 99087, - [SMALL_STATE(2251)] = 99103, - [SMALL_STATE(2252)] = 99125, - [SMALL_STATE(2253)] = 99141, - [SMALL_STATE(2254)] = 99163, - [SMALL_STATE(2255)] = 99185, - [SMALL_STATE(2256)] = 99205, - [SMALL_STATE(2257)] = 99216, - [SMALL_STATE(2258)] = 99227, - [SMALL_STATE(2259)] = 99242, - [SMALL_STATE(2260)] = 99257, - [SMALL_STATE(2261)] = 99272, - [SMALL_STATE(2262)] = 99287, - [SMALL_STATE(2263)] = 99302, - [SMALL_STATE(2264)] = 99317, - [SMALL_STATE(2265)] = 99328, - [SMALL_STATE(2266)] = 99339, - [SMALL_STATE(2267)] = 99350, - [SMALL_STATE(2268)] = 99361, - [SMALL_STATE(2269)] = 99372, - [SMALL_STATE(2270)] = 99383, - [SMALL_STATE(2271)] = 99394, - [SMALL_STATE(2272)] = 99411, - [SMALL_STATE(2273)] = 99426, - [SMALL_STATE(2274)] = 99441, - [SMALL_STATE(2275)] = 99460, - [SMALL_STATE(2276)] = 99471, - [SMALL_STATE(2277)] = 99488, - [SMALL_STATE(2278)] = 99503, - [SMALL_STATE(2279)] = 99522, - [SMALL_STATE(2280)] = 99537, - [SMALL_STATE(2281)] = 99548, - [SMALL_STATE(2282)] = 99559, - [SMALL_STATE(2283)] = 99570, - [SMALL_STATE(2284)] = 99581, - [SMALL_STATE(2285)] = 99592, - [SMALL_STATE(2286)] = 99603, - [SMALL_STATE(2287)] = 99622, - [SMALL_STATE(2288)] = 99637, - [SMALL_STATE(2289)] = 99656, - [SMALL_STATE(2290)] = 99667, - [SMALL_STATE(2291)] = 99678, - [SMALL_STATE(2292)] = 99693, - [SMALL_STATE(2293)] = 99704, - [SMALL_STATE(2294)] = 99723, - [SMALL_STATE(2295)] = 99734, - [SMALL_STATE(2296)] = 99745, - [SMALL_STATE(2297)] = 99756, - [SMALL_STATE(2298)] = 99767, - [SMALL_STATE(2299)] = 99778, - [SMALL_STATE(2300)] = 99789, - [SMALL_STATE(2301)] = 99804, - [SMALL_STATE(2302)] = 99815, - [SMALL_STATE(2303)] = 99826, - [SMALL_STATE(2304)] = 99841, - [SMALL_STATE(2305)] = 99852, - [SMALL_STATE(2306)] = 99863, - [SMALL_STATE(2307)] = 99878, - [SMALL_STATE(2308)] = 99889, - [SMALL_STATE(2309)] = 99908, - [SMALL_STATE(2310)] = 99919, - [SMALL_STATE(2311)] = 99934, - [SMALL_STATE(2312)] = 99949, - [SMALL_STATE(2313)] = 99964, - [SMALL_STATE(2314)] = 99979, - [SMALL_STATE(2315)] = 99998, - [SMALL_STATE(2316)] = 100017, - [SMALL_STATE(2317)] = 100028, - [SMALL_STATE(2318)] = 100039, - [SMALL_STATE(2319)] = 100050, - [SMALL_STATE(2320)] = 100069, - [SMALL_STATE(2321)] = 100088, - [SMALL_STATE(2322)] = 100107, - [SMALL_STATE(2323)] = 100118, - [SMALL_STATE(2324)] = 100129, - [SMALL_STATE(2325)] = 100140, - [SMALL_STATE(2326)] = 100151, - [SMALL_STATE(2327)] = 100170, - [SMALL_STATE(2328)] = 100181, - [SMALL_STATE(2329)] = 100192, - [SMALL_STATE(2330)] = 100203, - [SMALL_STATE(2331)] = 100222, - [SMALL_STATE(2332)] = 100233, - [SMALL_STATE(2333)] = 100244, - [SMALL_STATE(2334)] = 100255, - [SMALL_STATE(2335)] = 100274, - [SMALL_STATE(2336)] = 100285, - [SMALL_STATE(2337)] = 100298, - [SMALL_STATE(2338)] = 100309, - [SMALL_STATE(2339)] = 100320, - [SMALL_STATE(2340)] = 100331, - [SMALL_STATE(2341)] = 100348, - [SMALL_STATE(2342)] = 100359, - [SMALL_STATE(2343)] = 100370, - [SMALL_STATE(2344)] = 100385, - [SMALL_STATE(2345)] = 100396, - [SMALL_STATE(2346)] = 100407, - [SMALL_STATE(2347)] = 100418, - [SMALL_STATE(2348)] = 100433, - [SMALL_STATE(2349)] = 100444, - [SMALL_STATE(2350)] = 100463, - [SMALL_STATE(2351)] = 100478, - [SMALL_STATE(2352)] = 100497, - [SMALL_STATE(2353)] = 100512, - [SMALL_STATE(2354)] = 100523, - [SMALL_STATE(2355)] = 100542, - [SMALL_STATE(2356)] = 100561, - [SMALL_STATE(2357)] = 100576, - [SMALL_STATE(2358)] = 100587, - [SMALL_STATE(2359)] = 100606, - [SMALL_STATE(2360)] = 100617, - [SMALL_STATE(2361)] = 100636, - [SMALL_STATE(2362)] = 100655, - [SMALL_STATE(2363)] = 100674, - [SMALL_STATE(2364)] = 100685, - [SMALL_STATE(2365)] = 100696, - [SMALL_STATE(2366)] = 100715, - [SMALL_STATE(2367)] = 100734, - [SMALL_STATE(2368)] = 100745, - [SMALL_STATE(2369)] = 100756, - [SMALL_STATE(2370)] = 100767, - [SMALL_STATE(2371)] = 100778, - [SMALL_STATE(2372)] = 100793, - [SMALL_STATE(2373)] = 100804, - [SMALL_STATE(2374)] = 100815, - [SMALL_STATE(2375)] = 100826, - [SMALL_STATE(2376)] = 100837, - [SMALL_STATE(2377)] = 100856, - [SMALL_STATE(2378)] = 100867, - [SMALL_STATE(2379)] = 100878, - [SMALL_STATE(2380)] = 100889, - [SMALL_STATE(2381)] = 100900, - [SMALL_STATE(2382)] = 100915, - [SMALL_STATE(2383)] = 100934, - [SMALL_STATE(2384)] = 100949, - [SMALL_STATE(2385)] = 100964, - [SMALL_STATE(2386)] = 100975, - [SMALL_STATE(2387)] = 100986, - [SMALL_STATE(2388)] = 100997, - [SMALL_STATE(2389)] = 101008, - [SMALL_STATE(2390)] = 101019, - [SMALL_STATE(2391)] = 101030, - [SMALL_STATE(2392)] = 101041, - [SMALL_STATE(2393)] = 101058, - [SMALL_STATE(2394)] = 101069, - [SMALL_STATE(2395)] = 101088, - [SMALL_STATE(2396)] = 101099, - [SMALL_STATE(2397)] = 101116, - [SMALL_STATE(2398)] = 101135, - [SMALL_STATE(2399)] = 101154, - [SMALL_STATE(2400)] = 101173, - [SMALL_STATE(2401)] = 101188, - [SMALL_STATE(2402)] = 101207, - [SMALL_STATE(2403)] = 101226, - [SMALL_STATE(2404)] = 101245, - [SMALL_STATE(2405)] = 101264, - [SMALL_STATE(2406)] = 101279, - [SMALL_STATE(2407)] = 101290, - [SMALL_STATE(2408)] = 101309, - [SMALL_STATE(2409)] = 101328, - [SMALL_STATE(2410)] = 101343, - [SMALL_STATE(2411)] = 101354, - [SMALL_STATE(2412)] = 101373, - [SMALL_STATE(2413)] = 101392, - [SMALL_STATE(2414)] = 101403, - [SMALL_STATE(2415)] = 101414, - [SMALL_STATE(2416)] = 101431, - [SMALL_STATE(2417)] = 101450, - [SMALL_STATE(2418)] = 101461, - [SMALL_STATE(2419)] = 101472, - [SMALL_STATE(2420)] = 101483, - [SMALL_STATE(2421)] = 101494, - [SMALL_STATE(2422)] = 101513, - [SMALL_STATE(2423)] = 101528, - [SMALL_STATE(2424)] = 101539, - [SMALL_STATE(2425)] = 101558, - [SMALL_STATE(2426)] = 101575, - [SMALL_STATE(2427)] = 101586, - [SMALL_STATE(2428)] = 101605, - [SMALL_STATE(2429)] = 101624, - [SMALL_STATE(2430)] = 101635, - [SMALL_STATE(2431)] = 101646, - [SMALL_STATE(2432)] = 101657, - [SMALL_STATE(2433)] = 101676, - [SMALL_STATE(2434)] = 101695, - [SMALL_STATE(2435)] = 101706, - [SMALL_STATE(2436)] = 101717, - [SMALL_STATE(2437)] = 101736, - [SMALL_STATE(2438)] = 101755, - [SMALL_STATE(2439)] = 101774, - [SMALL_STATE(2440)] = 101793, - [SMALL_STATE(2441)] = 101804, - [SMALL_STATE(2442)] = 101823, - [SMALL_STATE(2443)] = 101834, - [SMALL_STATE(2444)] = 101845, - [SMALL_STATE(2445)] = 101858, - [SMALL_STATE(2446)] = 101877, - [SMALL_STATE(2447)] = 101894, - [SMALL_STATE(2448)] = 101911, - [SMALL_STATE(2449)] = 101928, - [SMALL_STATE(2450)] = 101947, - [SMALL_STATE(2451)] = 101964, - [SMALL_STATE(2452)] = 101983, - [SMALL_STATE(2453)] = 102002, - [SMALL_STATE(2454)] = 102013, - [SMALL_STATE(2455)] = 102024, - [SMALL_STATE(2456)] = 102035, - [SMALL_STATE(2457)] = 102054, - [SMALL_STATE(2458)] = 102073, - [SMALL_STATE(2459)] = 102092, - [SMALL_STATE(2460)] = 102111, - [SMALL_STATE(2461)] = 102128, - [SMALL_STATE(2462)] = 102139, - [SMALL_STATE(2463)] = 102150, - [SMALL_STATE(2464)] = 102161, - [SMALL_STATE(2465)] = 102172, - [SMALL_STATE(2466)] = 102185, - [SMALL_STATE(2467)] = 102198, - [SMALL_STATE(2468)] = 102213, - [SMALL_STATE(2469)] = 102224, - [SMALL_STATE(2470)] = 102235, - [SMALL_STATE(2471)] = 102246, - [SMALL_STATE(2472)] = 102257, - [SMALL_STATE(2473)] = 102268, - [SMALL_STATE(2474)] = 102279, - [SMALL_STATE(2475)] = 102292, - [SMALL_STATE(2476)] = 102303, - [SMALL_STATE(2477)] = 102319, - [SMALL_STATE(2478)] = 102331, - [SMALL_STATE(2479)] = 102345, - [SMALL_STATE(2480)] = 102361, - [SMALL_STATE(2481)] = 102377, + [SMALL_STATE(639)] = 0, + [SMALL_STATE(640)] = 103, + [SMALL_STATE(641)] = 206, + [SMALL_STATE(642)] = 301, + [SMALL_STATE(643)] = 399, + [SMALL_STATE(644)] = 495, + [SMALL_STATE(645)] = 591, + [SMALL_STATE(646)] = 687, + [SMALL_STATE(647)] = 789, + [SMALL_STATE(648)] = 885, + [SMALL_STATE(649)] = 979, + [SMALL_STATE(650)] = 1081, + [SMALL_STATE(651)] = 1174, + [SMALL_STATE(652)] = 1267, + [SMALL_STATE(653)] = 1366, + [SMALL_STATE(654)] = 1461, + [SMALL_STATE(655)] = 1558, + [SMALL_STATE(656)] = 1650, + [SMALL_STATE(657)] = 1742, + [SMALL_STATE(658)] = 1836, + [SMALL_STATE(659)] = 1930, + [SMALL_STATE(660)] = 2016, + [SMALL_STATE(661)] = 2107, + [SMALL_STATE(662)] = 2196, + [SMALL_STATE(663)] = 2263, + [SMALL_STATE(664)] = 2330, + [SMALL_STATE(665)] = 2417, + [SMALL_STATE(666)] = 2504, + [SMALL_STATE(667)] = 2595, + [SMALL_STATE(668)] = 2682, + [SMALL_STATE(669)] = 2749, + [SMALL_STATE(670)] = 2842, + [SMALL_STATE(671)] = 2909, + [SMALL_STATE(672)] = 3004, + [SMALL_STATE(673)] = 3093, + [SMALL_STATE(674)] = 3160, + [SMALL_STATE(675)] = 3227, + [SMALL_STATE(676)] = 3322, + [SMALL_STATE(677)] = 3413, + [SMALL_STATE(678)] = 3488, + [SMALL_STATE(679)] = 3555, + [SMALL_STATE(680)] = 3622, + [SMALL_STATE(681)] = 3697, + [SMALL_STATE(682)] = 3764, + [SMALL_STATE(683)] = 3851, + [SMALL_STATE(684)] = 3939, + [SMALL_STATE(685)] = 4027, + [SMALL_STATE(686)] = 4113, + [SMALL_STATE(687)] = 4201, + [SMALL_STATE(688)] = 4289, + [SMALL_STATE(689)] = 4373, + [SMALL_STATE(690)] = 4461, + [SMALL_STATE(691)] = 4549, + [SMALL_STATE(692)] = 4633, + [SMALL_STATE(693)] = 4721, + [SMALL_STATE(694)] = 4807, + [SMALL_STATE(695)] = 4929, + [SMALL_STATE(696)] = 5015, + [SMALL_STATE(697)] = 5100, + [SMALL_STATE(698)] = 5173, + [SMALL_STATE(699)] = 5304, + [SMALL_STATE(700)] = 5435, + [SMALL_STATE(701)] = 5516, + [SMALL_STATE(702)] = 5597, + [SMALL_STATE(703)] = 5688, + [SMALL_STATE(704)] = 5773, + [SMALL_STATE(705)] = 5856, + [SMALL_STATE(706)] = 5987, + [SMALL_STATE(707)] = 6074, + [SMALL_STATE(708)] = 6159, + [SMALL_STATE(709)] = 6290, + [SMALL_STATE(710)] = 6375, + [SMALL_STATE(711)] = 6448, + [SMALL_STATE(712)] = 6533, + [SMALL_STATE(713)] = 6618, + [SMALL_STATE(714)] = 6701, + [SMALL_STATE(715)] = 6786, + [SMALL_STATE(716)] = 6871, + [SMALL_STATE(717)] = 6958, + [SMALL_STATE(718)] = 7043, + [SMALL_STATE(719)] = 7128, + [SMALL_STATE(720)] = 7205, + [SMALL_STATE(721)] = 7282, + [SMALL_STATE(722)] = 7371, + [SMALL_STATE(723)] = 7502, + [SMALL_STATE(724)] = 7633, + [SMALL_STATE(725)] = 7764, + [SMALL_STATE(726)] = 7849, + [SMALL_STATE(727)] = 7936, + [SMALL_STATE(728)] = 8016, + [SMALL_STATE(729)] = 8080, + [SMALL_STATE(730)] = 8162, + [SMALL_STATE(731)] = 8234, + [SMALL_STATE(732)] = 8316, + [SMALL_STATE(733)] = 8438, + [SMALL_STATE(734)] = 8502, + [SMALL_STATE(735)] = 8578, + [SMALL_STATE(736)] = 8654, + [SMALL_STATE(737)] = 8734, + [SMALL_STATE(738)] = 8856, + [SMALL_STATE(739)] = 8938, + [SMALL_STATE(740)] = 9002, + [SMALL_STATE(741)] = 9124, + [SMALL_STATE(742)] = 9188, + [SMALL_STATE(743)] = 9266, + [SMALL_STATE(744)] = 9350, + [SMALL_STATE(745)] = 9430, + [SMALL_STATE(746)] = 9508, + [SMALL_STATE(747)] = 9588, + [SMALL_STATE(748)] = 9652, + [SMALL_STATE(749)] = 9716, + [SMALL_STATE(750)] = 9800, + [SMALL_STATE(751)] = 9864, + [SMALL_STATE(752)] = 9928, + [SMALL_STATE(753)] = 10050, + [SMALL_STATE(754)] = 10134, + [SMALL_STATE(755)] = 10202, + [SMALL_STATE(756)] = 10286, + [SMALL_STATE(757)] = 10366, + [SMALL_STATE(758)] = 10488, + [SMALL_STATE(759)] = 10574, + [SMALL_STATE(760)] = 10648, + [SMALL_STATE(761)] = 10712, + [SMALL_STATE(762)] = 10794, + [SMALL_STATE(763)] = 10872, + [SMALL_STATE(764)] = 10950, + [SMALL_STATE(765)] = 11034, + [SMALL_STATE(766)] = 11112, + [SMALL_STATE(767)] = 11190, + [SMALL_STATE(768)] = 11262, + [SMALL_STATE(769)] = 11335, + [SMALL_STATE(770)] = 11410, + [SMALL_STATE(771)] = 11529, + [SMALL_STATE(772)] = 11648, + [SMALL_STATE(773)] = 11767, + [SMALL_STATE(774)] = 11886, + [SMALL_STATE(775)] = 11953, + [SMALL_STATE(776)] = 12032, + [SMALL_STATE(777)] = 12107, + [SMALL_STATE(778)] = 12178, + [SMALL_STATE(779)] = 12249, + [SMALL_STATE(780)] = 12368, + [SMALL_STATE(781)] = 12439, + [SMALL_STATE(782)] = 12510, + [SMALL_STATE(783)] = 12581, + [SMALL_STATE(784)] = 12700, + [SMALL_STATE(785)] = 12819, + [SMALL_STATE(786)] = 12898, + [SMALL_STATE(787)] = 13017, + [SMALL_STATE(788)] = 13088, + [SMALL_STATE(789)] = 13159, + [SMALL_STATE(790)] = 13278, + [SMALL_STATE(791)] = 13359, + [SMALL_STATE(792)] = 13436, + [SMALL_STATE(793)] = 13555, + [SMALL_STATE(794)] = 13626, + [SMALL_STATE(795)] = 13703, + [SMALL_STATE(796)] = 13784, + [SMALL_STATE(797)] = 13903, + [SMALL_STATE(798)] = 13982, + [SMALL_STATE(799)] = 14101, + [SMALL_STATE(800)] = 14220, + [SMALL_STATE(801)] = 14339, + [SMALL_STATE(802)] = 14458, + [SMALL_STATE(803)] = 14577, + [SMALL_STATE(804)] = 14696, + [SMALL_STATE(805)] = 14777, + [SMALL_STATE(806)] = 14896, + [SMALL_STATE(807)] = 15015, + [SMALL_STATE(808)] = 15134, + [SMALL_STATE(809)] = 15205, + [SMALL_STATE(810)] = 15280, + [SMALL_STATE(811)] = 15355, + [SMALL_STATE(812)] = 15474, + [SMALL_STATE(813)] = 15593, + [SMALL_STATE(814)] = 15712, + [SMALL_STATE(815)] = 15828, + [SMALL_STATE(816)] = 15904, + [SMALL_STATE(817)] = 16020, + [SMALL_STATE(818)] = 16136, + [SMALL_STATE(819)] = 16252, + [SMALL_STATE(820)] = 16314, + [SMALL_STATE(821)] = 16376, + [SMALL_STATE(822)] = 16492, + [SMALL_STATE(823)] = 16608, + [SMALL_STATE(824)] = 16724, + [SMALL_STATE(825)] = 16840, + [SMALL_STATE(826)] = 16956, + [SMALL_STATE(827)] = 17072, + [SMALL_STATE(828)] = 17188, + [SMALL_STATE(829)] = 17304, + [SMALL_STATE(830)] = 17420, + [SMALL_STATE(831)] = 17482, + [SMALL_STATE(832)] = 17598, + [SMALL_STATE(833)] = 17714, + [SMALL_STATE(834)] = 17830, + [SMALL_STATE(835)] = 17902, + [SMALL_STATE(836)] = 17964, + [SMALL_STATE(837)] = 18080, + [SMALL_STATE(838)] = 18152, + [SMALL_STATE(839)] = 18220, + [SMALL_STATE(840)] = 18336, + [SMALL_STATE(841)] = 18452, + [SMALL_STATE(842)] = 18568, + [SMALL_STATE(843)] = 18684, + [SMALL_STATE(844)] = 18800, + [SMALL_STATE(845)] = 18916, + [SMALL_STATE(846)] = 18982, + [SMALL_STATE(847)] = 19048, + [SMALL_STATE(848)] = 19164, + [SMALL_STATE(849)] = 19280, + [SMALL_STATE(850)] = 19396, + [SMALL_STATE(851)] = 19512, + [SMALL_STATE(852)] = 19586, + [SMALL_STATE(853)] = 19702, + [SMALL_STATE(854)] = 19818, + [SMALL_STATE(855)] = 19934, + [SMALL_STATE(856)] = 20050, + [SMALL_STATE(857)] = 20166, + [SMALL_STATE(858)] = 20282, + [SMALL_STATE(859)] = 20398, + [SMALL_STATE(860)] = 20514, + [SMALL_STATE(861)] = 20630, + [SMALL_STATE(862)] = 20746, + [SMALL_STATE(863)] = 20862, + [SMALL_STATE(864)] = 20978, + [SMALL_STATE(865)] = 21094, + [SMALL_STATE(866)] = 21210, + [SMALL_STATE(867)] = 21326, + [SMALL_STATE(868)] = 21388, + [SMALL_STATE(869)] = 21504, + [SMALL_STATE(870)] = 21620, + [SMALL_STATE(871)] = 21736, + [SMALL_STATE(872)] = 21852, + [SMALL_STATE(873)] = 21916, + [SMALL_STATE(874)] = 22032, + [SMALL_STATE(875)] = 22148, + [SMALL_STATE(876)] = 22264, + [SMALL_STATE(877)] = 22384, + [SMALL_STATE(878)] = 22500, + [SMALL_STATE(879)] = 22616, + [SMALL_STATE(880)] = 22732, + [SMALL_STATE(881)] = 22794, + [SMALL_STATE(882)] = 22910, + [SMALL_STATE(883)] = 23026, + [SMALL_STATE(884)] = 23142, + [SMALL_STATE(885)] = 23258, + [SMALL_STATE(886)] = 23374, + [SMALL_STATE(887)] = 23490, + [SMALL_STATE(888)] = 23610, + [SMALL_STATE(889)] = 23726, + [SMALL_STATE(890)] = 23842, + [SMALL_STATE(891)] = 23920, + [SMALL_STATE(892)] = 24036, + [SMALL_STATE(893)] = 24114, + [SMALL_STATE(894)] = 24230, + [SMALL_STATE(895)] = 24346, + [SMALL_STATE(896)] = 24462, + [SMALL_STATE(897)] = 24578, + [SMALL_STATE(898)] = 24652, + [SMALL_STATE(899)] = 24728, + [SMALL_STATE(900)] = 24796, + [SMALL_STATE(901)] = 24912, + [SMALL_STATE(902)] = 25028, + [SMALL_STATE(903)] = 25144, + [SMALL_STATE(904)] = 25260, + [SMALL_STATE(905)] = 25376, + [SMALL_STATE(906)] = 25492, + [SMALL_STATE(907)] = 25566, + [SMALL_STATE(908)] = 25682, + [SMALL_STATE(909)] = 25798, + [SMALL_STATE(910)] = 25914, + [SMALL_STATE(911)] = 25976, + [SMALL_STATE(912)] = 26092, + [SMALL_STATE(913)] = 26208, + [SMALL_STATE(914)] = 26270, + [SMALL_STATE(915)] = 26332, + [SMALL_STATE(916)] = 26448, + [SMALL_STATE(917)] = 26564, + [SMALL_STATE(918)] = 26680, + [SMALL_STATE(919)] = 26796, + [SMALL_STATE(920)] = 26912, + [SMALL_STATE(921)] = 27028, + [SMALL_STATE(922)] = 27144, + [SMALL_STATE(923)] = 27206, + [SMALL_STATE(924)] = 27322, + [SMALL_STATE(925)] = 27438, + [SMALL_STATE(926)] = 27554, + [SMALL_STATE(927)] = 27670, + [SMALL_STATE(928)] = 27786, + [SMALL_STATE(929)] = 27902, + [SMALL_STATE(930)] = 28018, + [SMALL_STATE(931)] = 28134, + [SMALL_STATE(932)] = 28250, + [SMALL_STATE(933)] = 28366, + [SMALL_STATE(934)] = 28482, + [SMALL_STATE(935)] = 28556, + [SMALL_STATE(936)] = 28672, + [SMALL_STATE(937)] = 28788, + [SMALL_STATE(938)] = 28904, + [SMALL_STATE(939)] = 29020, + [SMALL_STATE(940)] = 29136, + [SMALL_STATE(941)] = 29252, + [SMALL_STATE(942)] = 29368, + [SMALL_STATE(943)] = 29484, + [SMALL_STATE(944)] = 29600, + [SMALL_STATE(945)] = 29716, + [SMALL_STATE(946)] = 29832, + [SMALL_STATE(947)] = 29894, + [SMALL_STATE(948)] = 30010, + [SMALL_STATE(949)] = 30126, + [SMALL_STATE(950)] = 30203, + [SMALL_STATE(951)] = 30268, + [SMALL_STATE(952)] = 30345, + [SMALL_STATE(953)] = 30422, + [SMALL_STATE(954)] = 30487, + [SMALL_STATE(955)] = 30564, + [SMALL_STATE(956)] = 30635, + [SMALL_STATE(957)] = 30706, + [SMALL_STATE(958)] = 30774, + [SMALL_STATE(959)] = 30848, + [SMALL_STATE(960)] = 30916, + [SMALL_STATE(961)] = 30990, + [SMALL_STATE(962)] = 31065, + [SMALL_STATE(963)] = 31173, + [SMALL_STATE(964)] = 31281, + [SMALL_STATE(965)] = 31387, + [SMALL_STATE(966)] = 31493, + [SMALL_STATE(967)] = 31601, + [SMALL_STATE(968)] = 31707, + [SMALL_STATE(969)] = 31815, + [SMALL_STATE(970)] = 31921, + [SMALL_STATE(971)] = 32027, + [SMALL_STATE(972)] = 32134, + [SMALL_STATE(973)] = 32239, + [SMALL_STATE(974)] = 32341, + [SMALL_STATE(975)] = 32443, + [SMALL_STATE(976)] = 32545, + [SMALL_STATE(977)] = 32647, + [SMALL_STATE(978)] = 32749, + [SMALL_STATE(979)] = 32851, + [SMALL_STATE(980)] = 32953, + [SMALL_STATE(981)] = 33055, + [SMALL_STATE(982)] = 33157, + [SMALL_STATE(983)] = 33259, + [SMALL_STATE(984)] = 33361, + [SMALL_STATE(985)] = 33463, + [SMALL_STATE(986)] = 33565, + [SMALL_STATE(987)] = 33667, + [SMALL_STATE(988)] = 33769, + [SMALL_STATE(989)] = 33838, + [SMALL_STATE(990)] = 33891, + [SMALL_STATE(991)] = 33948, + [SMALL_STATE(992)] = 34017, + [SMALL_STATE(993)] = 34070, + [SMALL_STATE(994)] = 34133, + [SMALL_STATE(995)] = 34189, + [SMALL_STATE(996)] = 34245, + [SMALL_STATE(997)] = 34297, + [SMALL_STATE(998)] = 34395, + [SMALL_STATE(999)] = 34447, + [SMALL_STATE(1000)] = 34503, + [SMALL_STATE(1001)] = 34601, + [SMALL_STATE(1002)] = 34699, + [SMALL_STATE(1003)] = 34751, + [SMALL_STATE(1004)] = 34803, + [SMALL_STATE(1005)] = 34857, + [SMALL_STATE(1006)] = 34909, + [SMALL_STATE(1007)] = 34961, + [SMALL_STATE(1008)] = 35013, + [SMALL_STATE(1009)] = 35111, + [SMALL_STATE(1010)] = 35209, + [SMALL_STATE(1011)] = 35275, + [SMALL_STATE(1012)] = 35333, + [SMALL_STATE(1013)] = 35389, + [SMALL_STATE(1014)] = 35487, + [SMALL_STATE(1015)] = 35543, + [SMALL_STATE(1016)] = 35601, + [SMALL_STATE(1017)] = 35653, + [SMALL_STATE(1018)] = 35710, + [SMALL_STATE(1019)] = 35761, + [SMALL_STATE(1020)] = 35812, + [SMALL_STATE(1021)] = 35907, + [SMALL_STATE(1022)] = 35980, + [SMALL_STATE(1023)] = 36035, + [SMALL_STATE(1024)] = 36088, + [SMALL_STATE(1025)] = 36139, + [SMALL_STATE(1026)] = 36196, + [SMALL_STATE(1027)] = 36267, + [SMALL_STATE(1028)] = 36318, + [SMALL_STATE(1029)] = 36369, + [SMALL_STATE(1030)] = 36466, + [SMALL_STATE(1031)] = 36561, + [SMALL_STATE(1032)] = 36612, + [SMALL_STATE(1033)] = 36691, + [SMALL_STATE(1034)] = 36742, + [SMALL_STATE(1035)] = 36793, + [SMALL_STATE(1036)] = 36844, + [SMALL_STATE(1037)] = 36905, + [SMALL_STATE(1038)] = 36968, + [SMALL_STATE(1039)] = 37019, + [SMALL_STATE(1040)] = 37114, + [SMALL_STATE(1041)] = 37165, + [SMALL_STATE(1042)] = 37260, + [SMALL_STATE(1043)] = 37315, + [SMALL_STATE(1044)] = 37368, + [SMALL_STATE(1045)] = 37421, + [SMALL_STATE(1046)] = 37516, + [SMALL_STATE(1047)] = 37571, + [SMALL_STATE(1048)] = 37622, + [SMALL_STATE(1049)] = 37673, + [SMALL_STATE(1050)] = 37728, + [SMALL_STATE(1051)] = 37779, + [SMALL_STATE(1052)] = 37874, + [SMALL_STATE(1053)] = 37925, + [SMALL_STATE(1054)] = 37978, + [SMALL_STATE(1055)] = 38031, + [SMALL_STATE(1056)] = 38100, + [SMALL_STATE(1057)] = 38195, + [SMALL_STATE(1058)] = 38252, + [SMALL_STATE(1059)] = 38303, + [SMALL_STATE(1060)] = 38354, + [SMALL_STATE(1061)] = 38405, + [SMALL_STATE(1062)] = 38460, + [SMALL_STATE(1063)] = 38515, + [SMALL_STATE(1064)] = 38566, + [SMALL_STATE(1065)] = 38637, + [SMALL_STATE(1066)] = 38700, + [SMALL_STATE(1067)] = 38795, + [SMALL_STATE(1068)] = 38852, + [SMALL_STATE(1069)] = 38909, + [SMALL_STATE(1070)] = 38980, + [SMALL_STATE(1071)] = 39031, + [SMALL_STATE(1072)] = 39084, + [SMALL_STATE(1073)] = 39179, + [SMALL_STATE(1074)] = 39230, + [SMALL_STATE(1075)] = 39325, + [SMALL_STATE(1076)] = 39420, + [SMALL_STATE(1077)] = 39471, + [SMALL_STATE(1078)] = 39566, + [SMALL_STATE(1079)] = 39617, + [SMALL_STATE(1080)] = 39670, + [SMALL_STATE(1081)] = 39721, + [SMALL_STATE(1082)] = 39816, + [SMALL_STATE(1083)] = 39907, + [SMALL_STATE(1084)] = 39978, + [SMALL_STATE(1085)] = 40029, + [SMALL_STATE(1086)] = 40100, + [SMALL_STATE(1087)] = 40151, + [SMALL_STATE(1088)] = 40202, + [SMALL_STATE(1089)] = 40297, + [SMALL_STATE(1090)] = 40348, + [SMALL_STATE(1091)] = 40425, + [SMALL_STATE(1092)] = 40476, + [SMALL_STATE(1093)] = 40563, + [SMALL_STATE(1094)] = 40658, + [SMALL_STATE(1095)] = 40709, + [SMALL_STATE(1096)] = 40760, + [SMALL_STATE(1097)] = 40811, + [SMALL_STATE(1098)] = 40894, + [SMALL_STATE(1099)] = 40947, + [SMALL_STATE(1100)] = 41037, + [SMALL_STATE(1101)] = 41093, + [SMALL_STATE(1102)] = 41193, + [SMALL_STATE(1103)] = 41275, + [SMALL_STATE(1104)] = 41325, + [SMALL_STATE(1105)] = 41375, + [SMALL_STATE(1106)] = 41461, + [SMALL_STATE(1107)] = 41537, + [SMALL_STATE(1108)] = 41607, + [SMALL_STATE(1109)] = 41701, + [SMALL_STATE(1110)] = 41795, + [SMALL_STATE(1111)] = 41845, + [SMALL_STATE(1112)] = 41895, + [SMALL_STATE(1113)] = 41945, + [SMALL_STATE(1114)] = 41995, + [SMALL_STATE(1115)] = 42045, + [SMALL_STATE(1116)] = 42139, + [SMALL_STATE(1117)] = 42189, + [SMALL_STATE(1118)] = 42283, + [SMALL_STATE(1119)] = 42377, + [SMALL_STATE(1120)] = 42427, + [SMALL_STATE(1121)] = 42481, + [SMALL_STATE(1122)] = 42541, + [SMALL_STATE(1123)] = 42591, + [SMALL_STATE(1124)] = 42641, + [SMALL_STATE(1125)] = 42691, + [SMALL_STATE(1126)] = 42791, + [SMALL_STATE(1127)] = 42841, + [SMALL_STATE(1128)] = 42935, + [SMALL_STATE(1129)] = 43003, + [SMALL_STATE(1130)] = 43053, + [SMALL_STATE(1131)] = 43151, + [SMALL_STATE(1132)] = 43217, + [SMALL_STATE(1133)] = 43267, + [SMALL_STATE(1134)] = 43365, + [SMALL_STATE(1135)] = 43431, + [SMALL_STATE(1136)] = 43529, + [SMALL_STATE(1137)] = 43579, + [SMALL_STATE(1138)] = 43677, + [SMALL_STATE(1139)] = 43747, + [SMALL_STATE(1140)] = 43797, + [SMALL_STATE(1141)] = 43847, + [SMALL_STATE(1142)] = 43917, + [SMALL_STATE(1143)] = 43967, + [SMALL_STATE(1144)] = 44017, + [SMALL_STATE(1145)] = 44067, + [SMALL_STATE(1146)] = 44161, + [SMALL_STATE(1147)] = 44211, + [SMALL_STATE(1148)] = 44261, + [SMALL_STATE(1149)] = 44311, + [SMALL_STATE(1150)] = 44361, + [SMALL_STATE(1151)] = 44411, + [SMALL_STATE(1152)] = 44467, + [SMALL_STATE(1153)] = 44567, + [SMALL_STATE(1154)] = 44617, + [SMALL_STATE(1155)] = 44667, + [SMALL_STATE(1156)] = 44717, + [SMALL_STATE(1157)] = 44789, + [SMALL_STATE(1158)] = 44839, + [SMALL_STATE(1159)] = 44889, + [SMALL_STATE(1160)] = 44939, + [SMALL_STATE(1161)] = 44989, + [SMALL_STATE(1162)] = 45039, + [SMALL_STATE(1163)] = 45133, + [SMALL_STATE(1164)] = 45183, + [SMALL_STATE(1165)] = 45277, + [SMALL_STATE(1166)] = 45327, + [SMALL_STATE(1167)] = 45377, + [SMALL_STATE(1168)] = 45427, + [SMALL_STATE(1169)] = 45477, + [SMALL_STATE(1170)] = 45571, + [SMALL_STATE(1171)] = 45621, + [SMALL_STATE(1172)] = 45721, + [SMALL_STATE(1173)] = 45815, + [SMALL_STATE(1174)] = 45865, + [SMALL_STATE(1175)] = 45963, + [SMALL_STATE(1176)] = 46013, + [SMALL_STATE(1177)] = 46063, + [SMALL_STATE(1178)] = 46163, + [SMALL_STATE(1179)] = 46241, + [SMALL_STATE(1180)] = 46291, + [SMALL_STATE(1181)] = 46385, + [SMALL_STATE(1182)] = 46479, + [SMALL_STATE(1183)] = 46529, + [SMALL_STATE(1184)] = 46579, + [SMALL_STATE(1185)] = 46629, + [SMALL_STATE(1186)] = 46679, + [SMALL_STATE(1187)] = 46779, + [SMALL_STATE(1188)] = 46873, + [SMALL_STATE(1189)] = 46923, + [SMALL_STATE(1190)] = 47017, + [SMALL_STATE(1191)] = 47111, + [SMALL_STATE(1192)] = 47161, + [SMALL_STATE(1193)] = 47211, + [SMALL_STATE(1194)] = 47261, + [SMALL_STATE(1195)] = 47311, + [SMALL_STATE(1196)] = 47361, + [SMALL_STATE(1197)] = 47411, + [SMALL_STATE(1198)] = 47461, + [SMALL_STATE(1199)] = 47511, + [SMALL_STATE(1200)] = 47561, + [SMALL_STATE(1201)] = 47611, + [SMALL_STATE(1202)] = 47661, + [SMALL_STATE(1203)] = 47711, + [SMALL_STATE(1204)] = 47761, + [SMALL_STATE(1205)] = 47815, + [SMALL_STATE(1206)] = 47865, + [SMALL_STATE(1207)] = 47915, + [SMALL_STATE(1208)] = 47965, + [SMALL_STATE(1209)] = 48015, + [SMALL_STATE(1210)] = 48064, + [SMALL_STATE(1211)] = 48159, + [SMALL_STATE(1212)] = 48254, + [SMALL_STATE(1213)] = 48315, + [SMALL_STATE(1214)] = 48384, + [SMALL_STATE(1215)] = 48477, + [SMALL_STATE(1216)] = 48546, + [SMALL_STATE(1217)] = 48639, + [SMALL_STATE(1218)] = 48690, + [SMALL_STATE(1219)] = 48785, + [SMALL_STATE(1220)] = 48836, + [SMALL_STATE(1221)] = 48885, + [SMALL_STATE(1222)] = 48982, + [SMALL_STATE(1223)] = 49079, + [SMALL_STATE(1224)] = 49140, + [SMALL_STATE(1225)] = 49189, + [SMALL_STATE(1226)] = 49242, + [SMALL_STATE(1227)] = 49335, + [SMALL_STATE(1228)] = 49432, + [SMALL_STATE(1229)] = 49527, + [SMALL_STATE(1230)] = 49596, + [SMALL_STATE(1231)] = 49651, + [SMALL_STATE(1232)] = 49704, + [SMALL_STATE(1233)] = 49797, + [SMALL_STATE(1234)] = 49850, + [SMALL_STATE(1235)] = 49943, + [SMALL_STATE(1236)] = 50036, + [SMALL_STATE(1237)] = 50129, + [SMALL_STATE(1238)] = 50180, + [SMALL_STATE(1239)] = 50273, + [SMALL_STATE(1240)] = 50366, + [SMALL_STATE(1241)] = 50455, + [SMALL_STATE(1242)] = 50548, + [SMALL_STATE(1243)] = 50617, + [SMALL_STATE(1244)] = 50714, + [SMALL_STATE(1245)] = 50789, + [SMALL_STATE(1246)] = 50874, + [SMALL_STATE(1247)] = 50955, + [SMALL_STATE(1248)] = 51048, + [SMALL_STATE(1249)] = 51101, + [SMALL_STATE(1250)] = 51172, + [SMALL_STATE(1251)] = 51223, + [SMALL_STATE(1252)] = 51288, + [SMALL_STATE(1253)] = 51383, + [SMALL_STATE(1254)] = 51476, + [SMALL_STATE(1255)] = 51533, + [SMALL_STATE(1256)] = 51626, + [SMALL_STATE(1257)] = 51719, + [SMALL_STATE(1258)] = 51776, + [SMALL_STATE(1259)] = 51831, + [SMALL_STATE(1260)] = 51884, + [SMALL_STATE(1261)] = 51933, + [SMALL_STATE(1262)] = 51984, + [SMALL_STATE(1263)] = 52049, + [SMALL_STATE(1264)] = 52116, + [SMALL_STATE(1265)] = 52175, + [SMALL_STATE(1266)] = 52238, + [SMALL_STATE(1267)] = 52331, + [SMALL_STATE(1268)] = 52380, + [SMALL_STATE(1269)] = 52477, + [SMALL_STATE(1270)] = 52572, + [SMALL_STATE(1271)] = 52669, + [SMALL_STATE(1272)] = 52718, + [SMALL_STATE(1273)] = 52811, + [SMALL_STATE(1274)] = 52906, + [SMALL_STATE(1275)] = 53001, + [SMALL_STATE(1276)] = 53072, + [SMALL_STATE(1277)] = 53169, + [SMALL_STATE(1278)] = 53262, + [SMALL_STATE(1279)] = 53339, + [SMALL_STATE(1280)] = 53432, + [SMALL_STATE(1281)] = 53529, + [SMALL_STATE(1282)] = 53626, + [SMALL_STATE(1283)] = 53721, + [SMALL_STATE(1284)] = 53818, + [SMALL_STATE(1285)] = 53899, + [SMALL_STATE(1286)] = 53984, + [SMALL_STATE(1287)] = 54059, + [SMALL_STATE(1288)] = 54128, + [SMALL_STATE(1289)] = 54225, + [SMALL_STATE(1290)] = 54314, + [SMALL_STATE(1291)] = 54409, + [SMALL_STATE(1292)] = 54504, + [SMALL_STATE(1293)] = 54599, + [SMALL_STATE(1294)] = 54694, + [SMALL_STATE(1295)] = 54789, + [SMALL_STATE(1296)] = 54886, + [SMALL_STATE(1297)] = 54945, + [SMALL_STATE(1298)] = 55042, + [SMALL_STATE(1299)] = 55135, + [SMALL_STATE(1300)] = 55230, + [SMALL_STATE(1301)] = 55297, + [SMALL_STATE(1302)] = 55390, + [SMALL_STATE(1303)] = 55467, + [SMALL_STATE(1304)] = 55560, + [SMALL_STATE(1305)] = 55653, + [SMALL_STATE(1306)] = 55722, + [SMALL_STATE(1307)] = 55817, + [SMALL_STATE(1308)] = 55912, + [SMALL_STATE(1309)] = 56007, + [SMALL_STATE(1310)] = 56102, + [SMALL_STATE(1311)] = 56197, + [SMALL_STATE(1312)] = 56294, + [SMALL_STATE(1313)] = 56347, + [SMALL_STATE(1314)] = 56441, + [SMALL_STATE(1315)] = 56489, + [SMALL_STATE(1316)] = 56543, + [SMALL_STATE(1317)] = 56595, + [SMALL_STATE(1318)] = 56689, + [SMALL_STATE(1319)] = 56781, + [SMALL_STATE(1320)] = 56833, + [SMALL_STATE(1321)] = 56925, + [SMALL_STATE(1322)] = 57017, + [SMALL_STATE(1323)] = 57069, + [SMALL_STATE(1324)] = 57163, + [SMALL_STATE(1325)] = 57233, + [SMALL_STATE(1326)] = 57309, + [SMALL_STATE(1327)] = 57403, + [SMALL_STATE(1328)] = 57455, + [SMALL_STATE(1329)] = 57507, + [SMALL_STATE(1330)] = 57601, + [SMALL_STATE(1331)] = 57681, + [SMALL_STATE(1332)] = 57765, + [SMALL_STATE(1333)] = 57815, + [SMALL_STATE(1334)] = 57889, + [SMALL_STATE(1335)] = 57957, + [SMALL_STATE(1336)] = 58045, + [SMALL_STATE(1337)] = 58137, + [SMALL_STATE(1338)] = 58231, + [SMALL_STATE(1339)] = 58325, + [SMALL_STATE(1340)] = 58417, + [SMALL_STATE(1341)] = 58511, + [SMALL_STATE(1342)] = 58605, + [SMALL_STATE(1343)] = 58655, + [SMALL_STATE(1344)] = 58707, + [SMALL_STATE(1345)] = 58799, + [SMALL_STATE(1346)] = 58849, + [SMALL_STATE(1347)] = 58941, + [SMALL_STATE(1348)] = 59033, + [SMALL_STATE(1349)] = 59085, + [SMALL_STATE(1350)] = 59179, + [SMALL_STATE(1351)] = 59273, + [SMALL_STATE(1352)] = 59339, + [SMALL_STATE(1353)] = 59433, + [SMALL_STATE(1354)] = 59525, + [SMALL_STATE(1355)] = 59575, + [SMALL_STATE(1356)] = 59667, + [SMALL_STATE(1357)] = 59759, + [SMALL_STATE(1358)] = 59815, + [SMALL_STATE(1359)] = 59907, + [SMALL_STATE(1360)] = 60001, + [SMALL_STATE(1361)] = 60057, + [SMALL_STATE(1362)] = 60151, + [SMALL_STATE(1363)] = 60219, + [SMALL_STATE(1364)] = 60313, + [SMALL_STATE(1365)] = 60365, + [SMALL_STATE(1366)] = 60433, + [SMALL_STATE(1367)] = 60485, + [SMALL_STATE(1368)] = 60553, + [SMALL_STATE(1369)] = 60647, + [SMALL_STATE(1370)] = 60695, + [SMALL_STATE(1371)] = 60743, + [SMALL_STATE(1372)] = 60835, + [SMALL_STATE(1373)] = 60883, + [SMALL_STATE(1374)] = 60933, + [SMALL_STATE(1375)] = 61025, + [SMALL_STATE(1376)] = 61117, + [SMALL_STATE(1377)] = 61171, + [SMALL_STATE(1378)] = 61239, + [SMALL_STATE(1379)] = 61333, + [SMALL_STATE(1380)] = 61381, + [SMALL_STATE(1381)] = 61473, + [SMALL_STATE(1382)] = 61565, + [SMALL_STATE(1383)] = 61619, + [SMALL_STATE(1384)] = 61711, + [SMALL_STATE(1385)] = 61805, + [SMALL_STATE(1386)] = 61853, + [SMALL_STATE(1387)] = 61945, + [SMALL_STATE(1388)] = 62037, + [SMALL_STATE(1389)] = 62129, + [SMALL_STATE(1390)] = 62177, + [SMALL_STATE(1391)] = 62225, + [SMALL_STATE(1392)] = 62273, + [SMALL_STATE(1393)] = 62321, + [SMALL_STATE(1394)] = 62387, + [SMALL_STATE(1395)] = 62479, + [SMALL_STATE(1396)] = 62537, + [SMALL_STATE(1397)] = 62585, + [SMALL_STATE(1398)] = 62677, + [SMALL_STATE(1399)] = 62769, + [SMALL_STATE(1400)] = 62817, + [SMALL_STATE(1401)] = 62909, + [SMALL_STATE(1402)] = 62979, + [SMALL_STATE(1403)] = 63055, + [SMALL_STATE(1404)] = 63103, + [SMALL_STATE(1405)] = 63151, + [SMALL_STATE(1406)] = 63199, + [SMALL_STATE(1407)] = 63279, + [SMALL_STATE(1408)] = 63363, + [SMALL_STATE(1409)] = 63411, + [SMALL_STATE(1410)] = 63459, + [SMALL_STATE(1411)] = 63551, + [SMALL_STATE(1412)] = 63601, + [SMALL_STATE(1413)] = 63649, + [SMALL_STATE(1414)] = 63697, + [SMALL_STATE(1415)] = 63745, + [SMALL_STATE(1416)] = 63819, + [SMALL_STATE(1417)] = 63887, + [SMALL_STATE(1418)] = 63975, + [SMALL_STATE(1419)] = 64067, + [SMALL_STATE(1420)] = 64159, + [SMALL_STATE(1421)] = 64251, + [SMALL_STATE(1422)] = 64343, + [SMALL_STATE(1423)] = 64435, + [SMALL_STATE(1424)] = 64527, + [SMALL_STATE(1425)] = 64619, + [SMALL_STATE(1426)] = 64711, + [SMALL_STATE(1427)] = 64805, + [SMALL_STATE(1428)] = 64853, + [SMALL_STATE(1429)] = 64905, + [SMALL_STATE(1430)] = 64953, + [SMALL_STATE(1431)] = 65003, + [SMALL_STATE(1432)] = 65095, + [SMALL_STATE(1433)] = 65147, + [SMALL_STATE(1434)] = 65195, + [SMALL_STATE(1435)] = 65243, + [SMALL_STATE(1436)] = 65297, + [SMALL_STATE(1437)] = 65391, + [SMALL_STATE(1438)] = 65445, + [SMALL_STATE(1439)] = 65511, + [SMALL_STATE(1440)] = 65565, + [SMALL_STATE(1441)] = 65617, + [SMALL_STATE(1442)] = 65669, + [SMALL_STATE(1443)] = 65723, + [SMALL_STATE(1444)] = 65771, + [SMALL_STATE(1445)] = 65865, + [SMALL_STATE(1446)] = 65919, + [SMALL_STATE(1447)] = 65971, + [SMALL_STATE(1448)] = 66019, + [SMALL_STATE(1449)] = 66069, + [SMALL_STATE(1450)] = 66161, + [SMALL_STATE(1451)] = 66221, + [SMALL_STATE(1452)] = 66269, + [SMALL_STATE(1453)] = 66361, + [SMALL_STATE(1454)] = 66455, + [SMALL_STATE(1455)] = 66547, + [SMALL_STATE(1456)] = 66639, + [SMALL_STATE(1457)] = 66691, + [SMALL_STATE(1458)] = 66785, + [SMALL_STATE(1459)] = 66837, + [SMALL_STATE(1460)] = 66889, + [SMALL_STATE(1461)] = 66951, + [SMALL_STATE(1462)] = 67003, + [SMALL_STATE(1463)] = 67055, + [SMALL_STATE(1464)] = 67107, + [SMALL_STATE(1465)] = 67167, + [SMALL_STATE(1466)] = 67219, + [SMALL_STATE(1467)] = 67267, + [SMALL_STATE(1468)] = 67315, + [SMALL_STATE(1469)] = 67367, + [SMALL_STATE(1470)] = 67419, + [SMALL_STATE(1471)] = 67469, + [SMALL_STATE(1472)] = 67563, + [SMALL_STATE(1473)] = 67623, + [SMALL_STATE(1474)] = 67683, + [SMALL_STATE(1475)] = 67737, + [SMALL_STATE(1476)] = 67785, + [SMALL_STATE(1477)] = 67879, + [SMALL_STATE(1478)] = 67926, + [SMALL_STATE(1479)] = 67973, + [SMALL_STATE(1480)] = 68064, + [SMALL_STATE(1481)] = 68111, + [SMALL_STATE(1482)] = 68194, + [SMALL_STATE(1483)] = 68241, + [SMALL_STATE(1484)] = 68290, + [SMALL_STATE(1485)] = 68337, + [SMALL_STATE(1486)] = 68396, + [SMALL_STATE(1487)] = 68455, + [SMALL_STATE(1488)] = 68504, + [SMALL_STATE(1489)] = 68563, + [SMALL_STATE(1490)] = 68610, + [SMALL_STATE(1491)] = 68657, + [SMALL_STATE(1492)] = 68740, + [SMALL_STATE(1493)] = 68823, + [SMALL_STATE(1494)] = 68878, + [SMALL_STATE(1495)] = 68963, + [SMALL_STATE(1496)] = 69018, + [SMALL_STATE(1497)] = 69065, + [SMALL_STATE(1498)] = 69156, + [SMALL_STATE(1499)] = 69203, + [SMALL_STATE(1500)] = 69252, + [SMALL_STATE(1501)] = 69299, + [SMALL_STATE(1502)] = 69350, + [SMALL_STATE(1503)] = 69397, + [SMALL_STATE(1504)] = 69458, + [SMALL_STATE(1505)] = 69519, + [SMALL_STATE(1506)] = 69580, + [SMALL_STATE(1507)] = 69627, + [SMALL_STATE(1508)] = 69676, + [SMALL_STATE(1509)] = 69723, + [SMALL_STATE(1510)] = 69770, + [SMALL_STATE(1511)] = 69821, + [SMALL_STATE(1512)] = 69868, + [SMALL_STATE(1513)] = 69915, + [SMALL_STATE(1514)] = 70000, + [SMALL_STATE(1515)] = 70047, + [SMALL_STATE(1516)] = 70094, + [SMALL_STATE(1517)] = 70141, + [SMALL_STATE(1518)] = 70188, + [SMALL_STATE(1519)] = 70237, + [SMALL_STATE(1520)] = 70284, + [SMALL_STATE(1521)] = 70331, + [SMALL_STATE(1522)] = 70414, + [SMALL_STATE(1523)] = 70467, + [SMALL_STATE(1524)] = 70520, + [SMALL_STATE(1525)] = 70611, + [SMALL_STATE(1526)] = 70668, + [SMALL_STATE(1527)] = 70725, + [SMALL_STATE(1528)] = 70772, + [SMALL_STATE(1529)] = 70819, + [SMALL_STATE(1530)] = 70866, + [SMALL_STATE(1531)] = 70913, + [SMALL_STATE(1532)] = 71004, + [SMALL_STATE(1533)] = 71051, + [SMALL_STATE(1534)] = 71098, + [SMALL_STATE(1535)] = 71145, + [SMALL_STATE(1536)] = 71194, + [SMALL_STATE(1537)] = 71285, + [SMALL_STATE(1538)] = 71342, + [SMALL_STATE(1539)] = 71397, + [SMALL_STATE(1540)] = 71452, + [SMALL_STATE(1541)] = 71499, + [SMALL_STATE(1542)] = 71546, + [SMALL_STATE(1543)] = 71631, + [SMALL_STATE(1544)] = 71686, + [SMALL_STATE(1545)] = 71733, + [SMALL_STATE(1546)] = 71780, + [SMALL_STATE(1547)] = 71827, + [SMALL_STATE(1548)] = 71874, + [SMALL_STATE(1549)] = 71921, + [SMALL_STATE(1550)] = 71968, + [SMALL_STATE(1551)] = 72059, + [SMALL_STATE(1552)] = 72106, + [SMALL_STATE(1553)] = 72153, + [SMALL_STATE(1554)] = 72210, + [SMALL_STATE(1555)] = 72293, + [SMALL_STATE(1556)] = 72340, + [SMALL_STATE(1557)] = 72387, + [SMALL_STATE(1558)] = 72442, + [SMALL_STATE(1559)] = 72525, + [SMALL_STATE(1560)] = 72572, + [SMALL_STATE(1561)] = 72655, + [SMALL_STATE(1562)] = 72702, + [SMALL_STATE(1563)] = 72785, + [SMALL_STATE(1564)] = 72832, + [SMALL_STATE(1565)] = 72917, + [SMALL_STATE(1566)] = 72964, + [SMALL_STATE(1567)] = 73011, + [SMALL_STATE(1568)] = 73058, + [SMALL_STATE(1569)] = 73105, + [SMALL_STATE(1570)] = 73152, + [SMALL_STATE(1571)] = 73199, + [SMALL_STATE(1572)] = 73246, + [SMALL_STATE(1573)] = 73303, + [SMALL_STATE(1574)] = 73386, + [SMALL_STATE(1575)] = 73433, + [SMALL_STATE(1576)] = 73480, + [SMALL_STATE(1577)] = 73563, + [SMALL_STATE(1578)] = 73610, + [SMALL_STATE(1579)] = 73657, + [SMALL_STATE(1580)] = 73740, + [SMALL_STATE(1581)] = 73787, + [SMALL_STATE(1582)] = 73834, + [SMALL_STATE(1583)] = 73881, + [SMALL_STATE(1584)] = 73928, + [SMALL_STATE(1585)] = 73975, + [SMALL_STATE(1586)] = 74024, + [SMALL_STATE(1587)] = 74083, + [SMALL_STATE(1588)] = 74166, + [SMALL_STATE(1589)] = 74249, + [SMALL_STATE(1590)] = 74300, + [SMALL_STATE(1591)] = 74347, + [SMALL_STATE(1592)] = 74438, + [SMALL_STATE(1593)] = 74523, + [SMALL_STATE(1594)] = 74570, + [SMALL_STATE(1595)] = 74617, + [SMALL_STATE(1596)] = 74664, + [SMALL_STATE(1597)] = 74711, + [SMALL_STATE(1598)] = 74758, + [SMALL_STATE(1599)] = 74805, + [SMALL_STATE(1600)] = 74852, + [SMALL_STATE(1601)] = 74899, + [SMALL_STATE(1602)] = 74946, + [SMALL_STATE(1603)] = 74993, + [SMALL_STATE(1604)] = 75040, + [SMALL_STATE(1605)] = 75087, + [SMALL_STATE(1606)] = 75134, + [SMALL_STATE(1607)] = 75181, + [SMALL_STATE(1608)] = 75228, + [SMALL_STATE(1609)] = 75275, + [SMALL_STATE(1610)] = 75324, + [SMALL_STATE(1611)] = 75371, + [SMALL_STATE(1612)] = 75430, + [SMALL_STATE(1613)] = 75479, + [SMALL_STATE(1614)] = 75532, + [SMALL_STATE(1615)] = 75583, + [SMALL_STATE(1616)] = 75636, + [SMALL_STATE(1617)] = 75683, + [SMALL_STATE(1618)] = 75774, + [SMALL_STATE(1619)] = 75821, + [SMALL_STATE(1620)] = 75872, + [SMALL_STATE(1621)] = 75919, + [SMALL_STATE(1622)] = 75966, + [SMALL_STATE(1623)] = 76013, + [SMALL_STATE(1624)] = 76060, + [SMALL_STATE(1625)] = 76107, + [SMALL_STATE(1626)] = 76160, + [SMALL_STATE(1627)] = 76207, + [SMALL_STATE(1628)] = 76256, + [SMALL_STATE(1629)] = 76303, + [SMALL_STATE(1630)] = 76350, + [SMALL_STATE(1631)] = 76397, + [SMALL_STATE(1632)] = 76444, + [SMALL_STATE(1633)] = 76501, + [SMALL_STATE(1634)] = 76560, + [SMALL_STATE(1635)] = 76619, + [SMALL_STATE(1636)] = 76665, + [SMALL_STATE(1637)] = 76719, + [SMALL_STATE(1638)] = 76785, + [SMALL_STATE(1639)] = 76831, + [SMALL_STATE(1640)] = 76899, + [SMALL_STATE(1641)] = 76945, + [SMALL_STATE(1642)] = 76991, + [SMALL_STATE(1643)] = 77055, + [SMALL_STATE(1644)] = 77109, + [SMALL_STATE(1645)] = 77155, + [SMALL_STATE(1646)] = 77201, + [SMALL_STATE(1647)] = 77267, + [SMALL_STATE(1648)] = 77313, + [SMALL_STATE(1649)] = 77359, + [SMALL_STATE(1650)] = 77405, + [SMALL_STATE(1651)] = 77451, + [SMALL_STATE(1652)] = 77519, + [SMALL_STATE(1653)] = 77599, + [SMALL_STATE(1654)] = 77653, + [SMALL_STATE(1655)] = 77699, + [SMALL_STATE(1656)] = 77745, + [SMALL_STATE(1657)] = 77791, + [SMALL_STATE(1658)] = 77837, + [SMALL_STATE(1659)] = 77883, + [SMALL_STATE(1660)] = 77929, + [SMALL_STATE(1661)] = 77983, + [SMALL_STATE(1662)] = 78071, + [SMALL_STATE(1663)] = 78117, + [SMALL_STATE(1664)] = 78163, + [SMALL_STATE(1665)] = 78209, + [SMALL_STATE(1666)] = 78255, + [SMALL_STATE(1667)] = 78343, + [SMALL_STATE(1668)] = 78389, + [SMALL_STATE(1669)] = 78435, + [SMALL_STATE(1670)] = 78481, + [SMALL_STATE(1671)] = 78527, + [SMALL_STATE(1672)] = 78573, + [SMALL_STATE(1673)] = 78619, + [SMALL_STATE(1674)] = 78665, + [SMALL_STATE(1675)] = 78711, + [SMALL_STATE(1676)] = 78757, + [SMALL_STATE(1677)] = 78803, + [SMALL_STATE(1678)] = 78849, + [SMALL_STATE(1679)] = 78895, + [SMALL_STATE(1680)] = 78941, + [SMALL_STATE(1681)] = 78987, + [SMALL_STATE(1682)] = 79033, + [SMALL_STATE(1683)] = 79079, + [SMALL_STATE(1684)] = 79125, + [SMALL_STATE(1685)] = 79171, + [SMALL_STATE(1686)] = 79217, + [SMALL_STATE(1687)] = 79263, + [SMALL_STATE(1688)] = 79309, + [SMALL_STATE(1689)] = 79375, + [SMALL_STATE(1690)] = 79421, + [SMALL_STATE(1691)] = 79473, + [SMALL_STATE(1692)] = 79537, + [SMALL_STATE(1693)] = 79601, + [SMALL_STATE(1694)] = 79647, + [SMALL_STATE(1695)] = 79693, + [SMALL_STATE(1696)] = 79739, + [SMALL_STATE(1697)] = 79785, + [SMALL_STATE(1698)] = 79849, + [SMALL_STATE(1699)] = 79895, + [SMALL_STATE(1700)] = 79963, + [SMALL_STATE(1701)] = 80029, + [SMALL_STATE(1702)] = 80075, + [SMALL_STATE(1703)] = 80121, + [SMALL_STATE(1704)] = 80167, + [SMALL_STATE(1705)] = 80213, + [SMALL_STATE(1706)] = 80259, + [SMALL_STATE(1707)] = 80305, + [SMALL_STATE(1708)] = 80351, + [SMALL_STATE(1709)] = 80439, + [SMALL_STATE(1710)] = 80485, + [SMALL_STATE(1711)] = 80531, + [SMALL_STATE(1712)] = 80599, + [SMALL_STATE(1713)] = 80645, + [SMALL_STATE(1714)] = 80704, + [SMALL_STATE(1715)] = 80767, + [SMALL_STATE(1716)] = 80826, + [SMALL_STATE(1717)] = 80883, + [SMALL_STATE(1718)] = 80946, + [SMALL_STATE(1719)] = 81003, + [SMALL_STATE(1720)] = 81060, + [SMALL_STATE(1721)] = 81119, + [SMALL_STATE(1722)] = 81186, + [SMALL_STATE(1723)] = 81243, + [SMALL_STATE(1724)] = 81308, + [SMALL_STATE(1725)] = 81367, + [SMALL_STATE(1726)] = 81430, + [SMALL_STATE(1727)] = 81492, + [SMALL_STATE(1728)] = 81552, + [SMALL_STATE(1729)] = 81610, + [SMALL_STATE(1730)] = 81670, + [SMALL_STATE(1731)] = 81732, + [SMALL_STATE(1732)] = 81794, + [SMALL_STATE(1733)] = 81852, + [SMALL_STATE(1734)] = 81910, + [SMALL_STATE(1735)] = 81968, + [SMALL_STATE(1736)] = 82026, + [SMALL_STATE(1737)] = 82086, + [SMALL_STATE(1738)] = 82144, + [SMALL_STATE(1739)] = 82204, + [SMALL_STATE(1740)] = 82262, + [SMALL_STATE(1741)] = 82320, + [SMALL_STATE(1742)] = 82378, + [SMALL_STATE(1743)] = 82438, + [SMALL_STATE(1744)] = 82496, + [SMALL_STATE(1745)] = 82554, + [SMALL_STATE(1746)] = 82616, + [SMALL_STATE(1747)] = 82676, + [SMALL_STATE(1748)] = 82722, + [SMALL_STATE(1749)] = 82782, + [SMALL_STATE(1750)] = 82840, + [SMALL_STATE(1751)] = 82902, + [SMALL_STATE(1752)] = 82971, + [SMALL_STATE(1753)] = 83038, + [SMALL_STATE(1754)] = 83107, + [SMALL_STATE(1755)] = 83156, + [SMALL_STATE(1756)] = 83229, + [SMALL_STATE(1757)] = 83302, + [SMALL_STATE(1758)] = 83367, + [SMALL_STATE(1759)] = 83420, + [SMALL_STATE(1760)] = 83473, + [SMALL_STATE(1761)] = 83526, + [SMALL_STATE(1762)] = 83579, + [SMALL_STATE(1763)] = 83646, + [SMALL_STATE(1764)] = 83699, + [SMALL_STATE(1765)] = 83752, + [SMALL_STATE(1766)] = 83825, + [SMALL_STATE(1767)] = 83892, + [SMALL_STATE(1768)] = 83961, + [SMALL_STATE(1769)] = 84028, + [SMALL_STATE(1770)] = 84093, + [SMALL_STATE(1771)] = 84142, + [SMALL_STATE(1772)] = 84191, + [SMALL_STATE(1773)] = 84256, + [SMALL_STATE(1774)] = 84329, + [SMALL_STATE(1775)] = 84382, + [SMALL_STATE(1776)] = 84451, + [SMALL_STATE(1777)] = 84516, + [SMALL_STATE(1778)] = 84569, + [SMALL_STATE(1779)] = 84618, + [SMALL_STATE(1780)] = 84685, + [SMALL_STATE(1781)] = 84754, + [SMALL_STATE(1782)] = 84827, + [SMALL_STATE(1783)] = 84892, + [SMALL_STATE(1784)] = 84965, + [SMALL_STATE(1785)] = 85018, + [SMALL_STATE(1786)] = 85071, + [SMALL_STATE(1787)] = 85124, + [SMALL_STATE(1788)] = 85177, + [SMALL_STATE(1789)] = 85250, + [SMALL_STATE(1790)] = 85303, + [SMALL_STATE(1791)] = 85376, + [SMALL_STATE(1792)] = 85425, + [SMALL_STATE(1793)] = 85478, + [SMALL_STATE(1794)] = 85551, + [SMALL_STATE(1795)] = 85604, + [SMALL_STATE(1796)] = 85674, + [SMALL_STATE(1797)] = 85722, + [SMALL_STATE(1798)] = 85782, + [SMALL_STATE(1799)] = 85824, + [SMALL_STATE(1800)] = 85894, + [SMALL_STATE(1801)] = 85954, + [SMALL_STATE(1802)] = 86024, + [SMALL_STATE(1803)] = 86084, + [SMALL_STATE(1804)] = 86148, + [SMALL_STATE(1805)] = 86208, + [SMALL_STATE(1806)] = 86268, + [SMALL_STATE(1807)] = 86338, + [SMALL_STATE(1808)] = 86398, + [SMALL_STATE(1809)] = 86460, + [SMALL_STATE(1810)] = 86539, + [SMALL_STATE(1811)] = 86618, + [SMALL_STATE(1812)] = 86697, + [SMALL_STATE(1813)] = 86776, + [SMALL_STATE(1814)] = 86831, + [SMALL_STATE(1815)] = 86910, + [SMALL_STATE(1816)] = 86989, + [SMALL_STATE(1817)] = 87029, + [SMALL_STATE(1818)] = 87079, + [SMALL_STATE(1819)] = 87129, + [SMALL_STATE(1820)] = 87169, + [SMALL_STATE(1821)] = 87219, + [SMALL_STATE(1822)] = 87259, + [SMALL_STATE(1823)] = 87309, + [SMALL_STATE(1824)] = 87349, + [SMALL_STATE(1825)] = 87389, + [SMALL_STATE(1826)] = 87439, + [SMALL_STATE(1827)] = 87484, + [SMALL_STATE(1828)] = 87536, + [SMALL_STATE(1829)] = 87574, + [SMALL_STATE(1830)] = 87626, + [SMALL_STATE(1831)] = 87680, + [SMALL_STATE(1832)] = 87730, + [SMALL_STATE(1833)] = 87786, + [SMALL_STATE(1834)] = 87824, + [SMALL_STATE(1835)] = 87862, + [SMALL_STATE(1836)] = 87900, + [SMALL_STATE(1837)] = 87938, + [SMALL_STATE(1838)] = 87976, + [SMALL_STATE(1839)] = 88014, + [SMALL_STATE(1840)] = 88054, + [SMALL_STATE(1841)] = 88092, + [SMALL_STATE(1842)] = 88130, + [SMALL_STATE(1843)] = 88168, + [SMALL_STATE(1844)] = 88206, + [SMALL_STATE(1845)] = 88244, + [SMALL_STATE(1846)] = 88282, + [SMALL_STATE(1847)] = 88320, + [SMALL_STATE(1848)] = 88360, + [SMALL_STATE(1849)] = 88414, + [SMALL_STATE(1850)] = 88466, + [SMALL_STATE(1851)] = 88506, + [SMALL_STATE(1852)] = 88553, + [SMALL_STATE(1853)] = 88600, + [SMALL_STATE(1854)] = 88647, + [SMALL_STATE(1855)] = 88694, + [SMALL_STATE(1856)] = 88741, + [SMALL_STATE(1857)] = 88788, + [SMALL_STATE(1858)] = 88835, + [SMALL_STATE(1859)] = 88882, + [SMALL_STATE(1860)] = 88929, + [SMALL_STATE(1861)] = 88976, + [SMALL_STATE(1862)] = 89023, + [SMALL_STATE(1863)] = 89070, + [SMALL_STATE(1864)] = 89117, + [SMALL_STATE(1865)] = 89164, + [SMALL_STATE(1866)] = 89211, + [SMALL_STATE(1867)] = 89258, + [SMALL_STATE(1868)] = 89305, + [SMALL_STATE(1869)] = 89352, + [SMALL_STATE(1870)] = 89400, + [SMALL_STATE(1871)] = 89456, + [SMALL_STATE(1872)] = 89504, + [SMALL_STATE(1873)] = 89552, + [SMALL_STATE(1874)] = 89588, + [SMALL_STATE(1875)] = 89636, + [SMALL_STATE(1876)] = 89684, + [SMALL_STATE(1877)] = 89732, + [SMALL_STATE(1878)] = 89774, + [SMALL_STATE(1879)] = 89827, + [SMALL_STATE(1880)] = 89872, + [SMALL_STATE(1881)] = 89921, + [SMALL_STATE(1882)] = 89958, + [SMALL_STATE(1883)] = 90011, + [SMALL_STATE(1884)] = 90064, + [SMALL_STATE(1885)] = 90113, + [SMALL_STATE(1886)] = 90155, + [SMALL_STATE(1887)] = 90197, + [SMALL_STATE(1888)] = 90239, + [SMALL_STATE(1889)] = 90281, + [SMALL_STATE(1890)] = 90323, + [SMALL_STATE(1891)] = 90357, + [SMALL_STATE(1892)] = 90399, + [SMALL_STATE(1893)] = 90441, + [SMALL_STATE(1894)] = 90483, + [SMALL_STATE(1895)] = 90525, + [SMALL_STATE(1896)] = 90567, + [SMALL_STATE(1897)] = 90609, + [SMALL_STATE(1898)] = 90651, + [SMALL_STATE(1899)] = 90693, + [SMALL_STATE(1900)] = 90735, + [SMALL_STATE(1901)] = 90777, + [SMALL_STATE(1902)] = 90819, + [SMALL_STATE(1903)] = 90861, + [SMALL_STATE(1904)] = 90903, + [SMALL_STATE(1905)] = 90945, + [SMALL_STATE(1906)] = 90987, + [SMALL_STATE(1907)] = 91029, + [SMALL_STATE(1908)] = 91071, + [SMALL_STATE(1909)] = 91113, + [SMALL_STATE(1910)] = 91155, + [SMALL_STATE(1911)] = 91197, + [SMALL_STATE(1912)] = 91227, + [SMALL_STATE(1913)] = 91259, + [SMALL_STATE(1914)] = 91291, + [SMALL_STATE(1915)] = 91323, + [SMALL_STATE(1916)] = 91350, + [SMALL_STATE(1917)] = 91379, + [SMALL_STATE(1918)] = 91408, + [SMALL_STATE(1919)] = 91432, + [SMALL_STATE(1920)] = 91458, + [SMALL_STATE(1921)] = 91482, + [SMALL_STATE(1922)] = 91503, + [SMALL_STATE(1923)] = 91530, + [SMALL_STATE(1924)] = 91559, + [SMALL_STATE(1925)] = 91580, + [SMALL_STATE(1926)] = 91601, + [SMALL_STATE(1927)] = 91630, + [SMALL_STATE(1928)] = 91651, + [SMALL_STATE(1929)] = 91672, + [SMALL_STATE(1930)] = 91693, + [SMALL_STATE(1931)] = 91723, + [SMALL_STATE(1932)] = 91765, + [SMALL_STATE(1933)] = 91793, + [SMALL_STATE(1934)] = 91835, + [SMALL_STATE(1935)] = 91863, + [SMALL_STATE(1936)] = 91905, + [SMALL_STATE(1937)] = 91947, + [SMALL_STATE(1938)] = 91989, + [SMALL_STATE(1939)] = 92017, + [SMALL_STATE(1940)] = 92059, + [SMALL_STATE(1941)] = 92094, + [SMALL_STATE(1942)] = 92131, + [SMALL_STATE(1943)] = 92154, + [SMALL_STATE(1944)] = 92189, + [SMALL_STATE(1945)] = 92214, + [SMALL_STATE(1946)] = 92249, + [SMALL_STATE(1947)] = 92284, + [SMALL_STATE(1948)] = 92319, + [SMALL_STATE(1949)] = 92354, + [SMALL_STATE(1950)] = 92389, + [SMALL_STATE(1951)] = 92414, + [SMALL_STATE(1952)] = 92449, + [SMALL_STATE(1953)] = 92472, + [SMALL_STATE(1954)] = 92508, + [SMALL_STATE(1955)] = 92540, + [SMALL_STATE(1956)] = 92576, + [SMALL_STATE(1957)] = 92608, + [SMALL_STATE(1958)] = 92640, + [SMALL_STATE(1959)] = 92672, + [SMALL_STATE(1960)] = 92708, + [SMALL_STATE(1961)] = 92730, + [SMALL_STATE(1962)] = 92756, + [SMALL_STATE(1963)] = 92792, + [SMALL_STATE(1964)] = 92828, + [SMALL_STATE(1965)] = 92860, + [SMALL_STATE(1966)] = 92892, + [SMALL_STATE(1967)] = 92924, + [SMALL_STATE(1968)] = 92956, + [SMALL_STATE(1969)] = 92992, + [SMALL_STATE(1970)] = 93020, + [SMALL_STATE(1971)] = 93041, + [SMALL_STATE(1972)] = 93062, + [SMALL_STATE(1973)] = 93081, + [SMALL_STATE(1974)] = 93100, + [SMALL_STATE(1975)] = 93119, + [SMALL_STATE(1976)] = 93138, + [SMALL_STATE(1977)] = 93159, + [SMALL_STATE(1978)] = 93178, + [SMALL_STATE(1979)] = 93197, + [SMALL_STATE(1980)] = 93216, + [SMALL_STATE(1981)] = 93235, + [SMALL_STATE(1982)] = 93254, + [SMALL_STATE(1983)] = 93273, + [SMALL_STATE(1984)] = 93292, + [SMALL_STATE(1985)] = 93311, + [SMALL_STATE(1986)] = 93332, + [SMALL_STATE(1987)] = 93349, + [SMALL_STATE(1988)] = 93368, + [SMALL_STATE(1989)] = 93387, + [SMALL_STATE(1990)] = 93406, + [SMALL_STATE(1991)] = 93429, + [SMALL_STATE(1992)] = 93448, + [SMALL_STATE(1993)] = 93467, + [SMALL_STATE(1994)] = 93488, + [SMALL_STATE(1995)] = 93507, + [SMALL_STATE(1996)] = 93526, + [SMALL_STATE(1997)] = 93545, + [SMALL_STATE(1998)] = 93564, + [SMALL_STATE(1999)] = 93583, + [SMALL_STATE(2000)] = 93600, + [SMALL_STATE(2001)] = 93619, + [SMALL_STATE(2002)] = 93638, + [SMALL_STATE(2003)] = 93661, + [SMALL_STATE(2004)] = 93682, + [SMALL_STATE(2005)] = 93703, + [SMALL_STATE(2006)] = 93722, + [SMALL_STATE(2007)] = 93741, + [SMALL_STATE(2008)] = 93760, + [SMALL_STATE(2009)] = 93781, + [SMALL_STATE(2010)] = 93800, + [SMALL_STATE(2011)] = 93819, + [SMALL_STATE(2012)] = 93838, + [SMALL_STATE(2013)] = 93859, + [SMALL_STATE(2014)] = 93883, + [SMALL_STATE(2015)] = 93917, + [SMALL_STATE(2016)] = 93937, + [SMALL_STATE(2017)] = 93971, + [SMALL_STATE(2018)] = 94005, + [SMALL_STATE(2019)] = 94027, + [SMALL_STATE(2020)] = 94047, + [SMALL_STATE(2021)] = 94081, + [SMALL_STATE(2022)] = 94115, + [SMALL_STATE(2023)] = 94149, + [SMALL_STATE(2024)] = 94183, + [SMALL_STATE(2025)] = 94213, + [SMALL_STATE(2026)] = 94247, + [SMALL_STATE(2027)] = 94281, + [SMALL_STATE(2028)] = 94315, + [SMALL_STATE(2029)] = 94333, + [SMALL_STATE(2030)] = 94353, + [SMALL_STATE(2031)] = 94384, + [SMALL_STATE(2032)] = 94415, + [SMALL_STATE(2033)] = 94434, + [SMALL_STATE(2034)] = 94453, + [SMALL_STATE(2035)] = 94472, + [SMALL_STATE(2036)] = 94503, + [SMALL_STATE(2037)] = 94520, + [SMALL_STATE(2038)] = 94545, + [SMALL_STATE(2039)] = 94562, + [SMALL_STATE(2040)] = 94593, + [SMALL_STATE(2041)] = 94624, + [SMALL_STATE(2042)] = 94641, + [SMALL_STATE(2043)] = 94666, + [SMALL_STATE(2044)] = 94697, + [SMALL_STATE(2045)] = 94718, + [SMALL_STATE(2046)] = 94735, + [SMALL_STATE(2047)] = 94760, + [SMALL_STATE(2048)] = 94791, + [SMALL_STATE(2049)] = 94816, + [SMALL_STATE(2050)] = 94841, + [SMALL_STATE(2051)] = 94872, + [SMALL_STATE(2052)] = 94903, + [SMALL_STATE(2053)] = 94934, + [SMALL_STATE(2054)] = 94959, + [SMALL_STATE(2055)] = 94990, + [SMALL_STATE(2056)] = 95015, + [SMALL_STATE(2057)] = 95046, + [SMALL_STATE(2058)] = 95077, + [SMALL_STATE(2059)] = 95108, + [SMALL_STATE(2060)] = 95139, + [SMALL_STATE(2061)] = 95162, + [SMALL_STATE(2062)] = 95193, + [SMALL_STATE(2063)] = 95224, + [SMALL_STATE(2064)] = 95255, + [SMALL_STATE(2065)] = 95275, + [SMALL_STATE(2066)] = 95297, + [SMALL_STATE(2067)] = 95319, + [SMALL_STATE(2068)] = 95341, + [SMALL_STATE(2069)] = 95363, + [SMALL_STATE(2070)] = 95387, + [SMALL_STATE(2071)] = 95409, + [SMALL_STATE(2072)] = 95429, + [SMALL_STATE(2073)] = 95449, + [SMALL_STATE(2074)] = 95469, + [SMALL_STATE(2075)] = 95491, + [SMALL_STATE(2076)] = 95516, + [SMALL_STATE(2077)] = 95529, + [SMALL_STATE(2078)] = 95542, + [SMALL_STATE(2079)] = 95559, + [SMALL_STATE(2080)] = 95576, + [SMALL_STATE(2081)] = 95593, + [SMALL_STATE(2082)] = 95608, + [SMALL_STATE(2083)] = 95633, + [SMALL_STATE(2084)] = 95658, + [SMALL_STATE(2085)] = 95683, + [SMALL_STATE(2086)] = 95708, + [SMALL_STATE(2087)] = 95733, + [SMALL_STATE(2088)] = 95750, + [SMALL_STATE(2089)] = 95775, + [SMALL_STATE(2090)] = 95800, + [SMALL_STATE(2091)] = 95825, + [SMALL_STATE(2092)] = 95846, + [SMALL_STATE(2093)] = 95859, + [SMALL_STATE(2094)] = 95884, + [SMALL_STATE(2095)] = 95909, + [SMALL_STATE(2096)] = 95934, + [SMALL_STATE(2097)] = 95959, + [SMALL_STATE(2098)] = 95984, + [SMALL_STATE(2099)] = 96009, + [SMALL_STATE(2100)] = 96024, + [SMALL_STATE(2101)] = 96049, + [SMALL_STATE(2102)] = 96074, + [SMALL_STATE(2103)] = 96099, + [SMALL_STATE(2104)] = 96122, + [SMALL_STATE(2105)] = 96147, + [SMALL_STATE(2106)] = 96172, + [SMALL_STATE(2107)] = 96189, + [SMALL_STATE(2108)] = 96214, + [SMALL_STATE(2109)] = 96239, + [SMALL_STATE(2110)] = 96256, + [SMALL_STATE(2111)] = 96281, + [SMALL_STATE(2112)] = 96306, + [SMALL_STATE(2113)] = 96327, + [SMALL_STATE(2114)] = 96352, + [SMALL_STATE(2115)] = 96373, + [SMALL_STATE(2116)] = 96394, + [SMALL_STATE(2117)] = 96415, + [SMALL_STATE(2118)] = 96440, + [SMALL_STATE(2119)] = 96465, + [SMALL_STATE(2120)] = 96490, + [SMALL_STATE(2121)] = 96515, + [SMALL_STATE(2122)] = 96540, + [SMALL_STATE(2123)] = 96557, + [SMALL_STATE(2124)] = 96570, + [SMALL_STATE(2125)] = 96587, + [SMALL_STATE(2126)] = 96608, + [SMALL_STATE(2127)] = 96625, + [SMALL_STATE(2128)] = 96646, + [SMALL_STATE(2129)] = 96671, + [SMALL_STATE(2130)] = 96684, + [SMALL_STATE(2131)] = 96701, + [SMALL_STATE(2132)] = 96718, + [SMALL_STATE(2133)] = 96743, + [SMALL_STATE(2134)] = 96768, + [SMALL_STATE(2135)] = 96793, + [SMALL_STATE(2136)] = 96818, + [SMALL_STATE(2137)] = 96843, + [SMALL_STATE(2138)] = 96860, + [SMALL_STATE(2139)] = 96885, + [SMALL_STATE(2140)] = 96902, + [SMALL_STATE(2141)] = 96919, + [SMALL_STATE(2142)] = 96944, + [SMALL_STATE(2143)] = 96969, + [SMALL_STATE(2144)] = 96994, + [SMALL_STATE(2145)] = 97019, + [SMALL_STATE(2146)] = 97036, + [SMALL_STATE(2147)] = 97061, + [SMALL_STATE(2148)] = 97078, + [SMALL_STATE(2149)] = 97091, + [SMALL_STATE(2150)] = 97109, + [SMALL_STATE(2151)] = 97131, + [SMALL_STATE(2152)] = 97147, + [SMALL_STATE(2153)] = 97169, + [SMALL_STATE(2154)] = 97191, + [SMALL_STATE(2155)] = 97211, + [SMALL_STATE(2156)] = 97227, + [SMALL_STATE(2157)] = 97243, + [SMALL_STATE(2158)] = 97259, + [SMALL_STATE(2159)] = 97275, + [SMALL_STATE(2160)] = 97291, + [SMALL_STATE(2161)] = 97313, + [SMALL_STATE(2162)] = 97333, + [SMALL_STATE(2163)] = 97355, + [SMALL_STATE(2164)] = 97377, + [SMALL_STATE(2165)] = 97399, + [SMALL_STATE(2166)] = 97417, + [SMALL_STATE(2167)] = 97433, + [SMALL_STATE(2168)] = 97449, + [SMALL_STATE(2169)] = 97465, + [SMALL_STATE(2170)] = 97487, + [SMALL_STATE(2171)] = 97503, + [SMALL_STATE(2172)] = 97525, + [SMALL_STATE(2173)] = 97545, + [SMALL_STATE(2174)] = 97567, + [SMALL_STATE(2175)] = 97589, + [SMALL_STATE(2176)] = 97605, + [SMALL_STATE(2177)] = 97627, + [SMALL_STATE(2178)] = 97647, + [SMALL_STATE(2179)] = 97665, + [SMALL_STATE(2180)] = 97681, + [SMALL_STATE(2181)] = 97701, + [SMALL_STATE(2182)] = 97717, + [SMALL_STATE(2183)] = 97733, + [SMALL_STATE(2184)] = 97751, + [SMALL_STATE(2185)] = 97773, + [SMALL_STATE(2186)] = 97789, + [SMALL_STATE(2187)] = 97811, + [SMALL_STATE(2188)] = 97833, + [SMALL_STATE(2189)] = 97851, + [SMALL_STATE(2190)] = 97869, + [SMALL_STATE(2191)] = 97891, + [SMALL_STATE(2192)] = 97913, + [SMALL_STATE(2193)] = 97933, + [SMALL_STATE(2194)] = 97955, + [SMALL_STATE(2195)] = 97967, + [SMALL_STATE(2196)] = 97989, + [SMALL_STATE(2197)] = 98009, + [SMALL_STATE(2198)] = 98021, + [SMALL_STATE(2199)] = 98043, + [SMALL_STATE(2200)] = 98065, + [SMALL_STATE(2201)] = 98087, + [SMALL_STATE(2202)] = 98109, + [SMALL_STATE(2203)] = 98121, + [SMALL_STATE(2204)] = 98139, + [SMALL_STATE(2205)] = 98159, + [SMALL_STATE(2206)] = 98181, + [SMALL_STATE(2207)] = 98203, + [SMALL_STATE(2208)] = 98225, + [SMALL_STATE(2209)] = 98247, + [SMALL_STATE(2210)] = 98269, + [SMALL_STATE(2211)] = 98281, + [SMALL_STATE(2212)] = 98299, + [SMALL_STATE(2213)] = 98311, + [SMALL_STATE(2214)] = 98329, + [SMALL_STATE(2215)] = 98347, + [SMALL_STATE(2216)] = 98363, + [SMALL_STATE(2217)] = 98385, + [SMALL_STATE(2218)] = 98407, + [SMALL_STATE(2219)] = 98429, + [SMALL_STATE(2220)] = 98441, + [SMALL_STATE(2221)] = 98459, + [SMALL_STATE(2222)] = 98477, + [SMALL_STATE(2223)] = 98499, + [SMALL_STATE(2224)] = 98515, + [SMALL_STATE(2225)] = 98537, + [SMALL_STATE(2226)] = 98553, + [SMALL_STATE(2227)] = 98575, + [SMALL_STATE(2228)] = 98591, + [SMALL_STATE(2229)] = 98613, + [SMALL_STATE(2230)] = 98635, + [SMALL_STATE(2231)] = 98657, + [SMALL_STATE(2232)] = 98679, + [SMALL_STATE(2233)] = 98699, + [SMALL_STATE(2234)] = 98721, + [SMALL_STATE(2235)] = 98739, + [SMALL_STATE(2236)] = 98761, + [SMALL_STATE(2237)] = 98779, + [SMALL_STATE(2238)] = 98801, + [SMALL_STATE(2239)] = 98819, + [SMALL_STATE(2240)] = 98837, + [SMALL_STATE(2241)] = 98859, + [SMALL_STATE(2242)] = 98881, + [SMALL_STATE(2243)] = 98897, + [SMALL_STATE(2244)] = 98919, + [SMALL_STATE(2245)] = 98937, + [SMALL_STATE(2246)] = 98959, + [SMALL_STATE(2247)] = 98981, + [SMALL_STATE(2248)] = 99003, + [SMALL_STATE(2249)] = 99025, + [SMALL_STATE(2250)] = 99041, + [SMALL_STATE(2251)] = 99057, + [SMALL_STATE(2252)] = 99079, + [SMALL_STATE(2253)] = 99101, + [SMALL_STATE(2254)] = 99117, + [SMALL_STATE(2255)] = 99139, + [SMALL_STATE(2256)] = 99161, + [SMALL_STATE(2257)] = 99183, + [SMALL_STATE(2258)] = 99205, + [SMALL_STATE(2259)] = 99223, + [SMALL_STATE(2260)] = 99241, + [SMALL_STATE(2261)] = 99263, + [SMALL_STATE(2262)] = 99281, + [SMALL_STATE(2263)] = 99303, + [SMALL_STATE(2264)] = 99323, + [SMALL_STATE(2265)] = 99345, + [SMALL_STATE(2266)] = 99363, + [SMALL_STATE(2267)] = 99378, + [SMALL_STATE(2268)] = 99397, + [SMALL_STATE(2269)] = 99408, + [SMALL_STATE(2270)] = 99419, + [SMALL_STATE(2271)] = 99430, + [SMALL_STATE(2272)] = 99441, + [SMALL_STATE(2273)] = 99452, + [SMALL_STATE(2274)] = 99471, + [SMALL_STATE(2275)] = 99482, + [SMALL_STATE(2276)] = 99493, + [SMALL_STATE(2277)] = 99512, + [SMALL_STATE(2278)] = 99523, + [SMALL_STATE(2279)] = 99538, + [SMALL_STATE(2280)] = 99555, + [SMALL_STATE(2281)] = 99566, + [SMALL_STATE(2282)] = 99577, + [SMALL_STATE(2283)] = 99588, + [SMALL_STATE(2284)] = 99607, + [SMALL_STATE(2285)] = 99622, + [SMALL_STATE(2286)] = 99633, + [SMALL_STATE(2287)] = 99644, + [SMALL_STATE(2288)] = 99663, + [SMALL_STATE(2289)] = 99674, + [SMALL_STATE(2290)] = 99689, + [SMALL_STATE(2291)] = 99700, + [SMALL_STATE(2292)] = 99711, + [SMALL_STATE(2293)] = 99722, + [SMALL_STATE(2294)] = 99737, + [SMALL_STATE(2295)] = 99748, + [SMALL_STATE(2296)] = 99759, + [SMALL_STATE(2297)] = 99770, + [SMALL_STATE(2298)] = 99781, + [SMALL_STATE(2299)] = 99800, + [SMALL_STATE(2300)] = 99811, + [SMALL_STATE(2301)] = 99830, + [SMALL_STATE(2302)] = 99841, + [SMALL_STATE(2303)] = 99852, + [SMALL_STATE(2304)] = 99863, + [SMALL_STATE(2305)] = 99878, + [SMALL_STATE(2306)] = 99889, + [SMALL_STATE(2307)] = 99900, + [SMALL_STATE(2308)] = 99911, + [SMALL_STATE(2309)] = 99930, + [SMALL_STATE(2310)] = 99941, + [SMALL_STATE(2311)] = 99960, + [SMALL_STATE(2312)] = 99971, + [SMALL_STATE(2313)] = 99982, + [SMALL_STATE(2314)] = 99993, + [SMALL_STATE(2315)] = 100004, + [SMALL_STATE(2316)] = 100019, + [SMALL_STATE(2317)] = 100034, + [SMALL_STATE(2318)] = 100045, + [SMALL_STATE(2319)] = 100056, + [SMALL_STATE(2320)] = 100067, + [SMALL_STATE(2321)] = 100078, + [SMALL_STATE(2322)] = 100093, + [SMALL_STATE(2323)] = 100108, + [SMALL_STATE(2324)] = 100127, + [SMALL_STATE(2325)] = 100144, + [SMALL_STATE(2326)] = 100163, + [SMALL_STATE(2327)] = 100178, + [SMALL_STATE(2328)] = 100197, + [SMALL_STATE(2329)] = 100208, + [SMALL_STATE(2330)] = 100219, + [SMALL_STATE(2331)] = 100234, + [SMALL_STATE(2332)] = 100245, + [SMALL_STATE(2333)] = 100256, + [SMALL_STATE(2334)] = 100267, + [SMALL_STATE(2335)] = 100278, + [SMALL_STATE(2336)] = 100289, + [SMALL_STATE(2337)] = 100300, + [SMALL_STATE(2338)] = 100311, + [SMALL_STATE(2339)] = 100322, + [SMALL_STATE(2340)] = 100341, + [SMALL_STATE(2341)] = 100352, + [SMALL_STATE(2342)] = 100363, + [SMALL_STATE(2343)] = 100382, + [SMALL_STATE(2344)] = 100401, + [SMALL_STATE(2345)] = 100412, + [SMALL_STATE(2346)] = 100423, + [SMALL_STATE(2347)] = 100438, + [SMALL_STATE(2348)] = 100453, + [SMALL_STATE(2349)] = 100464, + [SMALL_STATE(2350)] = 100475, + [SMALL_STATE(2351)] = 100486, + [SMALL_STATE(2352)] = 100501, + [SMALL_STATE(2353)] = 100516, + [SMALL_STATE(2354)] = 100527, + [SMALL_STATE(2355)] = 100538, + [SMALL_STATE(2356)] = 100549, + [SMALL_STATE(2357)] = 100560, + [SMALL_STATE(2358)] = 100571, + [SMALL_STATE(2359)] = 100582, + [SMALL_STATE(2360)] = 100593, + [SMALL_STATE(2361)] = 100604, + [SMALL_STATE(2362)] = 100615, + [SMALL_STATE(2363)] = 100634, + [SMALL_STATE(2364)] = 100653, + [SMALL_STATE(2365)] = 100664, + [SMALL_STATE(2366)] = 100683, + [SMALL_STATE(2367)] = 100698, + [SMALL_STATE(2368)] = 100709, + [SMALL_STATE(2369)] = 100728, + [SMALL_STATE(2370)] = 100747, + [SMALL_STATE(2371)] = 100766, + [SMALL_STATE(2372)] = 100777, + [SMALL_STATE(2373)] = 100794, + [SMALL_STATE(2374)] = 100813, + [SMALL_STATE(2375)] = 100824, + [SMALL_STATE(2376)] = 100843, + [SMALL_STATE(2377)] = 100858, + [SMALL_STATE(2378)] = 100873, + [SMALL_STATE(2379)] = 100886, + [SMALL_STATE(2380)] = 100897, + [SMALL_STATE(2381)] = 100916, + [SMALL_STATE(2382)] = 100927, + [SMALL_STATE(2383)] = 100946, + [SMALL_STATE(2384)] = 100961, + [SMALL_STATE(2385)] = 100980, + [SMALL_STATE(2386)] = 100999, + [SMALL_STATE(2387)] = 101010, + [SMALL_STATE(2388)] = 101029, + [SMALL_STATE(2389)] = 101040, + [SMALL_STATE(2390)] = 101059, + [SMALL_STATE(2391)] = 101070, + [SMALL_STATE(2392)] = 101081, + [SMALL_STATE(2393)] = 101092, + [SMALL_STATE(2394)] = 101107, + [SMALL_STATE(2395)] = 101124, + [SMALL_STATE(2396)] = 101143, + [SMALL_STATE(2397)] = 101162, + [SMALL_STATE(2398)] = 101177, + [SMALL_STATE(2399)] = 101188, + [SMALL_STATE(2400)] = 101207, + [SMALL_STATE(2401)] = 101224, + [SMALL_STATE(2402)] = 101235, + [SMALL_STATE(2403)] = 101246, + [SMALL_STATE(2404)] = 101261, + [SMALL_STATE(2405)] = 101280, + [SMALL_STATE(2406)] = 101291, + [SMALL_STATE(2407)] = 101308, + [SMALL_STATE(2408)] = 101319, + [SMALL_STATE(2409)] = 101330, + [SMALL_STATE(2410)] = 101341, + [SMALL_STATE(2411)] = 101360, + [SMALL_STATE(2412)] = 101379, + [SMALL_STATE(2413)] = 101398, + [SMALL_STATE(2414)] = 101417, + [SMALL_STATE(2415)] = 101432, + [SMALL_STATE(2416)] = 101443, + [SMALL_STATE(2417)] = 101460, + [SMALL_STATE(2418)] = 101479, + [SMALL_STATE(2419)] = 101490, + [SMALL_STATE(2420)] = 101501, + [SMALL_STATE(2421)] = 101520, + [SMALL_STATE(2422)] = 101539, + [SMALL_STATE(2423)] = 101556, + [SMALL_STATE(2424)] = 101575, + [SMALL_STATE(2425)] = 101594, + [SMALL_STATE(2426)] = 101609, + [SMALL_STATE(2427)] = 101628, + [SMALL_STATE(2428)] = 101639, + [SMALL_STATE(2429)] = 101650, + [SMALL_STATE(2430)] = 101667, + [SMALL_STATE(2431)] = 101682, + [SMALL_STATE(2432)] = 101693, + [SMALL_STATE(2433)] = 101704, + [SMALL_STATE(2434)] = 101723, + [SMALL_STATE(2435)] = 101742, + [SMALL_STATE(2436)] = 101753, + [SMALL_STATE(2437)] = 101764, + [SMALL_STATE(2438)] = 101775, + [SMALL_STATE(2439)] = 101786, + [SMALL_STATE(2440)] = 101805, + [SMALL_STATE(2441)] = 101816, + [SMALL_STATE(2442)] = 101835, + [SMALL_STATE(2443)] = 101846, + [SMALL_STATE(2444)] = 101863, + [SMALL_STATE(2445)] = 101882, + [SMALL_STATE(2446)] = 101901, + [SMALL_STATE(2447)] = 101912, + [SMALL_STATE(2448)] = 101931, + [SMALL_STATE(2449)] = 101950, + [SMALL_STATE(2450)] = 101969, + [SMALL_STATE(2451)] = 101984, + [SMALL_STATE(2452)] = 101995, + [SMALL_STATE(2453)] = 102010, + [SMALL_STATE(2454)] = 102029, + [SMALL_STATE(2455)] = 102048, + [SMALL_STATE(2456)] = 102059, + [SMALL_STATE(2457)] = 102074, + [SMALL_STATE(2458)] = 102093, + [SMALL_STATE(2459)] = 102104, + [SMALL_STATE(2460)] = 102117, + [SMALL_STATE(2461)] = 102132, + [SMALL_STATE(2462)] = 102145, + [SMALL_STATE(2463)] = 102162, + [SMALL_STATE(2464)] = 102179, + [SMALL_STATE(2465)] = 102190, + [SMALL_STATE(2466)] = 102205, + [SMALL_STATE(2467)] = 102216, + [SMALL_STATE(2468)] = 102227, + [SMALL_STATE(2469)] = 102242, + [SMALL_STATE(2470)] = 102253, + [SMALL_STATE(2471)] = 102264, + [SMALL_STATE(2472)] = 102275, + [SMALL_STATE(2473)] = 102286, + [SMALL_STATE(2474)] = 102297, + [SMALL_STATE(2475)] = 102308, + [SMALL_STATE(2476)] = 102319, + [SMALL_STATE(2477)] = 102330, + [SMALL_STATE(2478)] = 102341, + [SMALL_STATE(2479)] = 102352, + [SMALL_STATE(2480)] = 102363, + [SMALL_STATE(2481)] = 102382, [SMALL_STATE(2482)] = 102393, - [SMALL_STATE(2483)] = 102409, - [SMALL_STATE(2484)] = 102425, - [SMALL_STATE(2485)] = 102441, - [SMALL_STATE(2486)] = 102457, - [SMALL_STATE(2487)] = 102473, - [SMALL_STATE(2488)] = 102487, - [SMALL_STATE(2489)] = 102503, - [SMALL_STATE(2490)] = 102515, - [SMALL_STATE(2491)] = 102531, - [SMALL_STATE(2492)] = 102545, - [SMALL_STATE(2493)] = 102561, - [SMALL_STATE(2494)] = 102577, - [SMALL_STATE(2495)] = 102593, - [SMALL_STATE(2496)] = 102607, - [SMALL_STATE(2497)] = 102619, - [SMALL_STATE(2498)] = 102635, - [SMALL_STATE(2499)] = 102651, - [SMALL_STATE(2500)] = 102667, - [SMALL_STATE(2501)] = 102683, - [SMALL_STATE(2502)] = 102697, - [SMALL_STATE(2503)] = 102711, - [SMALL_STATE(2504)] = 102723, - [SMALL_STATE(2505)] = 102739, - [SMALL_STATE(2506)] = 102755, - [SMALL_STATE(2507)] = 102771, - [SMALL_STATE(2508)] = 102781, - [SMALL_STATE(2509)] = 102791, - [SMALL_STATE(2510)] = 102805, - [SMALL_STATE(2511)] = 102821, - [SMALL_STATE(2512)] = 102837, - [SMALL_STATE(2513)] = 102851, - [SMALL_STATE(2514)] = 102867, - [SMALL_STATE(2515)] = 102881, - [SMALL_STATE(2516)] = 102897, - [SMALL_STATE(2517)] = 102913, - [SMALL_STATE(2518)] = 102927, - [SMALL_STATE(2519)] = 102943, - [SMALL_STATE(2520)] = 102959, - [SMALL_STATE(2521)] = 102973, - [SMALL_STATE(2522)] = 102989, - [SMALL_STATE(2523)] = 103003, - [SMALL_STATE(2524)] = 103017, + [SMALL_STATE(2483)] = 102406, + [SMALL_STATE(2484)] = 102419, + [SMALL_STATE(2485)] = 102430, + [SMALL_STATE(2486)] = 102449, + [SMALL_STATE(2487)] = 102464, + [SMALL_STATE(2488)] = 102475, + [SMALL_STATE(2489)] = 102486, + [SMALL_STATE(2490)] = 102505, + [SMALL_STATE(2491)] = 102519, + [SMALL_STATE(2492)] = 102533, + [SMALL_STATE(2493)] = 102547, + [SMALL_STATE(2494)] = 102561, + [SMALL_STATE(2495)] = 102575, + [SMALL_STATE(2496)] = 102589, + [SMALL_STATE(2497)] = 102605, + [SMALL_STATE(2498)] = 102621, + [SMALL_STATE(2499)] = 102637, + [SMALL_STATE(2500)] = 102649, + [SMALL_STATE(2501)] = 102665, + [SMALL_STATE(2502)] = 102681, + [SMALL_STATE(2503)] = 102697, + [SMALL_STATE(2504)] = 102711, + [SMALL_STATE(2505)] = 102725, + [SMALL_STATE(2506)] = 102741, + [SMALL_STATE(2507)] = 102753, + [SMALL_STATE(2508)] = 102769, + [SMALL_STATE(2509)] = 102783, + [SMALL_STATE(2510)] = 102795, + [SMALL_STATE(2511)] = 102811, + [SMALL_STATE(2512)] = 102827, + [SMALL_STATE(2513)] = 102843, + [SMALL_STATE(2514)] = 102859, + [SMALL_STATE(2515)] = 102875, + [SMALL_STATE(2516)] = 102891, + [SMALL_STATE(2517)] = 102905, + [SMALL_STATE(2518)] = 102921, + [SMALL_STATE(2519)] = 102937, + [SMALL_STATE(2520)] = 102953, + [SMALL_STATE(2521)] = 102967, + [SMALL_STATE(2522)] = 102983, + [SMALL_STATE(2523)] = 102999, + [SMALL_STATE(2524)] = 103015, [SMALL_STATE(2525)] = 103031, [SMALL_STATE(2526)] = 103047, [SMALL_STATE(2527)] = 103063, [SMALL_STATE(2528)] = 103079, [SMALL_STATE(2529)] = 103095, - [SMALL_STATE(2530)] = 103111, - [SMALL_STATE(2531)] = 103127, - [SMALL_STATE(2532)] = 103141, - [SMALL_STATE(2533)] = 103157, - [SMALL_STATE(2534)] = 103169, - [SMALL_STATE(2535)] = 103183, - [SMALL_STATE(2536)] = 103197, - [SMALL_STATE(2537)] = 103213, - [SMALL_STATE(2538)] = 103225, - [SMALL_STATE(2539)] = 103241, - [SMALL_STATE(2540)] = 103257, - [SMALL_STATE(2541)] = 103269, - [SMALL_STATE(2542)] = 103285, - [SMALL_STATE(2543)] = 103301, - [SMALL_STATE(2544)] = 103315, - [SMALL_STATE(2545)] = 103331, - [SMALL_STATE(2546)] = 103345, - [SMALL_STATE(2547)] = 103361, - [SMALL_STATE(2548)] = 103377, - [SMALL_STATE(2549)] = 103393, - [SMALL_STATE(2550)] = 103409, - [SMALL_STATE(2551)] = 103423, - [SMALL_STATE(2552)] = 103439, - [SMALL_STATE(2553)] = 103453, - [SMALL_STATE(2554)] = 103467, - [SMALL_STATE(2555)] = 103483, - [SMALL_STATE(2556)] = 103499, - [SMALL_STATE(2557)] = 103515, - [SMALL_STATE(2558)] = 103529, - [SMALL_STATE(2559)] = 103545, + [SMALL_STATE(2530)] = 103109, + [SMALL_STATE(2531)] = 103125, + [SMALL_STATE(2532)] = 103139, + [SMALL_STATE(2533)] = 103155, + [SMALL_STATE(2534)] = 103171, + [SMALL_STATE(2535)] = 103187, + [SMALL_STATE(2536)] = 103203, + [SMALL_STATE(2537)] = 103219, + [SMALL_STATE(2538)] = 103235, + [SMALL_STATE(2539)] = 103251, + [SMALL_STATE(2540)] = 103261, + [SMALL_STATE(2541)] = 103277, + [SMALL_STATE(2542)] = 103289, + [SMALL_STATE(2543)] = 103305, + [SMALL_STATE(2544)] = 103321, + [SMALL_STATE(2545)] = 103335, + [SMALL_STATE(2546)] = 103351, + [SMALL_STATE(2547)] = 103367, + [SMALL_STATE(2548)] = 103381, + [SMALL_STATE(2549)] = 103397, + [SMALL_STATE(2550)] = 103413, + [SMALL_STATE(2551)] = 103427, + [SMALL_STATE(2552)] = 103441, + [SMALL_STATE(2553)] = 103451, + [SMALL_STATE(2554)] = 103465, + [SMALL_STATE(2555)] = 103479, + [SMALL_STATE(2556)] = 103495, + [SMALL_STATE(2557)] = 103511, + [SMALL_STATE(2558)] = 103527, + [SMALL_STATE(2559)] = 103543, [SMALL_STATE(2560)] = 103559, [SMALL_STATE(2561)] = 103575, [SMALL_STATE(2562)] = 103591, - [SMALL_STATE(2563)] = 103607, - [SMALL_STATE(2564)] = 103623, - [SMALL_STATE(2565)] = 103639, - [SMALL_STATE(2566)] = 103653, - [SMALL_STATE(2567)] = 103669, - [SMALL_STATE(2568)] = 103685, - [SMALL_STATE(2569)] = 103701, - [SMALL_STATE(2570)] = 103717, - [SMALL_STATE(2571)] = 103729, - [SMALL_STATE(2572)] = 103743, - [SMALL_STATE(2573)] = 103759, - [SMALL_STATE(2574)] = 103775, - [SMALL_STATE(2575)] = 103789, - [SMALL_STATE(2576)] = 103803, - [SMALL_STATE(2577)] = 103817, - [SMALL_STATE(2578)] = 103827, - [SMALL_STATE(2579)] = 103843, - [SMALL_STATE(2580)] = 103859, - [SMALL_STATE(2581)] = 103875, - [SMALL_STATE(2582)] = 103889, - [SMALL_STATE(2583)] = 103905, - [SMALL_STATE(2584)] = 103921, - [SMALL_STATE(2585)] = 103937, - [SMALL_STATE(2586)] = 103953, - [SMALL_STATE(2587)] = 103967, - [SMALL_STATE(2588)] = 103981, - [SMALL_STATE(2589)] = 103997, - [SMALL_STATE(2590)] = 104013, - [SMALL_STATE(2591)] = 104029, - [SMALL_STATE(2592)] = 104045, - [SMALL_STATE(2593)] = 104059, + [SMALL_STATE(2563)] = 103603, + [SMALL_STATE(2564)] = 103619, + [SMALL_STATE(2565)] = 103633, + [SMALL_STATE(2566)] = 103649, + [SMALL_STATE(2567)] = 103663, + [SMALL_STATE(2568)] = 103679, + [SMALL_STATE(2569)] = 103695, + [SMALL_STATE(2570)] = 103711, + [SMALL_STATE(2571)] = 103725, + [SMALL_STATE(2572)] = 103739, + [SMALL_STATE(2573)] = 103753, + [SMALL_STATE(2574)] = 103767, + [SMALL_STATE(2575)] = 103781, + [SMALL_STATE(2576)] = 103797, + [SMALL_STATE(2577)] = 103813, + [SMALL_STATE(2578)] = 103829, + [SMALL_STATE(2579)] = 103845, + [SMALL_STATE(2580)] = 103861, + [SMALL_STATE(2581)] = 103877, + [SMALL_STATE(2582)] = 103893, + [SMALL_STATE(2583)] = 103909, + [SMALL_STATE(2584)] = 103925, + [SMALL_STATE(2585)] = 103941, + [SMALL_STATE(2586)] = 103957, + [SMALL_STATE(2587)] = 103973, + [SMALL_STATE(2588)] = 103987, + [SMALL_STATE(2589)] = 104003, + [SMALL_STATE(2590)] = 104017, + [SMALL_STATE(2591)] = 104031, + [SMALL_STATE(2592)] = 104047, + [SMALL_STATE(2593)] = 104061, [SMALL_STATE(2594)] = 104075, - [SMALL_STATE(2595)] = 104089, - [SMALL_STATE(2596)] = 104103, - [SMALL_STATE(2597)] = 104119, - [SMALL_STATE(2598)] = 104135, - [SMALL_STATE(2599)] = 104151, - [SMALL_STATE(2600)] = 104167, - [SMALL_STATE(2601)] = 104181, - [SMALL_STATE(2602)] = 104195, - [SMALL_STATE(2603)] = 104204, - [SMALL_STATE(2604)] = 104217, - [SMALL_STATE(2605)] = 104230, - [SMALL_STATE(2606)] = 104243, - [SMALL_STATE(2607)] = 104254, - [SMALL_STATE(2608)] = 104267, - [SMALL_STATE(2609)] = 104278, - [SMALL_STATE(2610)] = 104291, - [SMALL_STATE(2611)] = 104304, - [SMALL_STATE(2612)] = 104317, - [SMALL_STATE(2613)] = 104330, - [SMALL_STATE(2614)] = 104343, - [SMALL_STATE(2615)] = 104352, - [SMALL_STATE(2616)] = 104361, - [SMALL_STATE(2617)] = 104374, - [SMALL_STATE(2618)] = 104387, - [SMALL_STATE(2619)] = 104396, - [SMALL_STATE(2620)] = 104405, - [SMALL_STATE(2621)] = 104418, - [SMALL_STATE(2622)] = 104431, - [SMALL_STATE(2623)] = 104444, - [SMALL_STATE(2624)] = 104455, - [SMALL_STATE(2625)] = 104466, - [SMALL_STATE(2626)] = 104479, - [SMALL_STATE(2627)] = 104492, - [SMALL_STATE(2628)] = 104505, - [SMALL_STATE(2629)] = 104518, - [SMALL_STATE(2630)] = 104527, - [SMALL_STATE(2631)] = 104540, - [SMALL_STATE(2632)] = 104553, - [SMALL_STATE(2633)] = 104562, - [SMALL_STATE(2634)] = 104575, - [SMALL_STATE(2635)] = 104588, - [SMALL_STATE(2636)] = 104597, - [SMALL_STATE(2637)] = 104610, - [SMALL_STATE(2638)] = 104623, - [SMALL_STATE(2639)] = 104632, - [SMALL_STATE(2640)] = 104645, - [SMALL_STATE(2641)] = 104654, - [SMALL_STATE(2642)] = 104663, - [SMALL_STATE(2643)] = 104676, - [SMALL_STATE(2644)] = 104685, - [SMALL_STATE(2645)] = 104698, - [SMALL_STATE(2646)] = 104711, - [SMALL_STATE(2647)] = 104724, - [SMALL_STATE(2648)] = 104733, - [SMALL_STATE(2649)] = 104746, - [SMALL_STATE(2650)] = 104759, - [SMALL_STATE(2651)] = 104772, - [SMALL_STATE(2652)] = 104781, - [SMALL_STATE(2653)] = 104790, - [SMALL_STATE(2654)] = 104803, - [SMALL_STATE(2655)] = 104812, - [SMALL_STATE(2656)] = 104825, - [SMALL_STATE(2657)] = 104838, - [SMALL_STATE(2658)] = 104847, - [SMALL_STATE(2659)] = 104856, - [SMALL_STATE(2660)] = 104869, - [SMALL_STATE(2661)] = 104878, - [SMALL_STATE(2662)] = 104891, - [SMALL_STATE(2663)] = 104904, - [SMALL_STATE(2664)] = 104917, - [SMALL_STATE(2665)] = 104926, - [SMALL_STATE(2666)] = 104937, - [SMALL_STATE(2667)] = 104950, - [SMALL_STATE(2668)] = 104963, - [SMALL_STATE(2669)] = 104976, - [SMALL_STATE(2670)] = 104989, - [SMALL_STATE(2671)] = 105002, - [SMALL_STATE(2672)] = 105015, - [SMALL_STATE(2673)] = 105028, - [SMALL_STATE(2674)] = 105041, - [SMALL_STATE(2675)] = 105054, - [SMALL_STATE(2676)] = 105067, - [SMALL_STATE(2677)] = 105078, - [SMALL_STATE(2678)] = 105091, - [SMALL_STATE(2679)] = 105104, - [SMALL_STATE(2680)] = 105117, - [SMALL_STATE(2681)] = 105126, - [SMALL_STATE(2682)] = 105139, - [SMALL_STATE(2683)] = 105152, - [SMALL_STATE(2684)] = 105165, - [SMALL_STATE(2685)] = 105178, - [SMALL_STATE(2686)] = 105189, - [SMALL_STATE(2687)] = 105202, - [SMALL_STATE(2688)] = 105215, - [SMALL_STATE(2689)] = 105224, - [SMALL_STATE(2690)] = 105233, - [SMALL_STATE(2691)] = 105246, - [SMALL_STATE(2692)] = 105259, - [SMALL_STATE(2693)] = 105272, - [SMALL_STATE(2694)] = 105281, - [SMALL_STATE(2695)] = 105290, - [SMALL_STATE(2696)] = 105299, - [SMALL_STATE(2697)] = 105312, - [SMALL_STATE(2698)] = 105325, - [SMALL_STATE(2699)] = 105338, - [SMALL_STATE(2700)] = 105351, - [SMALL_STATE(2701)] = 105362, - [SMALL_STATE(2702)] = 105375, - [SMALL_STATE(2703)] = 105388, - [SMALL_STATE(2704)] = 105397, - [SMALL_STATE(2705)] = 105410, - [SMALL_STATE(2706)] = 105421, - [SMALL_STATE(2707)] = 105430, - [SMALL_STATE(2708)] = 105443, - [SMALL_STATE(2709)] = 105454, - [SMALL_STATE(2710)] = 105467, - [SMALL_STATE(2711)] = 105480, - [SMALL_STATE(2712)] = 105493, - [SMALL_STATE(2713)] = 105506, - [SMALL_STATE(2714)] = 105519, - [SMALL_STATE(2715)] = 105532, - [SMALL_STATE(2716)] = 105545, - [SMALL_STATE(2717)] = 105558, - [SMALL_STATE(2718)] = 105571, - [SMALL_STATE(2719)] = 105584, - [SMALL_STATE(2720)] = 105597, - [SMALL_STATE(2721)] = 105610, - [SMALL_STATE(2722)] = 105623, - [SMALL_STATE(2723)] = 105636, - [SMALL_STATE(2724)] = 105645, - [SMALL_STATE(2725)] = 105658, - [SMALL_STATE(2726)] = 105671, - [SMALL_STATE(2727)] = 105682, - [SMALL_STATE(2728)] = 105695, - [SMALL_STATE(2729)] = 105704, - [SMALL_STATE(2730)] = 105717, - [SMALL_STATE(2731)] = 105730, - [SMALL_STATE(2732)] = 105739, - [SMALL_STATE(2733)] = 105752, - [SMALL_STATE(2734)] = 105761, - [SMALL_STATE(2735)] = 105770, - [SMALL_STATE(2736)] = 105781, - [SMALL_STATE(2737)] = 105794, - [SMALL_STATE(2738)] = 105807, - [SMALL_STATE(2739)] = 105820, - [SMALL_STATE(2740)] = 105833, - [SMALL_STATE(2741)] = 105846, - [SMALL_STATE(2742)] = 105855, - [SMALL_STATE(2743)] = 105868, - [SMALL_STATE(2744)] = 105881, - [SMALL_STATE(2745)] = 105890, - [SMALL_STATE(2746)] = 105903, - [SMALL_STATE(2747)] = 105916, - [SMALL_STATE(2748)] = 105929, - [SMALL_STATE(2749)] = 105942, - [SMALL_STATE(2750)] = 105951, - [SMALL_STATE(2751)] = 105964, - [SMALL_STATE(2752)] = 105977, - [SMALL_STATE(2753)] = 105990, - [SMALL_STATE(2754)] = 106003, - [SMALL_STATE(2755)] = 106016, - [SMALL_STATE(2756)] = 106029, - [SMALL_STATE(2757)] = 106042, - [SMALL_STATE(2758)] = 106055, - [SMALL_STATE(2759)] = 106068, - [SMALL_STATE(2760)] = 106081, - [SMALL_STATE(2761)] = 106094, - [SMALL_STATE(2762)] = 106105, - [SMALL_STATE(2763)] = 106118, - [SMALL_STATE(2764)] = 106131, - [SMALL_STATE(2765)] = 106140, - [SMALL_STATE(2766)] = 106151, - [SMALL_STATE(2767)] = 106164, - [SMALL_STATE(2768)] = 106175, - [SMALL_STATE(2769)] = 106184, - [SMALL_STATE(2770)] = 106197, - [SMALL_STATE(2771)] = 106206, - [SMALL_STATE(2772)] = 106215, - [SMALL_STATE(2773)] = 106228, - [SMALL_STATE(2774)] = 106237, - [SMALL_STATE(2775)] = 106250, - [SMALL_STATE(2776)] = 106263, - [SMALL_STATE(2777)] = 106276, - [SMALL_STATE(2778)] = 106285, - [SMALL_STATE(2779)] = 106294, - [SMALL_STATE(2780)] = 106303, - [SMALL_STATE(2781)] = 106314, - [SMALL_STATE(2782)] = 106327, - [SMALL_STATE(2783)] = 106337, - [SMALL_STATE(2784)] = 106347, - [SMALL_STATE(2785)] = 106357, - [SMALL_STATE(2786)] = 106367, - [SMALL_STATE(2787)] = 106375, - [SMALL_STATE(2788)] = 106385, - [SMALL_STATE(2789)] = 106395, - [SMALL_STATE(2790)] = 106405, - [SMALL_STATE(2791)] = 106415, - [SMALL_STATE(2792)] = 106425, - [SMALL_STATE(2793)] = 106433, - [SMALL_STATE(2794)] = 106443, - [SMALL_STATE(2795)] = 106453, - [SMALL_STATE(2796)] = 106461, - [SMALL_STATE(2797)] = 106471, - [SMALL_STATE(2798)] = 106481, - [SMALL_STATE(2799)] = 106491, - [SMALL_STATE(2800)] = 106501, - [SMALL_STATE(2801)] = 106511, - [SMALL_STATE(2802)] = 106521, - [SMALL_STATE(2803)] = 106529, - [SMALL_STATE(2804)] = 106539, - [SMALL_STATE(2805)] = 106549, - [SMALL_STATE(2806)] = 106559, - [SMALL_STATE(2807)] = 106567, - [SMALL_STATE(2808)] = 106577, - [SMALL_STATE(2809)] = 106587, - [SMALL_STATE(2810)] = 106595, - [SMALL_STATE(2811)] = 106605, - [SMALL_STATE(2812)] = 106615, - [SMALL_STATE(2813)] = 106625, - [SMALL_STATE(2814)] = 106635, - [SMALL_STATE(2815)] = 106643, - [SMALL_STATE(2816)] = 106653, - [SMALL_STATE(2817)] = 106663, - [SMALL_STATE(2818)] = 106671, - [SMALL_STATE(2819)] = 106681, - [SMALL_STATE(2820)] = 106691, - [SMALL_STATE(2821)] = 106699, - [SMALL_STATE(2822)] = 106709, - [SMALL_STATE(2823)] = 106719, - [SMALL_STATE(2824)] = 106727, - [SMALL_STATE(2825)] = 106735, - [SMALL_STATE(2826)] = 106745, - [SMALL_STATE(2827)] = 106755, - [SMALL_STATE(2828)] = 106765, - [SMALL_STATE(2829)] = 106775, - [SMALL_STATE(2830)] = 106785, - [SMALL_STATE(2831)] = 106795, - [SMALL_STATE(2832)] = 106805, - [SMALL_STATE(2833)] = 106815, - [SMALL_STATE(2834)] = 106825, - [SMALL_STATE(2835)] = 106835, - [SMALL_STATE(2836)] = 106845, - [SMALL_STATE(2837)] = 106853, - [SMALL_STATE(2838)] = 106863, - [SMALL_STATE(2839)] = 106873, - [SMALL_STATE(2840)] = 106883, - [SMALL_STATE(2841)] = 106893, - [SMALL_STATE(2842)] = 106903, - [SMALL_STATE(2843)] = 106913, - [SMALL_STATE(2844)] = 106921, - [SMALL_STATE(2845)] = 106929, - [SMALL_STATE(2846)] = 106939, - [SMALL_STATE(2847)] = 106949, - [SMALL_STATE(2848)] = 106959, - [SMALL_STATE(2849)] = 106969, - [SMALL_STATE(2850)] = 106979, - [SMALL_STATE(2851)] = 106989, - [SMALL_STATE(2852)] = 106999, - [SMALL_STATE(2853)] = 107007, - [SMALL_STATE(2854)] = 107017, - [SMALL_STATE(2855)] = 107027, - [SMALL_STATE(2856)] = 107037, - [SMALL_STATE(2857)] = 107047, - [SMALL_STATE(2858)] = 107057, - [SMALL_STATE(2859)] = 107067, - [SMALL_STATE(2860)] = 107075, - [SMALL_STATE(2861)] = 107085, - [SMALL_STATE(2862)] = 107095, - [SMALL_STATE(2863)] = 107105, - [SMALL_STATE(2864)] = 107115, - [SMALL_STATE(2865)] = 107125, - [SMALL_STATE(2866)] = 107135, - [SMALL_STATE(2867)] = 107145, - [SMALL_STATE(2868)] = 107155, - [SMALL_STATE(2869)] = 107165, - [SMALL_STATE(2870)] = 107173, - [SMALL_STATE(2871)] = 107181, - [SMALL_STATE(2872)] = 107191, - [SMALL_STATE(2873)] = 107201, - [SMALL_STATE(2874)] = 107211, - [SMALL_STATE(2875)] = 107221, - [SMALL_STATE(2876)] = 107229, - [SMALL_STATE(2877)] = 107237, - [SMALL_STATE(2878)] = 107247, - [SMALL_STATE(2879)] = 107257, - [SMALL_STATE(2880)] = 107267, - [SMALL_STATE(2881)] = 107275, - [SMALL_STATE(2882)] = 107285, - [SMALL_STATE(2883)] = 107295, - [SMALL_STATE(2884)] = 107305, - [SMALL_STATE(2885)] = 107315, - [SMALL_STATE(2886)] = 107325, - [SMALL_STATE(2887)] = 107333, - [SMALL_STATE(2888)] = 107343, - [SMALL_STATE(2889)] = 107353, - [SMALL_STATE(2890)] = 107363, - [SMALL_STATE(2891)] = 107373, - [SMALL_STATE(2892)] = 107383, - [SMALL_STATE(2893)] = 107393, - [SMALL_STATE(2894)] = 107403, - [SMALL_STATE(2895)] = 107413, - [SMALL_STATE(2896)] = 107423, - [SMALL_STATE(2897)] = 107431, - [SMALL_STATE(2898)] = 107441, - [SMALL_STATE(2899)] = 107451, - [SMALL_STATE(2900)] = 107461, - [SMALL_STATE(2901)] = 107469, - [SMALL_STATE(2902)] = 107479, - [SMALL_STATE(2903)] = 107487, - [SMALL_STATE(2904)] = 107495, - [SMALL_STATE(2905)] = 107503, - [SMALL_STATE(2906)] = 107513, - [SMALL_STATE(2907)] = 107521, - [SMALL_STATE(2908)] = 107531, - [SMALL_STATE(2909)] = 107541, - [SMALL_STATE(2910)] = 107551, - [SMALL_STATE(2911)] = 107559, - [SMALL_STATE(2912)] = 107569, - [SMALL_STATE(2913)] = 107579, - [SMALL_STATE(2914)] = 107587, - [SMALL_STATE(2915)] = 107597, - [SMALL_STATE(2916)] = 107607, - [SMALL_STATE(2917)] = 107617, - [SMALL_STATE(2918)] = 107627, - [SMALL_STATE(2919)] = 107637, - [SMALL_STATE(2920)] = 107645, - [SMALL_STATE(2921)] = 107655, - [SMALL_STATE(2922)] = 107665, - [SMALL_STATE(2923)] = 107675, - [SMALL_STATE(2924)] = 107685, - [SMALL_STATE(2925)] = 107695, - [SMALL_STATE(2926)] = 107703, - [SMALL_STATE(2927)] = 107713, - [SMALL_STATE(2928)] = 107721, - [SMALL_STATE(2929)] = 107729, - [SMALL_STATE(2930)] = 107739, - [SMALL_STATE(2931)] = 107749, - [SMALL_STATE(2932)] = 107759, - [SMALL_STATE(2933)] = 107769, - [SMALL_STATE(2934)] = 107779, - [SMALL_STATE(2935)] = 107789, - [SMALL_STATE(2936)] = 107799, - [SMALL_STATE(2937)] = 107809, - [SMALL_STATE(2938)] = 107819, - [SMALL_STATE(2939)] = 107829, - [SMALL_STATE(2940)] = 107839, - [SMALL_STATE(2941)] = 107849, - [SMALL_STATE(2942)] = 107859, - [SMALL_STATE(2943)] = 107869, - [SMALL_STATE(2944)] = 107879, - [SMALL_STATE(2945)] = 107889, - [SMALL_STATE(2946)] = 107899, - [SMALL_STATE(2947)] = 107909, - [SMALL_STATE(2948)] = 107919, - [SMALL_STATE(2949)] = 107927, - [SMALL_STATE(2950)] = 107937, - [SMALL_STATE(2951)] = 107947, - [SMALL_STATE(2952)] = 107955, - [SMALL_STATE(2953)] = 107965, - [SMALL_STATE(2954)] = 107975, - [SMALL_STATE(2955)] = 107983, - [SMALL_STATE(2956)] = 107993, - [SMALL_STATE(2957)] = 108003, - [SMALL_STATE(2958)] = 108013, - [SMALL_STATE(2959)] = 108021, - [SMALL_STATE(2960)] = 108031, - [SMALL_STATE(2961)] = 108039, - [SMALL_STATE(2962)] = 108049, - [SMALL_STATE(2963)] = 108059, - [SMALL_STATE(2964)] = 108067, - [SMALL_STATE(2965)] = 108075, - [SMALL_STATE(2966)] = 108083, - [SMALL_STATE(2967)] = 108093, - [SMALL_STATE(2968)] = 108103, - [SMALL_STATE(2969)] = 108111, - [SMALL_STATE(2970)] = 108119, - [SMALL_STATE(2971)] = 108129, - [SMALL_STATE(2972)] = 108139, - [SMALL_STATE(2973)] = 108149, - [SMALL_STATE(2974)] = 108159, - [SMALL_STATE(2975)] = 108167, - [SMALL_STATE(2976)] = 108177, - [SMALL_STATE(2977)] = 108187, - [SMALL_STATE(2978)] = 108195, - [SMALL_STATE(2979)] = 108203, - [SMALL_STATE(2980)] = 108213, - [SMALL_STATE(2981)] = 108221, - [SMALL_STATE(2982)] = 108229, - [SMALL_STATE(2983)] = 108239, - [SMALL_STATE(2984)] = 108247, - [SMALL_STATE(2985)] = 108255, - [SMALL_STATE(2986)] = 108263, - [SMALL_STATE(2987)] = 108271, - [SMALL_STATE(2988)] = 108279, - [SMALL_STATE(2989)] = 108289, - [SMALL_STATE(2990)] = 108299, - [SMALL_STATE(2991)] = 108309, - [SMALL_STATE(2992)] = 108319, - [SMALL_STATE(2993)] = 108329, - [SMALL_STATE(2994)] = 108339, - [SMALL_STATE(2995)] = 108346, - [SMALL_STATE(2996)] = 108353, - [SMALL_STATE(2997)] = 108360, - [SMALL_STATE(2998)] = 108367, - [SMALL_STATE(2999)] = 108374, - [SMALL_STATE(3000)] = 108381, - [SMALL_STATE(3001)] = 108388, - [SMALL_STATE(3002)] = 108395, - [SMALL_STATE(3003)] = 108402, - [SMALL_STATE(3004)] = 108409, - [SMALL_STATE(3005)] = 108416, - [SMALL_STATE(3006)] = 108423, - [SMALL_STATE(3007)] = 108430, - [SMALL_STATE(3008)] = 108437, - [SMALL_STATE(3009)] = 108444, - [SMALL_STATE(3010)] = 108451, - [SMALL_STATE(3011)] = 108458, - [SMALL_STATE(3012)] = 108465, - [SMALL_STATE(3013)] = 108472, - [SMALL_STATE(3014)] = 108479, - [SMALL_STATE(3015)] = 108486, - [SMALL_STATE(3016)] = 108493, - [SMALL_STATE(3017)] = 108500, - [SMALL_STATE(3018)] = 108507, - [SMALL_STATE(3019)] = 108514, - [SMALL_STATE(3020)] = 108521, - [SMALL_STATE(3021)] = 108528, - [SMALL_STATE(3022)] = 108535, - [SMALL_STATE(3023)] = 108542, - [SMALL_STATE(3024)] = 108549, - [SMALL_STATE(3025)] = 108556, - [SMALL_STATE(3026)] = 108563, - [SMALL_STATE(3027)] = 108570, - [SMALL_STATE(3028)] = 108577, - [SMALL_STATE(3029)] = 108584, - [SMALL_STATE(3030)] = 108591, - [SMALL_STATE(3031)] = 108598, - [SMALL_STATE(3032)] = 108605, - [SMALL_STATE(3033)] = 108612, - [SMALL_STATE(3034)] = 108619, - [SMALL_STATE(3035)] = 108626, - [SMALL_STATE(3036)] = 108633, - [SMALL_STATE(3037)] = 108640, - [SMALL_STATE(3038)] = 108647, - [SMALL_STATE(3039)] = 108654, - [SMALL_STATE(3040)] = 108661, - [SMALL_STATE(3041)] = 108668, - [SMALL_STATE(3042)] = 108675, - [SMALL_STATE(3043)] = 108682, - [SMALL_STATE(3044)] = 108689, - [SMALL_STATE(3045)] = 108696, - [SMALL_STATE(3046)] = 108703, - [SMALL_STATE(3047)] = 108710, - [SMALL_STATE(3048)] = 108717, - [SMALL_STATE(3049)] = 108724, - [SMALL_STATE(3050)] = 108731, - [SMALL_STATE(3051)] = 108738, - [SMALL_STATE(3052)] = 108745, - [SMALL_STATE(3053)] = 108752, - [SMALL_STATE(3054)] = 108759, - [SMALL_STATE(3055)] = 108766, - [SMALL_STATE(3056)] = 108773, - [SMALL_STATE(3057)] = 108780, - [SMALL_STATE(3058)] = 108787, - [SMALL_STATE(3059)] = 108794, - [SMALL_STATE(3060)] = 108801, - [SMALL_STATE(3061)] = 108808, - [SMALL_STATE(3062)] = 108815, - [SMALL_STATE(3063)] = 108822, - [SMALL_STATE(3064)] = 108829, - [SMALL_STATE(3065)] = 108836, - [SMALL_STATE(3066)] = 108843, - [SMALL_STATE(3067)] = 108850, - [SMALL_STATE(3068)] = 108857, - [SMALL_STATE(3069)] = 108864, - [SMALL_STATE(3070)] = 108871, - [SMALL_STATE(3071)] = 108878, - [SMALL_STATE(3072)] = 108885, - [SMALL_STATE(3073)] = 108892, - [SMALL_STATE(3074)] = 108899, - [SMALL_STATE(3075)] = 108906, - [SMALL_STATE(3076)] = 108913, - [SMALL_STATE(3077)] = 108920, - [SMALL_STATE(3078)] = 108927, - [SMALL_STATE(3079)] = 108934, - [SMALL_STATE(3080)] = 108941, - [SMALL_STATE(3081)] = 108948, - [SMALL_STATE(3082)] = 108955, - [SMALL_STATE(3083)] = 108962, - [SMALL_STATE(3084)] = 108969, - [SMALL_STATE(3085)] = 108976, - [SMALL_STATE(3086)] = 108983, - [SMALL_STATE(3087)] = 108990, - [SMALL_STATE(3088)] = 108997, - [SMALL_STATE(3089)] = 109004, - [SMALL_STATE(3090)] = 109011, - [SMALL_STATE(3091)] = 109018, - [SMALL_STATE(3092)] = 109025, - [SMALL_STATE(3093)] = 109032, - [SMALL_STATE(3094)] = 109039, - [SMALL_STATE(3095)] = 109046, - [SMALL_STATE(3096)] = 109053, - [SMALL_STATE(3097)] = 109060, - [SMALL_STATE(3098)] = 109067, - [SMALL_STATE(3099)] = 109074, - [SMALL_STATE(3100)] = 109081, - [SMALL_STATE(3101)] = 109088, - [SMALL_STATE(3102)] = 109095, - [SMALL_STATE(3103)] = 109102, - [SMALL_STATE(3104)] = 109109, - [SMALL_STATE(3105)] = 109116, - [SMALL_STATE(3106)] = 109123, - [SMALL_STATE(3107)] = 109130, - [SMALL_STATE(3108)] = 109137, - [SMALL_STATE(3109)] = 109144, - [SMALL_STATE(3110)] = 109151, - [SMALL_STATE(3111)] = 109158, - [SMALL_STATE(3112)] = 109165, - [SMALL_STATE(3113)] = 109172, - [SMALL_STATE(3114)] = 109179, - [SMALL_STATE(3115)] = 109186, - [SMALL_STATE(3116)] = 109193, - [SMALL_STATE(3117)] = 109200, - [SMALL_STATE(3118)] = 109207, - [SMALL_STATE(3119)] = 109214, - [SMALL_STATE(3120)] = 109221, - [SMALL_STATE(3121)] = 109228, - [SMALL_STATE(3122)] = 109235, - [SMALL_STATE(3123)] = 109242, - [SMALL_STATE(3124)] = 109249, - [SMALL_STATE(3125)] = 109256, - [SMALL_STATE(3126)] = 109263, - [SMALL_STATE(3127)] = 109270, - [SMALL_STATE(3128)] = 109277, - [SMALL_STATE(3129)] = 109284, - [SMALL_STATE(3130)] = 109291, - [SMALL_STATE(3131)] = 109298, - [SMALL_STATE(3132)] = 109305, - [SMALL_STATE(3133)] = 109312, - [SMALL_STATE(3134)] = 109319, - [SMALL_STATE(3135)] = 109326, - [SMALL_STATE(3136)] = 109333, - [SMALL_STATE(3137)] = 109340, - [SMALL_STATE(3138)] = 109347, - [SMALL_STATE(3139)] = 109354, - [SMALL_STATE(3140)] = 109361, - [SMALL_STATE(3141)] = 109368, - [SMALL_STATE(3142)] = 109375, - [SMALL_STATE(3143)] = 109382, - [SMALL_STATE(3144)] = 109389, - [SMALL_STATE(3145)] = 109396, - [SMALL_STATE(3146)] = 109403, - [SMALL_STATE(3147)] = 109410, - [SMALL_STATE(3148)] = 109417, - [SMALL_STATE(3149)] = 109424, - [SMALL_STATE(3150)] = 109431, - [SMALL_STATE(3151)] = 109438, - [SMALL_STATE(3152)] = 109445, - [SMALL_STATE(3153)] = 109452, - [SMALL_STATE(3154)] = 109459, - [SMALL_STATE(3155)] = 109466, - [SMALL_STATE(3156)] = 109473, - [SMALL_STATE(3157)] = 109480, - [SMALL_STATE(3158)] = 109487, - [SMALL_STATE(3159)] = 109494, - [SMALL_STATE(3160)] = 109501, - [SMALL_STATE(3161)] = 109508, - [SMALL_STATE(3162)] = 109515, - [SMALL_STATE(3163)] = 109522, - [SMALL_STATE(3164)] = 109529, - [SMALL_STATE(3165)] = 109536, - [SMALL_STATE(3166)] = 109543, - [SMALL_STATE(3167)] = 109550, - [SMALL_STATE(3168)] = 109557, - [SMALL_STATE(3169)] = 109564, - [SMALL_STATE(3170)] = 109571, - [SMALL_STATE(3171)] = 109578, - [SMALL_STATE(3172)] = 109585, - [SMALL_STATE(3173)] = 109592, - [SMALL_STATE(3174)] = 109599, - [SMALL_STATE(3175)] = 109606, - [SMALL_STATE(3176)] = 109613, - [SMALL_STATE(3177)] = 109620, - [SMALL_STATE(3178)] = 109627, - [SMALL_STATE(3179)] = 109634, - [SMALL_STATE(3180)] = 109641, - [SMALL_STATE(3181)] = 109648, - [SMALL_STATE(3182)] = 109655, - [SMALL_STATE(3183)] = 109662, - [SMALL_STATE(3184)] = 109669, - [SMALL_STATE(3185)] = 109676, - [SMALL_STATE(3186)] = 109683, - [SMALL_STATE(3187)] = 109690, - [SMALL_STATE(3188)] = 109697, - [SMALL_STATE(3189)] = 109704, - [SMALL_STATE(3190)] = 109711, - [SMALL_STATE(3191)] = 109718, - [SMALL_STATE(3192)] = 109725, - [SMALL_STATE(3193)] = 109732, - [SMALL_STATE(3194)] = 109739, - [SMALL_STATE(3195)] = 109746, - [SMALL_STATE(3196)] = 109753, - [SMALL_STATE(3197)] = 109760, - [SMALL_STATE(3198)] = 109767, - [SMALL_STATE(3199)] = 109774, - [SMALL_STATE(3200)] = 109781, - [SMALL_STATE(3201)] = 109788, - [SMALL_STATE(3202)] = 109795, - [SMALL_STATE(3203)] = 109802, - [SMALL_STATE(3204)] = 109809, - [SMALL_STATE(3205)] = 109816, - [SMALL_STATE(3206)] = 109823, - [SMALL_STATE(3207)] = 109830, - [SMALL_STATE(3208)] = 109837, - [SMALL_STATE(3209)] = 109844, - [SMALL_STATE(3210)] = 109851, - [SMALL_STATE(3211)] = 109858, - [SMALL_STATE(3212)] = 109865, - [SMALL_STATE(3213)] = 109872, - [SMALL_STATE(3214)] = 109879, + [SMALL_STATE(2595)] = 104087, + [SMALL_STATE(2596)] = 104101, + [SMALL_STATE(2597)] = 104113, + [SMALL_STATE(2598)] = 104127, + [SMALL_STATE(2599)] = 104143, + [SMALL_STATE(2600)] = 104155, + [SMALL_STATE(2601)] = 104169, + [SMALL_STATE(2602)] = 104185, + [SMALL_STATE(2603)] = 104201, + [SMALL_STATE(2604)] = 104215, + [SMALL_STATE(2605)] = 104231, + [SMALL_STATE(2606)] = 104247, + [SMALL_STATE(2607)] = 104263, + [SMALL_STATE(2608)] = 104279, + [SMALL_STATE(2609)] = 104289, + [SMALL_STATE(2610)] = 104305, + [SMALL_STATE(2611)] = 104321, + [SMALL_STATE(2612)] = 104335, + [SMALL_STATE(2613)] = 104349, + [SMALL_STATE(2614)] = 104365, + [SMALL_STATE(2615)] = 104374, + [SMALL_STATE(2616)] = 104383, + [SMALL_STATE(2617)] = 104396, + [SMALL_STATE(2618)] = 104405, + [SMALL_STATE(2619)] = 104418, + [SMALL_STATE(2620)] = 104431, + [SMALL_STATE(2621)] = 104444, + [SMALL_STATE(2622)] = 104457, + [SMALL_STATE(2623)] = 104470, + [SMALL_STATE(2624)] = 104483, + [SMALL_STATE(2625)] = 104496, + [SMALL_STATE(2626)] = 104509, + [SMALL_STATE(2627)] = 104522, + [SMALL_STATE(2628)] = 104533, + [SMALL_STATE(2629)] = 104542, + [SMALL_STATE(2630)] = 104555, + [SMALL_STATE(2631)] = 104564, + [SMALL_STATE(2632)] = 104577, + [SMALL_STATE(2633)] = 104590, + [SMALL_STATE(2634)] = 104603, + [SMALL_STATE(2635)] = 104616, + [SMALL_STATE(2636)] = 104625, + [SMALL_STATE(2637)] = 104638, + [SMALL_STATE(2638)] = 104647, + [SMALL_STATE(2639)] = 104660, + [SMALL_STATE(2640)] = 104673, + [SMALL_STATE(2641)] = 104686, + [SMALL_STATE(2642)] = 104699, + [SMALL_STATE(2643)] = 104712, + [SMALL_STATE(2644)] = 104725, + [SMALL_STATE(2645)] = 104738, + [SMALL_STATE(2646)] = 104751, + [SMALL_STATE(2647)] = 104764, + [SMALL_STATE(2648)] = 104775, + [SMALL_STATE(2649)] = 104788, + [SMALL_STATE(2650)] = 104801, + [SMALL_STATE(2651)] = 104814, + [SMALL_STATE(2652)] = 104827, + [SMALL_STATE(2653)] = 104836, + [SMALL_STATE(2654)] = 104845, + [SMALL_STATE(2655)] = 104858, + [SMALL_STATE(2656)] = 104871, + [SMALL_STATE(2657)] = 104882, + [SMALL_STATE(2658)] = 104895, + [SMALL_STATE(2659)] = 104908, + [SMALL_STATE(2660)] = 104917, + [SMALL_STATE(2661)] = 104930, + [SMALL_STATE(2662)] = 104943, + [SMALL_STATE(2663)] = 104956, + [SMALL_STATE(2664)] = 104969, + [SMALL_STATE(2665)] = 104982, + [SMALL_STATE(2666)] = 104995, + [SMALL_STATE(2667)] = 105008, + [SMALL_STATE(2668)] = 105017, + [SMALL_STATE(2669)] = 105030, + [SMALL_STATE(2670)] = 105043, + [SMALL_STATE(2671)] = 105054, + [SMALL_STATE(2672)] = 105067, + [SMALL_STATE(2673)] = 105080, + [SMALL_STATE(2674)] = 105093, + [SMALL_STATE(2675)] = 105106, + [SMALL_STATE(2676)] = 105119, + [SMALL_STATE(2677)] = 105128, + [SMALL_STATE(2678)] = 105141, + [SMALL_STATE(2679)] = 105154, + [SMALL_STATE(2680)] = 105167, + [SMALL_STATE(2681)] = 105180, + [SMALL_STATE(2682)] = 105189, + [SMALL_STATE(2683)] = 105198, + [SMALL_STATE(2684)] = 105211, + [SMALL_STATE(2685)] = 105224, + [SMALL_STATE(2686)] = 105237, + [SMALL_STATE(2687)] = 105250, + [SMALL_STATE(2688)] = 105263, + [SMALL_STATE(2689)] = 105272, + [SMALL_STATE(2690)] = 105285, + [SMALL_STATE(2691)] = 105298, + [SMALL_STATE(2692)] = 105311, + [SMALL_STATE(2693)] = 105320, + [SMALL_STATE(2694)] = 105329, + [SMALL_STATE(2695)] = 105338, + [SMALL_STATE(2696)] = 105347, + [SMALL_STATE(2697)] = 105360, + [SMALL_STATE(2698)] = 105373, + [SMALL_STATE(2699)] = 105384, + [SMALL_STATE(2700)] = 105397, + [SMALL_STATE(2701)] = 105406, + [SMALL_STATE(2702)] = 105415, + [SMALL_STATE(2703)] = 105426, + [SMALL_STATE(2704)] = 105439, + [SMALL_STATE(2705)] = 105450, + [SMALL_STATE(2706)] = 105463, + [SMALL_STATE(2707)] = 105476, + [SMALL_STATE(2708)] = 105485, + [SMALL_STATE(2709)] = 105494, + [SMALL_STATE(2710)] = 105507, + [SMALL_STATE(2711)] = 105520, + [SMALL_STATE(2712)] = 105533, + [SMALL_STATE(2713)] = 105544, + [SMALL_STATE(2714)] = 105553, + [SMALL_STATE(2715)] = 105566, + [SMALL_STATE(2716)] = 105579, + [SMALL_STATE(2717)] = 105588, + [SMALL_STATE(2718)] = 105597, + [SMALL_STATE(2719)] = 105608, + [SMALL_STATE(2720)] = 105621, + [SMALL_STATE(2721)] = 105634, + [SMALL_STATE(2722)] = 105647, + [SMALL_STATE(2723)] = 105660, + [SMALL_STATE(2724)] = 105671, + [SMALL_STATE(2725)] = 105684, + [SMALL_STATE(2726)] = 105697, + [SMALL_STATE(2727)] = 105710, + [SMALL_STATE(2728)] = 105719, + [SMALL_STATE(2729)] = 105730, + [SMALL_STATE(2730)] = 105741, + [SMALL_STATE(2731)] = 105750, + [SMALL_STATE(2732)] = 105759, + [SMALL_STATE(2733)] = 105772, + [SMALL_STATE(2734)] = 105783, + [SMALL_STATE(2735)] = 105796, + [SMALL_STATE(2736)] = 105805, + [SMALL_STATE(2737)] = 105818, + [SMALL_STATE(2738)] = 105831, + [SMALL_STATE(2739)] = 105844, + [SMALL_STATE(2740)] = 105857, + [SMALL_STATE(2741)] = 105870, + [SMALL_STATE(2742)] = 105883, + [SMALL_STATE(2743)] = 105896, + [SMALL_STATE(2744)] = 105909, + [SMALL_STATE(2745)] = 105922, + [SMALL_STATE(2746)] = 105935, + [SMALL_STATE(2747)] = 105948, + [SMALL_STATE(2748)] = 105961, + [SMALL_STATE(2749)] = 105974, + [SMALL_STATE(2750)] = 105987, + [SMALL_STATE(2751)] = 105998, + [SMALL_STATE(2752)] = 106011, + [SMALL_STATE(2753)] = 106024, + [SMALL_STATE(2754)] = 106037, + [SMALL_STATE(2755)] = 106046, + [SMALL_STATE(2756)] = 106055, + [SMALL_STATE(2757)] = 106064, + [SMALL_STATE(2758)] = 106077, + [SMALL_STATE(2759)] = 106090, + [SMALL_STATE(2760)] = 106099, + [SMALL_STATE(2761)] = 106112, + [SMALL_STATE(2762)] = 106121, + [SMALL_STATE(2763)] = 106130, + [SMALL_STATE(2764)] = 106143, + [SMALL_STATE(2765)] = 106152, + [SMALL_STATE(2766)] = 106161, + [SMALL_STATE(2767)] = 106174, + [SMALL_STATE(2768)] = 106187, + [SMALL_STATE(2769)] = 106200, + [SMALL_STATE(2770)] = 106213, + [SMALL_STATE(2771)] = 106226, + [SMALL_STATE(2772)] = 106239, + [SMALL_STATE(2773)] = 106252, + [SMALL_STATE(2774)] = 106265, + [SMALL_STATE(2775)] = 106278, + [SMALL_STATE(2776)] = 106291, + [SMALL_STATE(2777)] = 106302, + [SMALL_STATE(2778)] = 106315, + [SMALL_STATE(2779)] = 106324, + [SMALL_STATE(2780)] = 106333, + [SMALL_STATE(2781)] = 106346, + [SMALL_STATE(2782)] = 106359, + [SMALL_STATE(2783)] = 106372, + [SMALL_STATE(2784)] = 106385, + [SMALL_STATE(2785)] = 106396, + [SMALL_STATE(2786)] = 106409, + [SMALL_STATE(2787)] = 106422, + [SMALL_STATE(2788)] = 106435, + [SMALL_STATE(2789)] = 106448, + [SMALL_STATE(2790)] = 106457, + [SMALL_STATE(2791)] = 106470, + [SMALL_STATE(2792)] = 106479, + [SMALL_STATE(2793)] = 106488, + [SMALL_STATE(2794)] = 106497, + [SMALL_STATE(2795)] = 106507, + [SMALL_STATE(2796)] = 106515, + [SMALL_STATE(2797)] = 106523, + [SMALL_STATE(2798)] = 106531, + [SMALL_STATE(2799)] = 106541, + [SMALL_STATE(2800)] = 106551, + [SMALL_STATE(2801)] = 106559, + [SMALL_STATE(2802)] = 106567, + [SMALL_STATE(2803)] = 106577, + [SMALL_STATE(2804)] = 106587, + [SMALL_STATE(2805)] = 106597, + [SMALL_STATE(2806)] = 106605, + [SMALL_STATE(2807)] = 106613, + [SMALL_STATE(2808)] = 106623, + [SMALL_STATE(2809)] = 106633, + [SMALL_STATE(2810)] = 106643, + [SMALL_STATE(2811)] = 106651, + [SMALL_STATE(2812)] = 106659, + [SMALL_STATE(2813)] = 106669, + [SMALL_STATE(2814)] = 106679, + [SMALL_STATE(2815)] = 106687, + [SMALL_STATE(2816)] = 106697, + [SMALL_STATE(2817)] = 106707, + [SMALL_STATE(2818)] = 106715, + [SMALL_STATE(2819)] = 106725, + [SMALL_STATE(2820)] = 106733, + [SMALL_STATE(2821)] = 106741, + [SMALL_STATE(2822)] = 106751, + [SMALL_STATE(2823)] = 106761, + [SMALL_STATE(2824)] = 106771, + [SMALL_STATE(2825)] = 106781, + [SMALL_STATE(2826)] = 106791, + [SMALL_STATE(2827)] = 106799, + [SMALL_STATE(2828)] = 106809, + [SMALL_STATE(2829)] = 106819, + [SMALL_STATE(2830)] = 106829, + [SMALL_STATE(2831)] = 106839, + [SMALL_STATE(2832)] = 106849, + [SMALL_STATE(2833)] = 106859, + [SMALL_STATE(2834)] = 106869, + [SMALL_STATE(2835)] = 106877, + [SMALL_STATE(2836)] = 106885, + [SMALL_STATE(2837)] = 106895, + [SMALL_STATE(2838)] = 106905, + [SMALL_STATE(2839)] = 106915, + [SMALL_STATE(2840)] = 106925, + [SMALL_STATE(2841)] = 106935, + [SMALL_STATE(2842)] = 106943, + [SMALL_STATE(2843)] = 106953, + [SMALL_STATE(2844)] = 106963, + [SMALL_STATE(2845)] = 106971, + [SMALL_STATE(2846)] = 106981, + [SMALL_STATE(2847)] = 106991, + [SMALL_STATE(2848)] = 107001, + [SMALL_STATE(2849)] = 107011, + [SMALL_STATE(2850)] = 107021, + [SMALL_STATE(2851)] = 107031, + [SMALL_STATE(2852)] = 107039, + [SMALL_STATE(2853)] = 107047, + [SMALL_STATE(2854)] = 107057, + [SMALL_STATE(2855)] = 107067, + [SMALL_STATE(2856)] = 107075, + [SMALL_STATE(2857)] = 107083, + [SMALL_STATE(2858)] = 107093, + [SMALL_STATE(2859)] = 107103, + [SMALL_STATE(2860)] = 107113, + [SMALL_STATE(2861)] = 107121, + [SMALL_STATE(2862)] = 107129, + [SMALL_STATE(2863)] = 107137, + [SMALL_STATE(2864)] = 107145, + [SMALL_STATE(2865)] = 107155, + [SMALL_STATE(2866)] = 107165, + [SMALL_STATE(2867)] = 107175, + [SMALL_STATE(2868)] = 107183, + [SMALL_STATE(2869)] = 107193, + [SMALL_STATE(2870)] = 107203, + [SMALL_STATE(2871)] = 107213, + [SMALL_STATE(2872)] = 107223, + [SMALL_STATE(2873)] = 107233, + [SMALL_STATE(2874)] = 107243, + [SMALL_STATE(2875)] = 107253, + [SMALL_STATE(2876)] = 107263, + [SMALL_STATE(2877)] = 107273, + [SMALL_STATE(2878)] = 107283, + [SMALL_STATE(2879)] = 107293, + [SMALL_STATE(2880)] = 107303, + [SMALL_STATE(2881)] = 107311, + [SMALL_STATE(2882)] = 107321, + [SMALL_STATE(2883)] = 107329, + [SMALL_STATE(2884)] = 107339, + [SMALL_STATE(2885)] = 107349, + [SMALL_STATE(2886)] = 107357, + [SMALL_STATE(2887)] = 107367, + [SMALL_STATE(2888)] = 107377, + [SMALL_STATE(2889)] = 107385, + [SMALL_STATE(2890)] = 107395, + [SMALL_STATE(2891)] = 107405, + [SMALL_STATE(2892)] = 107415, + [SMALL_STATE(2893)] = 107425, + [SMALL_STATE(2894)] = 107435, + [SMALL_STATE(2895)] = 107445, + [SMALL_STATE(2896)] = 107455, + [SMALL_STATE(2897)] = 107465, + [SMALL_STATE(2898)] = 107475, + [SMALL_STATE(2899)] = 107485, + [SMALL_STATE(2900)] = 107495, + [SMALL_STATE(2901)] = 107503, + [SMALL_STATE(2902)] = 107513, + [SMALL_STATE(2903)] = 107523, + [SMALL_STATE(2904)] = 107531, + [SMALL_STATE(2905)] = 107539, + [SMALL_STATE(2906)] = 107547, + [SMALL_STATE(2907)] = 107557, + [SMALL_STATE(2908)] = 107567, + [SMALL_STATE(2909)] = 107577, + [SMALL_STATE(2910)] = 107587, + [SMALL_STATE(2911)] = 107597, + [SMALL_STATE(2912)] = 107605, + [SMALL_STATE(2913)] = 107613, + [SMALL_STATE(2914)] = 107623, + [SMALL_STATE(2915)] = 107633, + [SMALL_STATE(2916)] = 107641, + [SMALL_STATE(2917)] = 107651, + [SMALL_STATE(2918)] = 107659, + [SMALL_STATE(2919)] = 107669, + [SMALL_STATE(2920)] = 107679, + [SMALL_STATE(2921)] = 107689, + [SMALL_STATE(2922)] = 107699, + [SMALL_STATE(2923)] = 107707, + [SMALL_STATE(2924)] = 107717, + [SMALL_STATE(2925)] = 107725, + [SMALL_STATE(2926)] = 107735, + [SMALL_STATE(2927)] = 107745, + [SMALL_STATE(2928)] = 107755, + [SMALL_STATE(2929)] = 107765, + [SMALL_STATE(2930)] = 107775, + [SMALL_STATE(2931)] = 107785, + [SMALL_STATE(2932)] = 107795, + [SMALL_STATE(2933)] = 107805, + [SMALL_STATE(2934)] = 107815, + [SMALL_STATE(2935)] = 107825, + [SMALL_STATE(2936)] = 107835, + [SMALL_STATE(2937)] = 107845, + [SMALL_STATE(2938)] = 107855, + [SMALL_STATE(2939)] = 107865, + [SMALL_STATE(2940)] = 107875, + [SMALL_STATE(2941)] = 107885, + [SMALL_STATE(2942)] = 107895, + [SMALL_STATE(2943)] = 107905, + [SMALL_STATE(2944)] = 107915, + [SMALL_STATE(2945)] = 107925, + [SMALL_STATE(2946)] = 107935, + [SMALL_STATE(2947)] = 107945, + [SMALL_STATE(2948)] = 107955, + [SMALL_STATE(2949)] = 107963, + [SMALL_STATE(2950)] = 107973, + [SMALL_STATE(2951)] = 107981, + [SMALL_STATE(2952)] = 107991, + [SMALL_STATE(2953)] = 108001, + [SMALL_STATE(2954)] = 108011, + [SMALL_STATE(2955)] = 108021, + [SMALL_STATE(2956)] = 108031, + [SMALL_STATE(2957)] = 108041, + [SMALL_STATE(2958)] = 108051, + [SMALL_STATE(2959)] = 108059, + [SMALL_STATE(2960)] = 108069, + [SMALL_STATE(2961)] = 108079, + [SMALL_STATE(2962)] = 108089, + [SMALL_STATE(2963)] = 108099, + [SMALL_STATE(2964)] = 108107, + [SMALL_STATE(2965)] = 108117, + [SMALL_STATE(2966)] = 108127, + [SMALL_STATE(2967)] = 108137, + [SMALL_STATE(2968)] = 108147, + [SMALL_STATE(2969)] = 108157, + [SMALL_STATE(2970)] = 108167, + [SMALL_STATE(2971)] = 108177, + [SMALL_STATE(2972)] = 108187, + [SMALL_STATE(2973)] = 108195, + [SMALL_STATE(2974)] = 108205, + [SMALL_STATE(2975)] = 108215, + [SMALL_STATE(2976)] = 108225, + [SMALL_STATE(2977)] = 108233, + [SMALL_STATE(2978)] = 108243, + [SMALL_STATE(2979)] = 108253, + [SMALL_STATE(2980)] = 108263, + [SMALL_STATE(2981)] = 108273, + [SMALL_STATE(2982)] = 108283, + [SMALL_STATE(2983)] = 108293, + [SMALL_STATE(2984)] = 108303, + [SMALL_STATE(2985)] = 108313, + [SMALL_STATE(2986)] = 108323, + [SMALL_STATE(2987)] = 108331, + [SMALL_STATE(2988)] = 108341, + [SMALL_STATE(2989)] = 108351, + [SMALL_STATE(2990)] = 108361, + [SMALL_STATE(2991)] = 108371, + [SMALL_STATE(2992)] = 108379, + [SMALL_STATE(2993)] = 108387, + [SMALL_STATE(2994)] = 108397, + [SMALL_STATE(2995)] = 108407, + [SMALL_STATE(2996)] = 108417, + [SMALL_STATE(2997)] = 108425, + [SMALL_STATE(2998)] = 108435, + [SMALL_STATE(2999)] = 108443, + [SMALL_STATE(3000)] = 108453, + [SMALL_STATE(3001)] = 108463, + [SMALL_STATE(3002)] = 108473, + [SMALL_STATE(3003)] = 108483, + [SMALL_STATE(3004)] = 108491, + [SMALL_STATE(3005)] = 108501, + [SMALL_STATE(3006)] = 108511, + [SMALL_STATE(3007)] = 108521, + [SMALL_STATE(3008)] = 108531, + [SMALL_STATE(3009)] = 108539, + [SMALL_STATE(3010)] = 108549, + [SMALL_STATE(3011)] = 108556, + [SMALL_STATE(3012)] = 108563, + [SMALL_STATE(3013)] = 108570, + [SMALL_STATE(3014)] = 108577, + [SMALL_STATE(3015)] = 108584, + [SMALL_STATE(3016)] = 108591, + [SMALL_STATE(3017)] = 108598, + [SMALL_STATE(3018)] = 108605, + [SMALL_STATE(3019)] = 108612, + [SMALL_STATE(3020)] = 108619, + [SMALL_STATE(3021)] = 108626, + [SMALL_STATE(3022)] = 108633, + [SMALL_STATE(3023)] = 108640, + [SMALL_STATE(3024)] = 108647, + [SMALL_STATE(3025)] = 108654, + [SMALL_STATE(3026)] = 108661, + [SMALL_STATE(3027)] = 108668, + [SMALL_STATE(3028)] = 108675, + [SMALL_STATE(3029)] = 108682, + [SMALL_STATE(3030)] = 108689, + [SMALL_STATE(3031)] = 108696, + [SMALL_STATE(3032)] = 108703, + [SMALL_STATE(3033)] = 108710, + [SMALL_STATE(3034)] = 108717, + [SMALL_STATE(3035)] = 108724, + [SMALL_STATE(3036)] = 108731, + [SMALL_STATE(3037)] = 108738, + [SMALL_STATE(3038)] = 108745, + [SMALL_STATE(3039)] = 108752, + [SMALL_STATE(3040)] = 108759, + [SMALL_STATE(3041)] = 108766, + [SMALL_STATE(3042)] = 108773, + [SMALL_STATE(3043)] = 108780, + [SMALL_STATE(3044)] = 108787, + [SMALL_STATE(3045)] = 108794, + [SMALL_STATE(3046)] = 108801, + [SMALL_STATE(3047)] = 108808, + [SMALL_STATE(3048)] = 108815, + [SMALL_STATE(3049)] = 108822, + [SMALL_STATE(3050)] = 108829, + [SMALL_STATE(3051)] = 108836, + [SMALL_STATE(3052)] = 108843, + [SMALL_STATE(3053)] = 108850, + [SMALL_STATE(3054)] = 108857, + [SMALL_STATE(3055)] = 108864, + [SMALL_STATE(3056)] = 108871, + [SMALL_STATE(3057)] = 108878, + [SMALL_STATE(3058)] = 108885, + [SMALL_STATE(3059)] = 108892, + [SMALL_STATE(3060)] = 108899, + [SMALL_STATE(3061)] = 108906, + [SMALL_STATE(3062)] = 108913, + [SMALL_STATE(3063)] = 108920, + [SMALL_STATE(3064)] = 108927, + [SMALL_STATE(3065)] = 108934, + [SMALL_STATE(3066)] = 108941, + [SMALL_STATE(3067)] = 108948, + [SMALL_STATE(3068)] = 108955, + [SMALL_STATE(3069)] = 108962, + [SMALL_STATE(3070)] = 108969, + [SMALL_STATE(3071)] = 108976, + [SMALL_STATE(3072)] = 108983, + [SMALL_STATE(3073)] = 108990, + [SMALL_STATE(3074)] = 108997, + [SMALL_STATE(3075)] = 109004, + [SMALL_STATE(3076)] = 109011, + [SMALL_STATE(3077)] = 109018, + [SMALL_STATE(3078)] = 109025, + [SMALL_STATE(3079)] = 109032, + [SMALL_STATE(3080)] = 109039, + [SMALL_STATE(3081)] = 109046, + [SMALL_STATE(3082)] = 109053, + [SMALL_STATE(3083)] = 109060, + [SMALL_STATE(3084)] = 109067, + [SMALL_STATE(3085)] = 109074, + [SMALL_STATE(3086)] = 109081, + [SMALL_STATE(3087)] = 109088, + [SMALL_STATE(3088)] = 109095, + [SMALL_STATE(3089)] = 109102, + [SMALL_STATE(3090)] = 109109, + [SMALL_STATE(3091)] = 109116, + [SMALL_STATE(3092)] = 109123, + [SMALL_STATE(3093)] = 109130, + [SMALL_STATE(3094)] = 109137, + [SMALL_STATE(3095)] = 109144, + [SMALL_STATE(3096)] = 109151, + [SMALL_STATE(3097)] = 109158, + [SMALL_STATE(3098)] = 109165, + [SMALL_STATE(3099)] = 109172, + [SMALL_STATE(3100)] = 109179, + [SMALL_STATE(3101)] = 109186, + [SMALL_STATE(3102)] = 109193, + [SMALL_STATE(3103)] = 109200, + [SMALL_STATE(3104)] = 109207, + [SMALL_STATE(3105)] = 109214, + [SMALL_STATE(3106)] = 109221, + [SMALL_STATE(3107)] = 109228, + [SMALL_STATE(3108)] = 109235, + [SMALL_STATE(3109)] = 109242, + [SMALL_STATE(3110)] = 109249, + [SMALL_STATE(3111)] = 109256, + [SMALL_STATE(3112)] = 109263, + [SMALL_STATE(3113)] = 109270, + [SMALL_STATE(3114)] = 109277, + [SMALL_STATE(3115)] = 109284, + [SMALL_STATE(3116)] = 109291, + [SMALL_STATE(3117)] = 109298, + [SMALL_STATE(3118)] = 109305, + [SMALL_STATE(3119)] = 109312, + [SMALL_STATE(3120)] = 109319, + [SMALL_STATE(3121)] = 109326, + [SMALL_STATE(3122)] = 109333, + [SMALL_STATE(3123)] = 109340, + [SMALL_STATE(3124)] = 109347, + [SMALL_STATE(3125)] = 109354, + [SMALL_STATE(3126)] = 109361, + [SMALL_STATE(3127)] = 109368, + [SMALL_STATE(3128)] = 109375, + [SMALL_STATE(3129)] = 109382, + [SMALL_STATE(3130)] = 109389, + [SMALL_STATE(3131)] = 109396, + [SMALL_STATE(3132)] = 109403, + [SMALL_STATE(3133)] = 109410, + [SMALL_STATE(3134)] = 109417, + [SMALL_STATE(3135)] = 109424, + [SMALL_STATE(3136)] = 109431, + [SMALL_STATE(3137)] = 109438, + [SMALL_STATE(3138)] = 109445, + [SMALL_STATE(3139)] = 109452, + [SMALL_STATE(3140)] = 109459, + [SMALL_STATE(3141)] = 109466, + [SMALL_STATE(3142)] = 109473, + [SMALL_STATE(3143)] = 109480, + [SMALL_STATE(3144)] = 109487, + [SMALL_STATE(3145)] = 109494, + [SMALL_STATE(3146)] = 109501, + [SMALL_STATE(3147)] = 109508, + [SMALL_STATE(3148)] = 109515, + [SMALL_STATE(3149)] = 109522, + [SMALL_STATE(3150)] = 109529, + [SMALL_STATE(3151)] = 109536, + [SMALL_STATE(3152)] = 109543, + [SMALL_STATE(3153)] = 109550, + [SMALL_STATE(3154)] = 109557, + [SMALL_STATE(3155)] = 109564, + [SMALL_STATE(3156)] = 109571, + [SMALL_STATE(3157)] = 109578, + [SMALL_STATE(3158)] = 109585, + [SMALL_STATE(3159)] = 109592, + [SMALL_STATE(3160)] = 109599, + [SMALL_STATE(3161)] = 109606, + [SMALL_STATE(3162)] = 109613, + [SMALL_STATE(3163)] = 109620, + [SMALL_STATE(3164)] = 109627, + [SMALL_STATE(3165)] = 109634, + [SMALL_STATE(3166)] = 109641, + [SMALL_STATE(3167)] = 109648, + [SMALL_STATE(3168)] = 109655, + [SMALL_STATE(3169)] = 109662, + [SMALL_STATE(3170)] = 109669, + [SMALL_STATE(3171)] = 109676, + [SMALL_STATE(3172)] = 109683, + [SMALL_STATE(3173)] = 109690, + [SMALL_STATE(3174)] = 109697, + [SMALL_STATE(3175)] = 109704, + [SMALL_STATE(3176)] = 109711, + [SMALL_STATE(3177)] = 109718, + [SMALL_STATE(3178)] = 109725, + [SMALL_STATE(3179)] = 109732, + [SMALL_STATE(3180)] = 109739, + [SMALL_STATE(3181)] = 109746, + [SMALL_STATE(3182)] = 109753, + [SMALL_STATE(3183)] = 109760, + [SMALL_STATE(3184)] = 109767, + [SMALL_STATE(3185)] = 109774, + [SMALL_STATE(3186)] = 109781, + [SMALL_STATE(3187)] = 109788, + [SMALL_STATE(3188)] = 109795, + [SMALL_STATE(3189)] = 109802, + [SMALL_STATE(3190)] = 109809, + [SMALL_STATE(3191)] = 109816, + [SMALL_STATE(3192)] = 109823, + [SMALL_STATE(3193)] = 109830, + [SMALL_STATE(3194)] = 109837, + [SMALL_STATE(3195)] = 109844, + [SMALL_STATE(3196)] = 109851, + [SMALL_STATE(3197)] = 109858, + [SMALL_STATE(3198)] = 109865, + [SMALL_STATE(3199)] = 109872, + [SMALL_STATE(3200)] = 109879, + [SMALL_STATE(3201)] = 109886, + [SMALL_STATE(3202)] = 109893, + [SMALL_STATE(3203)] = 109900, + [SMALL_STATE(3204)] = 109907, + [SMALL_STATE(3205)] = 109914, + [SMALL_STATE(3206)] = 109921, + [SMALL_STATE(3207)] = 109928, + [SMALL_STATE(3208)] = 109935, + [SMALL_STATE(3209)] = 109942, + [SMALL_STATE(3210)] = 109949, + [SMALL_STATE(3211)] = 109956, + [SMALL_STATE(3212)] = 109963, + [SMALL_STATE(3213)] = 109970, + [SMALL_STATE(3214)] = 109977, + [SMALL_STATE(3215)] = 109984, + [SMALL_STATE(3216)] = 109991, + [SMALL_STATE(3217)] = 109998, + [SMALL_STATE(3218)] = 110005, + [SMALL_STATE(3219)] = 110012, + [SMALL_STATE(3220)] = 110019, + [SMALL_STATE(3221)] = 110026, + [SMALL_STATE(3222)] = 110033, + [SMALL_STATE(3223)] = 110040, + [SMALL_STATE(3224)] = 110047, + [SMALL_STATE(3225)] = 110054, + [SMALL_STATE(3226)] = 110061, + [SMALL_STATE(3227)] = 110068, + [SMALL_STATE(3228)] = 110075, + [SMALL_STATE(3229)] = 110082, + [SMALL_STATE(3230)] = 110089, + [SMALL_STATE(3231)] = 110096, + [SMALL_STATE(3232)] = 110103, + [SMALL_STATE(3233)] = 110110, + [SMALL_STATE(3234)] = 110117, }; static TSParseActionEntry ts_parse_actions[] = { @@ -158343,736 +158891,736 @@ static TSParseActionEntry ts_parse_actions[] = { [1] = {.entry = {.count = 1, .reusable = false}}, RECOVER(), [3] = {.entry = {.count = 1, .reusable = true}}, SHIFT_EXTRA(), [5] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 0), - [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(749), - [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), - [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(129), - [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(643), - [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), - [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(695), - [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(352), - [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(957), - [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2195), - [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2147), - [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2072), - [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), - [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2785), - [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2787), - [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2616), - [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(341), - [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2794), - [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(34), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2796), - [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2800), - [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2623), - [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2624), - [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2802), - [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(161), - [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(221), - [59] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), + [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(766), + [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), + [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(136), + [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(647), + [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), + [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(701), + [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(361), + [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(961), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2153), + [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2224), + [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2082), + [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), + [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2803), + [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2804), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2722), + [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(319), + [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2807), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(39), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2808), + [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2809), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2718), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2670), + [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2811), + [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(154), + [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(185), + [59] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(54), - [63] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), - [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), - [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3181), - [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2021), + [63] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), + [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), + [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3218), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2020), [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(474), - [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2074), - [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(206), - [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(372), - [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), - [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2593), - [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2589), - [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2238), - [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), - [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1498), - [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2631), - [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(756), - [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3166), - [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(160), - [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(645), - [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3164), - [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3163), - [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(688), + [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2110), + [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(173), + [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(293), + [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), + [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2610), + [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2604), + [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2149), + [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), + [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1523), + [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2646), + [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(745), + [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3201), + [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(156), + [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(644), + [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3200), + [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3199), + [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(686), [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(121), - [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1889), - [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(633), - [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1662), - [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), - [117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(670), - [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), - [121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(247), - [123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), - [125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), - [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(451), - [129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(452), - [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(145), - [133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(462), - [135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(631), - [137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(686), - [139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(456), - [141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(681), + [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1905), + [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(632), + [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652), + [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), + [117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(660), + [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(193), + [123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), + [125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1586), + [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(453), + [129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(457), + [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(147), + [133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(463), + [135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(636), + [137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(689), + [139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(455), + [141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(687), [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(120), - [145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(629), - [147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), - [149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(659), - [151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(215), - [153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(455), - [155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(450), - [157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(148), - [159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(466), - [161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(630), - [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(680), - [165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(453), - [167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), - [169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), - [171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(691), - [173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(119), - [175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(628), - [177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), - [179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(674), - [181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(177), - [183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(458), - [185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(457), - [187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(143), - [189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(464), - [191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(634), - [193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(682), - [195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(454), + [145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(635), + [147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), + [149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(676), + [151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(243), + [153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(450), + [155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(452), + [157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(137), + [159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(464), + [161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(633), + [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(683), + [165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(454), + [167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(690), + [169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(119), + [171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(638), + [173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), + [175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(666), + [177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(239), + [179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(458), + [181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(456), + [183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(127), + [185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(462), + [187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(634), + [189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(684), + [191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(451), + [193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), + [195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), [197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), - [199] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(749), - [202] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(129), + [199] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(766), + [202] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(136), [205] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), - [207] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(643), - [210] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(5), - [213] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(695), - [216] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(352), - [219] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(957), - [222] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2195), - [225] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2147), - [228] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2072), - [231] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(327), - [234] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2785), - [237] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2787), - [240] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2616), - [243] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(109), - [246] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(341), - [249] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2794), - [252] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(34), - [255] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2796), - [258] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2800), - [261] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2623), - [264] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2624), - [267] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2802), - [270] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(161), - [273] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(221), - [276] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(521), + [207] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(647), + [210] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(4), + [213] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(701), + [216] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(361), + [219] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(961), + [222] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2153), + [225] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2224), + [228] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2082), + [231] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(347), + [234] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2803), + [237] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2804), + [240] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2722), + [243] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(117), + [246] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(319), + [249] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2807), + [252] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(39), + [255] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2808), + [258] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2809), + [261] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2718), + [264] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2670), + [267] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2811), + [270] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(154), + [273] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(185), + [276] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(520), [279] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(54), - [282] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(132), - [285] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(787), - [288] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3181), - [291] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2021), + [282] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(140), + [285] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(799), + [288] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3218), + [291] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2020), [294] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(474), - [297] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2074), - [300] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(206), - [303] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(372), - [306] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(268), - [309] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2593), - [312] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2589), - [315] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2238), - [318] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1498), - [321] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1498), - [324] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2631), - [327] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(756), - [330] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3166), - [333] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(160), - [336] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(645), - [339] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3164), - [342] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3163), + [297] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2110), + [300] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(173), + [303] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(293), + [306] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(364), + [309] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2610), + [312] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2604), + [315] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2149), + [318] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1523), + [321] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1523), + [324] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2646), + [327] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(745), + [330] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3201), + [333] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(156), + [336] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(644), + [339] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3200), + [342] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3199), [345] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_case, 4, .production_id = 80), [347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_case, 4, .production_id = 80), - [349] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_default, 2), - [351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_default, 2), + [349] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_case, 3, .production_id = 80), + [351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_case, 3, .production_id = 80), [353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_default, 3), [355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_default, 3), - [357] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_case, 3, .production_id = 80), - [359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_case, 3, .production_id = 80), - [361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [357] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_default, 2), + [359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_default, 2), + [361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), [363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 1), - [365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1833), - [367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), - [369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 2), - [371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), - [373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), - [375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), - [377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), - [379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), - [381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), - [383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), - [385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1621), - [387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1832), - [389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), - [391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), - [393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(754), - [395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(128), - [397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(640), - [399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), - [401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(706), - [403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2818), - [405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2775), - [407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2821), - [409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2822), - [411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2011), + [365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 2), + [367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), + [369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), + [371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1612), + [373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), + [375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), + [377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), + [379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), + [381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), + [383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1847), + [385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), + [387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), + [389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1839), + [391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), + [393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(763), + [395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(142), + [397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(643), + [399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), + [401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(700), + [403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2836), + [405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2720), + [407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2839), + [409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2840), + [411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2022), [413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(476), - [415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2092), - [417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(753), - [419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(157), - [421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(642), - [423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(697), - [425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(798), - [427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), - [429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(649), - [431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(693), - [433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(162), - [435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1109), - [437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), - [439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), - [441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2680), - [443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(260), + [415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2146), + [417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(762), + [419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(161), + [421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(645), + [423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(702), + [425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(785), + [427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), + [429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(654), + [431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(724), + [433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(151), + [435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1142), + [437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), + [439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), + [441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2637), + [443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(398), [445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(52), - [447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), - [449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3158), - [451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2024), - [453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(485), - [455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2104), - [457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(173), - [459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3038), - [461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), - [463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), - [465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), - [467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(369), - [469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(123), - [471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(265), - [473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), - [475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2573), - [477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2569), - [479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2225), - [481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), - [483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1440), - [485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1101), - [487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1506), + [447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3166), + [451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2027), + [453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(481), + [455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2075), + [457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(232), + [459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3144), + [461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), + [463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), + [465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), + [467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(309), + [469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(122), + [471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(404), + [473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), + [475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2577), + [477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2576), + [479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2239), + [481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1634), + [483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1393), + [485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1151), + [487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1634), [489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(515), - [491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(760), + [491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(758), [493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(61), - [495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2197), - [497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), - [499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(692), - [501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(718), - [503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(261), + [495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2204), + [497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), + [499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(720), + [501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(719), + [503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(314), [505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 1), - [507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(635), - [509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1599), + [507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(641), + [509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), [511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 1), - [513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(397), + [513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(399), [515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), - [517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), - [519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(787), + [517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), + [519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(799), [521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(461), - [523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(219), - [525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(374), - [527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), - [529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(722), - [531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(809), - [533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(650), - [535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(719), - [537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(163), - [539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1675), - [541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), - [543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), - [545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(385), - [547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(64), - [549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), - [551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3024), - [553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2022), - [555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(486), - [557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2123), - [559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(253), - [561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(393), - [563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(136), - [565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(383), - [567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), - [569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2480), - [571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2479), - [573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2206), - [575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1622), - [577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1606), - [579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1682), - [581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1622), - [583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(745), - [585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(99), - [587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(726), - [589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(724), - [591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(337), - [593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(639), - [595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1613), - [597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1583), - [599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(327), - [601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2012), - [603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(472), - [605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2103), - [607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(689), - [609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(715), - [611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(155), - [613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), - [615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), - [617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(228), - [619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(319), - [621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(127), - [623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), - [625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1453), - [627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1450), - [629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(717), - [631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(79), - [633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(698), - [635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(926), - [637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(653), - [639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(703), - [641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(159), - [643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), - [645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(403), - [647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(62), - [649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(496), - [653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(197), - [655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(399), - [657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(144), - [659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(416), - [661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), - [663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1546), - [665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1544), - [667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1546), - [669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(738), - [671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(98), - [673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(701), - [675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(930), - [677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(652), - [679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(165), - [681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), - [683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(310), - [685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(63), - [687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(501), - [691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(251), - [693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(258), - [695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(140), - [697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(315), - [699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), - [701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), - [703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1503), - [705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1533), - [707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(725), - [709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(95), - [711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(660), - [713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1995), - [715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(694), - [717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(164), - [719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), - [721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(212), - [725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), - [727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), - [729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), - [731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(389), - [733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(118), - [735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), - [737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1293), - [739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1295), - [741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(684), - [743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(97), - [745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2222), - [747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), - [749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(716), - [751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(804), - [753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(647), - [755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(158), - [757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), - [759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(281), - [761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(65), - [763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), - [765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3021), - [767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(483), - [769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(184), - [771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(344), - [773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(130), - [775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(328), - [777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), - [779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), - [781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1077), - [783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1078), - [785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(763), - [787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(96), - [789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(662), - [791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(166), - [793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(348), - [795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(685), - [797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(69), + [523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(253), + [525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(343), + [527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), + [529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(692), + [531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(734), + [533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(648), + [535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(705), + [537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(160), + [539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1509), + [541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), + [543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), + [545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2016), + [547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(469), + [549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2094), + [551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(184), + [553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(313), + [555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(143), + [557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), + [559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1472), + [561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1473), + [563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(713), + [565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(84), + [567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(735), + [569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(375), + [571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), + [573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(347), + [575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(717), + [577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(897), + [579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(655), + [581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(698), + [583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(152), + [585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), + [587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(306), + [589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(65), + [591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(507), + [595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(237), + [597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(316), + [599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(135), + [601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(308), + [603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), + [605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), + [607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1526), + [609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1525), + [611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(746), + [613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(95), + [615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(661), + [617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(163), + [619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(344), + [623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), + [625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1065), + [627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1037), + [629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(691), + [631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(69), + [633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(718), + [635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(906), + [637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(656), + [639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(166), + [641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), + [643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(330), + [645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(64), + [647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(510), + [651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(222), + [653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(385), + [655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(129), + [657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(294), + [659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), + [661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), + [663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1632), + [665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1537), + [667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(727), + [669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(98), + [671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(716), + [673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(776), + [675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(650), + [677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(708), + [679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(155), + [681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1654), + [683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), + [685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), + [687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(299), + [689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(63), + [691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3043), + [695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2025), + [697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(487), + [699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2086), + [701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(182), + [703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(352), + [705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(134), + [707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(302), + [709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), + [711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2500), + [713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2498), + [715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2203), + [717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1611), + [719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1633), + [721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1690), + [723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1611), + [725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(729), + [727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(100), + [729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(672), + [731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1992), + [733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(722), + [735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(162), + [737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), + [739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(205), + [743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), + [745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), + [747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), + [749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(323), + [751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(118), + [753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), + [755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1223), + [757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1212), + [759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(688), + [761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(97), + [763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2192), + [765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), + [767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(726), + [769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(769), + [771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(651), + [773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(159), + [775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(290), + [779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(62), + [781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3011), + [783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(489), + [785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(234), + [787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(318), + [789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(144), + [791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(288), + [793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(738), + [797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(96), [799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1961), - [801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2295), - [803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(424), - [805] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__parameter_name, 1, .production_id = 1), SHIFT(359), + [801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2359), + [803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(441), + [805] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__parameter_name, 1, .production_id = 1), SHIFT(324), [808] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1, .production_id = 1), - [810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(696), + [810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(723), [812] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1, .production_id = 1), REDUCE(sym__parameter_name, 1, .production_id = 1), - [815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2526), - [817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), - [819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2962), - [823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3121), - [825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), - [827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2232), - [829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2525), + [815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2561), + [817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), + [819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2883), + [823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3103), + [825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2246), + [829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2549), [831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__augmented_assignment_lhs, 1, .production_id = 1), - [833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(820), - [835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(823), - [837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(825), - [839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3012), + [833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(902), + [835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(903), + [837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(904), + [839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3126), [841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1, .production_id = 1), - [843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(445), - [845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2516), - [847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2515), - [849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), - [851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2032), - [853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(446), - [855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2030), - [857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(683), - [859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(887), - [861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(325), - [863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(418), - [865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(183), - [867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(264), - [869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(821), - [871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(309), - [873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(312), - [875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(201), - [877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(307), - [879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(805), - [881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(396), - [883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1541), - [885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(384), - [887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), - [889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), - [891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(203), - [893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(380), - [895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1682), - [897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(794), - [899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(395), - [901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(286), - [903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(195), - [905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(320), + [843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(435), + [845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2533), + [847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2532), + [849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), + [851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2036), + [853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(433), + [855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2038), + [857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(694), + [859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(809), + [861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(353), + [863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(265), + [865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(186), + [867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(376), + [869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(810), + [871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(349), + [873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1564), + [875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(300), + [877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), + [879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(171), + [883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(281), + [885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1690), + [887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(934), + [889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(407), + [891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(325), + [893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(231), + [895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(334), + [897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(851), + [899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(360), + [901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(307), + [903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(241), + [905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(418), [907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 2), [909] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 2), [911] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 2), [913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 2), - [915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), + [915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), [917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__module, 1, .production_id = 5), [919] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__module, 1, .production_id = 5), - [921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), - [923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3154), - [925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1909), - [927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(359), - [929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(960), - [931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), - [933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2496), - [935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(829), - [937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 110), - [939] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 110), - [941] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, .production_id = 110), - [943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, .production_id = 110), - [945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), - [947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 3), - [949] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 3), - [951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 131), - [953] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 131), - [955] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 5, .production_id = 131), - [957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 5, .production_id = 131), - [959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), - [961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 96), - [963] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 96), - [965] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, .production_id = 96), - [967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, .production_id = 96), - [969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), - [971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 5, .production_id = 131), - [973] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 5, .production_id = 131), - [975] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 5, .production_id = 131), - [977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 5, .production_id = 131), - [979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), + [921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), + [923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3036), + [925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1914), + [927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(324), + [929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(965), + [931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2509), + [935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(929), + [937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 3), + [939] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 3), + [941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2), + [943] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2), + [945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nested_identifier, 3), + [947] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nested_identifier, 3), + [949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 96), + [951] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 96), + [953] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, .production_id = 96), + [955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, .production_id = 96), + [957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), + [959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 161), + [961] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 161), + [963] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 6, .production_id = 161), + [965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 6, .production_id = 161), + [967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), + [969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 110), + [971] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 110), + [973] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, .production_id = 110), + [975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, .production_id = 110), + [977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), + [979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), [981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 138), [983] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 138), [985] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, .production_id = 138), [987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, .production_id = 138), - [989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), - [991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3), - [993] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3), - [995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2), - [997] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2), - [999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__module, 2, .production_id = 27), - [1001] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__module, 2, .production_id = 27), - [1003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(398), - [1005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), - [1007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3125), - [1009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), - [1011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2161), - [1013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 6, .production_id = 157), - [1015] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 6, .production_id = 157), - [1017] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 6, .production_id = 157), - [1019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 6, .production_id = 157), - [1021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), - [1023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 128), - [1025] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 128), - [1027] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, .production_id = 128), - [1029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, .production_id = 128), - [1031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), - [1033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 160), - [1035] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 160), - [1037] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 6, .production_id = 160), - [1039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 6, .production_id = 160), - [1041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), - [1043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 137), - [1045] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 137), - [1047] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, .production_id = 137), - [1049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, .production_id = 137), - [1051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), - [1053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 3, .production_id = 50), - [1055] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 3, .production_id = 50), - [1057] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, .production_id = 50), - [1059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, .production_id = 50), - [1061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), - [1063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 97), - [1065] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 97), - [1067] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, .production_id = 97), - [1069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, .production_id = 97), - [1071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), - [1073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), - [1075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_body, 2), - [1077] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_body, 2), - [1079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), - [1081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 4), - [1083] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 4), - [1085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_body, 3), - [1087] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_body, 3), - [1089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nested_identifier, 3), - [1091] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nested_identifier, 3), - [1093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration, 1), - [1095] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration, 1), - [1097] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1), - [1099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1), - [1101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, .production_id = 104), - [1103] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 4, .production_id = 104), - [1105] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 4, .production_id = 104), - [1107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 4, .production_id = 104), - [1109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), + [989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), + [991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_body, 3), + [993] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_body, 3), + [995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__module, 2, .production_id = 27), + [997] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__module, 2, .production_id = 27), + [999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3), + [1001] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3), + [1003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 4), + [1005] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 4), + [1007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_body, 2), + [1009] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_body, 2), + [1011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), + [1013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(373), + [1015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), + [1017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3178), + [1019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), + [1021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2231), + [1023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 6, .production_id = 158), + [1025] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 6, .production_id = 158), + [1027] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 6, .production_id = 158), + [1029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 6, .production_id = 158), + [1031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), + [1033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration, 1), + [1035] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration, 1), + [1037] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1), + [1039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1), + [1041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 97), + [1043] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 97), + [1045] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, .production_id = 97), + [1047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, .production_id = 97), + [1049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), + [1051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, .production_id = 104), + [1053] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 4, .production_id = 104), + [1055] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 4, .production_id = 104), + [1057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 4, .production_id = 104), + [1059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), + [1061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 128), + [1063] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 128), + [1065] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, .production_id = 128), + [1067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, .production_id = 128), + [1069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), + [1071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 137), + [1073] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 137), + [1075] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, .production_id = 137), + [1077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, .production_id = 137), + [1079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), + [1081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 3, .production_id = 50), + [1083] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 3, .production_id = 50), + [1085] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, .production_id = 50), + [1087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, .production_id = 50), + [1089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), + [1091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 131), + [1093] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 131), + [1095] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 5, .production_id = 131), + [1097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 5, .production_id = 131), + [1099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), + [1101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 5, .production_id = 131), + [1103] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 5, .production_id = 131), + [1105] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 5, .production_id = 131), + [1107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 5, .production_id = 131), + [1109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), [1111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_internal_module, 2, .production_id = 6), [1113] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_internal_module, 2, .production_id = 6), - [1115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(316), - [1117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), - [1119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(331), - [1121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), + [1115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(370), + [1117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), + [1119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(388), + [1121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), [1123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), - [1125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2533), - [1127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(317), - [1129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), - [1131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(387), - [1133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), - [1135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2997), - [1137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), - [1139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2209), - [1141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(793), - [1143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), - [1145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2033), - [1147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), - [1149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), - [1151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), - [1153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), - [1155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), - [1157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), - [1159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), - [1161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), - [1163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(786), - [1165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1501), - [1167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(487), - [1169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), - [1171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(736), - [1173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(735), - [1175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(644), - [1177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(192), - [1179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(190), - [1181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(468), - [1183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1976), + [1125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2596), + [1127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(397), + [1129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), + [1131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(795), + [1133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [1135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2034), + [1137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), + [1139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(304), + [1141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), + [1143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3057), + [1145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), + [1147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2200), + [1149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), + [1151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), + [1153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), + [1155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), + [1157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), + [1159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), + [1161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), + [1163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(736), + [1165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(744), + [1167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(642), + [1169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(211), + [1171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(210), + [1173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(468), + [1175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), + [1177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(775), + [1179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1488), + [1181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(488), + [1183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2005), [1185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_predefined_type, 1), [1187] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_predefined_type, 1), - [1189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2851), - [1191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), - [1193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(326), - [1195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3130), - [1197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2159), - [1199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2160), - [1201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), - [1203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3127), - [1205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3126), - [1207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2195), - [1209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2147), - [1211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2072), + [1189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2829), + [1191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), + [1193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(327), + [1195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3183), + [1197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2241), + [1199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2232), + [1201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), + [1203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3180), + [1205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3179), + [1207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2153), + [1209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2224), + [1211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2082), [1213] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1, .production_id = 1), REDUCE(sym__property_name, 1, .production_id = 7), - [1216] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, .production_id = 7), SHIFT(36), - [1219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [1216] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, .production_id = 7), SHIFT(30), + [1219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), [1221] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1, .production_id = 1), REDUCE(sym__property_name, 1, .production_id = 7), - [1224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3125), - [1226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3124), - [1228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3123), - [1230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2857), - [1232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3166), - [1234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1811), - [1236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2202), - [1238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3164), - [1240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3163), - [1242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), - [1244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), - [1246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2430), - [1248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(795), - [1250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(768), - [1252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(646), - [1254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(488), - [1256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(368), - [1258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), - [1260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1810), - [1262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), - [1264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2442), - [1266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), - [1268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 1), - [1270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), - [1272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), - [1274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), - [1276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1661), - [1278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), - [1280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1816), - [1282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(332), - [1284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2137), - [1286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2891), - [1288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), - [1290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(702), - [1292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(947), - [1294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(945), - [1296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(656), - [1298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(391), - [1300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(512), - [1302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(727), - [1304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(713), - [1306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(679), - [1308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(730), - [1310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2132), - [1312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(721), - [1314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(704), - [1316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), - [1318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(699), - [1320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(700), - [1322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(666), - [1324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(711), - [1326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(671), - [1328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), - [1330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), - [1332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), - [1334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(667), - [1336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(663), - [1338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(627), - [1340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3128), - [1342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(459), - [1344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), - [1346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1008), - [1348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(761), - [1350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(732), - [1352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(641), - [1354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3045), - [1356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(478), - [1358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2477), - [1360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2489), - [1362] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1, .production_id = 1), SHIFT(1881), - [1365] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__expression, 1, .production_id = 1), REDUCE(sym__property_name, 1, .production_id = 7), SHIFT(1789), - [1369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), - [1371] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym__expression, 1, .production_id = 1), REDUCE(sym__property_name, 1, .production_id = 7), SHIFT(2962), - [1375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2111), - [1377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2189), - [1379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1840), - [1381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), - [1383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3091), - [1385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(705), - [1387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(707), - [1389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(637), - [1391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(463), - [1393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(893), - [1395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(903), - [1397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(655), - [1399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(498), - [1401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(658), - [1403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(950), - [1405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(661), - [1407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(511), - [1409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), - [1411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nested_type_identifier, 3, .production_id = 94), - [1413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nested_type_identifier, 3, .production_id = 94), - [1415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(728), - [1417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(746), - [1419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(638), - [1421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(471), - [1423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(175), - [1425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), - [1427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1306), - [1429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(710), - [1431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(720), - [1433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(636), - [1435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(465), - [1437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(182), - [1439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), - [1441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1383), - [1443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(687), - [1445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(690), - [1447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(632), - [1449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(460), - [1451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(933), - [1453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(876), - [1455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(651), - [1457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(495), - [1459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), - [1461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 3), - [1463] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 3), - [1465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2), - [1467] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2), - [1469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, .production_id = 14), - [1471] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, .production_id = 14), - [1473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(744), - [1475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 5), - [1477] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 5), - [1479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), - [1481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(751), - [1483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), - [1485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), - [1487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(951), - [1489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 4), - [1491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 4), - [1493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1579), - [1495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(733), - [1497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tuple_type_body, 3), - [1499] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__tuple_type_body, 3), - [1501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 2), - [1503] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 2), - [1505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 3), - [1507] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 3), + [1224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3178), + [1226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3177), + [1228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3176), + [1230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2830), + [1232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3201), + [1234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1812), + [1236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2229), + [1238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3200), + [1240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3199), + [1242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), + [1244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), + [1246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(797), + [1248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(791), + [1250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(653), + [1252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2364), + [1254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(492), + [1256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 1), + [1258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(333), + [1260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2096), + [1262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2961), + [1264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2477), + [1266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1641), + [1268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1823), + [1270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1564), + [1272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(391), + [1274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), + [1276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), + [1278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1566), + [1280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), + [1282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), + [1284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), + [1286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1811), + [1288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), + [1290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(709), + [1292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(703), + [1294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(721), + [1296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), + [1298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(696), + [1300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(761), + [1302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(764), + [1304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(714), + [1306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(685), + [1308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2097), + [1310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(664), + [1312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(665), + [1314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(952), + [1316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(951), + [1318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(671), + [1320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(321), + [1322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(516), + [1324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(706), + [1326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(711), + [1328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), + [1330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), + [1332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), + [1334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(725), + [1336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(712), + [1338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(639), + [1340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3097), + [1342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(466), + [1344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(255), + [1346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), + [1348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1460), + [1350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), + [1352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(693), + [1354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(695), + [1356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(637), + [1358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3068), + [1360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(460), + [1362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(195), + [1364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), + [1366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1265), + [1368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), + [1370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(715), + [1372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(707), + [1374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(640), + [1376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3067), + [1378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(465), + [1380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), + [1382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1010), + [1384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2499), + [1386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2594), + [1388] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1, .production_id = 1), SHIFT(1892), + [1391] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__expression, 1, .production_id = 1), REDUCE(sym__property_name, 1, .production_id = 7), SHIFT(1793), + [1395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [1397] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym__expression, 1, .production_id = 1), REDUCE(sym__property_name, 1, .production_id = 7), SHIFT(2883), + [1401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2135), + [1403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2218), + [1405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1831), + [1407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(743), + [1409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(753), + [1411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(649), + [1413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(479), + [1415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(892), + [1417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(898), + [1419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(657), + [1421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(495), + [1423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(682), + [1425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(667), + [1427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(631), + [1429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(459), + [1431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(669), + [1433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(949), + [1435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(675), + [1437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(514), + [1439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(749), + [1441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(755), + [1443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(646), + [1445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(471), + [1447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(890), + [1449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(815), + [1451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(658), + [1453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(498), + [1455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nested_type_identifier, 3, .production_id = 94), + [1457] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nested_type_identifier, 3, .production_id = 94), + [1459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1553), + [1461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), + [1463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), + [1465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 5), + [1467] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 5), + [1469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(954), + [1471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), + [1473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(765), + [1475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1572), + [1477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(742), + [1479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(756), + [1481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 4), + [1483] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 4), + [1485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 3), + [1487] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 3), + [1489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2), + [1491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2), + [1493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, .production_id = 14), + [1495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, .production_id = 14), + [1497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_intersection_type, 3), + [1499] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_intersection_type, 3), + [1501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_query, 2), + [1503] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_query, 2), + [1505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 2), + [1507] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 2), [1509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type, 3), [1511] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_type, 3), - [1513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_existential_type, 1), - [1515] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_existential_type, 1), - [1517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_type_query, 2), - [1519] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_type_query, 2), - [1521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 2), - [1523] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 2), + [1513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 2), + [1515] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 2), + [1517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_type, 5), + [1519] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_type, 5), + [1521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lookup_type, 4), + [1523] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lookup_type, 4), [1525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__number, 2, .production_id = 8), [1527] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__number, 2, .production_id = 8), [1529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type, 2), @@ -159081,2143 +159629,2157 @@ static TSParseActionEntry ts_parse_actions[] = { [1535] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_intersection_type, 2), [1537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_flow_maybe_type, 2), [1539] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_flow_maybe_type, 2), - [1541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), - [1543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 5), - [1545] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 5), - [1547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lookup_type, 4), - [1549] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lookup_type, 4), - [1551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tuple_type_body, 2), - [1553] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__tuple_type_body, 2), - [1555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_type, 3), - [1557] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_type, 3), - [1559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 4), - [1561] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 4), - [1563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 3), - [1565] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 3), - [1567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_type, 4), - [1569] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_type, 4), - [1571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 4), - [1573] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 4), - [1575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tuple_type_body, 4), - [1577] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__tuple_type_body, 4), - [1579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_intersection_type, 3), - [1581] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_intersection_type, 3), - [1583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_query, 2), - [1585] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_query, 2), - [1587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_type, 5), - [1589] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_type, 5), - [1591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 1), - [1593] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 1), - [1595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_literal_type, 1), - [1597] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_literal_type, 1), - [1599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1), - [1601] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1), - [1603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 6), - [1605] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 6), - [1607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2173), - [1609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1830), - [1611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1857), - [1613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1826), - [1615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3134), - [1617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3135), + [1541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), + [1543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1), + [1545] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1), + [1547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_literal_type, 1), + [1549] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_literal_type, 1), + [1551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 1), + [1553] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 1), + [1555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_type, 4), + [1557] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_type, 4), + [1559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 6), + [1561] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 6), + [1563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 4), + [1565] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 4), + [1567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_type_query, 2), + [1569] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_type_query, 2), + [1571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tuple_type_body, 4), + [1573] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__tuple_type_body, 4), + [1575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_existential_type, 1), + [1577] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_existential_type, 1), + [1579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 4), + [1581] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 4), + [1583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 3), + [1585] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 3), + [1587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tuple_type_body, 2), + [1589] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__tuple_type_body, 2), + [1591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 3), + [1593] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 3), + [1595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tuple_type_body, 3), + [1597] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__tuple_type_body, 3), + [1599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 5), + [1601] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 5), + [1603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_type, 3), + [1605] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_type, 3), + [1607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2219), + [1609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1829), + [1611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1855), + [1613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1830), + [1615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3072), + [1617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3076), [1619] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 2, .production_id = 15), [1621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 2, .production_id = 15), - [1623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), - [1625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3121), - [1627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2130), - [1629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3037), - [1631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3033), - [1633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2071), - [1635] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1, .production_id = 1), SHIFT(1789), - [1638] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1, .production_id = 1), SHIFT(2962), + [1623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [1625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3103), + [1627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2138), + [1629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3075), + [1631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3080), + [1633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2136), + [1635] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1, .production_id = 1), SHIFT(1793), + [1638] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1, .production_id = 1), SHIFT(2883), [1641] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accessibility_modifier, 1), [1643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accessibility_modifier, 1), - [1645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3173), - [1647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3172), - [1649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3063), - [1651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3061), - [1653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [1655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2997), - [1657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2113), + [1645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3193), + [1647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3192), + [1649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3089), + [1651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3070), + [1653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), + [1655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3057), + [1657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2108), [1659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_type_query, 2, .production_id = 48), [1661] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_type_query, 2, .production_id = 48), - [1663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3200), - [1665] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1, .production_id = 1), SHIFT(242), - [1668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(242), - [1670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__primary_type, 1, .production_id = 14), - [1672] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__primary_type, 1, .production_id = 14), - [1674] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__primary_type, 1, .production_id = 14), SHIFT(925), - [1677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3184), - [1679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3071), - [1681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3069), - [1683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1952), - [1685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2364), - [1687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(712), - [1689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [1691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2962), - [1693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3012), - [1695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2044), - [1697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1873), - [1699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2046), - [1701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(616), - [1703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2110), - [1705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3006), - [1707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3005), - [1709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 2, .production_id = 13), - [1711] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 2, .production_id = 13), - [1713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2717), - [1715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2989), - [1717] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1, .production_id = 1), REDUCE(sym__parameter_name, 1, .production_id = 1), - [1720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2453), - [1722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1604), - [1724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), - [1726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), - [1728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 1, .production_id = 1), - [1730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), - [1732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), - [1734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__primary_type, 1), - [1736] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__primary_type, 1), - [1738] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__primary_type, 1), SHIFT(925), - [1741] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_nested_identifier, 3), REDUCE(sym_nested_type_identifier, 3, .production_id = 94), - [1744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), - [1746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4), - [1748] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4), - [1750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), - [1752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), - [1754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(894), - [1756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), - [1758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_type, 7, .production_id = 184), - [1760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_type, 7, .production_id = 184), - [1762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ambient_declaration, 6, .production_id = 159), - [1764] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ambient_declaration, 6, .production_id = 159), - [1766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), + [1663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3229), + [1665] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1, .production_id = 1), SHIFT(208), + [1668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(208), + [1670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1969), + [1672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2349), + [1674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(699), + [1676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [1678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2883), + [1680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3126), + [1682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2033), + [1684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1881), + [1686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2032), + [1688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(620), + [1690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3090), + [1692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3088), + [1694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3197), + [1696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2104), + [1698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3020), + [1700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3023), + [1702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__primary_type, 1, .production_id = 14), + [1704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__primary_type, 1, .production_id = 14), + [1706] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__primary_type, 1, .production_id = 14), SHIFT(878), + [1709] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1, .production_id = 1), REDUCE(sym__parameter_name, 1, .production_id = 1), + [1712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__primary_type, 1), + [1714] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__primary_type, 1), + [1716] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__primary_type, 1), SHIFT(878), + [1719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), + [1721] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_nested_identifier, 3), REDUCE(sym_nested_type_identifier, 3, .production_id = 94), + [1724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 1, .production_id = 1), + [1726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2358), + [1728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), + [1730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), + [1732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), + [1734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 2, .production_id = 13), + [1736] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 2, .production_id = 13), + [1738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2664), + [1740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2865), + [1742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), + [1744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), + [1746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), + [1748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4), + [1750] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4), + [1752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), + [1754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), + [1756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(816), + [1758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), + [1760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_type, 7, .production_id = 188), + [1762] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_type, 7, .production_id = 188), + [1764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ambient_declaration, 6, .production_id = 160), + [1766] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ambient_declaration, 6, .production_id = 160), [1768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3), [1770] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3), - [1772] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1, .production_id = 1), SHIFT(211), - [1775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(211), - [1777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, .production_id = 43), - [1779] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, .production_id = 43), - [1781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), - [1783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3095), + [1772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, .production_id = 43), + [1774] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, .production_id = 43), + [1776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), + [1778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3052), + [1780] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1, .production_id = 1), SHIFT(196), + [1783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(196), [1785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_statement, 1), [1787] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_statement, 1), - [1789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 3, .production_id = 35), - [1791] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 3, .production_id = 35), - [1793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(38), - [1795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2), - [1797] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2), - [1799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 5, .production_id = 167), - [1801] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 5, .production_id = 167), - [1803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 5, .production_id = 168), - [1805] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 5, .production_id = 168), - [1807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 5, .production_id = 169), - [1809] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 5, .production_id = 169), - [1811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 2, .production_id = 13), - [1813] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 2, .production_id = 13), - [1815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 2), - [1817] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 2), - [1819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 5, .production_id = 136), - [1821] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 5, .production_id = 136), - [1823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 3, .production_id = 46), - [1825] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 3, .production_id = 46), - [1827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 3), - [1829] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 3), - [1831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2), - [1833] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2), - [1835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_statement, 3), - [1837] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_statement, 3), - [1839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_body, 2), - [1841] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_body, 2), - [1843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_alias, 5), - [1845] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_alias, 5), - [1847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, .production_id = 86), - [1849] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, .production_id = 86), - [1851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 5, .production_id = 118), - [1853] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 5, .production_id = 118), - [1855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 4, .production_id = 85), - [1857] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 4, .production_id = 85), - [1859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ambient_declaration, 2), - [1861] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ambient_declaration, 2), - [1863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lexical_declaration, 4), - [1865] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lexical_declaration, 4), - [1867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 2, .production_id = 6), - [1869] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module, 2, .production_id = 6), - [1871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 3, .production_id = 45), - [1873] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 3, .production_id = 45), - [1875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 4), - [1877] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 4), - [1879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 166), - [1881] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 166), - [1883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, .production_id = 44), - [1885] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, .production_id = 44), - [1887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 3, .production_id = 42), - [1889] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 3, .production_id = 42), - [1891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_body, 3), - [1893] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_body, 3), - [1895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 2), - [1897] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 2), - [1899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4), - [1901] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4), - [1903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_statement, 4, .production_id = 87), - [1905] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_statement, 4, .production_id = 87), - [1907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias_declaration, 5, .production_id = 117), - [1909] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_alias_declaration, 5, .production_id = 117), - [1911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 2, .production_id = 4), - [1913] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 2, .production_id = 4), - [1915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_debugger_statement, 2), - [1917] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_debugger_statement, 2), - [1919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_clause, 2, .production_id = 13), - [1921] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_clause, 2, .production_id = 13), - [1923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 4, .production_id = 92), - [1925] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 4, .production_id = 92), - [1927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 138), - [1929] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 138), - [1931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_statement, 3, .dynamic_precedence = -1, .production_id = 23), - [1933] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_labeled_statement, 3, .dynamic_precedence = -1, .production_id = 23), - [1935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2), - [1937] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2), - [1939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_statement, 3, .production_id = 37), - [1941] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_statement, 3, .production_id = 37), - [1943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 5, .production_id = 128), - [1945] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 5, .production_id = 128), - [1947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 137), - [1949] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 137), - [1951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 4), - [1953] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 4), - [1955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias_declaration, 6, .production_id = 142), - [1957] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_alias_declaration, 6, .production_id = 142), - [1959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 3), - [1961] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 3), - [1963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 6, .production_id = 158), - [1965] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 6, .production_id = 158), - [1967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 6, .production_id = 131), - [1969] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 6, .production_id = 131), - [1971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, .production_id = 131), - [1973] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, .production_id = 131), - [1975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 5), - [1977] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 5), - [1979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_statement, 3, .production_id = 36), - [1981] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_statement, 3, .production_id = 36), - [1983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 128), - [1985] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 128), - [1987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 3), - [1989] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 3), - [1991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lexical_declaration, 3), - [1993] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lexical_declaration, 3), - [1995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ambient_declaration, 3), - [1997] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ambient_declaration, 3), - [1999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 7, .production_id = 157), - [2001] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 7, .production_id = 157), - [2003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 3, .production_id = 50), - [2005] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 3, .production_id = 50), - [2007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 96), - [2009] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 96), - [2011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 3, .production_id = 62), - [2013] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 3, .production_id = 62), - [2015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 3), - [2017] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 3), - [2019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 5), - [2021] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 5), - [2023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 97), - [2025] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 97), - [2027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 3), - [2029] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 3), - [2031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature, 5, .production_id = 130), - [2033] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature, 5, .production_id = 130), - [2035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, .production_id = 160), - [2037] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, .production_id = 160), - [2039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 2), - [2041] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 2), - [2043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, .production_id = 97), - [2045] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, .production_id = 97), - [2047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, .production_id = 72), - [2049] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, .production_id = 72), - [2051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, .production_id = 71), - [2053] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, .production_id = 71), - [2055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, .production_id = 96), - [2057] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, .production_id = 96), - [2059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 4, .production_id = 109), - [2061] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 4, .production_id = 109), - [2063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 3, .production_id = 69), - [2065] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 3, .production_id = 69), - [2067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 3, .production_id = 46), - [2069] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 3, .production_id = 46), - [2071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 5, .production_id = 133), - [2073] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 5, .production_id = 133), - [2075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 50), - [2077] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 50), - [2079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 5, .production_id = 122), - [2081] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 5, .production_id = 122), - [2083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 104), - [2085] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 104), - [2087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, .production_id = 145), - [2089] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, .production_id = 145), - [2091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 110), - [2093] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 110), - [2095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature, 4, .production_id = 103), - [2097] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature, 4, .production_id = 103), - [2099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 5, .production_id = 134), - [2101] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 5, .production_id = 134), - [2103] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 5, .production_id = 146), - [2105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 5, .production_id = 146), - [2107] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 6, .production_id = 163), - [2109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 6, .production_id = 163), - [2111] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 6, .production_id = 162), - [2113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 6, .production_id = 162), - [2115] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 5, .production_id = 143), - [2117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 5, .production_id = 143), - [2119] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 5, .production_id = 147), - [2121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 5, .production_id = 147), - [2123] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 4), - [2125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 4), + [1789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2), + [1791] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2), + [1793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 3, .production_id = 35), + [1795] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 3, .production_id = 35), + [1797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(47), + [1799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 5, .production_id = 170), + [1801] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 5, .production_id = 170), + [1803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 5, .production_id = 171), + [1805] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 5, .production_id = 171), + [1807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 2, .production_id = 13), + [1809] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 2, .production_id = 13), + [1811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 5, .production_id = 172), + [1813] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 5, .production_id = 172), + [1815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_statement, 4, .production_id = 87), + [1817] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_statement, 4, .production_id = 87), + [1819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 3), + [1821] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 3), + [1823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 104), + [1825] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 104), + [1827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 3, .production_id = 69), + [1829] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 3, .production_id = 69), + [1831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 169), + [1833] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 169), + [1835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 5, .production_id = 136), + [1837] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 5, .production_id = 136), + [1839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 6, .production_id = 163), + [1841] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 6, .production_id = 163), + [1843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias_declaration, 5, .production_id = 117), + [1845] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_alias_declaration, 5, .production_id = 117), + [1847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 7, .production_id = 158), + [1849] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 7, .production_id = 158), + [1851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 5, .production_id = 133), + [1853] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 5, .production_id = 133), + [1855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 50), + [1857] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 50), + [1859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_statement, 3, .production_id = 37), + [1861] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_statement, 3, .production_id = 37), + [1863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2), + [1865] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2), + [1867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ambient_declaration, 2), + [1869] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ambient_declaration, 2), + [1871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 6, .production_id = 162), + [1873] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 6, .production_id = 162), + [1875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 138), + [1877] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 138), + [1879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 5), + [1881] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 5), + [1883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, .production_id = 161), + [1885] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, .production_id = 161), + [1887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature, 5, .production_id = 130), + [1889] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature, 5, .production_id = 130), + [1891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_debugger_statement, 2), + [1893] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_debugger_statement, 2), + [1895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 7, .production_id = 181), + [1897] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 7, .production_id = 181), + [1899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 2, .production_id = 4), + [1901] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 2, .production_id = 4), + [1903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 4, .production_id = 109), + [1905] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 4, .production_id = 109), + [1907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias_declaration, 6, .production_id = 143), + [1909] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_alias_declaration, 6, .production_id = 143), + [1911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 2), + [1913] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 2), + [1915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 2, .production_id = 6), + [1917] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module, 2, .production_id = 6), + [1919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 2), + [1921] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 2), + [1923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 3), + [1925] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 3), + [1927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 3), + [1929] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 3), + [1931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, .production_id = 96), + [1933] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, .production_id = 96), + [1935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature, 4, .production_id = 103), + [1937] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature, 4, .production_id = 103), + [1939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 5), + [1941] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 5), + [1943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, .production_id = 97), + [1945] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, .production_id = 97), + [1947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 2), + [1949] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 2), + [1951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 128), + [1953] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 128), + [1955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 137), + [1957] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 137), + [1959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 4, .production_id = 92), + [1961] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 4, .production_id = 92), + [1963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_clause, 2, .production_id = 13), + [1965] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_clause, 2, .production_id = 13), + [1967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 3), + [1969] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 3), + [1971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 5, .production_id = 128), + [1973] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 5, .production_id = 128), + [1975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 4), + [1977] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 4), + [1979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, .production_id = 72), + [1981] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, .production_id = 72), + [1983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_body, 3), + [1985] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_body, 3), + [1987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_statement, 3, .production_id = 36), + [1989] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_statement, 3, .production_id = 36), + [1991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, .production_id = 71), + [1993] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, .production_id = 71), + [1995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 97), + [1997] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 97), + [1999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ambient_declaration, 3), + [2001] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ambient_declaration, 3), + [2003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 5, .production_id = 134), + [2005] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 5, .production_id = 134), + [2007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 3, .production_id = 50), + [2009] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 3, .production_id = 50), + [2011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 96), + [2013] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 96), + [2015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 6, .production_id = 159), + [2017] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 6, .production_id = 159), + [2019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 3, .production_id = 62), + [2021] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 3, .production_id = 62), + [2023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 6, .production_id = 131), + [2025] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 6, .production_id = 131), + [2027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 5, .production_id = 118), + [2029] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 5, .production_id = 118), + [2031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 3, .production_id = 42), + [2033] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 3, .production_id = 42), + [2035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2), + [2037] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2), + [2039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_body, 2), + [2041] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_body, 2), + [2043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, .production_id = 86), + [2045] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, .production_id = 86), + [2047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 4, .production_id = 85), + [2049] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 4, .production_id = 85), + [2051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lexical_declaration, 4), + [2053] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lexical_declaration, 4), + [2055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, .production_id = 131), + [2057] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, .production_id = 131), + [2059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lexical_declaration, 3), + [2061] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lexical_declaration, 3), + [2063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 5, .production_id = 122), + [2065] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 5, .production_id = 122), + [2067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_alias, 5), + [2069] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_alias, 5), + [2071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, .production_id = 146), + [2073] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, .production_id = 146), + [2075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 4), + [2077] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 4), + [2079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 5, .production_id = 140), + [2081] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 5, .production_id = 140), + [2083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_statement, 3, .dynamic_precedence = -1, .production_id = 23), + [2085] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_labeled_statement, 3, .dynamic_precedence = -1, .production_id = 23), + [2087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, .production_id = 44), + [2089] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, .production_id = 44), + [2091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4), + [2093] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4), + [2095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 3, .production_id = 45), + [2097] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 3, .production_id = 45), + [2099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_statement, 3), + [2101] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_statement, 3), + [2103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 110), + [2105] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 110), + [2107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 3), + [2109] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 3), + [2111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 3, .production_id = 46), + [2113] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 3, .production_id = 46), + [2115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 3, .production_id = 46), + [2117] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 3, .production_id = 46), + [2119] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 6, .production_id = 165), + [2121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 6, .production_id = 165), + [2123] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 5, .production_id = 145), + [2125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 5, .production_id = 145), [2127] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3), [2129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3), - [2131] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 6, .production_id = 165), - [2133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 6, .production_id = 165), - [2135] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 6, .production_id = 164), - [2137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 6, .production_id = 164), - [2139] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 5, .production_id = 144), - [2141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 5, .production_id = 144), - [2143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1031), - [2145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), - [2147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(866), - [2149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(68), - [2151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2560), - [2153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2561), - [2155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(516), - [2157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), - [2159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(817), - [2161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), - [2163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(881), - [2165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1022), - [2167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1595), - [2169] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 2, .production_id = 16), - [2171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(336), - [2173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 2, .production_id = 16), - [2175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), - [2177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3120), - [2179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2228), - [2181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__augmented_assignment_lhs, 1), - [2183] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, .production_id = 58), - [2185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, .production_id = 58), - [2187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(318), - [2189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 1, .production_id = 5), - [2191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2882), - [2193] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(213), - [2196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), - [2198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), - [2200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), - [2202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2648), - [2204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(270), - [2206] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1), REDUCE(sym__primary_type, 1, .production_id = 14), - [2209] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(824), - [2212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3169), - [2214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), - [2216] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), REDUCE(sym__primary_type, 1, .production_id = 14), - [2219] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(925), - [2222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3179), - [2224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 4, .production_id = 74), - [2226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 4, .production_id = 74), - [2228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3167), - [2230] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_nested_identifier, 3), REDUCE(sym_member_expression, 3, .production_id = 58), - [2233] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_member_expression, 3, .production_id = 58), REDUCE(sym_nested_type_identifier, 3, .production_id = 94), - [2236] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_nested_identifier, 3), REDUCE(sym_member_expression, 3, .production_id = 58), - [2239] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 4, .production_id = 107), - [2241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 4, .production_id = 107), - [2243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3191), - [2245] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, .production_id = 24), - [2247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, .production_id = 24), - [2249] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_member_expression, 3, .production_id = 58), REDUCE(sym_nested_type_identifier, 3, .production_id = 94), - [2252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_non_null_expression, 2), - [2254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_non_null_expression, 2), - [2256] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 5, .production_id = 132), - [2258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 5, .production_id = 132), - [2260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 5, .production_id = 115), - [2262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 5, .production_id = 115), - [2264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(259), - [2266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), - [2268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3203), - [2270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), - [2272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2152), - [2274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(350), - [2276] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1), REDUCE(sym__property_name, 1, .production_id = 7), - [2279] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), REDUCE(sym__property_name, 1, .production_id = 7), - [2282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3079), - [2284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 2, .production_id = 38), - [2286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2053), - [2288] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1, .production_id = 1), REDUCE(sym_predefined_type, 1), - [2291] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1, .production_id = 1), REDUCE(sym_predefined_type, 1), - [2294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3074), - [2296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2002), - [2298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(963), - [2300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1901), - [2302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), - [2304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), - [2306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1785), - [2308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), - [2310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), - [2312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1657), - [2314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2490), - [2316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3133), - [2318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2518), - [2320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2519), - [2322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1937), - [2324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1653), - [2326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1721), - [2328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1787), - [2330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1639), - [2332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), - [2334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), - [2336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), - [2338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), - [2340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1968), - [2342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1979), - [2344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(962), - [2346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2037), - [2348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1631), - [2350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1649), - [2352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1709), - [2354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1783), - [2356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1650), - [2358] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__parameter_name, 1), SHIFT(270), - [2361] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1), REDUCE(sym__parameter_name, 1), - [2364] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__expression, 1), REDUCE(sym__parameter_name, 1), REDUCE(sym__primary_type, 1, .production_id = 14), - [2368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3198), - [2370] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), REDUCE(sym__parameter_name, 1), - [2373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3004), - [2375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3183), - [2377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(402), - [2379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [2381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3161), - [2383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), - [2385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2233), - [2387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(302), - [2389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3196), - [2391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [2393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extends_clause, 2, .production_id = 48), - [2395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), - [2397] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(860), - [2400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3118), - [2402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_clause, 2, .production_id = 48), - [2404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), - [2406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3188), - [2408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [2410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3094), - [2412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3178), - [2414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2039), - [2416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(417), - [2418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), - [2420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3009), - [2422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1997), - [2424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(964), - [2426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), - [2428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1666), - [2430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1673), - [2432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1712), - [2434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1749), - [2436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1676), - [2438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1996), - [2440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(961), - [2442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), - [2444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1693), - [2446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1689), - [2448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1717), - [2450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1778), - [2452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1664), - [2454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3168), - [2456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(990), - [2458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), - [2460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(958), - [2462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2562), - [2464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), + [2131] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 6, .production_id = 167), + [2133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 6, .production_id = 167), + [2135] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 6, .production_id = 166), + [2137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 6, .production_id = 166), + [2139] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 5, .production_id = 147), + [2141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 5, .production_id = 147), + [2143] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 5, .production_id = 148), + [2145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 5, .production_id = 148), + [2147] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 4), + [2149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 4), + [2151] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 6, .production_id = 168), + [2153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 6, .production_id = 168), + [2155] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 5, .production_id = 144), + [2157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 5, .production_id = 144), + [2159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1067), + [2161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [2163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(828), + [2165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(68), + [2167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2607), + [2169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2613), + [2171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(513), + [2173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [2175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(829), + [2177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [2179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(881), + [2181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1068), + [2183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1613), + [2185] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 2, .production_id = 16), + [2187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(348), + [2189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 2, .production_id = 16), + [2191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), + [2193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3066), + [2195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2256), + [2197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__augmented_assignment_lhs, 1), + [2199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2745), + [2201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(296), + [2203] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1), REDUCE(sym__primary_type, 1, .production_id = 14), + [2206] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(878), + [2209] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), REDUCE(sym__primary_type, 1, .production_id = 14), + [2212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3124), + [2214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [2216] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 5, .production_id = 115), + [2218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 5, .production_id = 115), + [2220] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(857), + [2223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3184), + [2225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3209), + [2227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(393), + [2229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 1, .production_id = 5), + [2231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2919), + [2233] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(190), + [2236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [2238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), + [2240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [2242] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 4, .production_id = 74), + [2244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 4, .production_id = 74), + [2246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3186), + [2248] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 5, .production_id = 132), + [2250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 5, .production_id = 132), + [2252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, .production_id = 24), + [2254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, .production_id = 24), + [2256] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, .production_id = 58), + [2258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, .production_id = 58), + [2260] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_member_expression, 3, .production_id = 58), REDUCE(sym_nested_type_identifier, 3, .production_id = 94), + [2263] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_member_expression, 3, .production_id = 58), REDUCE(sym_nested_type_identifier, 3, .production_id = 94), + [2266] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_nested_identifier, 3), REDUCE(sym_member_expression, 3, .production_id = 58), + [2269] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_non_null_expression, 2), + [2271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_non_null_expression, 2), + [2273] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_nested_identifier, 3), REDUCE(sym_member_expression, 3, .production_id = 58), + [2276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 4, .production_id = 107), + [2278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 4, .production_id = 107), + [2280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(261), + [2282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), + [2284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3220), + [2286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [2288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2254), + [2290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(351), + [2292] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1), REDUCE(sym__property_name, 1, .production_id = 7), + [2295] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), REDUCE(sym__property_name, 1, .production_id = 7), + [2298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3060), + [2300] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1, .production_id = 1), REDUCE(sym_predefined_type, 1), + [2303] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1, .production_id = 1), REDUCE(sym_predefined_type, 1), + [2306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3025), + [2308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 2, .production_id = 38), + [2310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2055), + [2312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(406), + [2314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), + [2316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3175), + [2318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), + [2320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2187), + [2322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1976), + [2324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(966), + [2326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1893), + [2328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), + [2330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), + [2332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1788), + [2334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), + [2336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), + [2338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1642), + [2340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2563), + [2342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3151), + [2344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2536), + [2346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2537), + [2348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1949), + [2350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1639), + [2352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1715), + [2354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1791), + [2356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1637), + [2358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), + [2360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2004), + [2362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(963), + [2364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2041), + [2366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1691), + [2368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1651), + [2370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1724), + [2372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1770), + [2374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1688), + [2376] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__parameter_name, 1), SHIFT(296), + [2379] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1), REDUCE(sym__parameter_name, 1), + [2382] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__expression, 1), REDUCE(sym__parameter_name, 1), REDUCE(sym__primary_type, 1, .production_id = 14), + [2386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3215), + [2388] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), REDUCE(sym__parameter_name, 1), + [2391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3203), + [2393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2008), + [2395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(962), + [2397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), + [2399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1697), + [2401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1699), + [2403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1713), + [2405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1771), + [2407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1700), + [2409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(322), + [2411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_clause, 2, .production_id = 48), + [2413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [2415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3087), + [2417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [2419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1993), + [2421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(968), + [2423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), + [2425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1692), + [2427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1711), + [2429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1720), + [2431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1754), + [2433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1646), + [2435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3195), + [2437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(408), + [2439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3189), + [2441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), + [2443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3185), + [2445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3168), + [2447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3211), + [2449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extends_clause, 2, .production_id = 48), + [2451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [2453] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(852), + [2456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3231), + [2458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), + [2460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), + [2462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), + [2464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2007), [2466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2045), - [2468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2536), - [2470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), - [2472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), - [2474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), - [2476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3088), - [2478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1013), - [2480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), - [2482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1035), - [2484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1034), - [2486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(831), - [2488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2199), - [2490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), - [2492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_clause_repeat1, 2, .production_id = 48), - [2494] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_extends_clause_repeat1, 2, .production_id = 48), - [2496] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1), REDUCE(sym__rest_identifier, 2), - [2499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__rest_identifier, 2), - [2501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), - [2503] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(243), - [2506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), - [2508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1276), - [2510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), - [2512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(965), - [2514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2596), - [2516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), - [2518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2056), - [2520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2500), - [2522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), - [2524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), - [2526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), - [2528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3176), - [2530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1398), - [2532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), - [2534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1401), - [2536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1399), - [2538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(864), - [2540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2247), - [2542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), - [2544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2025), - [2546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2081), - [2548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2719), - [2550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), - [2552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1928), - [2554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(966), - [2556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2549), - [2558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), - [2560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2029), - [2562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2532), - [2564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3023), - [2566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1982), - [2568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1981), - [2570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2003), - [2572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1981), - [2574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(871), - [2576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2722), - [2578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2359), - [2580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1357), - [2582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), - [2584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(959), - [2586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2482), - [2588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), - [2590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2042), - [2592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2541), - [2594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), - [2596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), - [2598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), - [2600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3026), - [2602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1484), - [2604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), - [2606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1482), - [2608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1483), - [2610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(859), - [2612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2255), - [2614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), - [2616] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__expression, 1, .production_id = 1), REDUCE(sym__parameter_name, 1, .production_id = 1), REDUCE(sym_predefined_type, 1), - [2620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 1), - [2622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), - [2624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(448), - [2626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), - [2628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), - [2630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2676), - [2632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), - [2634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1611), - [2636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1584), - [2638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1576), - [2640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2685), - [2642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), - [2644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), - [2646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1992), - [2648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), - [2650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1941), - [2652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), - [2654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), - [2656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), - [2658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1998), - [2660] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1), REDUCE(sym__tuple_type_identifier, 1), - [2663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tuple_type_identifier, 1), - [2665] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(2733), - [2668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(886), - [2670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), - [2672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1975), - [2674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), - [2676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), - [2678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1985), - [2680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), - [2682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1930), - [2684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1974), - [2686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1977), - [2688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(431), - [2690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2537), - [2692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 3), - [2694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1459), - [2696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(469), - [2698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2506), - [2700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2476), - [2702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), - [2704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), - [2706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), - [2708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2144), - [2710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2016), - [2712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(967), - [2714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 1), - [2716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1720), - [2718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1711), - [2720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1744), - [2722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1796), - [2724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1716), - [2726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2540), - [2728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2503), - [2730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1519), - [2732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1045), - [2734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), - [2736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), - [2738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2670), - [2740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3085), - [2742] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import, 1), - [2744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2167), - [2746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import, 1), - [2748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2019), - [2750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1987), - [2752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(968), - [2754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1890), - [2756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), - [2758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), - [2760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), - [2762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1739), - [2764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1946), - [2766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1743), - [2768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1786), - [2770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1728), - [2772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1731), - [2774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), - [2776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), - [2778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2832), - [2780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), - [2782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [2784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3064), - [2786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2229), - [2788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__property_name, 1, .production_id = 7), - [2790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3185), - [2792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3186), - [2794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2248), - [2796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2243), - [2798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2089), - [2800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3142), - [2802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3187), - [2804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2929), - [2806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3055), - [2808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1808), - [2810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2234), - [2812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3153), - [2814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3151), - [2816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), - [2818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), - [2820] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, .production_id = 7), REDUCE(aux_sym_object_repeat1, 2, .production_id = 28), - [2823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3081), - [2825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), - [2827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), - [2829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), - [2831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), - [2833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1984), - [2835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), - [2837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1989), - [2839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1593), - [2841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), - [2843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580), - [2845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), - [2847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), - [2849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), - [2851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), - [2853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1969), - [2855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(379), - [2857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(376), - [2859] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 8), - [2861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, .production_id = 8), - [2863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2883), - [2865] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_assertion, 2), - [2867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_assertion, 2), - [2869] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__primary_type, 1, .production_id = 14), SHIFT(866), - [2872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3104), - [2874] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 3, .production_id = 28), - [2876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 3, .production_id = 28), - [2878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3195), - [2880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 3), - [2882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 3), - [2884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 3), - [2886] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__primary_type, 1), SHIFT(866), - [2889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), - [2891] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 4, .production_id = 28), - [2893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 4, .production_id = 28), - [2895] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 4), - [2897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 4), - [2899] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 4), - [2901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 4), - [2903] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 2), - [2905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 2), - [2907] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array, 2), REDUCE(sym__tuple_type_body, 2), - [2910] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array, 2), REDUCE(sym__tuple_type_body, 2), - [2913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(273), - [2915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), - [2917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, .production_id = 67), - [2919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(675), - [2921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(283), - [2923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(60), - [2925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(297), - [2927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), - [2929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), - [2931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), - [2933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(288), - [2935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(299), - [2937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(303), - [2939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), - [2941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), - [2943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), - [2945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), - [2947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_augmented_assignment_expression, 3, .production_id = 60), - [2949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, .production_id = 99), - [2951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, .production_id = 101), - [2953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, .production_id = 102), - [2955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ternary_expression, 5, .production_id = 135), - [2957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), - [2959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3108), - [2961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(339), - [2963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 1, .production_id = 10), - [2965] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(218), - [2968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), - [2970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(322), - [2972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 1, .production_id = 9), - [2974] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(214), - [2977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), - [2979] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 2), - [2981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 2), - [2983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 2), - [2985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), - [2987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3051), - [2989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), - [2991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_await_expression, 2), - [2993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, .production_id = 65), - [2995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, .production_id = 63), - [2997] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 63), - [2999] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 63), SHIFT(60), - [3002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, .production_id = 66), - [3004] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_nested_identifier, 3), REDUCE(sym_nested_type_identifier, 3, .production_id = 94), - [3007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(819), - [3009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(822), - [3011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), - [3013] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1), REDUCE(sym__primary_type, 1), - [3016] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), REDUCE(sym__primary_type, 1), - [3019] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1), REDUCE(sym_literal_type, 1), - [3022] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), REDUCE(sym_literal_type, 1), - [3025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), - [3027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sequence_expression, 3, .production_id = 60), - [3029] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_as_expression, 3), - [3031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_as_expression, 3), - [3033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, .production_id = 61), - [3035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), - [3037] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 8), - [3039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, .production_id = 8), - [3041] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 8), SHIFT(60), - [3044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, .production_id = 60), - [3046] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, .production_id = 57), - [3048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, .production_id = 57), - [3050] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, .production_id = 55), - [3052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, .production_id = 55), - [3054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, .production_id = 25), - [3056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, .production_id = 22), - [3058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 2), - [3060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 3), - [3062] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, .production_id = 98), - [3064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, .production_id = 98), - [3066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), - [3068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), - [3070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(410), - [3072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_clause, 2), - [3074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(407), - [3076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(59), - [3078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(271), - [3080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), - [3082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), - [3084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), - [3086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(405), - [3088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(394), - [3090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(386), - [3092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), - [3094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), - [3096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), - [3098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(267), - [3100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), - [3102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(741), - [3104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(272), - [3106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(55), - [3108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2884), - [3110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(275), - [3112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), - [3114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), - [3116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [3118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(276), - [3120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(277), - [3122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(278), - [3124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), - [3126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), - [3128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), - [3130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1568), - [3132] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 8), SHIFT(55), - [3135] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 2, .production_id = 13), - [3137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 2, .production_id = 13), - [3139] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 63), SHIFT(55), - [3142] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_string, 2), - [3144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_string, 2), + [2468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), + [2470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3102), + [2472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1230), + [2474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), + [2476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(970), + [2478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2513), + [2480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), + [2482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2048), + [2484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2588), + [2486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), + [2488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), + [2490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), + [2492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3019), + [2494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1408), + [2496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), + [2498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1411), + [2500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1409), + [2502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(839), + [2504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2263), + [2506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), + [2508] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(221), + [2511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), + [2513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1315), + [2515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), + [2517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(967), + [2519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2496), + [2521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), + [2523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2037), + [2525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2540), + [2527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), + [2529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), + [2531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), + [2533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3170), + [2535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1544), + [2537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), + [2539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1535), + [2541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1541), + [2543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(850), + [2545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2154), + [2547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), + [2549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1015), + [2551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), + [2553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(969), + [2555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2565), + [2557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), + [2559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2049), + [2561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2583), + [2563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), + [2565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), + [2567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), + [2569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3146), + [2571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1028), + [2573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), + [2575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1023), + [2577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1027), + [2579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(882), + [2581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2177), + [2583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), + [2585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2398), + [2587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), + [2589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1930), + [2591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(964), + [2593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2567), + [2595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), + [2597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2042), + [2599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2560), + [2601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3064), + [2603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1998), + [2605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2000), + [2607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1970), + [2609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2000), + [2611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(937), + [2613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2674), + [2615] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1), REDUCE(sym__rest_identifier, 2), + [2618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__rest_identifier, 2), + [2620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2013), + [2622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2081), + [2624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2624), + [2626] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__expression, 1, .production_id = 1), REDUCE(sym__parameter_name, 1, .production_id = 1), REDUCE(sym_predefined_type, 1), + [2630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_clause_repeat1, 2, .production_id = 48), + [2632] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_extends_clause_repeat1, 2, .production_id = 48), + [2634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), + [2636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), + [2638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(432), + [2640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1616), + [2642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1623), + [2644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), + [2646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), + [2648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2784), + [2650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1589), + [2652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1571), + [2654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2776), + [2656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), + [2658] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1), REDUCE(sym__tuple_type_identifier, 1), + [2661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tuple_type_identifier, 1), + [2663] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(2652), + [2666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), + [2668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(915), + [2670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), + [2672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2009), + [2674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1941), + [2676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), + [2678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), + [2680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1981), + [2682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), + [2684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 1), + [2686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2012), + [2688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2011), + [2690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), + [2692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), + [2694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), + [2696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), + [2698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(480), + [2700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2522), + [2702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2555), + [2704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), + [2706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), + [2708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), + [2710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2161), + [2712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1934), + [2714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2003), + [2716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2599), + [2718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(431), + [2720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2541), + [2722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1079), + [2724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 3), + [2726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2029), + [2728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(971), + [2730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 1), + [2732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1717), + [2734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1721), + [2736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1728), + [2738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1796), + [2740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1723), + [2742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2562), + [2744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1487), + [2746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1971), + [2748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), + [2750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1430), + [2752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), + [2754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2774), + [2756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3160), + [2758] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import, 1), + [2760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2196), + [2762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import, 1), + [2764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2024), + [2766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2850), + [2768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), + [2770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), + [2772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3083), + [2774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2243), + [2776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__property_name, 1, .production_id = 7), + [2778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3205), + [2780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3206), + [2782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2162), + [2784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2163), + [2786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2120), + [2788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3156), + [2790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3207), + [2792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2933), + [2794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3074), + [2796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1815), + [2798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2248), + [2800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3161), + [2802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3159), + [2804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1999), + [2806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(972), + [2808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1902), + [2810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), + [2812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1749), + [2814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1947), + [2816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1750), + [2818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1758), + [2820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1747), + [2822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1746), + [2824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), + [2826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), + [2828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), + [2830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), + [2832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), + [2834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), + [2836] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, .production_id = 7), REDUCE(aux_sym_object_repeat1, 2, .production_id = 28), + [2839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3028), + [2841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), + [2843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), + [2845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), + [2847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), + [2849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), + [2851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), + [2853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1977), + [2855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), + [2857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), + [2859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), + [2861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), + [2863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), + [2865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1982), + [2867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), + [2869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1984), + [2871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(335), + [2873] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_assertion, 2), + [2875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_assertion, 2), + [2877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(336), + [2879] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 8), + [2881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, .production_id = 8), + [2883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2944), + [2885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), + [2887] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 4, .production_id = 28), + [2889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 4, .production_id = 28), + [2891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3210), + [2893] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 4), + [2895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 4), + [2897] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 3), + [2899] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 4), + [2901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 4), + [2903] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 3, .production_id = 28), + [2905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 3, .production_id = 28), + [2907] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 2), + [2909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 2), + [2911] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array, 2), REDUCE(sym__tuple_type_body, 2), + [2914] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array, 2), REDUCE(sym__tuple_type_body, 2), + [2917] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__primary_type, 1), SHIFT(828), + [2920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3222), + [2922] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__primary_type, 1, .production_id = 14), SHIFT(828), + [2925] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 3), + [2927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 3), + [2929] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_as_expression, 3), + [2931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_as_expression, 3), + [2933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(943), + [2935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(942), + [2937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), + [2939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(291), + [2941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), + [2943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, .production_id = 61), + [2945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(678), + [2947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(283), + [2949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(56), + [2951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(411), + [2953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [2955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [2957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), + [2959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(274), + [2961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(263), + [2963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(264), + [2965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [2967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), + [2969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), + [2971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), + [2973] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 63), + [2975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, .production_id = 63), + [2977] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 63), SHIFT(56), + [2980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), + [2982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(390), + [2984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 1, .production_id = 10), + [2986] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(187), + [2989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [2991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [2993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sequence_expression, 3, .production_id = 60), + [2995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, .production_id = 60), + [2997] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1), REDUCE(sym_literal_type, 1), + [3000] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), REDUCE(sym_literal_type, 1), + [3003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 2), + [3005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, .production_id = 102), + [3007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, .production_id = 101), + [3009] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, .production_id = 57), + [3011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, .production_id = 57), + [3013] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, .production_id = 55), + [3015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, .production_id = 55), + [3017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_await_expression, 2), + [3019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), + [3021] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_nested_identifier, 3), REDUCE(sym_nested_type_identifier, 3, .production_id = 94), + [3024] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 8), + [3026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, .production_id = 8), + [3028] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 8), SHIFT(56), + [3031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, .production_id = 99), + [3033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [3035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), + [3037] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1), REDUCE(sym__primary_type, 1), + [3040] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), REDUCE(sym__primary_type, 1), + [3043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, .production_id = 65), + [3045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3157), + [3047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3108), + [3049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 3), + [3051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_augmented_assignment_expression, 3, .production_id = 60), + [3053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, .production_id = 67), + [3055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, .production_id = 66), + [3057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, .production_id = 25), + [3059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(392), + [3061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 1, .production_id = 9), + [3063] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(188), + [3066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [3068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, .production_id = 22), + [3070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ternary_expression, 5, .production_id = 135), + [3072] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 2), + [3074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 2), + [3076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 2), + [3078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(267), + [3080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(748), + [3082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(272), + [3084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(53), + [3086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2977), + [3088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), + [3090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), + [3092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [3094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(276), + [3096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(277), + [3098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(278), + [3100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), + [3102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [3104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), + [3106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), + [3108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), + [3110] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 63), SHIFT(53), + [3113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), + [3115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(275), + [3117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [3119] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, .production_id = 139), + [3121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, .production_id = 139), + [3123] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 4), + [3125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 4), + [3127] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 3, .production_id = 26), + [3129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 3, .production_id = 26), + [3131] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, .production_id = 25), + [3133] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 5, .production_id = 129), + [3135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 5, .production_id = 129), + [3137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), + [3139] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, .production_id = 18), + [3141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, .production_id = 18), + [3143] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 8), SHIFT(53), [3146] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 17), [3148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, .production_id = 17), - [3150] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, .production_id = 18), - [3152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, .production_id = 18), - [3154] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, .production_id = 25), - [3156] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 3, .production_id = 26), - [3158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 3, .production_id = 26), - [3160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_spread_element, 2), - [3162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), - [3164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(406), - [3166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), - [3168] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extends_clause, 2), - [3170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(810), - [3172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(408), - [3174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(53), - [3176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2890), - [3178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(362), - [3180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), - [3182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), - [3184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), - [3186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(411), - [3188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(412), - [3190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(413), - [3192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), - [3194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), - [3196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), - [3198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1644), - [3200] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, .production_id = 51), - [3202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, .production_id = 51), - [3204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, .production_id = 52), - [3206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, .production_id = 52), - [3208] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 3, .production_id = 53), - [3210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 3, .production_id = 53), - [3212] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_assignment_pattern, 3, .production_id = 76), REDUCE(sym_assignment_expression, 3, .production_id = 22), - [3215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_pattern, 3, .production_id = 76), - [3217] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_assignment_pattern, 3, .production_id = 76), REDUCE(sym_assignment_expression, 3, .production_id = 60), - [3220] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, .production_id = 54), - [3222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, .production_id = 54), - [3224] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_assignment_pattern, 3, .production_id = 65), REDUCE(sym_assignment_expression, 3, .production_id = 65), - [3227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_pattern, 3, .production_id = 65), - [3229] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_meta_property, 3), - [3231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_property, 3), - [3233] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_assignment_pattern, 3, .production_id = 66), REDUCE(sym_assignment_expression, 3, .production_id = 66), - [3236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_pattern, 3, .production_id = 66), - [3238] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, .production_id = 56), - [3240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, .production_id = 56), - [3242] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_string, 3), - [3244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_string, 3), + [3150] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_assignment_pattern, 3, .production_id = 76), REDUCE(sym_assignment_expression, 3, .production_id = 22), + [3153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_pattern, 3, .production_id = 76), + [3155] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_assignment_pattern, 3, .production_id = 76), REDUCE(sym_assignment_expression, 3, .production_id = 60), + [3158] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_assignment_pattern, 3, .production_id = 65), REDUCE(sym_assignment_expression, 3, .production_id = 65), + [3161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_pattern, 3, .production_id = 65), + [3163] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_assignment_pattern, 3, .production_id = 66), REDUCE(sym_assignment_expression, 3, .production_id = 66), + [3166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_pattern, 3, .production_id = 66), + [3168] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_string, 2), + [3170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_string, 2), + [3172] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 2, .production_id = 13), + [3174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 2, .production_id = 13), + [3176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(405), + [3178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), + [3180] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extends_clause, 2), + [3182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(910), + [3184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(257), + [3186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(58), + [3188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2920), + [3190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(259), + [3192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), + [3194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [3196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), + [3198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(383), + [3200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(381), + [3202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(380), + [3204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [3206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [3208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), + [3210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1668), + [3212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_clause, 2), + [3214] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, .production_id = 51), + [3216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, .production_id = 51), + [3218] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, .production_id = 52), + [3220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, .production_id = 52), + [3222] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 3, .production_id = 53), + [3224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 3, .production_id = 53), + [3226] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, .production_id = 54), + [3228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, .production_id = 54), + [3230] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_meta_property, 3), + [3232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_property, 3), + [3234] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, .production_id = 56), + [3236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, .production_id = 56), + [3238] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_string, 3), + [3240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_string, 3), + [3242] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, .production_id = 112), + [3244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, .production_id = 112), [3246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 3, .production_id = 59), [3248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 3, .production_id = 59), [3250] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, .production_id = 61), - [3252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), - [3254] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 3, .production_id = 64), - [3256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 3, .production_id = 64), - [3258] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, .production_id = 67), - [3260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 4, .production_id = 75), - [3262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 4, .production_id = 75), - [3264] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_regex, 4, .production_id = 95), - [3266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regex, 4, .production_id = 95), - [3268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2928), - [3270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 4, .production_id = 99), - [3272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 4, .production_id = 100), - [3274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 4, .production_id = 100), - [3276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 4, .production_id = 101), - [3278] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 4, .production_id = 102), - [3280] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 4, .production_id = 100), - [3282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 4, .production_id = 100), - [3284] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 4, .production_id = 105), - [3286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 4, .production_id = 105), - [3288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 4, .production_id = 106), - [3290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 4, .production_id = 106), - [3292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 4, .production_id = 108), - [3294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 4, .production_id = 108), - [3296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 3), - [3298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 3), - [3300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, .production_id = 111), - [3302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, .production_id = 111), - [3304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, .production_id = 112), - [3306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, .production_id = 112), - [3308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 5, .production_id = 129), - [3310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 5, .production_id = 129), - [3312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 4), - [3314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 4), - [3316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, .production_id = 139), - [3318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, .production_id = 139), - [3320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), - [3322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2), - [3324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2475), - [3326] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 8), SHIFT(53), - [3329] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_await_expression, 2), - [3331] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 2), - [3333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), - [3335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2013), - [3337] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_extends_clause_repeat1, 2), - [3339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_clause_repeat1, 2), - [3341] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_expression, 3, .production_id = 22), - [3343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1818), - [3345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), - [3347] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 3), - [3349] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_expression, 3, .production_id = 60), - [3351] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 63), SHIFT(53), - [3354] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_expression, 3, .production_id = 65), - [3356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2410), - [3358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__initializer, 2, .production_id = 80), - [3360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1660), - [3362] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_expression, 3, .production_id = 66), - [3364] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_augmented_assignment_expression, 3, .production_id = 60), - [3366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), - [3368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), - [3370] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 63), SHIFT(59), - [3373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), - [3375] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ternary_expression, 5, .production_id = 135), - [3377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), - [3379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), - [3381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), - [3383] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_regex, 3, .production_id = 49), - [3385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regex, 3, .production_id = 49), - [3387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1173), - [3389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3211), - [3391] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__primary_type, 1, .production_id = 14), SHIFT(817), - [3394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3199), - [3396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), - [3398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), - [3400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), - [3402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), - [3404] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__primary_type, 1), SHIFT(817), - [3407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(311), - [3409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(308), - [3411] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 8), SHIFT(59), - [3414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2336), - [3416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), - [3418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), - [3420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), - [3422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(300), - [3424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(298), - [3426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(57), - [3428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(360), - [3430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), - [3432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), - [3434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), - [3436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(296), - [3438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(295), - [3440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(294), - [3442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), - [3444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), - [3446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), - [3448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [3450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), - [3452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1590), - [3454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(285), - [3456] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(248), - [3459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), - [3461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2348), - [3463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(900), - [3465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(897), - [3467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), - [3469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), - [3471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), - [3473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), - [3475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), - [3477] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 8), SHIFT(56), - [3480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(257), - [3482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(340), - [3484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(56), - [3486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(370), - [3488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), - [3490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), - [3492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [3494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(345), - [3496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(346), - [3498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(356), - [3500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), - [3502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), - [3504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), - [3506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), - [3508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2508), - [3510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3189), - [3512] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__primary_type, 1, .production_id = 14), SHIFT(881), - [3515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3180), - [3517] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__primary_type, 1), SHIFT(881), - [3520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), - [3522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), - [3524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), - [3526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), - [3528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), - [3530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), - [3532] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 63), SHIFT(56), - [3535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), - [3537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), - [3539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), - [3541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), - [3543] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 8), SHIFT(57), - [3546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), - [3548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), - [3550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2307), - [3552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), - [3554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), - [3556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair, 3, .production_id = 77), - [3558] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 63), SHIFT(57), - [3561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), - [3563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(284), - [3565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), - [3567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), - [3569] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array, 3), REDUCE(sym_computed_property_name, 3), - [3572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_computed_property_name, 3), - [3574] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array, 3), REDUCE(sym_computed_property_name, 3), - [3577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), - [3579] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 1), - [3581] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__expression, 1), REDUCE(sym__parameter_name, 1), REDUCE(sym__primary_type, 1), - [3585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), - [3587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1659), - [3589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), - [3591] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(245), - [3594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), - [3596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1669), - [3598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), - [3600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), - [3602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), - [3604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1886), - [3606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1637), - [3608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1727), - [3610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1932), - [3612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1734), - [3614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1879), - [3616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1757), - [3618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1714), - [3620] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__parameter_name, 1, .production_id = 12), SHIFT(311), - [3623] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1), REDUCE(sym__parameter_name, 1, .production_id = 12), - [3626] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), REDUCE(sym__parameter_name, 1, .production_id = 12), - [3629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1635), - [3631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), - [3633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1990), - [3635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), - [3637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2224), - [3639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2059), - [3641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2464), - [3643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), - [3645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1748), - [3647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2109), - [3649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1779), - [3651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1799), - [3653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1813), - [3655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1777), - [3657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), - [3659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(364), - [3661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(363), - [3663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2065), - [3665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), - [3667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1790), - [3669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1788), - [3671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1795), - [3673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1815), - [3675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1782), - [3677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(934), - [3679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(935), - [3681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), - [3683] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1), REDUCE(sym__property_name, 1), - [3686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__property_name, 1), - [3688] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), REDUCE(sym__property_name, 1), - [3691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(354), - [3693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1678), - [3695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(357), - [3697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), - [3699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 1, .production_id = 12), - [3701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), - [3703] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__parameter_name, 1, .production_id = 11), SHIFT(308), - [3706] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1), REDUCE(sym__parameter_name, 1, .production_id = 11), - [3709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 1, .production_id = 11), - [3711] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), REDUCE(sym__parameter_name, 1, .production_id = 11), - [3714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), - [3716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(404), - [3718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(409), - [3720] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(1987), - [3723] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(1886), - [3726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2), - [3728] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(185), - [3731] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(1727), - [3734] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(3133), - [3737] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(2518), - [3740] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(2519), - [3743] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(1932), - [3746] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(2631), - [3749] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(1734), - [3752] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(1879), - [3755] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(1757), - [3758] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(1728), - [3761] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(1714), - [3764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(25), - [3766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3207), - [3768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2062), - [3770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), - [3772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1761), - [3774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1753), - [3776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1804), - [3778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1814), - [3780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1768), - [3782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), - [3784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2060), - [3786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2414), - [3788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1747), - [3790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1772), - [3792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1801), - [3794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1821), - [3796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1750), - [3798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2063), - [3800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), - [3802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1765), - [3804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1767), - [3806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1800), - [3808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1812), - [3810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1781), - [3812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), - [3814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), - [3816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), - [3818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), - [3820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), - [3822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), - [3824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), - [3826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1895), - [3828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), - [3830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), - [3832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2172), - [3834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1860), - [3836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), - [3838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1746), - [3840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1948), - [3842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1780), - [3844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), - [3846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1736), - [3848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2091), - [3850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1793), - [3852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1794), - [3854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1805), - [3856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1822), - [3858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1791), - [3860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(289), - [3862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(290), - [3864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), - [3866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1742), - [3868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1927), - [3870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1902), - [3872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1754), - [3874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1884), - [3876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1732), - [3878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1933), - [3880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1887), - [3882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1762), - [3884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1897), - [3886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2180), - [3888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1855), - [3890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1899), - [3892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2176), - [3894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1856), - [3896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1882), - [3898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1723), - [3900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1944), - [3902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1773), - [3904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1745), - [3906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1888), - [3908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1729), - [3910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1938), - [3912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1756), - [3914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1726), - [3916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1891), - [3918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1733), - [3920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1945), - [3922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1771), - [3924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2213), - [3926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1851), - [3928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2174), - [3930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1847), - [3932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2244), - [3934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1853), - [3936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1896), - [3938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1730), - [3940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1943), - [3942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1751), - [3944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2158), - [3946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1849), - [3948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1892), - [3950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2242), - [3952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1863), - [3954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1741), - [3956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1898), - [3958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2221), - [3960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1864), - [3962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1740), - [3964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2177), - [3966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1859), - [3968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1904), - [3970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1737), - [3972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1935), - [3974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1766), - [3976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2219), - [3978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1854), - [3980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1735), - [3982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1722), - [3984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1942), - [3986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1776), - [3988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2175), - [3990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1862), - [3992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1881), - [3994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2419), - [3996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2462), - [3998] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator, 2), - [4000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator, 2), - [4002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [4004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3089), - [4006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2253), - [4008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2043), - [4010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2094), - [4012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2638), - [4014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), - [4016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1850), - [4018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2768), - [4020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2749), - [4022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2014), - [4024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2088), - [4026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2034), - [4028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2240), - [4030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2106), - [4032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2100), - [4034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2135), - [4036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, .production_id = 28), - [4038] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator_member_expression, 3, .production_id = 58), - [4040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator_member_expression, 3, .production_id = 58), - [4042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), - [4044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), - [4046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2096), - [4048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2863), - [4050] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator_call_expression, 2, .production_id = 18), - [4052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator_call_expression, 2, .production_id = 18), - [4054] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 7, .production_id = 178), - [4056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 7, .production_id = 178), - [4058] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 7, .production_id = 179), - [4060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 7, .production_id = 179), - [4062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1900), - [4064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1834), - [4066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2215), - [4068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1861), - [4070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1894), - [4072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1845), - [4074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2187), - [4076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1848), - [4078] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 5, .production_id = 141), - [4080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 5, .production_id = 141), - [4082] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 5, .production_id = 131), - [4084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 5, .production_id = 131), - [4086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1825), - [4088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1829), - [4090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1835), - [4092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1893), - [4094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2251), - [4096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1852), - [4098] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 9, .production_id = 193), - [4100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 9, .production_id = 193), - [4102] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 8, .production_id = 189), - [4104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 8, .production_id = 189), - [4106] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 4, .production_id = 104), - [4108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 4, .production_id = 104), - [4110] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 6, .production_id = 161), - [4112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 6, .production_id = 161), - [4114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), - [4116] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 6, .production_id = 157), - [4118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 6, .production_id = 157), - [4120] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 8, .production_id = 188), - [4122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 8, .production_id = 188), - [4124] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 1), - [4126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 1), - [4128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1867), - [4130] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 4, .production_id = 116), - [4132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 4, .production_id = 116), - [4134] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 3, .production_id = 78), - [4136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 3, .production_id = 78), - [4138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2179), - [4140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2181), - [4142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2472), - [4144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2473), - [4146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2208), - [4148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2192), - [4150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), - [4152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2459), - [4154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2342), - [4156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2557), - [4158] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2), - [4160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), - [4162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2257), - [4164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), - [4166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2256), - [4168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2433), - [4170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1738), - [4172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1880), - [4174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1713), - [4176] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 2, .production_id = 21), - [4178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 2, .production_id = 21), - [4180] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 2, .production_id = 21), SHIFT_REPEAT(2631), - [4183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1831), - [4185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1724), - [4187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1725), - [4189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1903), - [4191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1929), - [4193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1755), - [4195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1758), - [4197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1885), - [4199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1926), - [4201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1774), - [4203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1770), - [4205] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 1, .production_id = 2), - [4207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 1, .production_id = 2), - [4209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1858), - [4211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2864), - [4213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3115), - [4215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), - [4217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3048), - [4219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3200), - [4221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), - [4223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), - [4225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), - [4227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), - [4229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), - [4231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), - [4233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), - [4235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), - [4237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), - [4239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), - [4241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, .production_id = 123), - [4243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2099), - [4245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1950), - [4247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1951), - [4249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), - [4251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3017), - [4253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), - [4255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, .production_id = 73), - [4257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2140), - [4259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1958), - [4261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 1, .production_id = 5), - [4263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2085), - [4265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1955), - [4267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1954), - [4269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3197), - [4271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, .production_id = 152), - [4273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2119), - [4275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1963), - [4277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 1, .production_id = 5), - [4279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [4281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1964), - [4283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 3, .production_id = 123), - [4285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1965), - [4287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), - [4289] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__primary_type, 1, .production_id = 14), REDUCE(sym_type_parameter, 1, .production_id = 14), - [4292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), - [4294] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__primary_type, 1, .production_id = 14), SHIFT(811), - [4297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 4, .production_id = 152), - [4299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1949), - [4301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 2, .production_id = 73), - [4303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1953), - [4305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1956), - [4307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1959), - [4309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1957), - [4311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1962), - [4313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 5, .production_id = 152), - [4315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, .production_id = 123), - [4317] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__parameter_name, 1), REDUCE(sym__primary_type, 1, .production_id = 14), - [4320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 3, .production_id = 73), - [4322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, .production_id = 73), - [4324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, .production_id = 5), - [4326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 4, .production_id = 123), - [4328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 2, .production_id = 5), - [4330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 2), - [4332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, .production_id = 152), - [4334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), - [4336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(931), - [4338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), - [4340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), - [4342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_annotation, 2), - [4344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2057), - [4346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1618), - [4348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(879), - [4350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(154), - [4352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2051), - [4354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2047), - [4356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2038), - [4358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1628), - [4360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_signature, 2, .production_id = 20), - [4362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), - [4364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2055), - [4366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), - [4368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2035), - [4370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2663), - [4372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3085), - [4374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_signature, 1, .production_id = 3), - [4376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2040), - [4378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2054), - [4380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2028), - [4382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2027), - [4384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), - [4386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), - [4388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), - [4390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), - [4392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1629), - [4394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2570), - [4396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_annotation, 2), - [4398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), - [4400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_predicate, 3), - [4402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), - [4404] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__parameter_name, 1), REDUCE(sym__primary_type, 1), - [4407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), - [4409] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__parameter_name, 1, .production_id = 1), REDUCE(sym_predefined_type, 1), - [4412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), - [4414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_omitting_type_annotation, 2), - [4416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2882), - [4418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), - [4420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3058), - [4422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_opting_type_annotation, 2), - [4424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 2), - [4426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 4, .production_id = 149), - [4428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2437), - [4430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2145), - [4432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1789), - [4434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2064), - [4436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), - [4438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), - [4440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3049), - [4442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2397), - [4444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2182), - [4446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 1, .production_id = 14), - [4448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 3), - [4450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asserts, 3), - [4452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 5, .production_id = 120), - [4454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3139), - [4456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2451), - [4458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2191), - [4460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), - [4462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_parameter, 1), - [4464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2218), - [4466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2066), - [4468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3010), - [4470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2853), - [4472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [4474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 6, .production_id = 148), - [4476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2330), - [4478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2188), - [4480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2441), - [4482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2149), - [4484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 4), - [4486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 3), - [4488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), - [4490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2457), - [4492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2439), - [4494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2207), - [4496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2274), - [4498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2205), - [4500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 8, .production_id = 195), - [4502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2355), - [4504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2141), - [4506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 2, .production_id = 93), - [4508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 4, .production_id = 130), - [4510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 5, .production_id = 170), - [4512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2362), - [4514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2162), - [4516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 6, .production_id = 182), - [4518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 5, .production_id = 171), - [4520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 6, .production_id = 181), - [4522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2428), - [4524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2155), - [4526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 7, .production_id = 190), - [4528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), - [4530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3090), - [4532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 7, .production_id = 191), - [4534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3018), - [4536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 3, .production_id = 103), - [4538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 3, .production_id = 125), - [4540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2351), - [4542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), - [4544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2008), - [4546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), - [4548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2700), - [4550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(467), - [4552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2449), - [4554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), - [4556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2064), - [4558] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(3138), - [4561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2), - [4563] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(237), - [4566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2427), - [4568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), - [4570] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2), SHIFT_REPEAT(2151), - [4573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2), - [4575] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2), SHIFT_REPEAT(250), - [4578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), - [4580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), - [4582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2151), - [4584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1594), - [4586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), - [4588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), - [4590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), - [4592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2416), - [4594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3138), - [4596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), - [4598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), - [4600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2308), - [4602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2765), - [4604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3117), - [4606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2764), - [4608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3119), - [4610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), - [4612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), - [4614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2354), - [4616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), - [4618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), - [4620] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_type_repeat1, 2), SHIFT_REPEAT(997), - [4623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_type_repeat1, 2), - [4625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), - [4627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1561), - [4629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3053), - [4631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3057), - [4633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), - [4635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_predicate_annotation, 2), - [4637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_signature, 3, .production_id = 68), - [4639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), - [4641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2412), - [4643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2334), - [4645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2411), - [4647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2407), - [4649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2424), - [4651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), - [4653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2366), - [4655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2401), - [4657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2399), - [4659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2320), - [4661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), - [4663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), - [4665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), - [4667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), - [4669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2456), - [4671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2438), - [4673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2408), - [4675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2436), - [4677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2402), - [4679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), - [4681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), - [4683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), - [4685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), - [4687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1910), - [4689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(996), - [4691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), - [4693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constraint, 2), - [4695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_implements_clause_repeat1, 2), - [4697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2398), - [4699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2231), - [4701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652), - [4703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2421), - [4705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2394), - [4707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), - [4709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), - [4711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2288), - [4713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2278), - [4715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implements_clause, 2), - [4717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), - [4719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), - [4721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter, 2), - [4723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2349), - [4725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2382), - [4727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1931), - [4729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), - [4731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), - [4733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2230), - [4735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), - [4737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), - [4739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), - [4741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [4743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), - [4745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1651), - [4747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), - [4749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), - [4751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), - [4753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), - [4755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_signature, 2, .production_id = 19), - [4757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), - [4759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2007), - [4761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2153), - [4763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1592), - [4765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), - [4767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2360), - [4769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2376), - [4771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2293), - [4773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), - [4775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), - [4777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1274), - [4779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), - [4781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2321), - [4783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), - [4785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2314), - [4787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), - [4789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1602), - [4791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1355), - [4793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, .production_id = 124), - [4795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, .production_id = 81), - [4797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), - [4799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), - [4801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 2, .production_id = 32), - [4803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 2, .production_id = 34), - [4805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), - [4807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), - [4809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 3, .production_id = 81), - [4811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3), - [4813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1806), - [4815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2023), - [4817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 4), - [4819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 2, .production_id = 30), - [4821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 4), - [4823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 4, .production_id = 150), - [4825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 4, .production_id = 151), - [4827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, .production_id = 30), - [4829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5), - [4831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), - [4833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, .production_id = 150), - [4835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, .production_id = 151), - [4837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 2, .production_id = 39), - [4839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 2, .production_id = 40), - [4841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1809), - [4843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2018), - [4845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 3, .production_id = 124), - [4847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 5, .production_id = 172), - [4849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), - [4851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 5), - [4853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 5, .production_id = 173), - [4855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, .production_id = 172), - [4857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, .production_id = 173), - [4859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 6, .production_id = 38), - [4861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 6), - [4863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), - [4865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 6, .production_id = 180), - [4867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 6, .production_id = 183), - [4869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, .production_id = 183), - [4871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4), - [4873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 7, .production_id = 88), - [4875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2264), - [4877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), - [4879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 7), - [4881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2777), - [4883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), - [4885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_signature, 1, .production_id = 47), - [4887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 8, .production_id = 194), - [4889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_type, 2), - [4891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 8, .production_id = 180), - [4893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), - [4895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1866), - [4897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2302), - [4899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 2, .production_id = 30), - [4901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2285), - [4903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3152), - [4905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2324), - [4907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3111), - [4909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), - [4911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3077), - [4913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1870), - [4915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), - [4917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2632), - [4919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2332), - [4921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2338), - [4923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), - [4925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 3, .production_id = 90), - [4927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 3, .production_id = 89), - [4929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 3), - [4931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 3, .production_id = 88), - [4933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2357), - [4935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), - [4937] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 2), SHIFT_REPEAT(2236), - [4940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 2), - [4942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1597), - [4944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2486), - [4946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2486), - [4948] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), - [4950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2483), - [4952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2483), - [4954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), - [4956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), - [4958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1605), - [4960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2548), - [4962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2548), - [4964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1587), - [4966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1807), - [4968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2546), - [4970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2546), - [4972] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2), SHIFT_REPEAT(146), - [4975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), - [4977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter, 3), - [4979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), - [4981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1563), - [4983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), - [4985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), - [4987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2014), - [4989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(443), - [4991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2283), - [4993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), - [4995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(984), - [4997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), - [4999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_substitution, 3), - [5001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), - [5003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), - [5005] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_implements_clause_repeat1, 2), SHIFT_REPEAT(853), - [5008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), - [5010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(427), - [5012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2498), - [5014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2498), - [5016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2499), - [5018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2499), - [5020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), - [5022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1915), - [5024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2566), - [5026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2566), - [5028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2567), - [5030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2567), - [5032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 2, .production_id = 14), - [5034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), - [5036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2290), - [5038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_clause, 3), - [5040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_clause, 3, .production_id = 48), - [5042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1908), - [5044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2183), - [5046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2184), - [5048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2017), - [5050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), - [5052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_parameter, 2), - [5054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), - [5056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rest_parameter, 1), - [5058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), - [5060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2210), - [5062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1983), - [5064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), - [5066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2211), - [5068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2236), - [5070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), - [5072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), - [5074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), - [5076] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat2, 2), - [5078] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat2, 2), SHIFT_REPEAT(2546), - [5081] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat2, 2), SHIFT_REPEAT(2546), - [5084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), - [5086] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2), - [5088] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(2548), - [5091] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(2548), - [5094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1934), - [5096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3109), - [5098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2317), - [5100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2323), - [5102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2010), - [5104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), - [5106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1024), - [5108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2), - [5110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(77), - [5112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2580), - [5114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2580), - [5116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2578), - [5118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2578), - [5120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), - [5122] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extends_clause, 3, .production_id = 48), - [5124] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extends_clause, 3), - [5126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1916), - [5128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), - [5130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1037), - [5132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2556), - [5134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2556), - [5136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2733), - [5138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tuple_type_member, 1), - [5140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3143), - [5142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2558), - [5144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2558), - [5146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2763), - [5148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), - [5150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(76), - [5152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), - [5154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2461), - [5156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2186), - [5158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mapped_type_clause, 3, .production_id = 14), - [5160] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_extends_clause_repeat1, 2), SHIFT_REPEAT(156), - [5163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2198), - [5165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), - [5167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(988), - [5169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2504), - [5171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2504), - [5173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), - [5175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2006), - [5177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), - [5179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2505), - [5181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2505), - [5183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), - [5185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2469), - [5187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), - [5189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), - [5191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), - [5193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), - [5195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2468), - [5197] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_extends_clause_repeat1, 2), SHIFT_REPEAT(153), - [5200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), - [5202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), - [5204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 5), - [5206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2058), - [5208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2005), - [5210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), - [5212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 3, .production_id = 103), - [5214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, .production_id = 127), - [5216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), - [5218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2934), - [5220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1775), - [5222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2083), + [3252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, .production_id = 111), + [3254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, .production_id = 111), + [3256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2820), + [3258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_spread_element, 2), + [3260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(320), + [3262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(273), + [3264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(60), + [3266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(394), + [3268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), + [3270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [3272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [3274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(262), + [3276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(286), + [3278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(297), + [3280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), + [3282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), + [3284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), + [3286] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 3, .production_id = 64), + [3288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 3, .production_id = 64), + [3290] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, .production_id = 67), + [3292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), + [3294] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 4, .production_id = 75), + [3296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 4, .production_id = 75), + [3298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), + [3300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 4, .production_id = 100), + [3302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 4, .production_id = 100), + [3304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 4, .production_id = 102), + [3306] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 4, .production_id = 101), + [3308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 4, .production_id = 100), + [3310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 4, .production_id = 100), + [3312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 4, .production_id = 99), + [3314] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 3), + [3316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 3), + [3318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, .production_id = 98), + [3320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, .production_id = 98), + [3322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 4, .production_id = 108), + [3324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 4, .production_id = 108), + [3326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 4, .production_id = 106), + [3328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 4, .production_id = 106), + [3330] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_regex, 4, .production_id = 95), + [3332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regex, 4, .production_id = 95), + [3334] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 4, .production_id = 105), + [3336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 4, .production_id = 105), + [3338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_augmented_assignment_expression, 3, .production_id = 60), + [3340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [3342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), + [3344] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 8), SHIFT(60), + [3347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_clause_repeat1, 2), + [3349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), + [3351] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 3), + [3353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), + [3355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1816), + [3357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2028), + [3359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3216), + [3361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1604), + [3363] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_extends_clause_repeat1, 2), + [3365] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 8), SHIFT(58), + [3368] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__primary_type, 1, .production_id = 14), SHIFT(829), + [3371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3113), + [3373] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__primary_type, 1), SHIFT(829), + [3376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__initializer, 2, .production_id = 80), + [3378] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 63), SHIFT(60), + [3381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), + [3383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), + [3385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(270), + [3387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(269), + [3389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_regex, 3, .production_id = 49), + [3391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regex, 3, .production_id = 49), + [3393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1206), + [3395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), + [3397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2437), + [3399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2), + [3401] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_expression, 3, .production_id = 60), + [3403] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 63), SHIFT(58), + [3406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), + [3408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), + [3410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), + [3412] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ternary_expression, 5, .production_id = 135), + [3414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), + [3416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2378), + [3418] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 2), + [3420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), + [3422] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_expression, 3, .production_id = 22), + [3424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), + [3426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1644), + [3428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2328), + [3430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_expression, 3, .production_id = 66), + [3432] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_await_expression, 2), + [3434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_expression, 3, .production_id = 65), + [3436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), + [3438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), + [3440] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__primary_type, 1, .production_id = 14), SHIFT(881), + [3443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3208), + [3445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), + [3447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(409), + [3449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(410), + [3451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(57), + [3453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(350), + [3455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [3457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), + [3459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), + [3461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(256), + [3463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(412), + [3465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(413), + [3467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), + [3469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), + [3471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), + [3473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3191), + [3475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2539), + [3477] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 63), SHIFT(57), + [3480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), + [3482] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__primary_type, 1), SHIFT(881), + [3485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), + [3487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), + [3489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), + [3491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), + [3493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), + [3495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1568), + [3497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(940), + [3499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(936), + [3501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), + [3503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), + [3505] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 8), SHIFT(55), + [3508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), + [3510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(345), + [3512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(342), + [3514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(55), + [3516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(295), + [3518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), + [3520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), + [3522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), + [3524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(341), + [3526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(340), + [3528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(339), + [3530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), + [3532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), + [3534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), + [3536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(284), + [3538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2392), + [3540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), + [3542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(285), + [3544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), + [3546] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 8), SHIFT(57), + [3549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), + [3551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), + [3553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), + [3555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), + [3557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2299), + [3559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), + [3561] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 1), + [3563] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__expression, 1), REDUCE(sym__parameter_name, 1), REDUCE(sym__primary_type, 1), + [3567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), + [3569] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 63), SHIFT(55), + [3572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), + [3574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), + [3576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair, 3, .production_id = 77), + [3578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1649), + [3580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), + [3582] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array, 3), REDUCE(sym_computed_property_name, 3), + [3585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_computed_property_name, 3), + [3587] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array, 3), REDUCE(sym_computed_property_name, 3), + [3590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), + [3592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), + [3594] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(224), + [3597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), + [3599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), + [3601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), + [3603] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(223), + [3606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), + [3608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), + [3610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [3612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), + [3614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1904), + [3616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), + [3618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1739), + [3620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1936), + [3622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1726), + [3624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1880), + [3626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1785), + [3628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1714), + [3630] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__parameter_name, 1, .production_id = 11), SHIFT(269), + [3633] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1), REDUCE(sym__parameter_name, 1, .production_id = 11), + [3636] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), REDUCE(sym__parameter_name, 1, .production_id = 11), + [3639] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__parameter_name, 1, .production_id = 12), SHIFT(270), + [3642] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1), REDUCE(sym__parameter_name, 1, .production_id = 12), + [3645] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), REDUCE(sym__parameter_name, 1, .production_id = 12), + [3648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), + [3650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), + [3652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), + [3654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(312), + [3656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2074), + [3658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), + [3660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), + [3662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1769), + [3664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2084), + [3666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1767), + [3668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1797), + [3670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1825), + [3672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1766), + [3674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(310), + [3676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2212), + [3678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1650), + [3680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 1, .production_id = 12), + [3682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 1, .production_id = 11), + [3684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1686), + [3686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2067), + [3688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), + [3690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1782), + [3692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1780), + [3694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1807), + [3696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1817), + [3698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1779), + [3700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), + [3702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(925), + [3704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(926), + [3706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), + [3708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1986), + [3710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), + [3712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), + [3714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(368), + [3716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(358), + [3718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2065), + [3720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2334), + [3722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1757), + [3724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1751), + [3726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1802), + [3728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1820), + [3730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1752), + [3732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(367), + [3734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [3736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), + [3738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(355), + [3740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), + [3742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), + [3744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), + [3746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2070), + [3748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), + [3750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1776), + [3752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1775), + [3754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1800), + [3756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1818), + [3758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1768), + [3760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), + [3762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1640), + [3764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1648), + [3766] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1), REDUCE(sym__property_name, 1), + [3769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__property_name, 1), + [3771] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), REDUCE(sym__property_name, 1), + [3774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), + [3776] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(1999), + [3779] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(1904), + [3782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2), + [3784] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(200), + [3787] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(1739), + [3790] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(3151), + [3793] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(2536), + [3796] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(2537), + [3799] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(1936), + [3802] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(2646), + [3805] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(1726), + [3808] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(1880), + [3811] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(1785), + [3814] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(1747), + [3817] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(1714), + [3820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), + [3822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2066), + [3824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2408), + [3826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1772), + [3828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1753), + [3830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1804), + [3832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1822), + [3834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1762), + [3836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18), + [3838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3232), + [3840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), + [3842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(416), + [3844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1895), + [3846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), + [3848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), + [3850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1733), + [3852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1943), + [3854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1761), + [3856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), + [3858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1729), + [3860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [3862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2193), + [3864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1854), + [3866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(417), + [3868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2137), + [3870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1805), + [3872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1803), + [3874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1813), + [3876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1826), + [3878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1808), + [3880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1888), + [3882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1743), + [3884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1937), + [3886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1899), + [3888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1786), + [3890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1903), + [3892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1737), + [3894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1931), + [3896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1887), + [3898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1759), + [3900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1742), + [3902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1906), + [3904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1744), + [3906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1939), + [3908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1774), + [3910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1896), + [3912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1740), + [3914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1940), + [3916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1777), + [3918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1727), + [3920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1738), + [3922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1885), + [3924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2264), + [3926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1852), + [3928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2201), + [3930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1861), + [3932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1909), + [3934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2233), + [3936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1857), + [3938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1901), + [3940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2164), + [3942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1868), + [3944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1732), + [3946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1946), + [3948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1760), + [3950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2255), + [3952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1864), + [3954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1886), + [3956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1741), + [3958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1945), + [3960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1794), + [3962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2252), + [3964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1853), + [3966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2205), + [3968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1851), + [3970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1907), + [3972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2208), + [3974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1860), + [3976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2169), + [3978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1866), + [3980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1894), + [3982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2228), + [3984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1858), + [3986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1748), + [3988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1908), + [3990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1735), + [3992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1951), + [3994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1789), + [3996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1734), + [3998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1948), + [4000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1792), + [4002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2222), + [4004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1867), + [4006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1736), + [4008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1892), + [4010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2341), + [4012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2473), + [4014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2103), + [4016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2693), + [4018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), + [4020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1865), + [4022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2123), + [4024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2251), + [4026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2053), + [4028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2017), + [4030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2148), + [4032] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator, 2), + [4034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator, 2), + [4036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), + [4038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3158), + [4040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2765), + [4042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2076), + [4044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2173), + [4046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2046), + [4048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2077), + [4050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2731), + [4052] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator_member_expression, 3, .production_id = 58), + [4054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator_member_expression, 3, .production_id = 58), + [4056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, .production_id = 28), + [4058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), + [4060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [4062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2117), + [4064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2938), + [4066] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator_call_expression, 2, .production_id = 18), + [4068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator_call_expression, 2, .production_id = 18), + [4070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1898), + [4072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2226), + [4074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1863), + [4076] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 9, .production_id = 197), + [4078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 9, .production_id = 197), + [4080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1891), + [4082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2198), + [4084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1862), + [4086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1849), + [4088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [4090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1848), + [4092] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 5, .production_id = 142), + [4094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 5, .production_id = 142), + [4096] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 5, .production_id = 131), + [4098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 5, .production_id = 131), + [4100] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 6, .production_id = 164), + [4102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 6, .production_id = 164), + [4104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 4, .production_id = 104), + [4106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 4, .production_id = 104), + [4108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 4, .production_id = 116), + [4110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 4, .production_id = 116), + [4112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1836), + [4114] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 6, .production_id = 158), + [4116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 6, .production_id = 158), + [4118] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 7, .production_id = 182), + [4120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 7, .production_id = 182), + [4122] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 7, .production_id = 183), + [4124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 7, .production_id = 183), + [4126] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 3, .production_id = 78), + [4128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 3, .production_id = 78), + [4130] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 8, .production_id = 192), + [4132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 8, .production_id = 192), + [4134] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 8, .production_id = 193), + [4136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 8, .production_id = 193), + [4138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1841), + [4140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1889), + [4142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1827), + [4144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2207), + [4146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1856), + [4148] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 1), + [4150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 1), + [4152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1873), + [4154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2217), + [4156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2216), + [4158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2488), + [4160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2472), + [4162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2209), + [4164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2237), + [4166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), + [4168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2589), + [4170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1730), + [4172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1884), + [4174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1725), + [4176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2303), + [4178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2348), + [4180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2447), + [4182] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2), + [4184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), + [4186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2339), + [4188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), + [4190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2280), + [4192] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 2, .production_id = 21), + [4194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 2, .production_id = 21), + [4196] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 2, .production_id = 21), SHIFT_REPEAT(2646), + [4199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1745), + [4201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1900), + [4203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1935), + [4205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1784), + [4207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1787), + [4209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1731), + [4211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1832), + [4213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1897), + [4215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1933), + [4217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1763), + [4219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1764), + [4221] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 1, .production_id = 2), + [4223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 1, .production_id = 2), + [4225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1859), + [4227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2822), + [4229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3202), + [4231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), + [4233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3041), + [4235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3229), + [4237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), + [4239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), + [4241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), + [4243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), + [4245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [4247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [4249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [4251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [4253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), + [4255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), + [4257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3163), + [4259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), + [4261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), + [4263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, .production_id = 123), + [4265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2112), + [4267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1953), + [4269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3213), + [4271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1963), + [4273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, .production_id = 73), + [4275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2125), + [4277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1959), + [4279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 1, .production_id = 5), + [4281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2127), + [4283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1968), + [4285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1962), + [4287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, .production_id = 153), + [4289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2115), + [4291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1955), + [4293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 3, .production_id = 123), + [4295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1965), + [4297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), + [4299] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__primary_type, 1, .production_id = 14), REDUCE(sym_type_parameter, 1, .production_id = 14), + [4302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), + [4304] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__primary_type, 1, .production_id = 14), SHIFT(873), + [4307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 2, .production_id = 73), + [4309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1956), + [4311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 4, .production_id = 153), + [4313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1964), + [4315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1966), + [4317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 1, .production_id = 5), + [4319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1957), + [4321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1954), + [4323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), + [4325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1967), + [4327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1958), + [4329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, .production_id = 123), + [4331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 5, .production_id = 153), + [4333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, .production_id = 153), + [4335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 3, .production_id = 73), + [4337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 2, .production_id = 5), + [4339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, .production_id = 73), + [4341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 2), + [4343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 4, .production_id = 123), + [4345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, .production_id = 5), + [4347] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__parameter_name, 1), REDUCE(sym__primary_type, 1, .production_id = 14), + [4350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), + [4352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), + [4354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(847), + [4356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), + [4358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), + [4360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2043), + [4362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1587), + [4364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(931), + [4366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(165), + [4368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_signature, 1, .production_id = 3), + [4370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), + [4372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2031), + [4374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2062), + [4376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), + [4378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_annotation, 2), + [4380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_signature, 2, .production_id = 20), + [4382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2050), + [4384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2058), + [4386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2039), + [4388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2030), + [4390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2620), + [4392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3160), + [4394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2051), + [4396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1576), + [4398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2063), + [4400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2054), + [4402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), + [4404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), + [4406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [4408] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__parameter_name, 1, .production_id = 1), REDUCE(sym_predefined_type, 1), + [4411] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__parameter_name, 1), REDUCE(sym__primary_type, 1), + [4414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), + [4416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2506), + [4418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), + [4420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_predicate, 3), + [4422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), + [4424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), + [4426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), + [4428] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_annotation, 2), + [4430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2919), + [4432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_opting_type_annotation, 2), + [4434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_omitting_type_annotation, 2), + [4436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), + [4438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3173), + [4440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2373), + [4442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2184), + [4444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1793), + [4446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 5, .production_id = 120), + [4448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 8, .production_id = 199), + [4450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 7, .production_id = 195), + [4452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2069), + [4454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1592), + [4456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), + [4458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3148), + [4460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [4462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2485), + [4464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2396), + [4466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2230), + [4468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 2), + [4470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 1, .production_id = 14), + [4472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 3), + [4474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2399), + [4476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2195), + [4478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), + [4480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3131), + [4482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3105), + [4484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2871), + [4486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [4488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asserts, 3), + [4490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [4492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_parameter, 1), + [4494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2180), + [4496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2380), + [4498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2245), + [4500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 2, .production_id = 93), + [4502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2369), + [4504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2240), + [4506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 7, .production_id = 194), + [4508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2300), + [4510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2260), + [4512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2073), + [4514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3029), + [4516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3134), + [4518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 6, .production_id = 186), + [4520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 4), + [4522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 4, .production_id = 150), + [4524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 6, .production_id = 185), + [4526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 5, .production_id = 174), + [4528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 3), + [4530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2325), + [4532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2174), + [4534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2433), + [4536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2206), + [4538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2387), + [4540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2190), + [4542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 5, .production_id = 173), + [4544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 4, .production_id = 130), + [4546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 3, .production_id = 103), + [4548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2343), + [4550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2257), + [4552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 3, .production_id = 125), + [4554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 6, .production_id = 149), + [4556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2258), + [4558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), + [4560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), + [4562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1814), + [4564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2014), + [4566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3021), + [4568] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_type_repeat1, 2), SHIFT_REPEAT(1009), + [4571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_type_repeat1, 2), + [4573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), + [4575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), + [4577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2069), + [4579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1343), + [4581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), + [4583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), + [4585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), + [4587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), + [4589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), + [4591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), + [4593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), + [4595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2712), + [4597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(467), + [4599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2276), + [4601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), + [4603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), + [4605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), + [4607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), + [4609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), + [4611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2310), + [4613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implements_clause, 2), + [4615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), + [4617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2323), + [4619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2298), + [4621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), + [4623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), + [4625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), + [4627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1987), + [4629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1014), + [4631] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2), SHIFT_REPEAT(2178), + [4634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2), + [4636] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2), SHIFT_REPEAT(250), + [4639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), + [4641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter, 2), + [4643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), + [4645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3044), + [4647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), + [4649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), + [4651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2389), + [4653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), + [4655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1975), + [4657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), + [4659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [4661] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(3044), + [4664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2), + [4666] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(207), + [4669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2178), + [4671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1702), + [4673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2412), + [4675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), + [4677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), + [4679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1938), + [4681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2421), + [4683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_signature, 3, .production_id = 68), + [4685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2434), + [4687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2733), + [4689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3084), + [4691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3086), + [4693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3015), + [4695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_predicate_annotation, 2), + [4697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2448), + [4699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), + [4701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), + [4703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [4705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2426), + [4707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2189), + [4709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1655), + [4711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1913), + [4713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2444), + [4715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2420), + [4717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2453), + [4719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2449), + [4721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2489), + [4723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_signature, 2, .production_id = 19), + [4725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), + [4727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), + [4729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2267), + [4731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2480), + [4733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2413), + [4735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2308), + [4737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), + [4739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), + [4741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2363), + [4743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2457), + [4745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2368), + [4747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), + [4749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [4751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3010), + [4753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2727), + [4755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2441), + [4757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), + [4759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), + [4761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2423), + [4763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constraint, 2), + [4765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2259), + [4767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), + [4769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2362), + [4771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), + [4773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_implements_clause_repeat1, 2), + [4775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2404), + [4777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), + [4779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), + [4781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1810), + [4783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2023), + [4785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), + [4787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), + [4789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2417), + [4791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2287), + [4793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), + [4795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), + [4797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2395), + [4799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), + [4801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), + [4803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2382), + [4805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), + [4807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), + [4809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2327), + [4811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), + [4813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), + [4815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1233), + [4817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2385), + [4819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), + [4821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 3, .production_id = 124), + [4823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 3, .production_id = 81), + [4825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3116), + [4827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3095), + [4829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 4), + [4831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, .production_id = 30), + [4833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5), + [4835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3), + [4837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), + [4839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 4, .production_id = 151), + [4841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 4, .production_id = 152), + [4843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, .production_id = 124), + [4845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, .production_id = 151), + [4847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_signature, 1, .production_id = 47), + [4849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, .production_id = 152), + [4851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 2, .production_id = 30), + [4853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), + [4855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, .production_id = 81), + [4857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1875), + [4859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), + [4861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4), + [4863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), + [4865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), + [4867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), + [4869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 2, .production_id = 40), + [4871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 2, .production_id = 39), + [4873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 2, .production_id = 34), + [4875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_type, 2), + [4877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 2, .production_id = 32), + [4879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), + [4881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 5, .production_id = 175), + [4883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 5), + [4885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2735), + [4887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3174), + [4889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 2, .production_id = 30), + [4891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, .production_id = 175), + [4893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2331), + [4895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), + [4897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 4), + [4899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, .production_id = 176), + [4901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), + [4903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3035), + [4905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), + [4907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 6, .production_id = 38), + [4909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 6), + [4911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), + [4913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), + [4915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 6, .production_id = 184), + [4917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3152), + [4919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2762), + [4921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1876), + [4923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2309), + [4925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 6, .production_id = 187), + [4927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2318), + [4929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2301), + [4931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2288), + [4933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3132), + [4935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 8, .production_id = 198), + [4937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, .production_id = 187), + [4939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 8, .production_id = 184), + [4941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 3, .production_id = 88), + [4943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 7, .production_id = 88), + [4945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 3, .production_id = 90), + [4947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 7), + [4949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2271), + [4951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2272), + [4953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 5, .production_id = 176), + [4955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 3, .production_id = 89), + [4957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 3), + [4959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2186), + [4961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), + [4963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2436), + [4965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2319), + [4967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2409), + [4969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), + [4971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), + [4973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1631), + [4975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2568), + [4977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2568), + [4979] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), + [4981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1620), + [4983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2502), + [4985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2502), + [4987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [4989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2497), + [4991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2497), + [4993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), + [4995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2569), + [4997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2569), + [4999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tuple_type_member, 1), + [5001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1590), + [5003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2652), + [5005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), + [5007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 2, .production_id = 14), + [5009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), + [5011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), + [5013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1561), + [5015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), + [5017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), + [5019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), + [5021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), + [5023] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 2), SHIFT_REPEAT(2186), + [5026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 2), + [5028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), + [5030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(442), + [5032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_clause, 3), + [5034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), + [5036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), + [5038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), + [5040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), + [5042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(989), + [5044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(80), + [5046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2213), + [5048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(425), + [5050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2518), + [5052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2518), + [5054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2519), + [5056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2519), + [5058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2214), + [5060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mapped_type_clause, 3, .production_id = 14), + [5062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1920), + [5064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2584), + [5066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2584), + [5068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2585), + [5070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2585), + [5072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), + [5074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_substitution, 3), + [5076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), + [5078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), + [5080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2236), + [5082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), + [5084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2026), + [5086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1809), + [5088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2690), + [5090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), + [5092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter, 3), + [5094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), + [5096] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_extends_clause_repeat1, 2), SHIFT_REPEAT(158), + [5099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), + [5101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1080), + [5103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1912), + [5105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), + [5107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2371), + [5109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), + [5111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1932), + [5113] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2), + [5115] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(2568), + [5118] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(2568), + [5121] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat2, 2), + [5123] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat2, 2), SHIFT_REPEAT(2569), + [5126] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat2, 2), SHIFT_REPEAT(2569), + [5129] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2), SHIFT_REPEAT(148), + [5132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2355), + [5134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2367), + [5136] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_extends_clause_repeat1, 2), SHIFT_REPEAT(157), + [5139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_clause, 3, .production_id = 48), + [5141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2021), + [5143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1038), + [5145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2558), + [5147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2558), + [5149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2559), + [5151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2559), + [5153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2220), + [5155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2221), + [5157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2017), + [5159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2265), + [5161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), + [5163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1918), + [5165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), + [5167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), + [5169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2), + [5171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), + [5173] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_implements_clause_repeat1, 2), SHIFT_REPEAT(855), + [5176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rest_parameter, 1), + [5178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), + [5180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), + [5182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), + [5184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), + [5186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_parameter, 2), + [5188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1989), + [5190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), + [5192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2451), + [5194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(992), + [5196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2526), + [5198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2526), + [5200] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extends_clause, 3), + [5202] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extends_clause, 3, .production_id = 48), + [5204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(71), + [5206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2527), + [5208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2527), + [5210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1979), + [5212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2525), + [5214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2525), + [5216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2528), + [5218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2528), + [5220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, .production_id = 156), + [5222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), [5224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, .production_id = 82), - [5226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2983), - [5228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), - [5230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2981), - [5232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), - [5234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1988), - [5236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2463), - [5238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 2, .production_id = 33), - [5240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1868), - [5242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1752), - [5244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 5, .production_id = 114), - [5246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2683), - [5248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2761), - [5250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), - [5252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 2, .production_id = 31), - [5254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2079), - [5256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2387), - [5258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), - [5260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2710), - [5262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, .production_id = 29), - [5264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), - [5266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rest_identifier, 1), - [5268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), - [5270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), - [5272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 2, .production_id = 29), - [5274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), - [5276] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__tuple_type_body_repeat1, 2), SHIFT_REPEAT(2058), - [5279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__tuple_type_body_repeat1, 2), - [5281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2780), - [5283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3103), - [5285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, .production_id = 153), - [5287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, .production_id = 154), - [5289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2417), - [5291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, .production_id = 155), - [5293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implements_clause, 3), - [5295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 4, .production_id = 130), - [5297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 4, .production_id = 149), - [5299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2341), - [5301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, .production_id = 156), - [5303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3140), - [5305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2576), - [5307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_clause, 1), - [5309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, .production_id = 126), - [5311] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4), - [5313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2333), - [5315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2448), - [5317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3137), - [5319] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2), SHIFT_REPEAT(1878), - [5322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2650), - [5324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), - [5326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), - [5328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1769), - [5330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2304), - [5332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), - [5334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2391), - [5336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2390), - [5338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2386), - [5340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), - [5342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2665), - [5344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2743), - [5346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1760), - [5348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2703), - [5350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), - [5352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, .production_id = 174), - [5354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, .production_id = 175), - [5356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), - [5358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, .production_id = 176), - [5360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 5, .production_id = 170), - [5362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, .production_id = 177), - [5364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), - [5366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1763), - [5368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 5, .production_id = 171), - [5370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1655), - [5372] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), SHIFT_REPEAT(2879), - [5375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), - [5377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2301), - [5379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), - [5381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2452), - [5383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2767), - [5385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3157), - [5387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2086), - [5389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3193), - [5391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 3), - [5393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3202), - [5395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_export_specifier, 2, .production_id = 73), - [5397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), - [5399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, .production_id = 185), - [5401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2636), - [5403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2281), - [5405] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2), SHIFT_REPEAT(1662), - [5408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2), - [5410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, .production_id = 186), - [5412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_heritage, 1), - [5414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_identifier, 2), - [5416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 6, .production_id = 181), - [5418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2268), - [5420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2460), - [5422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1784), - [5424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), - [5426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547), - [5428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), - [5430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, .production_id = 192), - [5432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1560), - [5434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2608), - [5436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, .production_id = 187), - [5438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), - [5440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), - [5442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1564), - [5444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), - [5446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), - [5448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), - [5450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), - [5452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), - [5454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1759), - [5456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1581), - [5458] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_named_imports_repeat1, 2), SHIFT_REPEAT(2586), - [5461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_named_imports_repeat1, 2), - [5463] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3), - [5465] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2, .production_id = 21), SHIFT_REPEAT(1803), - [5468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2, .production_id = 21), - [5470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 2), - [5472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3039), - [5474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_export_specifier, 1, .production_id = 5), - [5476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2396), - [5478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2723), - [5480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2446), - [5482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 3, .production_id = 84), - [5484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 3, .production_id = 83), - [5486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), - [5488] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_export_clause_repeat1, 2), SHIFT_REPEAT(2587), - [5491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_clause_repeat1, 2), - [5493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), - [5495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2848), - [5497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1869), - [5499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 4, .production_id = 114), - [5501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 3, .production_id = 82), - [5503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 3, .production_id = 81), - [5505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), - [5507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), - [5509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1865), - [5511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [5513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), - [5515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_export_specifier, 3, .production_id = 113), - [5517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), - [5519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_assignment, 2, .production_id = 41), - [5521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_export_specifier, 4, .production_id = 140), - [5523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_clause_repeat1, 2, .production_id = 114), - [5525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), - [5527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2403), - [5529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3046), - [5531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), - [5533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2), - [5535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2458), - [5537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3141), - [5539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), - [5541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), - [5543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1871), - [5545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter, 3, .production_id = 91), - [5547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_named_imports_repeat1, 2, .production_id = 79), - [5549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_parameter, 3, .production_id = 91), - [5551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), + [5226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2752), + [5228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2291), + [5230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), + [5232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3050), + [5234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2590), + [5236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_clause, 1), + [5238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [5240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1781), + [5242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2614), + [5244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2068), + [5246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1983), + [5248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2729), + [5250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3110), + [5252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4), + [5254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 2, .production_id = 33), + [5256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2732), + [5258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2627), + [5260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, .production_id = 179), + [5262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2091), + [5264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), + [5266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), + [5268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), + [5270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 2, .production_id = 31), + [5272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), + [5274] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2), SHIFT_REPEAT(1879), + [5277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), + [5279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1988), + [5281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), + [5283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1790), + [5285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1778), + [5287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), + [5289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), + [5291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), + [5293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_identifier, 2), + [5295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 2, .production_id = 29), + [5297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2360), + [5299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3114), + [5301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_export_specifier, 2, .production_id = 73), + [5303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1783), + [5305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2750), + [5307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3047), + [5309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2439), + [5311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1755), + [5313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2463), + [5315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3051), + [5317] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_named_imports_repeat1, 2), SHIFT_REPEAT(2490), + [5320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_named_imports_repeat1, 2), + [5322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2862), + [5324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), + [5326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2335), + [5328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), + [5330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2099), + [5332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3230), + [5334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, .production_id = 177), + [5336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2443), + [5338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, .production_id = 178), + [5340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 3), + [5342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2281), + [5344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2374), + [5346] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), SHIFT_REPEAT(2849), + [5349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), + [5351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, .production_id = 127), + [5353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2379), + [5355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 5, .production_id = 173), + [5357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, .production_id = 157), + [5359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 4, .production_id = 150), + [5361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2295), + [5363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2294), + [5365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2290), + [5367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 3, .production_id = 103), + [5369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 4, .production_id = 130), + [5371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2329), + [5373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), + [5375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), + [5377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, .production_id = 180), + [5379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, .production_id = 155), + [5381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), + [5383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1773), + [5385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 5, .production_id = 174), + [5387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, .production_id = 126), + [5389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, .production_id = 154), + [5391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2861), + [5393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), + [5395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), + [5397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), + [5399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2866), + [5401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), + [5403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), + [5405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2859), + [5407] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3), + [5409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1869), + [5411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1663), + [5413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), + [5415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 2), + [5417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 5), + [5419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2728), + [5421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3099), + [5423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_export_specifier, 1, .production_id = 5), + [5425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), + [5427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 4, .production_id = 114), + [5429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2394), + [5431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2682), + [5433] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_export_clause_repeat1, 2), SHIFT_REPEAT(2504), + [5436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_clause_repeat1, 2), + [5438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), + [5440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2684), + [5442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2344), + [5444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), + [5446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_heritage, 1), + [5448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2400), + [5450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2631), + [5452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2723), + [5454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2446), + [5456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), + [5458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), + [5460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 3, .production_id = 81), + [5462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 3, .production_id = 82), + [5464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1545), + [5466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1546), + [5468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 3, .production_id = 83), + [5470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547), + [5472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 3, .production_id = 84), + [5474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 5, .production_id = 114), + [5476] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__tuple_type_body_repeat1, 2), SHIFT_REPEAT(2068), + [5479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__tuple_type_body_repeat1, 2), + [5481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, .production_id = 29), + [5483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1563), + [5485] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2, .production_id = 21), SHIFT_REPEAT(1801), + [5488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2, .production_id = 21), + [5490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), + [5492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), + [5494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), + [5496] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2), SHIFT_REPEAT(1652), + [5499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2), + [5501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2663), + [5503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), + [5505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2092), + [5507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1581), + [5509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, .production_id = 196), + [5511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rest_identifier, 1), + [5513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), + [5515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1871), + [5517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implements_clause, 3), + [5519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 6, .production_id = 185), + [5521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), + [5523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, .production_id = 191), + [5525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, .production_id = 190), + [5527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, .production_id = 189), + [5529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [5531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_require_clause, 6), + [5533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), + [5535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), + [5537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), + [5539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), + [5541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2445), + [5543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3034), + [5545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_export_specifier, 4, .production_id = 141), + [5547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_assignment, 2, .production_id = 41), + [5549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), + [5551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter, 4, .production_id = 121), [5553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 3, .production_id = 119), - [5555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), - [5557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2735), - [5559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2432), - [5561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3194), - [5563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter, 4, .production_id = 121), - [5565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), - [5567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_require_clause, 6), - [5569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2445), - [5571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3192), - [5573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), - [5575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2239), - [5577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2780), - [5579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), - [5581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), - [5583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_tuple_type_member, 2), - [5585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2267), - [5587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3, .production_id = 14), - [5589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), - [5591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__from_clause, 2, .production_id = 70), - [5593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), - [5595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), - [5597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), - [5599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rest_parameter, 2), - [5601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_parameter, 2, .production_id = 41), - [5603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2973), - [5605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), - [5607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), - [5609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), - [5611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), - [5613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), - [5615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), - [5617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), - [5619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), - [5621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3162), - [5623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1314), - [5625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), - [5627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), - [5629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), - [5631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1939), - [5633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3073), - [5635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), - [5637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3040), - [5639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1991), - [5641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3067), - [5643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), - [5645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), - [5647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1907), - [5649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3056), - [5651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), - [5653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3210), - [5655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2577), - [5657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2795), - [5659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1562), - [5661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2836), - [5663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), - [5665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2212), - [5667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1608), - [5669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2365), - [5671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1911), - [5673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2784), - [5675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), - [5677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), - [5679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3129), - [5681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3114), - [5683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_import, 3), - [5685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 2), - [5687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2115), - [5689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), - [5691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2193), - [5693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), - [5695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), - [5697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3110), - [5699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), - [5701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), - [5703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1559), - [5705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), - [5707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), - [5709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), - [5711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), - [5713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), - [5715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), - [5717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2840), - [5719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2907), - [5721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2835), - [5723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), - [5725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), - [5727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2886), - [5729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), - [5731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), - [5733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [5735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3032), - [5737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), - [5739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), - [5741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1797), - [5743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3080), - [5745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1647), - [5747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), - [5749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2036), - [5751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_heritage, 2), - [5753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2754), - [5755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), - [5757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), - [5759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), - [5761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), - [5763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), - [5765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2026), - [5767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2960), - [5769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 4, .production_id = 79), - [5771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2964), - [5773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2226), - [5775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2048), - [5777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), - [5779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), - [5781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), - [5783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2726), - [5785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2937), - [5787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2841), - [5789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2052), - [5791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3122), - [5793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2648), - [5795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), - [5797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 3), - [5799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3112), - [5801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), - [5803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3031), - [5805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), - [5807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [5809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 3, .production_id = 79), - [5811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), - [5813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2914), - [5815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3103), - [5817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2404), - [5819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2050), - [5821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2049), - [5823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), - [5825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2925), - [5827] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [5829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2866), - [5831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 5, .production_id = 79), - [5833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2097), - [5835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), - [5837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2845), - [5839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1271), - [5841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3156), - [5843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), - [5845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_clause, 3), + [5555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2183), + [5557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [5559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_named_imports_repeat1, 2, .production_id = 79), + [5561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), + [5563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), + [5565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), + [5567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), + [5569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rest_parameter, 2), + [5571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_parameter, 2, .production_id = 41), + [5573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1874), + [5575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_clause_repeat1, 2, .production_id = 114), + [5577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_export_specifier, 3, .production_id = 113), + [5579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__from_clause, 2, .production_id = 70), + [5581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), + [5583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), + [5585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), + [5587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2704), + [5589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2384), + [5591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3214), + [5593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2365), + [5595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3212), + [5597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1872), + [5599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), + [5601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), + [5603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2), + [5605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter, 3, .production_id = 91), + [5607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2750), + [5609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_parameter, 3, .production_id = 91), + [5611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3, .production_id = 14), + [5613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2410), + [5615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3061), + [5617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), + [5619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_tuple_type_member, 2), + [5621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2337), + [5623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3069), + [5625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2917), + [5627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), + [5629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2165), + [5631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2656), + [5633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1911), + [5635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [5637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), + [5639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), + [5641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3109), + [5643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), + [5645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), + [5647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), + [5649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2973), + [5651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2950), + [5653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3129), + [5655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), + [5657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2411), + [5659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2059), + [5661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), + [5663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), + [5665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), + [5667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), + [5669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), + [5671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1915), + [5673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), + [5675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3150), + [5677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [5679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_clause, 3), + [5681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2665), + [5683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), + [5685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2052), + [5687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3047), + [5689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 3, .production_id = 79), + [5691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), + [5693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 3), + [5695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3227), + [5697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_import, 3), + [5699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2454), + [5701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1995), + [5703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), + [5705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), + [5707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1483), + [5709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [5711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [5713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [5715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [5717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3128), + [5719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), + [5721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3056), + [5723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [5725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1261), + [5727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), + [5729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [5731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3117), + [5733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3053), + [5735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 2), + [5737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), + [5739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), + [5741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [5743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), + [5745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), + [5747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [5749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3100), + [5751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2926), + [5753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1705), + [5755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), + [5757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2904), + [5759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2035), + [5761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), + [5763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1345), + [5765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3033), + [5767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2261), + [5769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), + [5771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2061), + [5773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), + [5775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), + [5777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2841), + [5779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2057), + [5781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3003), + [5783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), + [5785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), + [5787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), + [5789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), + [5791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2047), + [5793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), + [5795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3101), + [5797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 4, .production_id = 79), + [5799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), + [5801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2956), + [5803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2868), + [5805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2608), + [5807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), + [5809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), + [5811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2899), + [5813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1507), + [5815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3016), + [5817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2825), + [5819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2824), + [5821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2823), + [5823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2056), + [5825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), + [5827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), + [5829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2943), + [5831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3077), + [5833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2107), + [5835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), + [5837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1942), + [5839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_heritage, 2), + [5841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), + [5843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3079), + [5845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), [5847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), - [5849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), - [5851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2826), - [5853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2136), - [5855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3097), - [5857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), - [5859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), - [5861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), - [5863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), - [5865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), - [5867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [5869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), - [5871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), - [5873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), - [5875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), - [5877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), - [5879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1625), - [5881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3011), - [5883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), - [5885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), - [5887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2671), - [5889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3076), - [5891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2912), - [5893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), - [5895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1624), - [5897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), - [5899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2319), - [5901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2315), - [5903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), - [5905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), - [5907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1936), - [5909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), - [5911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), - [5913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), - [5915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2809), - [5917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), - [5919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), - [5921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), - [5923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), - [5925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1633), - [5927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2313), - [5929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), - [5931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), - [5933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), + [5849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1600), + [5851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), + [5853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2129), + [5855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 5, .production_id = 79), + [5857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), + [5859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2993), + [5861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2040), + [5863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3026), + [5865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2745), + [5867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2810), + [5869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3012), + [5871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), + [5873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), + [5875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), + [5877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), + [5879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [5881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1585), + [5883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), + [5885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), + [5887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), + [5889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), + [5891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [5893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), + [5895] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [5897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2974), + [5899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2098), + [5901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3049), + [5903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), + [5905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), + [5907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2234), + [5909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2790), + [5911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3096), + [5913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2928), + [5915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1609), + [5917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), + [5919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), + [5921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), + [5923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2370), + [5925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1952), + [5927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2283), + [5929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), + [5931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1470), + [5933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), + [5935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3104), + [5937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), + [5939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), + [5941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), + [5943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), + [5945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), + [5947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), + [5949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), + [5951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2452), + [5953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), + [5955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [5957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), + [5959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1635), + [5961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2852), }; #ifdef __cplusplus